* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* BOTÕES */

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8c5b0, #dba98e);
    color: #111111;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(229, 188, 164, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(229, 188, 164, 0.25);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
    padding: 70px 7% 100px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(229, 188, 164, 0.08),
            transparent 32%
        ),
        #0d0d0d;
}

.hero-conteudo {
    max-width: 720px;
}

.logo {
    width: 280px;
    max-width: 100%;
    margin-bottom: 28px;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

h1 {
    color: #e5bca4;
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
}

.descricao {
    max-width: 680px;
    color: #dddddd;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 34px;
}

.diferenciais {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 45px;
}

.cartao {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cartao:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 188, 164, 0.7);
}

.cartao strong {
    color: #e5bca4;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cartao span {
    color: #d7d7d7;
    font-size: 13px;
    line-height: 1.4;
}

.hero-imagem {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(229, 188, 164, 0.22);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.4);
}

.hero-imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.28),
        transparent 38%
    );
    pointer-events: none;
}

.hero-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-imagem:hover img {
    transform: scale(1.025);
}

/* CABEÇALHOS DAS SEÇÕES */

.secao-cabecalho {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.secao-etiqueta {
    display: inline-block;
    color: #e5bca4;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.secao-cabecalho h2 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.secao-cabecalho p {
    color: #cfcfcf;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

/* POR QUE ESCOLHER */

.porque-escolher {
    padding: 100px 7%;
    background: #131313;
}

.beneficios {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.beneficio {
    min-height: 260px;
    padding: 30px;
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.beneficio:hover {
    transform: translateY(-7px);
    border-color: #e5bca4;
}

.beneficio-icone {
    font-size: 36px;
    margin-bottom: 24px;
}

.beneficio h3 {
    color: #e5bca4;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
}

.beneficio p {
    color: #d2d2d2;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

/* COMO FUNCIONA */

.como-funciona {
    padding: 100px 7%;
    background: #0d0d0d;
}

.etapas {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.etapa {
    position: relative;
    min-height: 280px;
    padding: 34px 28px;
    background: #171717;
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.etapa:hover {
    transform: translateY(-7px);
    border-color: #e5bca4;
}

.etapa-numero {
    color: #e5bca4;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 28px;
    opacity: 0.9;
}

.etapa h3 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
}

.etapa p {
    color: #cfcfcf;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.como-funciona-acao {
    margin-top: 48px;
    text-align: center;
}

/* SERVIÇOS */

.servicos {
    padding: 100px 7%;
    background: #131313;
}

.lista-servicos {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.servico {
    min-height: 280px;
    padding: 32px;
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.servico:hover {
    transform: translateY(-7px);
    border-color: #e5bca4;
}

.servico-icone {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #242424;
    border: 1px solid #303030;
    border-radius: 16px;
    font-size: 30px;
}

.servico h3 {
    color: #e5bca4;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.servico p {
    color: #d2d2d2;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.servicos-acao {
    margin-top: 50px;
    text-align: center;
}

.servicos-acao p {
    color: #d2d2d2;
    font-size: 17px;
    margin-bottom: 24px;
}

/* RESPONSIVIDADE */

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 55px 6% 85px;
    }

    .hero-conteudo {
        max-width: none;
        text-align: center;
    }

    .descricao {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-imagem {
        height: 520px;
    }
}

@media (max-width: 950px) {
    .beneficios,
    .etapas,
    .lista-servicos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .hero {
        padding: 40px 22px 70px;
        gap: 35px;
    }

    .logo {
        width: 235px;
    }

    h1 {
        font-size: 46px;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 23px;
    }

    .descricao {
        font-size: 17px;
    }

    .botao {
        width: 100%;
        max-width: 360px;
        padding: 17px 24px;
        font-size: 16px;
    }

    .diferenciais {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-imagem {
        height: 420px;
        border-radius: 20px;
    }

    .porque-escolher,
    .como-funciona,
    .servicos {
        padding: 75px 22px;
    }

    .secao-cabecalho h2 {
        font-size: 34px;
    }

    .secao-cabecalho p {
        font-size: 16px;
    }

    .beneficios,
    .etapas,
    .lista-servicos {
        grid-template-columns: 1fr;
    }

    .beneficio,
    .etapa,
    .servico {
        min-height: auto;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 21px;
    }

    .diferenciais {
        grid-template-columns: 1fr;
    }
}
/* QUEM SOMOS */

.quem-somos {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
    padding: 110px 7%;
    background: #0d0d0d;
}

.quem-somos-imagem {
    height: 620px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(229, 188, 164, 0.22);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

.quem-somos-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.quem-somos-imagem:hover img {
    transform: scale(1.025);
}

.quem-somos-conteudo {
    max-width: 700px;
}

.quem-somos-conteudo h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 26px;
}

.quem-somos-conteudo p {
    color: #d2d2d2;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 18px;
}

.quem-somos-destaques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
}

.quem-somos-destaques div {
    padding: 22px 18px;
    background: #171717;
    border: 1px solid #2d2d2d;
    border-radius: 18px;
}

.quem-somos-destaques strong {
    display: block;
    color: #e5bca4;
    font-size: 26px;
    margin-bottom: 7px;
}

.quem-somos-destaques span {
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .quem-somos {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .quem-somos-imagem {
        height: 520px;
    }

    .quem-somos-conteudo {
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 650px) {
    .quem-somos {
        padding: 75px 22px;
    }

    .quem-somos-imagem {
        height: 420px;
        border-radius: 20px;
    }

    .quem-somos-conteudo h2 {
        font-size: 35px;
    }

    .quem-somos-conteudo p {
        font-size: 16px;
    }

    .quem-somos-destaques {
        grid-template-columns: 1fr;
    }
}
/* AVALIAÇÕES */

.avaliacoes {
    padding: 110px 7%;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(229, 188, 164, 0.07),
            transparent 30%
        ),
        #131313;
}

.lista-avaliacoes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.avaliacao {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.avaliacao:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 188, 164, 0.8);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.avaliacao-topo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.avaliacao-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8c5b0, #dba98e);
    color: #111111;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 700;
}

.avaliacao-topo h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.avaliacao-topo span {
    color: #9f9f9f;
    font-size: 13px;
}

.avaliacao-estrelas {
    color: #f6bd32;
    font-size: 21px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.avaliacao blockquote {
    flex-grow: 1;
    color: #dddddd;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 0 24px;
}

.avaliacao-origem {
    color: #999999;
    font-size: 12px;
}

.avaliacoes-acao {
    margin-top: 50px;
    text-align: center;
}

.avaliacoes-acao p {
    color: #d2d2d2;
    font-size: 17px;
    margin-bottom: 24px;
}

.botao-secundario {
    background: transparent;
    color: #e5bca4;
    border: 1px solid #e5bca4;
    box-shadow: none;
}

.botao-secundario:hover {
    background: #e5bca4;
    color: #111111;
    box-shadow: 0 16px 38px rgba(229, 188, 164, 0.18);
}

@media (max-width: 950px) {
    .lista-avaliacoes {
        grid-template-columns: 1fr;
    }

    .avaliacao {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .avaliacoes {
        padding: 75px 22px;
    }

    .avaliacao {
        padding: 26px;
    }

    .avaliacao blockquote {
        font-size: 15px;
    }

    .avaliacao-estrelas {
        font-size: 19px;
    }
}
/* CONTATO E LOCALIZAÇÃO */

.contato {
    padding: 110px 7%;
    background: #0d0d0d;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: stretch;
}

.contato-informacoes {
    padding: 36px;
    background: #171717;
    border: 1px solid #2d2d2d;
    border-radius: 24px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #2b2b2b;
}

.contato-item:first-child {
    padding-top: 0;
}

.contato-item:last-of-type {
    border-bottom: none;
}

.contato-icone {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242424;
    border-radius: 14px;
    font-size: 22px;
}

.contato-item h3 {
    color: #e5bca4;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contato-item p,
.contato-item a {
    color: #d2d2d2;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    text-decoration: none;
}

.contato-item a:hover {
    color: #e5bca4;
}

.contato-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contato-mapa {
    min-height: 610px;
    overflow: hidden;
    border: 1px solid rgba(229, 188, 164, 0.22);
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 610px;
    display: block;
    border: 0;
}

/* CHAMADA FINAL */

.chamada-final {
    padding: 100px 7%;
    background:
        radial-gradient(
            circle at center,
            rgba(229, 188, 164, 0.13),
            transparent 50%
        ),
        #131313;
}

.chamada-final-conteudo {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.chamada-final h2 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.chamada-final p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: #d2d2d2;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

/* RODAPÉ */

.rodape {
    background: #090909;
    border-top: 1px solid #222222;
}

.rodape-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding: 75px 7%;
}

.rodape-logo {
    width: 210px;
    max-width: 100%;
    margin-bottom: 20px;
}

.rodape-marca p,
.rodape-coluna p,
.rodape-coluna a {
    color: #aaaaaa;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    text-decoration: none;
}

.rodape-marca p {
    max-width: 330px;
}

.rodape-coluna {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.rodape-coluna h3 {
    color: #e5bca4;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 9px;
}

.rodape-coluna a:hover {
    color: #e5bca4;
}

.rodape-final {
    padding: 22px;
    border-top: 1px solid #1f1f1f;
    text-align: center;
}

.rodape-final p {
    color: #777777;
    font-size: 12px;
}

/* RESPONSIVIDADE DAS NOVAS ÁREAS */

@media (max-width: 1000px) {
    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-mapa,
    .contato-mapa iframe {
        min-height: 500px;
    }

    .rodape-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .contato {
        padding: 75px 22px;
    }

    .contato-informacoes {
        padding: 26px 22px;
    }

    .contato-botoes {
        flex-direction: column;
        align-items: center;
    }

    .contato-mapa,
    .contato-mapa iframe {
        min-height: 390px;
    }

    .chamada-final {
        padding: 75px 22px;
    }

    .chamada-final h2 {
        font-size: 35px;
    }

    .chamada-final p {
        font-size: 16px;
    }

    .rodape-container {
        grid-template-columns: 1fr;
        padding: 60px 22px;
        text-align: center;
    }

    .rodape-marca p {
        margin: 0 auto;
    }

    .rodape-coluna {
        align-items: center;
    }
}
/* MENU FIXO PREMIUM */

.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 14px 7%;
    background: rgba(9, 9, 9, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cabecalho-container {
    width: 100%;
    max-width: 1400px;
    min-height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-menu img {
    display: block;
    width: 145px;
    max-height: 58px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.menu a {
    position: relative;
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #e5bca4;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #e5bca4;
}

.menu a:hover::after {
    width: 100%;
}

.botao-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 46px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e8c5b0, #dba98e);
    color: #111111;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(229, 188, 164, 0.14);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.botao-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 188, 164, 0.24);
}

/* ESPAÇO PARA O MENU NÃO COBRIR O INÍCIO */

.hero {
    padding-top: 150px;
}

/* AJUSTE AO CLICAR NOS LINKS DO MENU */

#inicio,
#servicos,
#quem-somos,
#avaliacoes,
#contato {
    scroll-margin-top: 95px;
}

/* MENU EM TABLETS */

@media (max-width: 1050px) {
    .cabecalho {
        padding: 12px 5%;
    }

    .cabecalho-container {
        gap: 18px;
    }

    .logo-menu img {
        width: 125px;
    }

    .menu {
        gap: 18px;
    }

    .menu a {
        font-size: 13px;
    }

    .botao-menu {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* MENU NO CELULAR */

@media (max-width: 820px) {
    .cabecalho {
        padding: 10px 20px;
    }

    .cabecalho-container {
        min-height: 58px;
    }

    .logo-menu img {
        width: 115px;
    }

    .menu {
        display: none;
    }

    .botao-menu {
        min-height: 42px;
        padding: 10px 17px;
        font-size: 12px;
    }

    .hero {
        padding-top: 115px;
    }
}

@media (max-width: 420px) {
    .cabecalho {
        padding: 9px 14px;
    }

    .logo-menu img {
        width: 100px;
    }

    .botao-menu {
        padding: 9px 14px;
        font-size: 11px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */

.whatsapp-flutuante{
    position:fixed;
    right:28px;
    bottom:28px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 18px;

    background:#25D366;
    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-weight:600;

    box-shadow:0 18px 40px rgba(0,0,0,.28);

    z-index:9999;

    transition:.3s;
}

.whatsapp-flutuante:hover{
    transform:translateY(-5px) scale(1.05);
    background:#1ebe5d;
}

.whatsapp-flutuante svg{
    width:26px;
    height:26px;
    fill:white;
}

.whatsapp-flutuante span{
    white-space:nowrap;
    font-size:16px;
}

@media(max-width:700px){

    .whatsapp-flutuante{

        right:18px;
        bottom:18px;

        width:64px;
        height:64px;

        border-radius:50%;

        padding:0;

        justify-content:center;
    }

    .whatsapp-flutuante span{
        display:none;
    }

    .whatsapp-flutuante svg{
        width:30px;
        height:30px;
    }

}
/* ANIMAÇÕES AO ROLAR A PÁGINA */

.revelar {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.revelar.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* PEQUENO ATRASO ENTRE CARTÕES */

.beneficio:nth-child(2),
.etapa:nth-child(2),
.servico:nth-child(2),
.avaliacao:nth-child(2) {
    transition-delay: 0.08s;
}

.beneficio:nth-child(3),
.etapa:nth-child(3),
.servico:nth-child(3),
.avaliacao:nth-child(3) {
    transition-delay: 0.16s;
}

.beneficio:nth-child(4),
.etapa:nth-child(4),
.servico:nth-child(4) {
    transition-delay: 0.24s;
}

.servico:nth-child(5) {
    transition-delay: 0.08s;
}

.servico:nth-child(6) {
    transition-delay: 0.16s;
}

/* ACESSIBILIDADE */

@media (prefers-reduced-motion: reduce) {
    .revelar,
    .revelar.visivel {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* MENU INTELIGENTE AO ROLAR */

.cabecalho {
    transition:
        background 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cabecalho-container,
.logo-menu img,
.botao-menu {
    transition:
        min-height 0.35s ease,
        width 0.35s ease,
        max-height 0.35s ease,
        padding 0.35s ease,
        transform 0.35s ease;
}

.cabecalho-rolado {
    padding-top: 7px;
    padding-bottom: 7px;
    background: rgba(7, 7, 7, 0.96);
    border-bottom-color: rgba(229, 188, 164, 0.16);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cabecalho-rolado .cabecalho-container {
    min-height: 56px;
}

.cabecalho-rolado .logo-menu img {
    width: 125px;
    max-height: 48px;
}

.cabecalho-rolado .botao-menu {
    min-height: 41px;
    padding: 9px 20px;
}

@media (max-width: 820px) {
    .cabecalho-rolado .logo-menu img {
        width: 100px;
    }

    .cabecalho-rolado .botao-menu {
        padding: 8px 14px;
    }
}
/* FAQ */

.faq {
    padding: 110px 7%;
    background: #131313;
}

.faq-lista {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 18px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item.aberto {
    border-color: rgba(229, 188, 164, 0.75);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.faq-pergunta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    background: transparent;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
}

.faq-pergunta:hover {
    color: #e5bca4;
}

.faq-icone {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5bca4;
    border: 1px solid rgba(229, 188, 164, 0.45);
    border-radius: 50%;
    font-size: 23px;
    font-weight: 300;
    line-height: 1;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.faq-item.aberto .faq-icone {
    transform: rotate(45deg);
    background: #e5bca4;
    color: #111111;
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-resposta p {
    padding: 0 26px 24px;
    color: #cfcfcf;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

@media (max-width: 650px) {
    .faq {
        padding: 75px 22px;
    }

    .faq-pergunta {
        padding: 21px 20px;
        font-size: 15px;
    }

    .faq-resposta p {
        padding: 0 20px 21px;
        font-size: 14px;
    }

    .faq-icone {
        width: 31px;
        height: 31px;
        font-size: 21px;
    }
}
/* ==========================
   CABEÇALHO
========================== */

.cabecalho{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.35s ease;
}

.cabecalho.ativo{
    background:rgba(13,13,13,.90);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 30px rgba(0,0,0,.35);
}

.cabecalho-container{
    max-width:1200px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-menu img{
    height:58px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#e5bca4;
}

.botao-menu{
    background:#e5bca4;
    color:#111;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.botao-menu:hover{
    transform:translateY(-2px);
}
/* ==========================
   ANIMAÇÕES AO ROLAR
========================== */

.animar {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animar.mostrar {
    opacity: 1;
    transform: translateY(0);
}