:root {
    --bg-light: #F4FBF4;
    --primary: #1F4229;
    --primary-light: #4A8C5D;
    --cta-color: #FF7B00;
    --cta-hover: #E66F00;
    --green-price: #00A63E;
    --red-strike: #D90000;
    --text-dark: #2C352E;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; position: relative;}
h1, h2, h3 { font-family: 'Outfit', sans-serif; color: #111; }
a { text-decoration: none; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 5%; }

/* Background Leaves */
body::before { content: "🍃"; position: fixed; top: 30%; left: 2%; opacity: 0.1; font-size: 4rem; z-index: -1; pointer-events: none;}
body::after { content: "🌿"; position: fixed; bottom: 10%; right: 2%; opacity: 0.1; font-size: 5rem; z-index: -1; pointer-events: none;}
.leaf { position: absolute; font-size: 2rem; opacity: 0.3; animation: floatLeaf 8s ease-in-out infinite; pointer-events: none;}
.leaf-1 { top: 15%; left: 10%; font-size: 3rem;}
.leaf-2 { top: 40%; right: 5%; animation-delay: 2s;}
@keyframes floatLeaf { 0%, 100% {transform: translateY(0) rotate(0);} 50% {transform: translateY(-20px) rotate(15deg);} }

/* Hero */
.hero { display: flex; flex-direction: column; padding: 50px 5%; align-items: center; text-align: center; background: #EDF7F0; position: relative;}
@media(min-width: 800px) { .hero { flex-direction: row; text-align: left; } }
.hero-content { flex: 1; z-index: 2;}
.hero-image { flex: 1; z-index: 2;}
.product-img { width: 100%; max-width: 400px; mix-blend-mode: multiply; }
.author-img { width: 100%; max-width: 400px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); border: 5px solid #fff; }
.badge { display: inline-block; background: rgba(74, 140, 93, 0.2); color: var(--primary); padding: 5px 15px; border-radius: 30px; font-weight: bold; margin-bottom: 15px;}
.headline { font-size: 2.5rem; line-height: 1.1; margin-bottom: 15px; }
.sub-headline { font-size: 1.2rem; margin-bottom: 25px; line-height: 1.5; color: #444; }

.cta-button { display: inline-block; background: var(--cta-color); color: #fff; padding: 18px 30px; font-size: 1.2rem; font-weight: bold; border-radius: 10px; margin-top: 10px; width: 100%; text-transform: uppercase; transition: background 0.3s, transform 0.2s; box-shadow: 0 10px 20px rgba(255,123,0,0.3);}
.cta-button:hover { background: var(--cta-hover); transform: translateY(-2px); }
@media(min-width: 800px) { .cta-button { width: auto; } }

/* Pricing Hero Block */
.price-callout-hero { margin: 25px 0; display: inline-block; text-align: center;}
.old-price-hero { display: block; font-size: 1.5rem; color: var(--red-strike); font-weight: 900; text-decoration: line-through; text-decoration-thickness: 3px; }
.por-apenas { display: block; font-size: 1.1rem; font-weight: 800; color: #666;}
.new-price-hero { display: block; font-size: 3.8rem; color: var(--green-price); font-weight: 900; line-height: 1; margin-bottom: 5px;}

/* Story Section */
.story-section { padding: 60px 0; font-size: 1.15rem; line-height: 1.6; text-align: center; }
.story-section .lead-text { font-size: 1.4rem; margin-bottom: 20px;}
.alert-box { background: rgba(74, 140, 93, 0.1); border-left: 4px solid var(--primary-light); padding: 20px; margin: 30px auto; max-width: 600px; border-radius: 5px; }
.highlight-text { font-weight: bold; font-size: 1.3rem; color: var(--primary); margin-top: 15px;}

/* Benefits */
.flex-row { display: flex; flex-direction: column; gap: 40px; align-items: center;}
@media(min-width: 800px) { .flex-row { flex-direction: row; text-align: left;} }
.benefits-section { padding: 60px 0; background: #fff;}
.section-title { font-size: 2.2rem; margin-bottom: 40px; }
.section-title span { color: var(--primary); }
.check-list { list-style: none; text-align: left; margin: 25px 0; }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; font-weight: 600; color: #444;}
.check-icon { color: var(--primary-light); font-weight: bold; margin-right: 15px; font-size: 1.2rem;}
.strong-note { font-weight: 800; font-size: 1.1rem; color: #111; margin-top:20px;}

/* Vision Section */
.vision-section { padding: 80px 0; background: #EDF7F0; }
.vision-grid { display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 40px auto;}
.vision-card { background: #fff; padding: 25px; border-radius: 12px; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: left; border-left: 5px solid var(--primary-light); font-size: 1.1rem;}
.big-promise { font-size: 1.6rem; font-weight: 900; margin-top: 40px; color: var(--primary); }

/* Offer section */
.offer-section { background: var(--bg-light); text-align: center; padding: 60px 0;}
.pricing-card { background: #fff; border: 3px solid #4A8C5D; border-radius: 20px; padding: 50px 20px; max-width: 500px; margin: 0 auto; position: relative;}
.discount-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--red-strike); color: #fff; padding: 5px 20px; border-radius: 20px; font-weight: bold;}
.price-display { margin-bottom: 10px; }
.strike-price { font-size: 2rem; color: var(--red-strike); font-weight: 900; text-decoration: line-through; }
.final-price { font-size: 4.5rem; color: var(--green-price); font-weight: 900; line-height: 1;}
.urgency-text { font-size: 1.15rem; color: var(--red-strike); font-weight: 800; margin: 15px 0 5px; animation: pulse 2s infinite;}
.small-text { font-size: 0.95rem; color: #666; margin-top: 15px;}

/* Guarantee section */
.guarantee-section { padding: 40px 0;}
.guarantee-box { background: linear-gradient(135deg, #E2F0E6, #C7E2CE); border: 2px dashed var(--primary-light); padding: 50px 30px; border-radius: 20px; max-width: 600px; margin: 0 auto; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.shield-icon { font-size: 4rem; margin-bottom: 15px;}
.guarantee-box h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--primary);}
.guarantee-box p { font-size: 1.1rem; line-height: 1.5; color: #333;}

/* Authority Section */
.authority-section { padding: 60px 0; background: #fff;}
.authority-content h3 { font-size: 1.4rem; color: var(--primary-light); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;}
.authority-content h2 { font-size: 2.5rem; margin-bottom: 5px; }
.profession { font-size: 1.25rem; font-weight: normal; margin-bottom: 30px; color: #555; }
.authority-content p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 20px; color: #444; }

/* Testimonials */
.testimonials-section { padding: 80px 0; background: #EDF7F0; }
.testimonials-grid { display: grid; gap: 30px; grid-template-columns: 1fr; margin-top: 40px; }
@media(min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card { background: #fff; padding: 40px 30px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 2px solid #D6EADF; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s;}
.testimonial-card:hover { transform: translateY(-5px); }
.quote-mark { font-size: 5rem; color: #b1d4c2; line-height: 0.5; font-family: Georgia, serif; margin-top: 15px; margin-bottom: 25px;}
.stars { color: #FFB800; font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 2px;}
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: #444; line-height: 1.6; font-size: 1.1rem; flex: 1;}
.testimonial-card strong { color: var(--primary); font-size: 1.15rem; }

/* FAQ */
.faq-section { padding: 60px 0; background: var(--bg-light); text-align: center; }
.faq-container { max-width: 700px; margin: 0 auto;}
.faq-item { text-align: left; background: #fff; margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid #ccc;}
.faq-question { width: 100%; padding: 18px 20px; background: none; border: none; font-weight: bold; font-size: 1.15rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between;}
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: #555; line-height: 1.5;}
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 18px; }

/* Final CTA */
.final-cta-section { padding: 80px 0; background: var(--primary); color: #fff;}
.final-cta-section h2 { color: #fff; font-size: 2rem; margin-bottom: 25px; line-height: 1.3; }
.final-cta-section p { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.9;}

/* Utils */
.text-center { text-align: center !important; }
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% {transform:translateY(0);} 50% {transform:translateY(-15px);} }
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% {transform:scale(1);} 50% {transform:scale(1.05);} }
.bounce-anim { animation: bounce 3s infinite;}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    opacity: 0.9;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    opacity: 1;
}
.whatsapp-float svg { width: 28px; height: 28px; }

@media(max-width: 800px) {
    .whatsapp-float { width: 45px; height: 45px; bottom: 15px; right: 15px; }
    .whatsapp-float svg { width: 25px; height: 25px; }
}

