/* Estado inicial (antes de aparecer) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando entra na tela */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Section container */
.what-we-do {
    padding: 10px;
    font-family: "Michroma", sans-serif;
    display: flex;
    justify-content: center;
    text-align: center; /* CENTRALIZA TODO O TEXTO */
}

/* Glass / espelhado */
.what-we-do-glass {
    background: rgba(245, 245, 247, 0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    padding: 10px 10px;

    
    width: 100%;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* Título */
.what-we-do h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333336;
    margin-bottom: 24px;
}

/* Texto padrão */
.what-we-do p {
    font-size: 19px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 10px;
}

/* Lista centralizada */
.what-we-do ul {
    list-style: none;
    padding: 0;
    margin: 4px auto;
    display: inline-block; /* TRUQUE CHAVE DA APPLE */
    text-align: left; /* texto alinhado bonito */
}

/* Itens da lista */
.what-we-do li {
    font-size: 19px;
    color: #1d1d1f;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

/* Bullet minimalista */
.what-we-do li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6e6e73;
}

/* Texto final mais suave */
.what-we-do .closing {
    font-size: 19px;
    color: #6e6e73;
    margin-top: 10px;
}

@media screen and (max-width: 1170px) {

    .what-we-do {
        padding: 10px 16px;
    }

    .what-we-do-glass {
        padding: 48px 24px;
        border-radius: 22px;
    }

    .what-we-do h2 {
        font-size: 30px;
        text-align: center;
    }

    .what-we-do p {
        font-size: 19px;
        text-align: center;
    }

    .what-we-do ul {
        margin: 24px auto;
        text-align: left;
    }

    .what-we-do li {
        font-size: 19px;
    }

    .what-we-do .closing {
        font-size: 19px;
        text-align: center;
    }
}
