/* Minhas variáveis de cores globais */
:root {
    --bg-cream: #FDFBF7; /* Nudes/brancos elegantes */
    --bg-pink: #DCA9A5;  /* Rosê */
    --bg-purple: #BBA5A6; /* Rosê acinzentado */
    --btn-neon: #DCA9A5;  /* Botão rosê/rosa elegante */
    --btn-neon-hover: #C59692;
    
    --text-black: #4A3B32; /* Marrom escuro quase preto suave */
    --text-white: #ffffff;
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset básico */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-black);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Minha Animação de Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Estilos dos Vídeos --- */
.video-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 8px solid #ffffff;
    background-color: #000;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.video-frame:hover { transform: rotate(0deg) scale(1.02); }
.video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; }

.video-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 4px solid #ffffff;
    background-color: #000;
}
.video-card video { width: 100%; height: 100%; display: block; object-fit: cover; }


/* --- Efeitos de Pulso nos Botões --- */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 169, 165, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(220, 169, 165, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 169, 165, 0); }
}
@keyframes pulse-white {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-cta {
    background-color: var(--btn-neon);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.15rem;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
    border: none;
    box-shadow: 0 10px 20px rgba(220, 169, 165, 0.4);
}
.pulse-button { animation: pulse 2.5s infinite; }
.btn-cta:hover { background-color: var(--btn-neon-hover); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(220, 169, 165, 0.5); }

.btn-white {
    background-color: #ffffff;
    color: var(--text-black);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-white.pulse-button { animation: pulse-white 2.5s infinite; }

/* --- Cabeçalho (Hero) --- */
.hero { padding: 80px 0 40px; min-height: 90vh; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero-text h1 { font-family: var(--font-title); font-size: 4rem; line-height: 1.05; text-transform: uppercase; margin-bottom: 20px; }
.highlight-pink { color: var(--bg-pink); }
.hero-text p { font-size: 1.2rem; margin-bottom: 40px; line-height: 1.6; color: #4a4a4a; }

/* --- Seção de Dores --- */
.pain-section {
    background-image: linear-gradient(rgba(253,251,247,0.85), rgba(253,251,247,0.85)), url('img/story_stickers_light_bg.png');
    background-size: 400px;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed; 
    padding: 100px 0;
    color: var(--text-black);
}
.pain-section h2 { font-family: var(--font-title); text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 50px; text-shadow: 0 2px 10px rgba(220, 169, 165, 0.3); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.pain-box { background: rgba(74, 59, 50, 0.85); padding: 40px; border-radius: 20px; height: 100%; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: white; }
.pain-box.good { background: rgba(255, 255, 255, 0.97); color: var(--text-black); border: 2px solid var(--btn-neon); box-shadow: 0 10px 30px rgba(220,169,165,0.2); transform: scale(1.02); }
.pain-box h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 25px; text-transform: uppercase; }
.pain-box ul li { list-style: none; margin-bottom: 18px; font-size: 1.1rem; display: flex; align-items: flex-start; gap: 12px; line-height: 1.4; font-weight: 500;}
.icon-x { font-weight: bold; color: #DC5E5E; min-width: 20px; }
.icon-check { font-weight: bold; color: var(--btn-neon); font-size: 1.4rem; min-width: 20px; }

/* --- Vitrine --- */
.showcase { padding: 100px 0; }
.showcase h2 { font-family: var(--font-title); text-align: center; font-size: 3rem; text-transform: uppercase; color: var(--bg-pink); }
.subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 50px; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.showcase-item img { border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s; }
.showcase-item:hover img { transform: translateY(-10px); }
.cta-center { text-align: center; }

/* --- APP DETAIL (LISTA DE NICHOS ATUALIZADA) --- */
.app-detail { padding: 80px 0; background-color: #f0ede0; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 50px; } /* Mudei align-items para start */

.app-text h2 { 
    font-family: var(--font-title); 
    font-size: 3rem; 
    text-transform: uppercase; 
    color: var(--bg-pink); 
    margin-bottom: 20px; 
}

/* Estilo da Lista Nova */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Cria 2 colunas iguais */
    gap: 10px 20px; /* Espaço entre linhas e colunas */
    padding: 0;
    list-style: none; /* Remove a bolinha padrão feia */
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Cria a bolinha personalizada com a cor da marca */
.feature-list li::before {
    content: "•"; /* Bolinha */
    color: var(--bg-pink); /* Cor ROSA da identidade */
    font-size: 1.5rem;
    margin-right: 10px;
    line-height: 1;
}

/* Pequeno efeito ao passar o mouse para dar vida */
.feature-list li:hover {
    transform: translateX(5px);
    color: var(--bg-purple);
}

/* Ajuste Mobile: Volta para 1 coluna se a tela for pequena */
@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr; /* 1 coluna no celular para leitura fácil */
        gap: 8px;
    }
    
    .app-text { text-align: left; } /* Alinha texto a esquerda fica melhor pra listas */
    .app-text h2 { text-align: center; } /* Mantém título centralizado se preferir */
}

/* --- How it Works (App em funcionamento) --- */
.how-it-works { padding: 90px 0; background-color: var(--bg-cream); }
.how-it-works h2.section-title { font-family: var(--font-title); text-align: center; font-size: 2.8rem; text-transform: uppercase; color: var(--text-black); margin-bottom: 50px; text-shadow: 0 2px 10px rgba(220, 169, 165, 0.2); }

.mobile-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--bg-pink) #f0ede0; /* Firefox */
}
.mobile-carousel-wrapper::-webkit-scrollbar { height: 8px; }
.mobile-carousel-wrapper::-webkit-scrollbar-track { background: #f0ede0; border-radius: 10px; }
.mobile-carousel-wrapper::-webkit-scrollbar-thumb { background: var(--bg-pink); border-radius: 10px; }

.mobile-carousel {
    display: flex;
    gap: 30px;
    padding: 0 10px;
}

.mobile-card {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    height: 540px;
    border-radius: 40px;
    border: 8px solid #ffffff;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}
.phone-mockup:hover {
    transform: translateY(-8px);
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-caption {
    margin-top: 25px;
    background: #ffffff;
    border: 2px solid var(--btn-neon);
    color: var(--text-black);
    padding: 12px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 20px rgba(220,169,165,0.15);
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.2;
}
.mobile-caption:hover {
    transform: scale(1.03);
}
.mobile-caption.fill-pink {
    background: var(--bg-pink);
    color: #ffffff;
    border-color: var(--bg-pink);
}
.mobile-caption .icon {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .how-it-works { padding: 60px 0; }
    .how-it-works h2.section-title { font-size: 2rem; }
    .mobile-card { width: 230px; }
    .phone-mockup { height: 480px; }
    .mobile-carousel { gap: 20px; }
}

/* --- Special Bonus Module --- */
.special-bonus-module {
    padding: 100px 0;
    position: relative;
    background-color: transparent;
}
.special-bonus-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(220, 169, 165, 0.2);
    border: 3px solid var(--btn-neon);
    backdrop-filter: blur(10px);
}
.bonus-badge {
    display: inline-block;
    background-color: var(--bg-pink);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.special-bonus-text h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 20px;
    line-height: 1.2;
}
.special-bonus-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}
.bonus-features {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}
.special-bonus-image {
    display: flex;
    justify-content: center;
}
.bonus-card-floating img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid white;
    max-width: 320px;
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}
.bonus-card-floating:hover img {
    transform: rotate(0deg) scale(1.05);
}

@media (max-width: 768px) {
    .special-bonus-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .special-bonus-text h2 {
        font-size: 2.2rem;
    }
    .bonus-card-floating img {
        max-width: 250px;
    }
}

/* --- Bônus --- */
.bonus-section { padding: 80px 0; background-color: var(--bg-cream); }
.bonus-section h2 { font-family: var(--font-title); text-align: center; font-size: 2.5rem; text-transform: uppercase; color: var(--bg-pink); margin-bottom: 50px; }
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
.bonus-card { background: linear-gradient(135deg, #FBF8F5 0%, #F5EAE8 100%); color: var(--text-black); padding: 30px; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.04); display: flex; align-items: flex-start; gap: 20px; border-left: 6px solid var(--bg-pink); transition: transform 0.3s; }
.bonus-card:hover { transform: translateX(10px); }
.bonus-icon { font-size: 2.2rem; background: rgba(220,169,165,0.2); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; color: var(--bg-pink); }
.bonus-content h3 { font-family: var(--font-title); font-size: 1.4rem; margin-bottom: 10px; text-transform: uppercase; font-weight: 700; color: var(--text-black); }
.bonus-content p { font-size: 1.05rem; line-height: 1.5; color: #5B4E45; }

/* --- Prova Social (Background Fixo) --- */
.social-proof {
    background-image: linear-gradient(rgba(253,251,247,0.85), rgba(253,251,247,0.85)), url('img/story_stickers_light_bg.png');
    background-size: 400px;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden; 
}
.social-proof h2 { font-family: var(--font-title); text-align: center; font-size: 3rem; text-transform: uppercase; color: var(--text-black); text-shadow: 0 2px 10px rgba(220, 169, 165, 0.3); }
.subtitle-white { text-align: center; color: var(--text-black); margin-bottom: 50px; font-size: 1.2rem; font-weight: bold; text-shadow: 0 1px 5px rgba(220, 169, 165, 0.2); }

/* --- MEU CARROSSEL CSS (ANIMAÇÃO PURA INFINITA) --- */
.custom-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    /* Calcula para andar exatamente 50% da largura, que corresponde aos itens originais antes dos duplicados saltarem */
    100% { transform: translateX(calc(-50%)); } 
}

/* Configuração de cada slide */
.carousel-slide {
    flex: 0 0 auto; 
    width: 260px; /* Largura fixa */
    margin-right: 20px;
    transition: transform 0.3s;
}

.carousel-slide img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 3px solid white;
}

/* Efeito ao passar o mouse */
.carousel-slide:hover {
    transform: scale(1.05);
}


/* --- Garantia e Oferta --- */
.guarantee-section { background: linear-gradient(135deg, #E8D7D0 0%, #DCA9A5 100%); padding: 140px 0 80px; color: var(--text-black); text-align: center; position: relative; }
.guarantee-box { border: 2px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.35); border-radius: 40px; padding: 60px 40px; max-width: 700px; margin: 0 auto; position: relative; backdrop-filter: blur(15px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.seal-img { width: 200px; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1)); z-index: 10; }
.guarantee-box h2 { font-family: var(--font-title); font-size: 3rem; text-transform: uppercase; margin-top: 110px; margin-bottom: 20px; font-weight: 700; color: var(--text-black); }
.price-card { background: rgba(255,255,255,0.7); padding: 30px; border-radius: 20px; margin: 30px auto; max-width: 450px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.old-price { text-decoration: line-through; opacity: 0.8; font-size: 1.2rem; margin-bottom: 5px; color: #8F7167; font-weight: 500; }
.price-highlight { display: flex; flex-direction: column; line-height: 1; margin: 15px 0; }
.price-highlight small { font-size: 1.2rem; color: #5B4E45; margin-bottom: 5px; font-weight: 500;}
.price-highlight span { font-family: var(--font-title); font-size: 4.5rem; font-weight: 700; color: var(--bg-pink); text-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.cash-price { font-size: 1.05rem; color: #4A3B32; font-weight: 600; }
.payment-icons { margin-top: 25px; font-size: 1rem; color: #4A3B32; font-weight: 500; display: flex; justify-content: center; gap: 20px; }

/* --- FAQ --- */
.faq-section { padding: 80px 0; background-color: var(--bg-cream); }
.faq-section h2 { font-family: var(--font-title); text-align: center; font-size: 3rem; text-transform: uppercase; color: var(--text-black); margin-bottom: 50px; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #ddd; }
.faq-question { width: 100%; background: white; border: none; outline: none; padding: 20px; text-align: left; font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); color: var(--text-black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-radius: 8px; transition: background 0.3s; }
.faq-question:hover { background-color: #f9f9f9; }
.faq-question.active { color: var(--bg-pink); }
.faq-icon { font-size: 1.5rem; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: transparent; }
.faq-answer p { padding: 0 20px 20px 20px; color: #555; line-height: 1.6; }

/* --- Rodapé --- */
footer { text-align: center; padding: 60px 20px; background: #1a1a1a; color: #888; font-size: 0.85rem; }
.disclaimer-text { max-width: 800px; margin: 0 auto 20px; line-height: 1.5; }
.footer-links { margin: 30px 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-links button { background: none; border: none; color: #fff; cursor: pointer; text-decoration: underline; font-size: 0.9rem; font-family: var(--font-body); }
.footer-links button:hover { color: var(--bg-pink); }

/* --- Modais --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000; justify-content: center; align-items: center; padding: 20px; }
.modal-content { background: white; width: 100%; max-width: 600px; padding: 40px; border-radius: 20px; position: relative; max-height: 80vh; overflow-y: auto; text-align: left; color: #333; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; font-weight: bold; cursor: pointer; color: #888; }
.close-modal:hover { color: #000; }
.modal-body p { margin-bottom: 15px; line-height: 1.6; }

/* --- Mobile Responsivo --- */
@media (max-width: 768px) {
    .hero-container, .comparison-grid, .showcase-grid, .app-grid { grid-template-columns: 1fr; }
    
    .hero-text { order: 1; text-align: center; }
    .hero-img { order: 2; margin: 0 auto; width: 100%; display: flex; justify-content: center; }
    .video-frame { max-width: 280px; transform: rotate(0deg); }
    .hero-text h1 { font-size: 2.5rem; }

    .app-img { order: 1; margin: 0 auto 30px; display: flex; justify-content: center; width: 100%; }
    .video-card { max-width: 280px; }
    .app-text { order: 2; text-align: center; }

    .pain-section { background-attachment: scroll; }
    .pain-box { height: auto; margin-bottom: 20px; background: rgba(0,0,0,0.7); }
    .pain-box.good { background: white; }

    .showcase-grid { max-width: 320px; margin: 0 auto 40px; }
    .guarantee-section { padding-top: 160px; }
    .guarantee-box h2 { font-size: 2.2rem; margin-top: 90px; }
    
    .bonus-card { flex-direction: column; text-align: center; align-items: center; }
    .price-highlight span { font-size: 4rem; }
    
    /* Ajuste para o carrossel no mobile */
    .carousel-slide { width: 240px; margin-right: 15px; }
}