/* Card */
.inicial {
    margin-top: 80px;
    width: 100%;
    height: 500px;
    background-image: url(../img/back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.overlay_one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.582);
}

.inicial h2 {
    margin-top: 80px;
    color: #fff;
    line-height: 45px;
    font-weight: bolder;
}

.rotating-text {
    margin-top: 40px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.8em;
    color: white;
    transform: translateX(-0px);
}

.rotating-text p {
    display: inline-flex;
    vertical-align: top;
    margin-top: -50px;
}

.rotating-text p .word {
    position: absolute;
    display: flex;
    opacity: 0;
}

.rotating-text p .word .letter {
    transform-origin: center center 25px;
}

.rotating-text p .word .letter.out {
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.rotating-text p .word .letter.in {
    transition: 0.38s ease;
}

.rotating-text p .word .letter.behind {
    transform: rotateX(-90deg);
}

.w-1 {
    color: #d8dfe7;
}

.w-2 {
    color: #d3e0ec;
}

.w-3 {
    color: #d3e0ec;
}

.w-4 {
    color: #d3e0ec;
}

.inicial .mercado {
    width: 420px;
    color: #f4f4f4;
    font-size: 1.2em;
    font-weight: 500;
    margin-top: -50px;
}

.inicial .mais {
    border: 2.5px solid #d3e0ec;
    border-radius: 8px;
    background-color: #133555;
    width: max-content;
    padding: 7px 30px 10px 30px;
    color: #d3e0ec;
    font-size: 1.2em;
    font-weight: 500;
}

.inicial .mais a {
    color: #ffffff;
}

.inicial .mais a:hover {
    text-decoration: none;
}

/* Nossos Impactos */
.impacto {
    background-color: #ccc;
    margin-top: 0px;
}

.impacto h2 {
    padding-top: 50px;
    text-align: center;
    font-weight: 700;
    color: #133555;
}

.impactos {
    margin-top: 30px;
    height: 300px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
}

.impactos img {
    margin-top: 50px;
    width: 90px;
}

.impactos h5 {
    padding: 20px 0px 0px 0px;
    font-weight: 350;
    font-size: 1.4em;
}

.impactos p {
    color: #2d6193;
    font-size: 1.1em;
    padding: 0px 40px 0px 40px;
}

.frases {
    margin-top: 60px;
}

.frases h3 {
    color: #133555;
    font-weight: bold;
}

.frase p {
    font-size: 1.1em;
}

.frase a {
    padding-top: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    background-image: linear-gradient(45deg,
            #133555 3%,
            #7192b4 20%,
            #3e79b1 36%,
            #386ea0 52%,
            #133555 69%,
            #133555 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    animation: moveGradient 5s linear infinite;
}


@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.surata {
    border-left: 4px solid #839fb9;
}

.surata p {
    padding-left: 15px;
    font-size: .9em;
}

.photos {
    height: 300px;
}

.photos img {
    width: 100%;
}


/* Frases Doação */
.doa {
    background-image: linear-gradient(to right, #133555, #234b70, #547a9e, #97b8d7);
    height: 150px;
}

.doa p {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 50px;
    padding-left: 20px;
}

.doa .col-lg-2 {
    margin-top: 60px;
}

.doa a {
    border: 1.5px solid #fff;
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}

.doa a:hover {
    text-decoration: none;
    color: #fff;
}

/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {

    /* Card */
    .inicial {
        margin-top: 60px;
        width: 100%;
        height: 600px;
        background-image: url(../img/back.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
    }

    .overlay_one {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.582);
    }

    .inicial h2 {
        margin-top: 130px;
        color: #fff;
        line-height: 45px;
        font-weight: bolder;
        font-size: 1.4em;
    }

    .rotating-text {
        margin-top: 40px;
        font-family: sans-serif;
        font-weight: 700;
        font-size: 2em;
        color: white;
        transform: translateX(-0px);
    }

    .rotating-text p {
        display: inline-flex;
        vertical-align: top;
        margin-top: -50px;
    }

    .rotating-text p .word {
        position: absolute;
        display: flex;
        opacity: 0;
    }

    .rotating-text p .word .letter {
        transform-origin: center center 25px;
    }

    .rotating-text p .word .letter.out {
        transform: rotateX(90deg);
        transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
    }

    .rotating-text p .word .letter.in {
        transition: 0.38s ease;
    }

    .rotating-text p .word .letter.behind {
        transform: rotateX(-90deg);
    }

    .w-1 {
        color: #d3e0ec;
    }

    .w-2 {
        color: #d3e0ec;
    }

    .w-3 {
        color: #d3e0ec;
    }

    .w-4 {
        color: #d3e0ec;
    }

    .inicial .mercado {
        width: 370px;
        color: #f4f4f4;
        font-size: 1.1em;
        font-weight: 500;
        margin-top: -50px;
        line-height: 25px;
    }

    .inicial .mais {
        border: .2px solid #d3e0ec;
        border-radius: 5px;
        background-color: #133555;
        width: max-content;
        padding: 7px 15px 10px 10px;
        color: #d3e0ec;
        font-size: 1em;
    }

    .inicial .mais a {
        color: #ffffff;
    }

    .inicial .mais a:hover {
        text-decoration: none;
    }

    /* Nossos Impactos */
    .impacto {
        background-color: #ccc;
        margin-top: 0px;
    }

    .impacto h2 {
        padding-top: 50px;
        text-align: center;
        font-weight: 700;
        color: #133555;
    }

    .impactos {
        margin-top: 30px;
        height: 300px;
        background-color: #fff;
        border-radius: 10px;
        text-align: center;
    }

    .impactos img {
        margin-top: 30px;
        width: 120px;
    }

    .impactos h5 {
        padding: 20px 0px 0px 0px;
        font-weight: 350;
        font-size: 1.4em;
    }

    .impactos p {
        color: #2d6193;
        font-size: 1.1em;
        padding: 0px 40px 0px 40px;
    }

    .frases {
        margin-top: 60px;
    }

    .frases h3 {
        color: #133555;
        font-weight: bold;
    }

    .frase p {
        font-size: 1.1em;
    }


    .frase a {
        padding-top: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        background-image: linear-gradient(45deg,
                #133555 3%,
                #7192b4 20%,
                #3e79b1 36%,
                #386ea0 52%,
                #133555 69%,
                #133555 50%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200%;
        animation: moveGradient 5s linear infinite;
    }


    .surata {
        border-left: 4px solid #839fb9;
    }

    .surata p {
        padding-left: 15px;
        font-size: .9em;
    }

    .photos {
        height: 300px;
    }

    .photos img {
        margin-top: 25px;
        width: 100%;
    }

    /* Frases Doação */
.doa {
    background-image: linear-gradient(to right, #133555, #234b70, #547a9e,#97b8d7);
    height: auto;
}

.doa p {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.doa .col-lg-2 {
    margin-top: 40px;
    margin-bottom: 60px;
    margin-left: 20px;
}
.doa a {
    border: 1.5px solid #fff;
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}

.doa a:hover {
    text-decoration: none;
    color: #fff;
}

}