/* ========================================= */
/* ESTILOS GLOBAIS E RESET */
/* ========================================= */
body {
    background-color: #ffffff;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    
}

/* ======================================================= */
/* ESTILOS BASE / GLOBAIS (FORA DE QUALQUER @MEDIA QUERY) */
/* ======================================================= */

/* SEÇÃO DE PERGUNTAS FREQUENTES (FAQ) */
.faq-section {
    background-color: white;
    padding: 30px 10px;
    text-align: center;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    margin-top: 60px; /* Margem padrão */
}
.faq-section h2 {
    font-size: 34px;
    color: #005451;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
.faq-accordion {
    max-width: 710px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border: 0px solid #ddd;
    margin-bottom: 15px;
}
.faq-header {
    background-color: #005451;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}
.faq-question {
    font-size: 1em;
    font-weight: 700;
    margin: 0;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    text-align: left;
}
.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: white;
    margin-left: 10px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 15px;
}
.btn-mais-duvidas {
    /* Estilos Visuais (mantidos) */
    background-color: #e94170;
    color: white;
    border: 2px solid #e94170;
    border-radius: 5px;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    padding: 15px;

    /* Layout e Alinhamento (CORRIGIDO) */
    display: block;
    text-align: center;
    box-sizing: border-box;
    width: 100%;             /* MUDANÇA 1: Ocupa a largura total do container */
    max-width: none;         /* MUDANÇA 2: Remove o limite de 400px */
    margin: 20px 0 0 0;      /* Ajusta a margem para um elemento de largura total */
}
/* CONTAINER REUTILIZÁVEL */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.buttons-container-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 300px; /* Limita a largura dos botões no mobile */
    padding: 0;
}
.buttons-container-app a {
    display: block;
    width: 100%;
    padding-bottom: 20px;
}

/* ======================================= */
/* ADICIONE ESTA REGRA QUE ESTAVA FALTANDO */
/* ======================================= */
.app-button-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.app-button-image:hover {
    transform: scale(1.05);
}
/* ========================================= */
/* ESTILOS BASE (MOBILE-FIRST) */
/* ========================================= */
@media (max-width: 767px) {
/* ======================================================= */
/* ESTILOS BASE / MOBILE (FORA DE QUALQUER @MEDIA QUERY) */
/* ======================================================= */

/* SEÇÃO BENEFÍCIOS UP */
.beneficios-up-section .quais-beneficios-container {
    padding: 20px;
    max-width: 100%;
    text-align: center;
}
.beneficios-up-section h2 {
    font-size: 28px;
}
.quais-beneficios-text p {
    font-size: 16px;
    padding: 10px 20px;
}
.quais-beneficios-depoimentos {
    font-size: 14px;
    padding: 10px 20px;
    line-height: 1.2;
}
.quais-beneficios-depoimentos-desktop {
    display: none; /* Esconde no mobile */
}
.quais-beneficios-depoimentos-mobile {
    display: block; /* Mostra no mobile */
}

/* SEÇÃO DO APP */
.beneficios-app-section {
    padding: 40px 15px; /* Espaçamento da seção */
    margin-top: 100px;
}
.beneficios-app-container {
    display: flex;
    flex-direction: column; /* Empilha na vertical para mobile */
    align-items: center;
    text-align: center;
    gap: 30px; /* Espaço entre a imagem e o texto */
}
.text-app-column, .image-app-column {
    width: 100%; /* Ocupa toda a largura */
}
.beneficios-app-titulo {
    font-size: 40px;
    line-height: 1.1;
    color: #005450;
    font-family: 'Neogrotesk SC', sans-serif;
    font-weight: 800;
}
.beneficios-app-conteudo {
    padding-top: 15px;
}
.beneficios-app-conteudo p {
    font-size: 18px;
    color: black;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    font-weight: 300;
}
.beneficios-button {
    /* Fundo Verde Gradiente */
    background: linear-gradient(to bottom, #20e060, #009944);
    color: white;
    border: none; /* Sem borda, o gradiente já dá o efeito */

    /* Layout e Espaçamento */
    display: inline-block;
    margin: 60px 0;
    padding: 15px 40px;

    /* Estilos de Texto e Aparência */
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.beneficios-button:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
    .image-app-column img {
        width: 100%;
        max-width: none;
        transform: rotate(10deg);
        transition: transform 0.3s ease;
    }
.image-app-column img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Evita que a imagem fique gigante */
    display: block;
    margin: 0 auto; /* Centraliza a imagem */
    margin-top: -90px;
    padding-left: 20px;
    margin-bottom: -90px;
}

.allya-section {
    display: flex;
    flex-direction: column;    /* Itens empilhados na vertical por padrão */
    align-items: center;
    text-align: center;
    padding: 0 15px;
    margin: 20px auto 40px auto; /* Centraliza a seção e adiciona margens */
    max-width: 900px; /* Limita a largura máxima em telas grandes */
}

.allya-esquerda img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-bottom: 30px;
}

.allya-direita {
    font-size: 18px;
    text-align: center;
    padding: 0 15px;
}

.allya-direita img {
    width: 80%;
    max-width: 250px;
    height: auto;
    margin: -30 auto 20px auto; /* Centraliza o logo */
}

/* SEÇÃO DOWNLOAD APP */
.download-section {
    background-color: #fff;
    padding: 0rem 1rem;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
}
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
}
.image-div {
    width: 160%;
    margin-bottom: 0.1rem;
    padding-right: 0px;
    padding-left: 50px;
}
.image-div img {
    width: 100%;
    height: auto;
    display: block;
}
.text-and-buttons-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title {
    font-size: 2.30rem;
    font-weight: 800;
    color: #005451;

    line-height: 1.2;
    margin-bottom: 1rem;
    padding: 0 15px;
}
.description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 500px;
    padding: 0 15px;
}


.app-button-app {
    padding: 12px 1.5rem;
}

/* SEÇÃO DE PERGUNTAS FREQUENTES (FAQ) */
.faq-section {
    background-color: white;
    padding: 30px 10px;
    text-align: center;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    margin-top: 0;
}
.faq-section h2 {
    font-size: 34px;
    color: #005451;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
        line-height: 1.1;

}
.faq-accordion {
    max-width: 710px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border: 0px solid #ddd;
    margin-bottom: 15px;
}
.faq-header {
    background-color: #005451;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
        line-height: 1.6;

}
.faq-question {
    font-size: 1.25em;
    font-weight: 700;
    margin: 0;
    font-family:'Neogrotesk Ess Alt', sans-serif;
    text-align: left;

}
.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: white;
    margin-left: 10px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 15px;
}
.btn-mais-duvidas {
    background-color: #e94170;
    color: white;
    border: 2px solid #e94170;
    padding: 15px 15px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Neogrotesk Ess Alt', sans-serif;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    width: calc(100%);
    margin: 0px auto;
}
}
/* ========================================= */
/* ESTILOS DE DESKTOP (@media query) */
/* ========================================= */
@media (min-width: 768px) {
     /* SEÇÃO BENEFÍCIOS UP */
    .beneficios-up-section .quais-beneficios-container {
        padding: 20px 60px;
        max-width: 830px;
    }
    .beneficios-up-section h2 {
        font-size: 50px;
    }
    .quais-beneficios-text p {
        font-size: 30px;
        padding: 20px 40px;
    }
    .quais-beneficios-depoimentos {
        font-size: 16px;
        padding-top: 20px;
        padding-left: 50px;
        padding-right: 50px;
        line-height: 1.0;
    }
    .quais-beneficios-depoimentos-desktop {
        display: block; /* Mostra no desktop */
    }
    .quais-beneficios-depoimentos-mobile {
        display: none; /* Esconde no desktop */
    }

    .beneficios-app-section {
        padding-top: 30px;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .beneficios-app-container {
        display: flex; /* A PROPRIEDADE ESSENCIAL QUE FALTAVA! */
        flex-direction: row;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 130px;
        gap: 40px;
        text-align: left;
    }
    .text-app-column {
        flex: 1.4;
        text-align: justify;
        padding-bottom: 50px;
    }
    .image-app-column {
        flex: 1.2;
    }
    .beneficios-app-titulo {
        font-size: 60px;
        text-align: left;
        line-height: 1.1;
        font-family: 'Neogrotesk SC', sans-serif;
        font-weight: 800;
    }
    .beneficios-app-conteudo {
        padding-top: 20px;
        max-width: 700px;
    }
    .beneficios-app-conteudo p {
        font-size: 30px;
        font-family: 'Neogrotesk SC', sans-serif;
    }
    .beneficios-button {
    /* Fundo Verde Gradiente */
    background: linear-gradient(to bottom, #20e060, #009944);
    color: white;
    border: none; /* Sem borda, o gradiente já dá o efeito */

    /* Layout e Espaçamento */
    display: inline-block;
    margin: 60px 0;
    padding: 12px 40px;

    /* Estilos de Texto e Aparência */
    font-size: 2.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.beneficios-button:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
    .image-app-column img {
        width: 100%;
        max-width: none;
        transform: rotate(10deg);
        transition: transform 0.3s ease;
    }

    /* SEÇÃO ALLYA */
    .allya-section {
        max-width: 900px;
        margin: 0 auto;
        background-color: none;
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-bottom: 140px;
        margin-top: 0px;
    }

    .allya-esquerda {
        flex: 1;
    }
    
    .allya-esquerda img {
        background-color: none;
        height: 415px;
        width: auto;
        padding-left: 0px;
    }

    .allya-direita {
        flex: 1;
        font-size: 30px;
        text-align: justify;
    }

    .allya-direita img {
        background-color: none;
        height: 170px;
        width: auto;
        padding-right: 20px;
    }

    .buttons-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        max-width: 450px;
    }

    .buttons-container a {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
    
    .button-image {
        width: 80%;
        height: auto;
        cursor: pointer;
        transition: transform 0.3s ease;
        border-radius: 50px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .button-image:hover {
        transform: scale(1.05);
    }

   /* SEÇÃO DOWNLOAD APP */
    .download-section {
        padding: 0 2rem;
        margin-top: -190px; /* Puxa a seção para cima */
        margin-bottom: 100px;
    }
    .content-container {
        display: flex; /* Essencial para ativar as colunas! */
        flex-direction: row; /* Alinha os itens lado a lado */
        align-items: center; /* Centraliza as colunas verticalmente */
        text-align: left;
        gap: 4rem;
        max-width: 1100px;
        margin: 0 auto;
    }
    .image-div {
        flex: 1; /* Divide o espaço igualmente */
        padding-right: 40px;
    }
    .image-div img {
        width: 130%; /* Faz a imagem 'vazar' para o lado, como no design */
    }
    .text-and-buttons-div {
        flex: 1; /* Divide o espaço igualmente */
        align-items: flex-start; /* Alinha o conteúdo à esquerda */
    }
    .title {
        font-size: 2.8rem; /* Fontes maiores para desktop */
        margin-left: -3.5rem;
        font-style: normal;
        line-height: 1.1;
        font-family: 'Neogrotesk SC', sans-serif;
        font-weight: 800;

    }
    
    .description {
        font-size: 1.6rem;
        max-width: 580px;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        margin-left: -3.5rem;
        margin-right: 1.5rem;
    }
   .buttons-container-app {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Alinha os botões à esquerda */
        gap: 1.5rem; /* Espaço entre os botões */
        width: 100%; /* Ocupa a largura da coluna de texto */
        max-width: 450px; /* <<< CORREÇÃO: Um limite de largura razoável */
        margin-left: -3.5rem;
    }
    
    
/* SEÇÃO FAQ */
    .faq-section {
        padding: 50px 10px;
        margin-top: -140px; /* Puxa a seção para cima, como no seu original */
    }
    .faq-section h2 {
        font-size: 36px; /* Aumenta a fonte do título */
        margin-bottom: 50px;
    }
    .faq-question {
        font-size: 20px; /* Aumenta a fonte da pergunta */
    }
    .faq-item.active .faq-content {
        padding: 20px; /* Aumenta o padding da resposta */
    }
   .btn-mais-duvidas {
        display: block;          /* Garante que o botão se comporte como um bloco */
        width: 100%;             /* Ocupa 100% da largura do container pai (.faq-item) */
        max-width: none;         /* Remove o limite de 400px herdado do mobile */
        padding: 20px;           /* Padding maior para desktop */
        font-size: 20px;         /* Fonte maior para desktop */
        text-align: left;        /* Alinha o texto à esquerda, como solicitado */
        margin: 0px 0 0 0;      /* Remove a centralização e adiciona só margem no topo */
        box-sizing: border-box;  /* Garante que o padding não aumente a largura total */
    }
}

/*
* FONTES
* As definições @font-face estão corretas.
*/
/* -- Neogrotesk Ess Alt (versão normal) -- */
@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-ultralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* -- Neogrotesk Ess Alt (versão itálico) -- */
@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-ultralightit.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-lightit.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-regularit.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-boldit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk Ess Alt';
    src: url('includes/font/Fontspring-DEMO-neogroteskessalt-blackit.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* -- Neogrotesk SC (versão normal) -- */
@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-ultralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* -- Neogrotesk SC (versão itálico) -- */
@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-ultralightit.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-lightit.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-regularit.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-boldit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Neogrotesk SC';
    src: url('includes/font/Fontspring-DEMO-neogrotesksc-blackit.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}