:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --secondary: #4a3728;
    --secondary-dark: #2d2118;
    --text: #1f2937;
    --bg-light: #fdfbf7;
    --accent-yellow: #fef9c3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); overflow-x: hidden; background: white; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-green { color: var(--primary); }
.text-green-tag { color: var(--primary); background: #f0fdf4; padding: 4px 12px; border-radius: 12px; font-weight: 800; }
.section-title { font-size: 2.8rem; font-weight: 900; text-align: center; margin-bottom: 60px; text-transform: uppercase; color: var(--secondary); letter-spacing: -1px; }

/* Urgency Bar */
.urgency-bar { background: #dc2626; color: white; text-align: center; padding: 14px; font-weight: 900; position: sticky; top: 0; z-index: 1000; font-size: 0.95rem; box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); text-transform: uppercase; letter-spacing: 1.5px; }

/* Hero */
.hero { padding: 140px 0; color: white; text-align: center; min-height: 95vh; display: flex; align-items: center; background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/hero.jpg') center/cover; position: relative; }
.hero h1 { font-size: 5rem; font-weight: 900; margin-bottom: 25px; line-height: 1; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero .highlight { color: var(--primary); }
.headline { font-size: 2rem; font-weight: 800; margin-bottom: 30px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); color: #f9fafb; }
.subheadline { max-width: 850px; margin: 0 auto 50px; color: #e5e7eb; font-size: 1.2rem; font-weight: 500; line-height: 1.7; }

/* Buttons 3D */
.btn-3d { display: inline-block; padding: 22px 50px; border-radius: 22px; font-weight: 900; text-decoration: none; color: white; transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; border: none; text-transform: uppercase; font-size: 1.1rem; text-align: center; }
.btn-primary { background: var(--primary); box-shadow: 0 10px 0 var(--primary-dark); }
.btn-primary:hover { transform: translateY(2px); box-shadow: 0 8px 0 var(--primary-dark); }
.btn-primary:active { transform: translateY(10px); box-shadow: 0 0 0 var(--primary-dark); }
.large { padding: 28px 60px; font-size: 1.4rem; }
.full-width { width: 100%; display: block; }

/* Pain Points */
.pain-points { padding: 100px 0; background: white; }
.convo-box.light-bg { background: var(--bg-light); padding: 70px 60px; border-radius: 50px; border: 2px solid #f3f4f6; max-width: 950px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.02); }
.pain-points h2 { font-size: 2.8rem; font-weight: 900; color: var(--secondary); text-align: center; margin-bottom: 50px; text-transform: uppercase; font-style: italic; }
.pain-list { max-width: 700px; margin: 0 auto; }
.pain-list p { display: flex; align-items: flex-start; margin-bottom: 30px; font-size: 1.3rem; color: #374151; font-weight: 600; }
.pain-list span { color: #ef4444; margin-right: 20px; font-weight: 900; font-size: 1.5rem; }
.pain-footer { text-align: center; margin-top: 60px; padding-top: 50px; border-top: 2px dashed #e5e7eb; }
.pain-footer .concl { font-size: 2.2rem; font-weight: 900; color: var(--secondary); text-transform: uppercase; margin-bottom: 12px; }
.pain-footer .sub { font-size: 1.4rem; font-weight: 800; color: #9ca3af; }

/* Method */
.method { background: var(--bg-light); padding: 120px 0; border-y: 1px solid #f3f4f6; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-box img { width: 100%; border-radius: 30px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2)); transform: rotate(-4deg); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 10px solid white; }
.img-box img:hover { transform: rotate(0deg) scale(1.02); }
.text-left { text-align: left; margin-bottom: 35px; font-size: 3.2rem; line-height: 1.1; }
.method-text p { font-size: 1.3rem; margin-bottom: 30px; color: #4b5563; font-weight: 500; }
.check-list { list-style: none; margin-top: 40px; }
.check-list li { display: flex; align-items: center; margin-bottom: 20px; font-size: 1.4rem; font-weight: 800; color: var(--secondary); }
.check-list li span { color: var(--primary); margin-right: 18px; font-weight: 900; font-size: 1.6rem; }

/* Direct Convo (Balões de Frases) */
.direct-convo { padding: 120px 0; background: white; }
.convo-bubble { background: #f9fafb; padding: 60px; border-radius: 40px; border: 2px solid #f3f4f6; position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.02); max-width: 900px; margin: 0 auto; }
.convo-bubble::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid #f9fafb; }
.direct-convo h2 { font-size: 2.4rem; line-height: 1.5; color: var(--secondary); margin-bottom: 0; font-weight: 900; }
.convo-text-footer { margin-top: 60px; text-align: center; }
.convo-text-footer p { font-size: 1.5rem; margin-bottom: 35px; color: #4b5563; font-weight: 600; }

/* Learning */
.learning { padding: 120px 0; background: white; }
.learning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; max-width: 1000px; margin: 0 auto; }
.learning-item { background: #ffffff; padding: 30px; border-radius: 25px; border: 2px solid #f3f4f6; display: flex; align-items: center; gap: 20px; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.01); }
.learning-item:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 25px rgba(34, 197, 94, 0.1); }
.learning-item .icon { background: #dcfce7; color: var(--primary); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; font-size: 1.2rem; }
.learning-item span { font-weight: 800; color: var(--secondary); font-size: 1.1rem; }

/* Proven */
.proven { padding: 140px 0; text-align: center; color: white; background: linear-gradient(rgba(74, 55, 40, 0.92), rgba(74, 55, 40, 0.95)), url('images/insta.jpg') center/cover; position: relative; }
.icons-row { font-size: 3.5rem; margin-bottom: 40px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); }
.results-img { width: 100%; max-width: 700px; border-radius: 35px; border: 8px solid rgba(255,255,255,0.1); margin: 50px auto; box-shadow: 0 50px 100px rgba(0,0,0,0.5); }
.proven-title { font-size: 2.4rem; font-weight: 900; margin-bottom: 25px; letter-spacing: -1px; }
.proven-text { font-size: 1.4rem; color: #e5e7eb; max-width: 750px; margin: 0 auto; font-weight: 500; line-height: 1.6; }

/* Testimonials (Balões de Depoimentos) */
.testimonials { padding: 120px 0; background: #fdfbf7; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: white; padding: 45px; border-radius: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.03); border: 2px solid #f3f4f6; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.testimonial-card:hover { transform: translateY(-15px) scale(1.02); border-color: var(--primary); }
.stars { color: #fbbf24; margin-bottom: 25px; font-size: 1.3rem; }
.quote { font-style: italic; color: #374151; font-size: 1.2rem; margin-bottom: 35px; font-weight: 600; line-height: 1.7; position: relative; z-index: 1; }
.quote::before { content: '"'; font-size: 4rem; color: #f3f4f6; position: absolute; top: -20px; left: -10px; z-index: -1; font-family: serif; }
.user { display: flex; align-items: center; border-top: 2px solid #f9fafb; padding-top: 30px; }
.user img { width: 65px; height: 65px; border-radius: 50%; border: 4px solid var(--bg-light); margin-right: 20px; object-fit: cover; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.user-info strong { display: block; font-size: 1.2rem; color: var(--secondary); font-weight: 900; }
.user-info span { font-size: 0.9rem; color: #9ca3af; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }

/* Pricing */
.pricing { padding: 140px 0; background: white; scroll-margin-top: 120px; }
#ofertas { scroll-margin-top: 120px; }
.pricing-header { text-align: center; margin-bottom: 80px; }
.pricing-header h2 { font-size: 4rem; font-weight: 900; color: var(--secondary); margin-bottom: 15px; letter-spacing: -2px; text-transform: uppercase; }
.pricing-header p { font-size: 1.5rem; color: #6b7280; font-weight: 600; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; max-width: 1050px; margin: 0 auto; align-items: start; }
.card { background: var(--bg-light); padding: 70px 50px; border-radius: 55px; border: 2px solid #e5e7eb; text-align: center; transition: all 0.3s; }
.card h3 { font-size: 2rem; font-weight: 900; color: var(--secondary); margin-bottom: 30px; text-transform: uppercase; }
.price { font-size: 5rem; font-weight: 900; color: var(--secondary); line-height: 1; letter-spacing: -3px; }
.payment-label { font-weight: 900; font-size: 0.9rem; color: #9ca3af; letter-spacing: 3px; margin-top: 15px; text-transform: uppercase; }
.payment-label.green { color: var(--primary); }
.features { list-style: none; margin: 50px 0; text-align: left; }
.features li { padding: 15px 0; border-bottom: 1px solid #e5e7eb; display: flex; align-items: flex-start; font-weight: 800; color: #374151; font-size: 1.15rem; }
.features li span { color: var(--primary); margin-right: 15px; font-weight: 900; font-size: 1.3rem; }
.highlight-item { background: var(--accent-yellow); padding: 15px !important; border-radius: 18px; border-bottom: none !important; color: var(--secondary) !important; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.card.popular { background: white; border: 5px solid var(--primary); position: relative; transform: scale(1.08); box-shadow: 0 40px 80px rgba(0,0,0,0.12); z-index: 10; }
.popular-badge { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 12px 40px; border-radius: 40px; font-weight: 900; font-size: 1rem; white-space: nowrap; box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4); text-transform: uppercase; letter-spacing: 1px; }
.secure-text { font-size: 0.75rem; font-weight: 900; color: #9ca3af; margin-top: 25px; text-transform: uppercase; letter-spacing: 1px; }

/* Guarantee */
.guarantee { padding: 120px 0; background: var(--bg-light); border-y: 1px solid #f3f4f6; }
.guarantee-box { display: flex; align-items: center; gap: 60px; background: white; padding: 70px; border-radius: 55px; box-shadow: 0 25px 60px rgba(0,0,0,0.04); max-width: 950px; margin: 0 auto; border: 2px solid #f3f4f6; }
.seal { width: 180px; height: 180px; border: 12px solid var(--primary); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--primary); box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2); background: #f0fdf4; }
.seal .number { font-size: 5rem; font-weight: 900; line-height: 1; }
.seal .days { font-size: 0.9rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.guarantee-content h2 { text-align: left; font-size: 2.2rem; margin-bottom: 25px; color: var(--secondary); font-weight: 900; }
.guarantee-content p { font-size: 1.3rem; color: #4b5563; font-weight: 600; line-height: 1.7; }

/* FAQ */
.faq { padding: 120px 0; background: white; }
.accordion { max-width: 850px; margin: 0 auto; }
.accordion-item { background: #f9fafb; border-radius: 25px; margin-bottom: 20px; border: 2px solid #f3f4f6; overflow: hidden; transition: all 0.3s; }
.accordion-item:hover { border-color: #e5e7eb; transform: translateX(5px); }
.accordion-header { padding: 35px; font-weight: 900; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--secondary); font-size: 1.3rem; }
.accordion-body { padding: 0 35px 35px; color: #4b5563; font-size: 1.2rem; font-weight: 600; display: none; border-top: 2px solid #f3f4f6; padding-top: 35px; background: white; line-height: 1.7; }
.cta-final { text-align: center; margin-top: 80px; }

/* Footer */
footer { background: #f9fafb; padding: 120px 0 50px; border-top: 2px solid #f3f4f6; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 80px; margin-bottom: 80px; }
.footer-brand h3 { font-size: 2rem; font-weight: 900; color: var(--secondary); margin-bottom: 25px; text-transform: uppercase; letter-spacing: -1px; }
.footer-brand p { color: #6b7280; margin-bottom: 30px; font-weight: 600; font-size: 1.1rem; }
.insta-link { color: var(--secondary); font-weight: 900; font-size: 1.4rem; text-decoration: none; border-bottom: 3px solid var(--primary); padding-bottom: 5px; transition: all 0.2s; }
.insta-link:hover { color: var(--primary); border-color: var(--secondary); }
.footer-links h4, .footer-legal h4 { font-size: 0.9rem; font-weight: 900; color: var(--secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.footer-links a { text-decoration: none; color: #6b7280; font-weight: 800; transition: color 0.2s; font-size: 1rem; }
.footer-links a:hover { color: var(--primary); }
.footer-legal p { font-size: 0.85rem; color: #9ca3af; line-height: 1.8; font-weight: 500; }
.footer-bottom { border-top: 2px solid #e5e7eb; padding-top: 50px; text-align: center; color: #9ca3af; font-size: 0.9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }

/* Popup */
.popup { position: fixed; bottom: 40px; left: -500px; background: white; padding: 25px 40px; border-radius: 25px; box-shadow: 0 25px 60px rgba(0,0,0,0.18); z-index: 2000; transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-left: 10px solid var(--primary); display: flex; align-items: center; font-weight: 800; font-size: 1.05rem; color: var(--secondary); }
.popup.show { left: 40px; }

@media (max-width: 1050px) {
    .grid, .pricing-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero h1 { font-size: 3.8rem; }
    .hero h1 br { display: none; }
    .text-left { text-align: center; font-size: 2.8rem; }
    .card.popular { transform: none; margin-top: 30px; }
    .guarantee-box { flex-direction: column; text-align: center; padding: 50px; }
    .guarantee-content h2 { text-align: center; }
    .learning-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
    .pricing-header h2 { font-size: 3rem; }
}
