/* Font Awesome */
.hero-missao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: none;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.hero-missao-texto {
    flex: 1;
    text-align: left;
}

.hero-missao-texto h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #fff;
}

.hero-missao-texto .azul {
    color: #73d8ce;
    font-weight: 900;
}

.hero-missao-texto p {
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 18px;
}

.hero-missao-img {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-missao-img img {
    margin-top: 50px;
    width: 700px;
    height: 450px;
    border-radius: 15px;
}

.frase {
    text-align: center;
    margin: 40px 0 30px 0;
    /* opcional para espaçamento */
}

.frase h1 {
    font-size: 60px;
    text-align: center;
}

.frase p {
    font-size: 20px;
    text-align: center;
    margin-left: 200px;
    margin-right: 200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards por linha */
    gap: 32px;
    padding: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid a {
    text-decoration: none;
    /* remove o sublinhado do link */
    color: inherit;
    /* herda a cor do elemento pai */
}

.service-card {
    border-radius: 20px;
    margin: 20px;
    /* margens superior, inferior, esquerda e direita */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centraliza título, texto e ícone */
    text-align: center;
    /* centraliza o texto */
}

.service-card:hover {
    box-shadow: 0 0 5px 1px #73d8ce;
}

.service-card svg {
    width: 70px;
    height: 70px;
    display: block;
    margin: 20px;
    fill: #73d8ce;
}

.service-card h3 {
    color: #73d8ce;
    /* cor azul do título */
    margin: 24px 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    margin: 20px;
    text-align: center;
}

.btn {
    background: #28ac9f;
    color: #FFFFFF;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
}

.centraliza-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* CSS Mobile para [Nome da Página] - Adaptado para telas até 768px */
@media (max-width: 768px) {

    .hero-missao {
        flex-direction: column;
        gap: 24px;
        padding: 28px 0 32px 0;
        max-width: 100vw;
        margin: 0 0 30px 0;
    }

    .hero-missao-texto {
        text-align: center;
        width: 100%;
    }

    .hero-missao-texto h1 {
        font-size: 2em;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-missao-texto .azul {
        font-weight: 900;
    }

    .hero-missao-texto p {
        font-size: 1.05em;
        margin-top: 12px;
    }

    .hero-missao-img {
        justify-content: center;
        width: 100%;
    }

    .hero-missao-img img {
        margin-top: 16px;
        width: 98vw;
        max-width: 98vw;
        height: auto;
        border-radius: 9px;
    }

    .frase {
        margin: 24px 0 16px 0;
    }

    .frase h1 {
        font-size: 2em;
    }

    .frase p {
        font-size: 1em;
        margin-left: 8px;
        margin-right: 8px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 10px 4px;
        max-width: 100vw;
        margin: 0 auto;
    }

    .service-card {
        margin: 12px auto;
        max-width: 98vw;
        border-radius: 14px;
        padding: 8px 6px;
    }

    .service-card svg {
        width: 45px;
        height: 45px;
        margin: 10px;
    }

    .service-card h3 {
        margin: 16px 0 10px 0;
        font-size: 1.1em;
    }

    .service-card p {
        margin: 8px 0 14px 0;
        font-size: 1em;
    }

    .btn {
        font-size: 1em;
        padding: 13px 0;
        width: 98vw;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .centraliza-btn {
        margin-bottom: 15px;
    }

}