/* ==========================================================================
   1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS (BASE)
   ========================================================================== */
:root {
    /* Cores do Projeto */
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --neon-green: #00ff88; 
    --neon-dark: #00cc6a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --color-yellow: #ffd700;
    --color-gold: #ffaa00;

    /* Tipografia e Efeitos */
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --radius-lg: 50px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utilitários de Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 { font-weight: 800; line-height: 1.2; }
p { font-weight: 300; line-height: 1.6; color: var(--text-gray); }
img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }
li { list-style: none; }

/* Animações de Scroll (Base) */
.hidden-element { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.fade-in-up { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   2. COMPONENTES REUTILIZÁVEIS (BOTÕES)
   ========================================================================== */

/* Botão Principal (CTA Pulse) */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-gold));
    color: #000; 
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); 
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); 
}

/* Animação de Pulso */
.pulse { animation: pulse-animation 2s infinite; }

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Botão do Header */
.btn-header {
    background: var(--color-yellow);
    color: #000;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.btn-header:hover { 
    background: var(--color-yellow); 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); 
}

/* ==========================================================================
   3. HEADER (NAVEGAÇÃO)
   ========================================================================== */
.liquid-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text { 
    font-size: 1.5rem; 
    font-weight: 900; 
    color: #fff; 
    letter-spacing: 1px; 
}

.logo-text span { color: var(--neon-green); }

/* ==========================================================================
   4. HERO SECTION (VÍDEO E PLAYER)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Fundo da Hero */
#bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), var(--black)); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 75px;
    width: 100%;
}

/* Conteúdo Esquerdo */
.left-col { flex: 1.2; }

.left-col h1 { 
    font-size: 3.4rem; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    color: #fff;
}

.left-col h1 span { color: var(--neon-green); }

.left-col p { 
    font-size: 1.15rem; 
    margin-bottom: 25px; 
    color: #ddd; 
}

/* Prova Social (Avatares) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.avatars-stack { display: flex; margin-right: 10px;}

.avatar-circle {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    margin-right: -15px; 
    background-color: #333;
    position: relative;
}

.rating-text-col { display: flex; flex-direction: column; }
.rating-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.stars { color: var(--color-yellow); font-size: 1rem; }
.score-num { color: #fff; font-weight: 800; font-size: 1rem; margin-left: 5px; }
.client-count { color: #ccc; font-size: 0.85rem; }

/* Wrapper CTA e Mini Badges */
.cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.security-badges-mini {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: #ccc;
}

.security-badges-mini i { color: var(--neon-green); margin-right: 5px; }

/* Conteúdo Direito (Vídeo e Thumbs) */
.right-col { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    max-width: 500px;
}

.video-box-wrapper {
    position: relative; 
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    cursor: pointer;
}

.video-cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-box-wrapper:hover .video-cover-img { transform: scale(1.05); }

.play-btn-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 1.5rem;
    z-index: 2;
}

/* Thumbs Line */
.video-thumbnails-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.thumb-card {
    flex: 1;
    height: 75px;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.thumb-card:hover { border-color: var(--neon-green); }

.thumb-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.thumb-card:hover img { opacity: 1; }

.thumb-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.8rem;
}


/* ==========================================================================
   6. MEDIA BAR 
   ========================================================================== */
.media-bar {
    background: #111; 
    padding: 20px 0; 
    border-top: 1px solid #222; 
    border-bottom: 1px solid #222;
    overflow: hidden; 
    display: flex; 
    align-items: center;
    margin-bottom: 40px;
}

.media-bar p { 
    white-space: nowrap; 
    margin-left: 5%; 
    font-weight: 700; 
    color: #555; 
    font-size: 0.8rem; 
    margin-right: 20px; 
}

.marquee-container { flex: 1; overflow: hidden; position: relative; }

.marquee-content { 
    display: flex; 
    gap: 50px; 
    animation: scroll-left 15s linear infinite; 
}

.media-logo { 
    font-size: 1.5rem; 
    font-weight: 900; 
    color: #444; 
    white-space: nowrap; 
}

@keyframes scroll-left { 
    0% { transform: translateX(100%); } 
    100% { transform: translateX(-100%); } 
}


/* ==========================================================================
   6. PROVA SOCIAL
   ========================================================================== */
.testimonials { 
    background: #0f0f0f; 
}

.testimonials-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.text-side { flex: 1; }

.section-title.text-left { 
    text-align: left; 
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle.text-left { 
    text-align: left; 
    color: #888;
    max-width: 700px;
    margin-bottom: 0;
}

/* Composição das Fotos (Stack) */
.photos-stack-composition {
    position: relative;
    margin-top: 50px;
    width: 400px;
    height: 120px;
    flex-shrink: 0;
    justify-content: center;
}

.stack-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #333;
    border: 3px solid #fff;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.stack-card:hover {
    z-index: 10 !important;
    transform: scale(1.1) rotate(0deg) !important;
    border-color: var(--neon-green);
}

/* Rotações Individuais */
.left-card   { left: 0;   top: 0; z-index: 1; transform: rotate(30deg); }
.center-card { left: 75px;  top: 0; z-index: 2; transform: rotate(-30deg); }
.right-card  { left: 150px; top: 0; z-index: 3; transform: rotate(30deg); }
.last-card   { left: 225px; top: 0; z-index: 4; transform: rotate(-30deg); }

/* ==========================================================================
   7. FORMULAÇÃO E GRID DE INGREDIENTES
   ========================================================================== */
.two-col { display: flex; align-items: center; gap: 30px; }
.col-media, .col-text { flex: 1; }
.col-text h2 { 
    font-size: 2.2rem; 
    margin-bottom: 25px; 
    color: var(--neon-green); 
}

/* Grid de Mini Ingredientes */
.mini-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ingredient-card.mini {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card.mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
    border-color: #444;
}

.ing-img-circle {
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid var(--neon-dark);
    overflow: hidden;
}

.ing-text h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ing-text p {
    font-size: 0.8rem;
    color: #bbb;
    line-height: 1.3;
}

/* Tags de destaque nos ingredientes */
.ing-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}
.ing-tag.rare { background: #5dade2; color: #000; }
.ing-tag.effective { background: #f39c12; color: #000; }

/* Linha de Ação (Botões Saber Mais / Comprar) */
.action-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #444;
    color: #bbb;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* ==========================================================================
   8. PRODUTO INTERATIVO + CARROSSEL (BENEFÍCIOS)
   ========================================================================== */
.feature-section { padding: 80px 0; background: var(--black); }

.section-subtitle-2 {color: #888; }

.interactive-product-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-hero {
    width: 80%;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.float-box {
    position: absolute;
    background-color: #333;
    border: 2px solid #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    background-size: cover;
    background-position: center;
    z-index: 3;
}

.box-1 { width: 100px; height: 100px; top: 0; left: 20%; border-color: var(--neon-green); z-index: 1; }
.box-2 { width: 80px; height: 80px; top: 10%; right: 25%; }
.box-3 { width: 60px; height: 60px; top: 50%; left: 20%; border-color: var(--neon-green); }
.box-4 { width: 70px; height: 70px; bottom: 10%; right: 15%; z-index: 4; }
.box-5 { width: 85px; height: 85px; bottom: 5%; left: 25%; z-index: 4; }

.lift-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
}

.carousel-container { overflow: hidden; margin-top: -25px; margin-bottom: -25px; }

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide { min-width: 100%; }

.lift-card-ingredient-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 25px;
    margin: 10px;
}

.card-content-left { text-align: left; padding-right: 15px; }
.card-content-left h3 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.card-content-left p { font-size: 0.95rem; color: #b0b0b0; }

.image-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    border: 3px solid #2ecc71;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.image-circle img { width: 80%; border-radius: 50%; }

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2ecc71;
    cursor: pointer;
    z-index: 10;
}

.btn-prev { left: -40px; }
.btn-next { right: -40px; }

.check-list { list-style: none; margin-top: 30px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.check-list li { font-size: 0.85rem; color: #fff; }
.check-list i { color: var(--neon-green); margin-right: 5px; }


/* ==========================================================================
   9. BENEFITS SECTION
   ========================================================================== */
.benefits-section { 
    padding: 50px 0; 
    background: var(--black); 
}

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 10px; color: #fff; }
.section-subtitle { text-align: center; margin-bottom: 50px; color: #888; }

/* Grid Principal de 3 Colunas */
.three-col-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* Estrutura Base do Card de Benefício */
.benefit-card {
    text-align: left; 
    background: var(--card-bg); 
    padding: 30px 20px;
    border-radius: 15px; 
    border: 1px solid #222; 
    transition: var(--transition);
    position: relative;
}

.benefit-card p { 
    font-size: 0.75rem; 
    margin-bottom: 10px;
}

.benefit-card h5 {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

/* Container de Mídia (GIF + Thumbs Reais) */
.benefit-card .gif-box {
    width: 100%; 
    padding: 40px;
    background: black;
    border-radius: 10px; 
    overflow: hidden;
    margin-bottom: 20px; 
    position: relative;
}

.benefit-card .gif-box img {
    width: 100%; 
    aspect-ratio: 3/4; 
    object-position: center top;
}

/* Tags de Tamanho e Thumbs Reais */
.body-size-tag {
    position: absolute; top: 10px; left: 10px;
    background: rgba(0, 0, 0, 0.7); 
    border: 1px solid var(--neon-green);
    color: #fff; padding: 4px 8px; border-radius: 5px;
    font-size: 0.75rem; z-index: 10;
}

.real-body-thumbs {
    position: absolute; bottom: 10px; left: 0; width: 100%;
    display: flex; justify-content: center; gap: 10px; z-index: 10;
}

.thumb-img {
    width: 85px; height: 85px; margin-bottom: 10px;
    border: 2px solid #fff; border-radius: 5px; 
    background-size: cover; background-position: center;
    transition: 0.2s;
}

.thumb-img:hover { transform: scale(1.1); border-color: var(--neon-green); }

/* Sistema de Risco (Barra + Tag) */
.risk-row {
    display: flex;
    align-items: flex-end; /* Alinha a barra com o texto da tag */
    gap: 15px;
    width: 90%;
    margin: 0 auto 20px auto;
}

.risk-info { flex: 2; text-align: left; }

.risk-info span {
    font-size: 0.7rem; color: #888; font-weight: 700;
    margin-bottom: 5px; display: block; text-transform: uppercase;
}

.risk-bar { 
    width: 90%; height: 6px; 
    background: #333; border-radius: 10px; 
    overflow: hidden; 
}

.risk-bar .fill { height: 100%; border-radius: 10px; transition: width 1s ease-out; }

.risk-tag-box {
    flex: 1; /* Ocupa 1 parte */
    background: #333;
    padding: 6px 4px;
    text-align: center;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    color: #000; /* Texto preto para contraste */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Caixa de Protocolo e Preço */
.protocol-time {
    margin-top: 25px; background: rgba(255,255,255,0.05);
    padding: 10px 15px; border-radius: 8px; border-left: 3px solid #555;
    display: flex; justify-content: space-between; align-items: center;
    gap: 15px;
}

.proto-text { font-size: 0.9rem; color: #fff; line-height: 1.4; }
.proto-text strong { color: var(--neon-green); display: block; font-size: 0.7rem; margin-bottom: 2px; }

.proto-img {
    width: 80px; height: 80px; object-fit: contain;
    margin-top: -20px;
    margin-bottom: -10px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
    flex-shrink: 0;
}

/* ==========================================================================
   9. ESTILIZAÇÃO POR NÍVEL (CORES E ANIMAÇÕES)
   ========================================================================== */

/* Nível 1 */
.level-1 { border-color: rgba(255, 215, 0, 0.3); }
.level-1:hover { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); border-color: var(--color-yellow); }
.level-1 .alert-badge { color: var(--color-yellow); border-color: var(--color-yellow); }
.level-1 p { font-size: 0.75rem;}
.level-1 .fill { background: yellow; box-shadow: 0 0 10px var(--color-yellow); }
.level-1 .risk-tag-box { padding: 10px; color: yellow; border-color: var(--color-yellow); }

/* Nível 2 */
.level-2 { border-color: rgba(255, 107, 0, 0.3); }
.level-2:hover { box-shadow: 0 0 25px rgba(255, 107, 0, 0.3); border-color: var(--color-orange); transform: scale(1.02); }
.level-2 .alert-badge { color: var(--color-orange); border-color: var(--color-orange); }
.level-2 p { font-size: 0.75rem;}
.level-2 .fill { background: orange; box-shadow: 0 0 10px var(--color-orange); }
.level-2 .risk-tag-box {padding: 10px; color: orange; border-color: var(--color-orange); }


/* Nível 3 */
.level-3 { border-color: rgba(255, 0, 60, 0.5); background: linear-gradient(to bottom, #141414, #1f0505); }
.level-3:hover { box-shadow: 0 0 30px rgba(255, 0, 60, 0.5); border-color: var(--color-red); transform: scale(1.05); }
.level-3 .alert-badge { background: var(--color-red); color: #fff; border-color: var(--color-red); box-shadow: 0 0 15px var(--color-red); }
.level-3 p { font-size: 0.75rem;}
.level-3 .fill { background: red; box-shadow: 0 0 15px var(--color-red); animation: bar-pulse 2s infinite; }
.level-3 .risk-tag-box {padding: 10px;  background: red; color: #fff; box-shadow: 0 0 10px rgba(255, 0, 60, 0.4); }
.pulse-critical { animation: border-pulse 2.5s infinite; }

@keyframes border-pulse {
    0% { box-shadow: 0 0 0 rgba(255, 0, 60, 0.2); } 50% { box-shadow: 0 0 20px rgba(255, 0, 60, 0.4); border-color: red; } 100% { box-shadow: 0 0 0 rgba(255, 0, 60, 0.2); }
}
@keyframes bar-pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }



/* ==========================================================================
   11. FAQ SECTION: GRID E LAYOUT DIVIDIDO
   ========================================================================== */
.faq-section { 
    padding: 60px 0; 
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* FAQ maior que o Card de Idade */
    gap: 50px;
    align-items: start;
}

/* ==========================================================================
   12. COLUNA ESQUERDA: PROTOCOLO ETÁRIO (CARD STICKY)
   ========================================================================== */
.faq-left-col .protocol-box {
    padding: 25px;
    border: 1px solid #333;
    background: #111;
    border-radius: var(--radius-md);
    position: sticky;
    top: 100px; /* Mantém o card visível no scroll */
}

/* Cabeçalho do Card Etário */
.proto-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.header-title-group h3 { 
    font-size: 1.2rem; 
    text-transform: uppercase; 
}

/* Thumbs de Idade (Sobrepostos) */
.header-thumbs-row { display: flex; padding-left: 10px; }

.age-thumb {
    width: 38px; height: 38px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid #444;
    margin-left: -10px; 
    position: relative;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.age-thumb.t1 { border-color: var(--neon-green); z-index: 1; transform: rotate(15deg); }
.age-thumb.t2 { border-color: var(--color-yellow); z-index: 2; transform: rotate(-15deg); }
.age-thumb.t3 { border-color: #fff; z-index: 3; transform: rotate(10deg); }

/* Inner Cards (Até 35, 35 a 55, 55+) */
.proto-item.inner-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.proto-item.inner-card:hover {
    border-color: #555;
    transform: translateX(5px);
}

.card-head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.age-title { font-size: 0.95rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }

.focus-badge {
    font-size: 0.65rem; font-weight: 900; padding: 4px 8px; border-radius: 4px;
    text-transform: uppercase; color: #000;
}

.focus-badge.young  { background: var(--neon-green); }
.focus-badge.mature { background: var(--color-yellow); }
.focus-badge.senior { background: #e0e0e0; }

.card-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, #333, transparent);
    margin: 12px 0;
}

/* ==========================================================================
   13. COLUNA DIREITA: ACCORDION E ROTINA
   ========================================================================== */
.accordion details { 
    background: #1a1a1a; 
    margin-bottom: 15px; 
    border-radius: 10px; 
    border: 1px solid #333; 
    overflow: hidden;
}

.accordion summary { 
    padding: 20px; 
    cursor: pointer; 
    font-weight: 700; 
    position: relative; 
    list-style: none;
}

.accordion summary::after { 
    content: '+'; position: absolute; right: 20px; 
    color: var(--neon-green); font-size: 1.5rem; 
}

.accordion details[open] summary::after { content: '-'; }

.accordion .answer { 
    padding: 20px; 
    color: #ccc; 
    border-top: 1px solid #333; 
}

/* Grid de Rotina (Dentro do FAQ) */
.routine-grid { display: flex; flex-direction: column; gap: 15px; }

.r-item {
    display: flex; gap: 15px; align-items: flex-start;
    padding-bottom: 10px; border-bottom: 1px solid #333;
}

.r-item:last-child { border-bottom: none; }
.r-item i { color: var(--neon-green); font-size: 1.1rem; margin-top: 3px; }
.r-item strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 2px; }

/* ==========================================================================
   14. FAQ FOOTER (EXPLOSÃO E GARANTIA)
   ========================================================================== */
.faq-footer-explode.left-variant {
    position: relative;
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-left: 4px solid var(--color-yellow);
    border-radius: 12px;
    padding: 25px 30px 25px 120px;
    margin: 60px auto 30px;
    width: 70%;
}

.explode-img-left {
    position: absolute;
    left: 20px; top: -35px;
    height: calc(100% + 70px);
    width: auto;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
    transform: rotate(-5deg);
    z-index: 5;
}

.inner-content { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 30px; }

.warning-text { font-size: 0.9rem; flex: 1; }

.btn-download-pdf {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--neon-green); color: var(--neon-green);
    padding: 12px 20px; border-radius: 6px; font-weight: 700;
}

.btn-download-pdf:hover { background: var(--neon-green); color: #000; }



/* ==========================================================================
   16. PRICING SECTION: HEADER E LAYOUT DE DECISÃO
   ========================================================================== */
.pricing-section { 
    padding: 80px 0; 
    background: #000; 
    margin-top: -50px; 
}

.decision-layout-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.text-center-block {
    flex: 1;
    max-width: 600px;
    text-align: center;
    z-index: 5;
}

/* Grupos de Fotos Laterais (Antes/Depois) */
.photos-side-group {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.photos-side-group .stack-card {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 15px;
    background-size: cover;
    box-shadow: var(--shadow-dark);
}

/* Posicionamento das 4 fotos de impacto */
.side-p1 { left: 0; top: 10px; transform: rotate(-15deg); z-index: 1; }
.side-p2 { left: 40px; top: -10px; transform: rotate(10deg); z-index: 2; border-color: var(--neon-green) !important; }
.side-p3 { right: 40px; top: -10px; transform: rotate(-10deg); z-index: 2; border-color: var(--neon-green) !important; }
.side-p4 { right: 0; top: 10px; transform: rotate(15deg); z-index: 1; }

/* ==========================================================================
   17. PRODUCT ROWS (KITS HORIZONTAIS)
   ========================================================================== */
.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px 25px;
    width: 60%;
    max-width: 900px;
    margin: 15px auto;
    transition: var(--transition);
}

.product-row:hover {
    border-color: #555;
    transform: translateY(-2px);
}

.row-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.row-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.row-info strong { color: #fff; font-size: 1rem; text-transform: uppercase; }
.row-info span { color: #ccc; font-size: 0.8rem; }

.row-price {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--neon-green);
    white-space: nowrap;
}

.row-price .currency { font-size: 0.8rem; color: #888; margin-right: 2px; }

.btn-pricing-ghost {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-pricing-ghost:hover {
    border-color: #ffd700;
    color: #000;
    background: #ffd700;
}

.btn-promo-ghost {
background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;     
    justify-content: center;       
    padding: 18px 20px; 
    width: 80%; 
    max-width: 300px;
    margin: 0 auto; 
    margin-top: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-promo-ghost:hover {
    border-color: #ffd700;
    color: #000;
    background: #ffd700;
}

/* ==========================================================================
   18. PRICING GRID (CARDS DE DESTAQUE)
   ========================================================================== */
.pricing-grid { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    margin-top: 10px;
}

.price-card { 
    background: #111; 
    border: 1px solid #333; 
    border-radius: 20px; 
    padding: 40px; 
    width: 100%; 
    max-width: 350px; 
    text-align: center; 
    position: relative; 
}

.best-seller { 
    border: 2px solid var(--neon-green); 
    transform: scale(1.05); 
    background: #161616; 
}

.badge-best { 
    position: absolute; 
    top: -15px; 
    left: 35%; 
    transform: translateX(-50%); 
    background: var(--neon-green); 
    color: #000; 
    padding: 5px 20px; 
    font-weight: 900; 
    border-radius: 20px; 
    font-size: 0.9rem; 
    white-space: nowrap;
}

.potes-img { height: 150px; margin-bottom: 15px; }
.potes-img img { height: 100%; width: auto; object-fit: contain; }

.old-price { color: #ccc; font-size: 0.85rem; margin-top: 20px; }
.price { font-size: 2.7rem; font-weight: 900; color: #fff; margin: 5px 0; }
.price span { font-size: 1rem; }
.cash-price { font-size: 0.85rem; color: darkorange; font-weight: 700; margin-bottom: 10px;}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 5px;
}

.promo-container p {
    font-size: 0.85rem;
    margin: 0; 
    color: var(--text-gray);
}

.tag-off {
    background: #d00000; 
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px; 
    text-transform: uppercase;
    line-height: 1;
}

.checkout-trust-badge {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.checkout-trust-badge img {
    max-width: 50%; /* Tamanho no Desktop */
    height: auto;
}

/* ==========================================================================
   20. GUARANTEE SECTION (COMPROMISSO E SEGURANÇA)
   ========================================================================== */
.guarantee { 
    background: #1a1a1a; 
    padding: 60px 0; 
    border-top: 1px solid #333; 
}

.guarantee-box { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 40px; 
    max-width: 850px; 
    margin: 0 auto; 
}

.guarantee-badge-img { 
    width: 180px; 
    height: auto; 
    flex-shrink: 0; 
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5)); 
    transition: var(--transition);
}

.guarantee-badge-img:hover { 
    transform: scale(1.05) rotate(-2deg); 
}

.guarantee-text-col { text-align: left; }

.guarantee-text-col h3 { 
    color: var(--neon-green); 
    font-size: 1.5rem; 
    margin-bottom: 12px; 
    text-transform: uppercase; 
}

.guarantee-text-col p { 
    color: #ccc; 
    font-size: 1rem; 
    line-height: 1.6; 
}

/* ==========================================================================
   21. SITE FOOTER (RODAPÉ DE 3 COLUNAS)
   ========================================================================== */
.site-footer { 
    background: #0a0a0a; 
    border-top: 1px solid #222; 
    padding: 50px 0; 
    margin-top: 50px; 
}

.footer-grid { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 30px; 
}

/* Coluna 1: Badges de Segurança */
.col-badges { flex: 1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.secure-site { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    background: #333; 
    color: #fff; 
    padding: 8px 15px; 
    border-radius: 5px; 
    font-size: 0.75rem; 
}

.secure-site i { color: var(--neon-green); }
.badge-img { height: 20px; width: auto; opacity: 0.8; }

/* Coluna 2: Textos e Disclaimer */
.col-footer-text { 
    flex: 2; 
    text-align: center; 
    padding: 0 30px; 
    border-left: 1px solid #222; 
    border-right: 1px solid #222; 
}

.col-footer-text .copy { color: #fff; font-size: 0.9rem; margin-bottom: 8px; }
.col-footer-text .disclaimer { color: #666; font-size: 0.75rem; line-height: 1.5; }
.col-footer-text .cnpj { font-size: 0.7rem; color: #444; margin-top: 10px; }

/* Coluna 3: Links e Ajuda */
.col-links { flex: 1; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

.footer-btn-neutral { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    background: transparent; 
    border: 1px solid #333; 
    color: #888; 
    padding: 10px 15px; 
    border-radius: 6px; 
    font-size: 0.8rem; 
    width: 160px; 
    transition: var(--transition);
}

.footer-btn-neutral:hover { 
    border-color: #555; 
    color: #fff; 
    background: rgba(255,255,255,0.05); 
}

/* ==========================================================================
   22. SISTEMA DE MODAIS (VÍDEO E AJUDA)
   ========================================================================== */
.modal-overlay { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.95); 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.modal-overlay.active { display: flex; opacity: 1; }

.modal-content { 
    position: relative; 
    width: 90%; 
    max-width: 850px; 
    background: #000; 
    border-radius: 15px; 
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15); 
    animation: modalZoom 0.3s ease; 
}

@keyframes modalZoom { 
    from { transform: scale(0.9); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

/* Botão Fechar (X) */
.close-modal, .close-help { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    color: #fff;
    font-size: 30px; 
    line-height: 1;
    cursor: pointer; 
    z-index: 100;
    transition: var(--transition); 
}

.close-modal:hover, .close-help:hover { color: var(--neon-green); }

/* Container do Vídeo Iframe */
.video-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    border-radius: 12px; 
    overflow: hidden; 
}

.video-container iframe { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
}

/* Modal de Ajuda Específico */
.help-modal-box { 
    max-width: 600px; 
    background: #111; 
    padding: 30px; 
    max-height: 85vh; 
    overflow-y: auto; 
}

.help-gif { 
    width: 100%; 
    border-radius: 10px; 
    margin: 20px 0; 
    border: 1px solid #333; 
}

.help-text-content p { font-size: 0.95rem; margin-bottom: 15px; color: #ccc; }




/* ==========================================================================
   RESPONSIVIDADE - BASE & HERO
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        width: 92%; 
        padding: 0 10px;
    }

    h1 { font-size: 1.8rem !important; word-wrap: break-word; }
    h2 { font-size: 1.5rem !important; }
    p { font-size: 0.95rem !important; }

@media (max-width: 900px) {
    .left-col h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero { padding-top: 80px; padding-bottom: 40px; }
    .hero-content { 
        flex-direction: column; 
        gap: 30px; 
        text-align: center; 
    }
    
    .left-col h1 { font-size: 2.1rem; padding: 0; }
    .hero-social-proof { justify-content: center; }
    
    .right-col { width: 100%; max-width: 100%; padding: 0;}
    .logo-text { font-size: 1.2rem; }
    .btn-header { padding: 8px 18px; font-size: 0.8rem; }
}

/* ==========================================================================
   RESPONSIVIDADE TESTIMONIALS
   ========================================================================== */
   
   @media (max-width: 768px) {
    .testimonials-header-flex, .two-col { flex-direction: column; text-align: center; width: 100%;}
    .section-title.text-left, .section-subtitle.text-left { margin-top: 20px; text-align: center; }
    .photos-stack-composition { justify-content: center; margin: 0 auto; margin-top: 40px; margin-bottom: -80px; width: 250px; transform: scale(0.85); }

    
    
/* ==========================================================================
   RESPONSIVIDADE FEATURES
   ========================================================================== */
   
   @media (max-width: 768px) {
    .mini-ingredients-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Força 2 colunas */
        gap: 10px;
    }
    .ingredient-card.mini {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }
    .ing-img-circle {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    .ing-text h3 {
        justify-content: center;
}    
    .ing-text p {   
            font-size: 0.85rem; 

    }
   @media (max-width: 768px) {
    .action-row { justify-content: center; }
    .interactive-product-wrapper { transform: scale(0.9); }
    .mini-ingredients-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Força 2 colunas */
        gap: 10px;
    }
    .ingredient-card.mini {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }
    .ing-img-circle {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    .ing-text h3 {
        justify-content: center;
}    
    .ing-text p {   
            font-size: 0.85rem; 

    }
    
    .lift-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 10px auto 0;
}
    .carousel-btn {
        width: 35px;
        height: 35px;
        background: rgba(0, 255, 136, 0.2); /* Fundo leve para visibilidade */
        backdrop-filter: blur(4px);
    }
    .btn-prev { left: 5px !important; } /* Traz para dentro da tela */
    .btn-next { right: 5px !important; }
    .card-content-left { width: 100%; padding-right: 0; }
}

    @media (max-width: 768px) {
    /* Empilha as colunas e centraliza */
    .two-col {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .col-text, .col-media {
        width: 100%;
    }

    /* Remove a largura fixa que causava o erro */
    .section-subtitle-2 {
        font-size: 0.95rem !important;
        max-width: 100%; 
        padding: 0 5px; /* Margem interna de segurança */
    }

/* ==========================================================================
   RESPONSIVIDADE BENEFITS
   ========================================================================== */
@media (max-width: 768px) {
    .section-subtitle {padding: 0; }
    .three-col-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .three-col-grid { grid-template-columns: 1fr; }
    .benefit-card { max-width: 400px; margin: 0 auto; }
    .risk-row { gap: 10px; }
    .risk-tag-box { font-size: 0.65rem; }
}

/* ==========================================================================
   RESPONSIVIDADE FAQ
   ========================================================================== */
@media (max-width: 768px) {

    .faq-layout { padding: 0px; grid-template-columns: 1fr; gap: 20px; }
    .faq-left-col .protocol-box { position: static; }
    .text-left-mobile { padding: 20px; text-align: center !important; }
}


@media (max-width: 768px) {
    .faq-footer-explode.left-variant {
        flex-direction: column; padding: 40px 15px 20px; width: 100%; text-align: center;
    }
    .inner-content { flex-direction: column; }
    .explode-img-left { height: 80px; top: -40px; left: 50%; transform: translateX(-50%); }
    .btn-download-pdf { width: 100%; justify-content: center; }
}

/* ==========================================================================
   RESPONSIVIDADE PRICING
   ========================================================================== */
@media (max-width: 768px) {
    .decision-layout-flex { flex-direction: column; }
    .photos-side-group { display: none; } /* Oculta fotos laterais no mobile para focar no CTA */
    
.product-row {
        width: 100% !important;
        flex-direction: row !important; /* Mantém horizontal */
        justify-content: flex-start;
        gap: 12px;
        padding: 12px;
    }
    
    .row-info { text-align: left; }
    .row-info strong { font-size: 0.85rem; }
    .row-info span {display: none;}
    .row-img { display: none; }

    .pricing-grid { flex-direction: column; align-items: center; }
    .best-seller { transform: scale(1); margin: 20px 0; }
    .row-price .currency {display: none;}
}

    .price-card {margin-top:-30px; margin-bottom: 30px; max-width: 100%;}

    .row-img { 
        display: block !important; /* Garante que a imagem apareça */
        width: 50px; 
        height: 50px; 
    }
    
    .row-price { font-size: 1.1rem; }
    
    .btn-pricing-ghost { padding: 8px 12px; font-size: 0.75rem; }
    
    @media (max-width: 768px) {
    .checkout-trust-badge {
        margin-top: 5px; /* Reduz margem no mobile */
    }

    .checkout-trust-badge img {
        max-width: 85%; /* Aumenta a largura para 85% no celular para melhor leitura */
    }
}

/* ==========================================================================
    RESPONSIVIDADE FINAL
   ========================================================================== */
@media (max-width: 768px) {

    .guarantee-box {
        flex-direction: row !important; /* Força horizontal */
        align-items: center;
        gap: 15px;
        padding: 20px 10px;
    }
    .guarantee-badge-img {
        width: 80px !important; /* Reduz para caber */
    }
    .guarantee-text-col h3 { font-size: 1rem; }
    .guarantee-text-col p { font-size: 0.8rem !important; }

    .site-footer { padding: 30px 0; }
    .footer-grid {
        flex-direction: column;
        gap: 25px;
    }
    .col-footer-text {
        order: -1; /* Texto em cima */
        padding: 0;
        border: none;
    }
    .col-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .col-links {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    .footer-btn-neutral { width: auto; min-width: 140px; }

    .help-modal-box { padding: 20px; width: 95%; }
}

/* Ajuste específico para telas muito pequenas (iPhone SE/etc) */
@media (max-width: 380px) {
    .row-price { display: none; } /* Esconde o preço na linha se o espaço for crítico */
    .mini-ingredients-grid { grid-template-columns: 1fr !important; } /* Aqui volta pra 1 col se for muito pequeno */
}

