/* VARIABLES - ESTILO BAKE ME */
:root {
    --bg-main: #F9F4EC;
    --bg-aviso: #FF4C9E; 
    --bg-secundario: #C75B80;
    --bg-card: #FFFFFF;
    
    --text-primary: #4D4D4D;
    --text-secondary: #565656;
    --text-highlight-wine: #62171B;
    --text-highlight-red: #EF475B;
    --text-white: #FFFFFF;
    
    --btn-bg: #F50062;
    --btn-shadow: #91003A;
    --bad-red: #d35a5a;
    --border-pink: #9E5573;
    
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* UTILITIES */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.highlight-gold { color: var(--text-highlight-red); font-weight: 800; font-style: italic; }
.highlight-bad { color: var(--text-highlight-wine); font-weight: 800; font-size: 1.3rem; margin-top: 1rem; font-style: italic;}
.section { padding: 5rem 0; }
.section-title {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 2.8rem;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* BOTÃO PRINCIPAL COM EFEITO 3D */
.btn-cta {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px; /* Cantos arredondados Bake Me */
    box-shadow: 0 9px 0 -2px var(--btn-shadow); /* Hard shadow 3D */
    transition: all 0.15s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-cta:hover { transform: translateY(2px); box-shadow: 0 7px 0 -2px var(--btn-shadow); }
.btn-cta:active { transform: translateY(4px); box-shadow: 0 5px 0 -2px var(--btn-shadow); }
.btn-cta.secondary {
    background: transparent;
    border: 3px solid var(--btn-bg);
    color: var(--btn-bg);
    box-shadow: none;
}
.giant-btn { font-size: 1.7rem; padding: 1.5rem 3rem; width: 100%; max-width: 700px; }

/* TOP BANNER */
.top-banner {
    background: #DD1111; /* Vermelho forte de urgência */
    color: white;
    text-align: center;
    padding: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(221, 17, 17, 0.4);
}

@keyframes siren-alarm {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.3) rotate(20deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.3) rotate(-20deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.siren {
    display: inline-block;
    animation: siren-alarm 0.5s infinite running;
    font-size: 1.5rem;
    vertical-align: middle;
}

/* 1. HERO */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text { width: 100%; }

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 800;
    font-style: italic;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-highlight-wine);
    font-weight: bold;
}
.benefit-list i {
    color: var(--btn-bg);
    font-size: 1.5rem;
}

.hero-image { position: relative; width: 100%; max-width: 800px; margin: 0 auto 3rem; }
.mockup-img {
    width: 100%;
    border-radius: 8px;
    border: none;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(239, 71, 91, 0.05) 0%, transparent 70%);
    z-index: -1;
}

/* 2. CONEXÃO */
.connection { background-color: var(--bg-main); }
.story-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 8px solid var(--text-highlight-wine);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.story-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 800;
}

.pain-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pain-list li {
    color: var(--text-highlight-wine);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.inner-thoughts {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* 3. VIRADA */
.tipping-point { background: var(--bg-secundario); color: white; }
.tipping-point .section-title { color: white; }
.tipping-point .highlight-gold { color: var(--bg-main); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.feature-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
}
.feature-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.2); }
.icon-wrapper {
    font-size: 3rem;
    color: var(--bg-main);
    margin-bottom: 1rem;
}
.feature-item p { font-weight: 600; font-size: 1.2rem; }

/* GALERIA DE RESULTADOS (O QUE VAI APRENDER) */
.portfolio { background: var(--bg-main); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--bg-main);
    transition: transform 0.3s ease;
    background: #FFF;
}
.portfolio-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--border-pink);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

/* 4. ENTREGA & 6. BENEFÍCIOS */
.delivery, .benefits-list { background: var(--bg-main); }
.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--border-pink);
}

.side-img { width: 100%; border-radius: 8px; }

.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}
.check-list i { color: var(--text-highlight-vermelho); font-size: 1.8rem; color: var(--btn-bg);}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* 5. BÔNUS */
.bonus {
    background: var(--bg-aviso);
    position: relative;
    z-index: 1;
}
.bonus .section-title { color: white; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    border: 2px solid var(--border-pink);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--text-highlight-wine);
    margin-bottom: 1.5rem;
}
.glass-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
}
.bonus-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}
.glass-card:hover .bonus-img {
    transform: translateY(-8px) scale(1.02);
}
.price-strike { text-decoration: line-through; opacity: 0.6; font-size: 1rem; color: var(--text-primary);}
.price-free { color: var(--btn-bg); font-size: 1.8rem; font-weight: 900; }

/* 7 & 8 PARA QUEM É */
.who-is-for { background: var(--bg-main); }
.double-column { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.who-box {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid var(--btn-bg);
}
.not-for-who { border-top: 5px solid var(--bad-red); }
.box-title {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.cross-list { list-style: none; }
.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.cross-list i { color: var(--bad-red); font-size: 1.5rem; margin-top: 3px; }
.small-text li { font-size: 1.1rem; align-items: flex-start; }
.small-text i { margin-top: 3px; }

/* 8.5 PROVA SOCIAL */
.testimonials {
    background-color: #F2E8DC; /* Fundo levemente diferente */
    text-align: center;
}
.testimonials .section-title { margin-bottom: 1rem; }
.testimonials .section-subtitle {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    opacity: 0.9;
    font-weight: 500;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--border-pink); }
.stars {
    color: #FACC15;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    gap: 0.3rem;
}
.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
}
.author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-pink);
}
.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-highlight-wine);
}

/* 9. OFERTAS */
.offers { background: var(--bg-secundario); }
.offers .section-title { color: white; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--border-pink);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--btn-bg);
}

.pricing-card.premium {
    background: var(--bg-card);
    border: 4px solid var(--btn-bg);
    padding: 4rem 2rem;
    transform: scale(1.05);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pricing-card.premium:hover {
    transform: scale(1.08) translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(245, 0, 98, 0.25);
}

.badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--bg-aviso);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.plan-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 500;
}
.plan-features li { margin-bottom: 1rem; display: flex; gap: 0.8rem; }
.plan-features i { color: var(--bg-secundario); font-size: 1.2rem;}
.plan-features .disabled { opacity: 0.4; }
.plan-features .disabled i { color: var(--text-secondary); }

.price-box { margin-bottom: 2rem; }
.old-price { text-decoration: line-through; opacity: 0.6; display: block; margin-bottom: 0.5rem; color: var(--text-primary);}
.urgency { color: var(--text-highlight-red); font-weight: bold; margin-bottom: 0.5rem; }
.current-price { color: var(--text-highlight-wine); display: flex; justify-content: center; align-items: flex-start; }
.currency { font-size: 1.5rem; margin-top: 5px; font-weight: 700;}
.amount { font-size: 4rem; font-weight: 800; font-style: italic; line-height: 1; font-family: var(--font-heading);}

/* 10. GARANTIA */
.guarantee { background: var(--bg-main); }
.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 2px dashed var(--btn-bg);
}
.seal { width: 280px; max-width: 100%; object-fit: contain; }
.guarantee-text h2 { color: var(--text-highlight-wine); font-family: var(--font-heading); font-weight: 800; font-style: italic; font-size: 2.2rem; margin-bottom: 1rem; }
.guarantee-text p { font-size: 1.2rem; color: var(--text-primary); }

/* 11. FAQ */
.faq { background: var(--bg-main); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-pink);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    cursor: pointer;
    text-align: left;
}
.faq-question i {
    color: var(--text-highlight-wine);
    transition: transform 0.3s;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #FAFAFA;
}
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-primary); }

/* 12. CTA FINAL */
.cta-final { background: var(--bg-main); }
.cta-final h2 { font-family: var(--font-heading); font-weight: 800; font-style: italic; color: var(--text-secondary); font-size: 3rem; margin-bottom: 1rem; }
.cta-final p { font-size: 1.3rem; margin-bottom: 3rem; color: var(--text-primary); }

/* 13. FOMO POPUP */
.fomo-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #28a745;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    max-width: 350px;
}
.fomo-popup.show {
    transform: translateY(0);
    opacity: 1;
}
.fomo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fomo-icon {
    font-size: 1.6rem;
    display: flex;
    color: white;
}
.fomo-text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.3;
}
.fomo-text strong {
    font-weight: 800;
}
@media (max-width: 600px) {
    .fomo-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
        padding: 12px 18px;
    }
    .fomo-text { font-size: 0.95rem; }
}

/* Dica de Lucro Extra */
.profit-tip {
    background: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 6px solid #28a745;
    margin-top: 1.5rem;
    font-weight: bold;
    color: #1a5a2a;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
    font-size: 1rem;
    animation: soft-pulse 3s infinite;
}

@keyframes soft-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); background: #fafffa; }
    100% { transform: scale(1); }
}

/* FOOTER */
footer {
    padding: 3rem 0;
    background: #333333;
    color: white;
    font-size: 0.9rem;
    text-align: center;
}
.disclaimer { margin-top: 1rem; font-size: 0.8rem; max-width: 800px; margin-left: auto; margin-right: auto; opacity: 0.7;}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.pulse-anim { animation: pulse 2.5s infinite; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content, .delivery-content, .double-column, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.premium { transform: scale(1); border-width: 2px;}
    .guarantee-box { flex-direction: column; text-align: center; }
    .headline { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .section { padding: 3rem 0; }
    .headline { font-size: 2rem; }
    .btn-cta { width: 100%; padding: 1.2rem 1rem; font-size: 1.1rem; }
    .pain-list { flex-direction: column; align-items: center; gap: 1rem; }
}
