/* -- ✅ VARIÁVEIS DE CORES -- */
:root {
    --preto: #252525;
    --branco: #FFFFFF;
    --cinza: #F4F4F4;
    --verde: #BFC6B1;
    --verde-escuro: #29371E;
    --magenta: #933C4DE0;
}

/* -- ✅ RESET DE ESTILOS -- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html {
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-style: light;
    line-height: 1.5;

    color: var(--preto);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* -- ✅ BOTÃO FIXO DO WHATSAPP -- */ 
.whatsapp-button {
    position: fixed;
    text-decoration: none;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}
.whatsapp-button i {
    margin-top: 10px;
    font-size: 35px;
    color: white;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}


/* -- ✅ BOTÃO DE AGENDAMENTO (VIA WHATSAPP) -- */
.botao-agendamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--magenta);
    border: 3px solid var(--magenta); 
    border-radius: 30px; 
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    background-color: transparent; 
    margin-top: 30px;
    margin-bottom: 30px;
}
.botao-agendamento i {
    font-size: 20px;
    margin-left: 8px;
}
.botao-agendamento:hover {
    background-color: var(--magenta);
    color: var(--branco);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}


/* -- ✅ SEÇÃO 01: PRINCIPAL -- */
.principal {
    padding: 20px;
    display: flex;
    justify-content: center; 
}

.conteudo-principal {
    display: flex;
    position: relative;
    justify-content: space-between;
    background-color: var(--cinza);
    border-radius: 30px;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
}

.forma {
    top: 0;
    left: 0;
    border-top-left-radius: 30px;
    position: absolute;
    max-width: 50%;
    max-width: 660px;
}

.texto-principal {
    position: relative;
    padding-left: 50px;
    max-width: 55%;
}
.logo {
    max-width: 350px;
    margin: 20px 0px 20px 0px;
}

.texto-principal h1 {
    color: var(--verde-escuro);
    font-weight: normal;
    font-size: 40px;
    margin-bottom: 20px;
}
.texto-principal p {
    color: var(--preto);
    font-weight: light;
    font-size: 18px;
    margin-bottom: 30px;
}

.imagem-principal{
    display: flex;
    position: relative;
}
.imagem-principal img {
    min-width: 500px;
    max-height: 800px;
    align-self: flex-end;
}

@media (max-width: 1024px) {
    .conteudo-principal {
        flex-direction: column;
    }

    .forma {
        max-width: 100%;
        border-top-right-radius: 30px;

    }

    .logo {
        margin: 20px auto 10px;
        max-width: 300px;
    }

    .texto-principal {
        text-align: center; 
        max-width: 100%;
        padding: 30px;
    }
    .texto-principal h1 {
        font-size: 2.3rem;
    }
    .texto-principal p {
        font-size: 1.5rem;
    }

    .imagem-principal {
        display: flex;
        justify-content: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .texto-principal h1 {
        font-size: 1.8rem;
    }
    .texto-principal p {
        font-size: 1.2rem;
    }

    .imagem-principal img {
        min-width: 300px;
        max-width: 75%
    }
}


/* -- ✅ SEÇÃO 02: BENEFÍCIOS -- */
.beneficios {
    display: flex;
    justify-content: center;
    padding: 20px;   
}

.conteudo-beneficios {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas por padrão */
    gap: 20px; /* Espaçamento entre os itens */
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 20px; /* Espaçamento interno */
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total */
}

.beneficio {
    max-width: 300px; /* Tamanho máximo para cada benefício */
    width: 100%; /* Ocupa 100% da largura da coluna */
    padding: 20px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto; /* Centraliza o benefício na coluna */
}
.beneficio:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.beneficio i {
    font-size: 35px;
    color: var(--magenta);
    display: inline-block;
}

.beneficio h3 {
    margin-bottom: 10px;
}
.beneficio p {
    font-size: 14px;
}

@media (max-width: 1400px) {
    .conteudo-beneficios {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    }
}

@media (max-width: 600px) {
    .conteudo-beneficios {
        grid-template-columns: repeat(1, 1fr); /* 1 coluna */
    }
}


/* -- ✅ SEÇÃO 03: ATENDIMENTO -- */
.atendimento {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 20px;
}

.conteudo-atendimento{
    background-color: var(--cinza);
    border-radius: 30px;
    max-width: 1400px;
    position: relative;
    padding: 80px;
    width: 100%;  
}
.conteudo-atendimento > h2 {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 2rem;
    color: var(--verde-escuro); 
    text-align: center;
}
.subtitulo-atendimento {
    text-align: center; 
    max-width: 800px;
    margin: auto;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.passo-atendimento {
    display: flex;
    align-items: flex-start;
    margin: 40px;
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--verde);
}

.indicador-passo {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-right: 20px;  
}
.numero-atendimento {
    font-size: 4.6rem;
    color: var(--verde-escuro);
    font-weight: bold;
    line-height: 1;
    margin: 0; 
    padding: 0px;
    flex: 0 0 auto;
}
.passo-atendimento h2 {
    color: var(--verde-escuro);
    margin-right: 20px;
}

.passo-atendimento p {
    padding-bottom: 15px;
}
.atendimento strong {
    color: var(--magenta);
}
.fases-sessoes li {
    margin-bottom: 10px;
    margin-left: 50px;
}

.chamada-atendimento {
    text-align: center; 
    max-width: 645px; 
    margin: 0 auto;
}
.chamada-atendimento .subt-junto {
    text-align: center; 
    max-width: 700px;
    margin: auto;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.chamada-atendimento .botao-agendamento {
    display: inline-block;
}

@media (max-width: 800px) {

    .conteudo-atendimento{
        align-items: center;
        padding: 20px;
    }
    .conteudo-atendimento > h2 {
        font-size: 1.8rem;
    }
    .subtitulo-atendimento {
        font-size: 1.0rem;
    }
    .chamada-atendimento .subt-junto {
        font-size: 1.0rem;
    }

    .indicador-passo {
        align-items: center;
        text-align: center;
    }
    .numero-atendimento {
        padding-right: 10px;
    }
    .passo-atendimento h2 {
        margin-right: 0;
        margin-bottom: 20px;
    }
  
    .passo-atendimento {
        flex-direction: column; 
        align-items: center;
        text-align: center; 
        margin: 20px;
    }

    .atendimento-texto .texto {
        text-align: center;
    }
    .fases-sessoes li {
        margin: 20px;
    }  
}


/* -- SEÇÃO 04: DEPOIMENTOS -- */
.depoimentos {
    display: flex;
    justify-content: center;
    margin: 0 auto; 
    padding: 20px;
}
.depoimentos-container {
    position: relative; 
    border: 1px solid #ccc;
    border-radius: 30px;
    max-width: 1400px;
    width: 100%;
    padding: 20px 60px;
    overflow: hidden;
}

.depoimentos h2 {
    font-size: 2rem;
    color: #29371E;
    margin-bottom: 40px;
    text-align: center;
}

.carrossel-depoimentos {
    margin: 0 auto; 
    max-width: 95%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.depoimento {
    flex: 0 0 100%; /* Cada card ocupa 100% da largura por padrão */
    box-sizing: border-box;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin: 0 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; 
}

.depoimento-cabecalho {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.depoimento-inicial {
    width: 40px;
    height: 40px;
    background-color: #BFC6B1;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
}
.depoimento-info {
    flex: 1;
}
.depoimento-nome {
    font-size: 1.5rem;
    color: #29371E;
    margin-bottom: 5px;
}
.depoimento-cidade {
    font-size: 1rem;
    color: #252525;
}

.depoimento-texto {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    transition: all 0.3s ease;
    position: relative;
}
.ler-mais {
    display: none;
    color: #933C4D;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
}

.depoimento.expandido .depoimento-texto {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.depoimento.expandido .ler-mais {
    display: inline-block; 
}
.depoimento:not(.expandido) .depoimento-texto:has(+ .ler-mais) {
    display: -webkit-box;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--verde-escuro);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.nav-button.prev-depoimentos {
    left: 10px;
}
.nav-button.next-depoimentos {
    right: 10px;
}

.indicadores-depoimentos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.indicadores-depoimentos span {
    width: 10px;
    height: 10px;
    background-color: #BFC6B1;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.indicadores-depoimentos span.ativo {
    opacity: 1;
    background-color: #933C4D;
}


@media (min-width: 800px) {
    .depoimentos-container {
        padding: 20px 20px;
    
    }
     
    .carrossel-depoimentos {
        margin: 0 auto; 
        max-width: 95%;
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .depoimento {
        flex: 0 0 calc(33.333% - 20px); /* 3 cards por linha em telas maiores */
        box-sizing: border-box;
        padding: 20px;
        margin: 0 10px;

    }

    .depoimento-nome {
        font-size: 1.0rem;
    }
    .depoimento-cidade {
        font-size: 0.8rem;
        color: #252525;
    }
    
    .depoimento-texto {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5em;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-button {
        padding: 5px;
    }
    .nav-button.prev-depoimentos {
        left: 5px;
    }
    .nav-button.next-depoimentos {
        right: 5px;
    }
}



/* --  SEÇÃO 05: SOBRE MIM  -- */
.sobre-mim {
    padding: 20px;
    padding-bottom: 0px;
    display: flex;
    justify-content: center; 
}
.conteudo-sobremim {
    background-color: var(--cinza);
    border-radius: 30px 30px 0 0; 
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    width: 100%;
}

.foto {
    flex: 1;
}
.foto img {
    width: 100%;
    max-width: 550px;
    min-width: 300px;
    height: auto; 
    border-radius: 20px;
}

.texto {
    flex: 1;
    min-width: 300px;
}
.titulo {
    font-weight: 300; 
    font-size: 16px;
    text-transform: uppercase;
}
.nome {
    font-size: 30px;
    margin-top: 2px;
    margin-bottom: 20px;
    color: var(--verde-escuro);
}


/* --  SEÇÃO 06: SOBRE O ESPAÇO  -- */
.espaco {
    padding: 20px;
    padding-top: 0px;
    display: flex;
    justify-content: center; 
}
.conteudo-espaco {
    background-color: var(--cinza);
    border-radius: 0 0 30px 30px; 
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 40px;
}

.endereco {
    display: flex;
    align-items: top;
    margin-top: 5px;
}
.endereco-link {
    color: #403c2b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.endereco-link:hover {
    color: #727b6d;
}

.foto-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.carrossel {
    position: relative;
    width: 100%;
    max-width: 450px;
     
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.carrossel-imagens {
    display: flex;
    flex: 1;
    transition: transform 0.5s ease-in-out;
}
.carrossel-imagens img {
    border-radius: 20px;
    width: 100%;
    display: block;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .conteudo-sobremim, 
    .conteudo-espaco {
        text-align: center;
        padding: 30px 20px;
    }
    
    .texto {
        margin: 0 auto;
       
    }
    
    .foto, 
    .foto-section {
        margin: 0 auto 20px auto;
    }
    
    .carrossel {
        max-width: 100%;
    }
    
    .botao-agendamento {
        margin: 0 auto;
        margin-top: 15px;
        display: block;
        width: fit-content;
    }
}


/* -- ✅ SEÇÃO 07: DÚVIDAS FREQUENTES  -- */
.faq-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}
.faq-section strong {
    color: var(--magenta);
}

.faq-item {
    margin-bottom: 10px;
    padding: 10px;
    overflow: hidden;
}

.faq-item .faq-question {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    cursor: pointer; 
    width: 100%; 
}

.faq-item .faq-question span {
    font-weight: bold;
    color: var(--preto);
}

.faq-item .faq-question .icon {
    font-size: 20px;
    color: var(--magenta);
    margin-left: 10px;
    cursor: pointer; 
    -webkit-text-stroke: 1px currentColor;
}

.faq-item .faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    color: var(--preto);
    margin-top: 10px;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid var(--preto); 
}

.faq-answer a:hover {
    text-decoration: none;
    color: #933c4d9e;
}





/* --  SEÇÃO 08: ÚLTIMO CTA  -- */
.cta-final {
    background: linear-gradient(to bottom, white 50%, var(--verde) 50%);
    padding: 40px 20px;
    text-align: center;
}
  
.cta-container {
    background-color: var(--cinza);
    width: 100%;
    max-width: 1400px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    margin: 0 auto;
}
  
.cta-message {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--verde-escuro);
    margin-bottom: 15px;
}

.cta-message, .botao-agendamento {
    position: relative;
    z-index: 2; 
}

.fundo-cta {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
    width: 100%;
    height: 100%;
}

.fundo-cta img {
    position: absolute;
    width: auto;
    max-width: 10%;
    height: auto;
    margin: 10px;
    max-width: 85px;
}

.fundo-cta img:nth-child(1) { /* top-right */
    top: 0;
    right: 0;
}
.fundo-cta img:nth-child(2) { /* bottom-right */
    bottom: 0;
    right: 0;
}
.fundo-cta img:nth-child(3) { /* top-left */
    top: 0;
    left: 0;
}
.fundo-cta img:nth-child(4) { /* bottom-left */
    bottom: 0;
    left: 0;
}
  
@media (max-width: 800px) {
    .cta-message {
        font-size: 2rem;
    }
    .fundo-cta img {
        max-width: 15%;
    }
}

  
/* --  RODAPÉ -- */
footer {
    background-color: var(--verde);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    width: 100%;
}

.conteudo-rodape {
    display: flex;
    flex-wrap: wrap;
    max-width: 1440px;
    width: auto; /* Alterado para se ajustar ao conteúdo */
    justify-content: center; /* Centraliza as colunas horizontalmente */
    gap: 60px; /* Espaço proporcional entre colunas */
    margin: 0 auto;
}

/* COLUNAS - Tamanho conforme conteúdo */
.coluna {
    flex: 0 1 auto; /* Não cresce, encolhe conforme necessário */
    width: auto;
    padding: 0 20px;
}

/* Alinhamentos específicos */
.coluna:nth-child(1),
.coluna:nth-child(3) {
    text-align: left;
}

.coluna:nth-child(2) {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;          /* Remove margem superior */
    padding-top: 0;         /* Remove padding superior */
    justify-content: flex-start; /* Alinha tudo no topo */
    
}

/* IMAGENS - Limitando a 200px */
.coluna:nth-child(2) .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-top: 0;
}

.coluna:nth-child(2) .credencial {
    max-width: 60px;
    width: 100%;
    height: auto;
    margin-top: 5px;
}

/* LINHA DIVISÓRIA - Centralizada e limitada */
.traco-fino {
    width: 80%;
    max-width: 800px;
    margin: 30px auto;
    border: none;
    height: 1px;
    background-color: rgba(225, 230, 222, 0.5);
}

/* RODAPÉ INFERIOR - Ajuste fino */
.direitos-e-creditos {
    max-width: 1440px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .conteudo-rodape {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .conteudo-rodape {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    
    .coluna,
    .coluna:nth-child(1),
    .coluna:nth-child(3) {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .direitos-e-creditos {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}