/* ==========================================================================
   SUPER CARROSSEL MESTRE (SEÇÃO 3)
   CHAVE PARA ESTABILIDADE DE LAYOUT: Define a altura mínima do contêiner.
   ========================================================================== */
.super-carousel-container {
    padding: 0;
    /* Define a Altura Mínima para caber o Slide mais Alto (V1) */
    min-height: 600px; 
    margin-top: 0px; /* Exemplo: sobe sutilmente 100px no desktop */
    height: auto; 
    /* O fundo base do carrossel é o mesmo da V1 */
    background-color: #f8f9fa;
    z-index: 10;  
}

.art-of-living-section {
    padding: 5px 4%;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 20px auto;
}
.section-intro h2 { font-size: 2.5rem; font-weight: 500; margin-bottom: 15px; color: #1a1a1a; }
.section-intro p { font-size: 1.1rem; color: #666; line-height: 1.6; }

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.image-carousel-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
}
.art-of-living-swiper { width: 100%; height: 100%; }
.art-of-living-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

.content-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.content-tag { display: inline-block; background-color: #f4f4f4; padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 500; margin-bottom: 20px; }
.content-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: #1a1a1a; }
.content-card > p { color: #666; margin-bottom: 40px; }


/* 2. BOTÃO SOLICITAR CONTATO (POPUP) - Gradiente Luxo */
.cta-popup-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Gradiente sólido: Cinza chumbo para Preto */
    background: linear-gradient(145deg, #333333, #000000); 
    color: #ffffff !important; 
    
    padding: 15px 35px;
    border-radius: 4px; 
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Borda fina para refinamento */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
/* Ajuste do efeito de preenchimento no hover */
.cta-popup-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1a1a1a; /* Cor que "sobe" ao passar o mouse */
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-popup-trigger:hover {
    color: #ffffff; /* Texto fica branco quando o fundo preto sobe */
    transform: translateY(-5px);
    border-color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-popup-trigger:hover::after {
    height: 100%;
}/* --- NOVO ESTILO DO COMPONENTE DE FAQ (ACORDEÃO) --- */
.faq-container {
    width: 100%;
}
.faq-item {
    border-top: 1px solid #e9ecef;
}
.faq-item:last-child {
    border-bottom: 1px solid #e9ecef;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}
.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
}
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #1a1a1a;
    transition: transform 0.3s ease;
}
.faq-icon::before { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-icon::after { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-item.active .faq-icon { transform: rotate(135deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}
.faq-answer p { color: #666; line-height: 1.7; padding-bottom: 0; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 25px; }

.sub-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}
.sub-feature-item { display: flex; align-items: flex-start; gap: 15px; }
.sub-feature-icon svg { width: 24px; height: 24px; stroke: #1a1a1a; stroke-width: 1.5; }
.sub-feature-text h4 { font-size: 1rem; font-weight: 500; margin-bottom: 5px; color: #1a1a1a; }
.sub-feature-text p { font-size: 0.9rem; color: #666; line-height: 1.5; }


/* ==========================================================================
   CONFIGURAÇÕES DE FONTES LOCAIS PARA SEÇÃO 6
   ========================================================================== */
:root {
    --color-text-light: #ffffff;
    --font-heading: 'Cormorant Garamond', serif; 
    --font-body: 'Poppins', sans-serif;
}


/* ==========================================================================
   SEÇÃO 6 / SUPER BLOCO 6 - RESUMO DE IMPACTO (APENAS IMAGEM + GRADIENTE SUAVE)
   ========================================================================== */

.impact-summary-section {
    position: relative;
    padding: 120px 8%;
    color: var(--color-text-light); 
    overflow: hidden;
}

/* --- CAMADA 1: A IMAGEM DE FUNDO (20% Opacidade) --- */
.impact-summary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/fundo seção 6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 💥 Correção: Opacidade mantida em 0.2 para a foto ser visível. */
    opacity: 5.2; 
    
    z-index: 1; 
}

/* --- CAMADA 2: GRADIENTE PRETO QUASE TRANSPARENTE (AJUSTE FINAL) --- */
.impact-summary-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 💥 Gradiente linear de preto (70% opacidade no topo/base, quase transparente) */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.7) 0%, /* Início com sombra */
        rgba(0, 0, 0, 0.0) 00%, /* Meio transparente */
        rgba(0, 0, 0, 0.7) 100% /* Fim com sombra */
    );
    
    z-index: 2; 
}

/* --- O CONTEÚDO E TIPOGRAFIA PROFISSIONAL --- */
.impact-summary-container {
    position: relative; 
    z-index: 3;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Título de Conceito (Cormorant Garamond) */
.concept-column .concept-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-text-light);
    text-shadow: none; 
}

/* Parágrafos de Conceito (Poppins) */
.concept-column p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9); 
    text-shadow: none;
}

.concept-column p:last-of-type {
    margin-top: 20px;
}

.data-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Números de Dados (Cormorant Garamond) */
.data-point .data-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-shadow: none;
}


/* ==========================================================================
   FAMÍLIA 8: SEÇÃO 8 - CTA FINAL
   ========================================================================== */
/* Container de Alinhamento na Seção 8 */
.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* 1. BOTÃO WHATSAPP (VENDAS) - Estilo Orgânico e Energético */
.btn-vendas-zap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 50px; /* Estilo Pílula */
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-vendas-zap:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* 2. BOTÃO SOLICITAR CONTATO (POPUP) - Estilo Minimalista e Premium */
.cta-popup-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 4px; /* Bordas levemente retas */
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Efeito de preenchimento elegante no hover */
.cta-popup-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1a1a1a;
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-popup-trigger:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-popup-trigger:hover::after {
    height: 100%;
}

/* AJUSTE PARA O ÍCONE NO BOTÃO WHATSAPP */
.btn-vendas-zap img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .btn-vendas-zap, .cta-popup-trigger {
        width: 100%;
        max-width: 320px;
    }
}
/* ==========================================================================
   SUPER BLOCO V3 (Antiga Seção 8: CTA FINAL)
   ========================================================================== */

/* --- Estilos Padrão (Desktop-First) --- */
.cta-section {
    position: relative;
    /* Atenção: padding: 180px 30%; é um padding lateral muito alto, mas mantido. */
    padding: 190px 30%; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    background-image: linear-gradient(
        /* 💥 AJUSTE CRÍTICO: 5% de opacidade (0.05) para uma sombra sutil */
        rgba(0, 0, 0, 0.35), 
        rgba(0, 0, 0, 0.35)
    ), 
    url('/assets/images/1_0_frente.png');
    
    background-position: center center;
    
    /* 💥 AJUSTE CRÍTICO: ALONGAMENTO FINAL PARA 150% DE ALTURA */
    background-size: 100% 150%; 
    
    background-attachment: fixed; /* Parallax no desktop */
    z-index: 5;
}

.cta-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 30px; 
}
.cta-title { 
    font-family: 'Poppins', sans-serif; 
    font-size: 3.5rem; 
    font-weight: 500; 
    color: #fff; 
    line-height: 1.3; 
    max-width: 800px; 
    order: 2; 
}
.cta-button { 
    font-family: 'Poppins', sans-serif; 
    font-size: 0.9rem; 
    font-weight: 500; 
    text-decoration: none; 
    color: #111; 
    background-color: #fff; 
    padding: 12px 30px; 
    border-radius: 50px; 
    border: 1px solid #fff; 
    transition: background-color 0.3s ease, color 0.3s ease; 
    order: 1; 
}
.cta-button:hover { 
    background-color: transparent; 
    color: #fff; 
}
.whatsapp-link { 
    order: 3; 
    display: inline-block; 
    transition: transform 0.3s ease; 
}
.whatsapp-link:hover { 
    transform: scale(1.1); 
}
.whatsapp-icon { 
    width: 50px; 
    height: 50px; 
    display: block; 
    object-fit: contain; 
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO CTA
   ========================================================================== */
@media (max-width: 767px) {
    .cta-section { 
        padding: 120px 6%; /* Reduz o padding vertical no mobile */
        
        /* Remove o Parallax no mobile para melhorar a performance */
        background-attachment: scroll; 
        
        /* Mantemos o alongamento (background-size) no mobile também */
        background-size: 100% 140%; 
    }
    .cta-title { 
        font-size: 2.5rem; /* Reduz o título principal */
    }
    .whatsapp-icon { 
        width: 40px; 
        height: 40px; /* Reduz o ícone do WhatsApp */
    }
}

















/* ==========================================================================
   CONSOLIDAÇÃO DA RESPONSIVIDADE (SEÇÃO 3 UNIFICADA)
   ========================================================================== */

/* --- 1. AJUSTES GERAIS EM TABLET/MOBILE (Até 1024px) --- */
@media (max-width: 1024px) {

    /* Seção V2 (Resumo de Impacto - Antiga Seção 6) */
    .impact-summary-section {
        padding: 0px 4%; /* Reduz o padding */
    }
    .impact-summary-container {
        /* Muda o grid de 3 colunas para 1 coluna */
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .concept-column .concept-title {
        font-size: 2.5rem; /* Reduz o tamanho do título */
    }
    .data-column {
        /* Coloca os data-points lado a lado no tablet */
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
    }
    .data-point {
        /* Garante que o texto se alinhe à esquerda nos data-points */
        text-align: left; 
    }
}


/* --- 2. AJUSTES FINOS PARA MOBILE (Até 768px/991px) --- */
@media (max-width: 768px) {
    
    /* 💥 AJUSTE CRÍTICO DE SOBREPOSIÇÃO: SEÇÃO 3 SOBE NO MOBILE */
    .super-carousel-container {
        /* O valor de -130px força a seção a subir por cima da Seção 1 */
        margin-top: -320px; 
        
        /* O z-index é vital para garantir que ela fique acima do conteúdo do Hero */
        position: relative; 
        z-index: 10; 
    }
    
    /* Seção V1 (Arte de Viver - Antiga Seção 3) */
    .art-of-living-content {
        padding: 50px 4%; /* Reduz o padding vertical */
    }
    .main-grid {
        /* Muda o layout de 2 colunas para 1 coluna */
        grid-template-columns: 1fr;
    }
    .image-carousel-container {
        /* Ajusta a proporção da imagem para mobile */
        aspect-ratio: 16 / 9;
    }
    .content-card {
        padding: 30px 20px; /* Reduz o padding interno do card */
    }
    .content-card h3 {
        font-size: 1.5rem; /* Reduz o título principal */
    }

    /* Seção V3 (CTA Final - Antiga Seção 8) */
    .cta-content {
        padding: 100px 6%; /* Reduz o padding vertical */
        background-attachment: scroll; /* Remove o parallax para melhor performance */
    }
    .cta-title {
        font-size: 2.2rem; /* Reduz o título do CTA */
    }
}


/* --- 3. AJUSTES PARA TELAS PEQUENAS (Até 600px/575px) --- */
@media (max-width: 600px) {

    /* Seção V1 - Sub-features */
    .sub-features { 
        /* Coloca os sub-features em coluna */
        grid-template-columns: 1fr; 
    }

    /* Seção V2 - Data Points */
    .impact-summary-container {
        gap: 30px; 
    }
    .data-column {
        /* Coloca os data-points em coluna (um em cima do outro) */
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .data-point {
        width: 100%;
        text-align: center; /* Centraliza o texto quando estão em coluna */
    }
    .data-point .data-number {
        font-size: 2rem;
    }
}