/* ============================================================
   Casal que Transborda — Elegância Sacra Contemporânea
   Paleta: Marfim quente, dourado escuro, azul profundo noturno
   Tipografia: Playfair Display, Source Sans 3, Cormorant Garamond
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-dark: #8B6508;
  --navy: #1B2A4A;
  --navy-light: #2D4A6A;
  --ivory: #F5F0E8;
  --ivory-dark: #EBE4D8;
  --white: #FFFFFF;
  --red-light: #FEE2E2;
  --red: #EF4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Section Padding ---------- */
.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }

/* ---------- Typography Utilities ---------- */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-body { font-family: 'Source Sans 3', system-ui, sans-serif; }
.font-accent { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ---------- Gold Lines ---------- */
.gold-line { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.gold-line-left { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,11,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.header-logo span { color: var(--gold); }
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a { font-family: 'Source Sans 3', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); transition: color 0.3s; }
.header-nav a:hover { color: var(--gold); }
.header-nav .btn-links { padding: 0.5rem 1.25rem; background: var(--gold); color: var(--white); border-radius: 2px; }
.header-nav .btn-links:hover { background: var(--gold-dark); }

/* Mobile menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .header-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(184,134,11,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .header-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,42,74,0.85), rgba(27,42,74,0.5), transparent); }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-label { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--gold-light); font-style: italic; margin-bottom: 1rem; }
.hero-title { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.hero-title .gold { color: var(--gold-light); }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--gold-light); font-style: italic; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.hero-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero-meta-item svg { color: var(--gold-light); }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

/* ---------- CTA Button ---------- */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.5rem; background: var(--gold); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}
.cta-btn:hover { background: var(--gold-dark); box-shadow: 0 6px 25px rgba(184,134,11,0.4); transform: translateY(-2px); }
.cta-btn .price { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.cta-btn .original-price { text-decoration: line-through; opacity: 0.7; font-size: 0.85rem; }
.cta-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.5rem; border: 2px solid rgba(255,255,255,0.3); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; transition: all 0.3s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--navy); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item svg { color: var(--gold-light); margin: 0 auto 0.5rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
@media (min-width: 768px) { .stat-number { font-size: 2rem; } }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
@media (min-width: 768px) { .stat-label { font-size: 0.875rem; } }

/* ---------- Bio Section ---------- */
.bio-section { background: var(--white); }
.bio-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .bio-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.bio-image-wrap { position: relative; }
.bio-image-border { position: absolute; top: -1rem; left: -1rem; width: 100%; height: 100%; border: 1px solid rgba(184,134,11,0.3); border-radius: 2px; }
.bio-image { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 2px; }
.bio-label { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--gold); font-style: italic; margin-bottom: 0.75rem; }
.bio-name { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .bio-name { font-size: 2.5rem; } }
.bio-text { font-size: 1rem; color: rgba(27,42,74,0.7); line-height: 1.7; margin-bottom: 1rem; }
.bio-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.bio-tag { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--ivory); border-radius: 2px; font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.bio-tag svg { color: var(--gold); }

/* ---------- Section Headers ---------- */
.section-label { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--gold); font-style: italic; margin-bottom: 0.75rem; }
.section-label-light { color: var(--gold-light); }
.section-title { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.section-title-white { color: var(--white); }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-desc { font-size: 1rem; color: rgba(27,42,74,0.6); line-height: 1.7; max-width: 640px; }
.section-desc-white { color: rgba(255,255,255,0.6); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Course Cards (Home) ---------- */
.courses-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
.course-card {
  display: block; background: var(--white); border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(184,134,11,0.1); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.5s, transform 0.5s;
}
.course-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.course-card-img { position: relative; height: 14rem; overflow: hidden; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.course-card-badge {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  padding: 0.25rem 0.75rem; background: var(--gold); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px;
}
.course-card-body { padding: 1.5rem; }
.course-card-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; transition: color 0.3s; }
.course-card:hover .course-card-title { color: var(--gold); }
.course-card-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 0.875rem; color: var(--gold); font-style: italic; margin-bottom: 0.75rem; }
.course-card-desc { font-size: 0.875rem; color: rgba(27,42,74,0.6); line-height: 1.6; margin-bottom: 1rem; }
.course-card-footer { display: flex; align-items: center; justify-content: space-between; }
.course-card-installments { font-size: 0.75rem; color: rgba(27,42,74,0.5); }
.course-card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-left: 0.5rem; }
.course-card-link { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--navy); transition: color 0.3s; }
.course-card:hover .course-card-link { color: var(--gold); }

/* ---------- Mentoria Section (Home) ---------- */
.mentoria-section { position: relative; }
.mentoria-bg { position: absolute; inset: 0; }
.mentoria-bg img { width: 100%; height: 100%; object-fit: cover; }
.mentoria-bg::after { content: ''; position: absolute; inset: 0; background: rgba(27,42,74,0.85); }
.mentoria-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
@media (min-width: 1024px) { .mentoria-grid { grid-template-columns: 1fr 1fr; } }
.mentoria-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.mentoria-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.mentoria-feature svg { color: var(--gold-light); flex-shrink: 0; }
.mentoria-image-wrap { position: relative; }
.mentoria-image-border { position: absolute; top: -1rem; right: -1rem; width: 100%; height: 100%; border: 1px solid rgba(212,168,67,0.2); border-radius: 2px; }
.mentoria-image { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 2px; }

/* ---------- Quote Section ---------- */
.quote-section { background: var(--white); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(184,134,11,0.3); line-height: 1; margin-bottom: 1rem; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--navy); font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .quote-text { font-size: 1.5rem; } }
.quote-author { font-family: 'Source Sans 3', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Final CTA Section ---------- */
.final-cta { background: var(--navy); }
.final-cta-title { color: var(--white); }
.final-cta-desc { color: rgba(255,255,255,0.6); max-width: 560px; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); padding: 4rem 0 2rem; border-top: 1px solid rgba(184,134,11,0.1); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-heading { font-family: 'Source Sans 3', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ---------- Problem Section ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem-list { display: flex; flex-direction: column; gap: 0.75rem; }
.problem-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.problem-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.problem-icon span { color: var(--red); font-size: 0.7rem; font-weight: 700; }
.problem-text { font-size: 0.875rem; color: rgba(27,42,74,0.7); }

/* ---------- Solution Grid ---------- */
.solution-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solution-grid { grid-template-columns: repeat(3, 1fr); } }
.solution-card {
  background: var(--white); padding: 1.5rem; border-radius: 2px;
  border: 1px solid rgba(184,134,11,0.1); transition: box-shadow 0.3s;
}
.solution-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.solution-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(184,134,11,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.solution-icon svg { color: var(--gold); }
.solution-card p { font-size: 0.875rem; font-weight: 500; color: var(--navy); line-height: 1.6; }

/* ---------- Target Section ---------- */
.target-section { background: var(--navy); }
.target-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 768px; margin: 0 auto; }
@media (min-width: 768px) { .target-grid { grid-template-columns: repeat(2, 1fr); } }
.target-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; }
.target-item svg { color: var(--gold-light); flex-shrink: 0; margin-top: 0.125rem; }
.target-item span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* ---------- Modules Section ---------- */
.modules-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
.module-card { background: var(--ivory); padding: 1.5rem; border-radius: 2px; border: 1px solid rgba(184,134,11,0.1); }
.module-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.module-number { width: 2rem; height: 2rem; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.module-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.module-lessons { display: flex; flex-direction: column; gap: 0.5rem; }
.module-lesson { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(27,42,74,0.6); }
.module-lesson svg { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }

/* ---------- Bonus Section ---------- */
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-card { background: var(--white); padding: 1.5rem; border-radius: 2px; border: 2px dashed rgba(184,134,11,0.3); transition: border-color 0.3s; }
.bonus-card:hover { border-color: var(--gold); }
.bonus-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(184,134,11,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bonus-icon svg { color: var(--gold); }
.bonus-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.bonus-desc { font-size: 0.875rem; color: rgba(27,42,74,0.6); line-height: 1.6; }

/* ---------- Instructor Section ---------- */
.instructor-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .instructor-grid { grid-template-columns: 1fr 1fr; } }
.instructor-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.instructor-tag { padding: 0.5rem 1rem; background: var(--ivory); border-radius: 2px; font-size: 0.875rem; font-weight: 500; color: var(--navy); }

/* ---------- Testimonials Section ---------- */
.testimonials-section { position: relative; }
.testimonials-bg { position: absolute; inset: 0; }
.testimonials-bg img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-bg::after { content: ''; position: absolute; inset: 0; background: rgba(27,42,74,0.9); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1024px; margin: 0 auto; position: relative; z-index: 2; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 2px; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { color: var(--gold-light); fill: var(--gold-light); }
.testimonial-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; font-style: italic; margin-bottom: 1rem; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.testimonial-time { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ---------- Guarantee Section ---------- */
.guarantee-card { max-width: 768px; margin: 0 auto; background: var(--white); padding: 2rem; border-radius: 2px; border: 1px solid rgba(184,134,11,0.1); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
@media (min-width: 768px) { .guarantee-card { padding: 3rem; } }
.guarantee-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .guarantee-inner { flex-direction: row; text-align: left; } }
.guarantee-shield { width: 6rem; height: 6rem; border-radius: 50%; background: rgba(184,134,11,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guarantee-shield svg { color: var(--gold); }
.guarantee-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.guarantee-text { font-size: 1rem; color: rgba(27,42,74,0.6); line-height: 1.7; }

/* ---------- FAQ Section ---------- */
.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(184,134,11,0.1); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
.faq-question svg { color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { padding-bottom: 1.25rem; font-size: 0.875rem; color: rgba(27,42,74,0.6); line-height: 1.7; display: none; }
.faq-answer.open { display: block; }

/* ---------- Mentoria Page Extras ---------- */
.methodology-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .methodology-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .methodology-grid { grid-template-columns: repeat(4, 1fr); } }
.methodology-card { background: var(--white); padding: 1.5rem; border-radius: 2px; border: 1px solid rgba(184,134,11,0.1); text-align: center; transition: box-shadow 0.3s; }
.methodology-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.methodology-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(184,134,11,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.methodology-icon svg { color: var(--gold); }
.methodology-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.methodology-desc { font-size: 0.875rem; color: rgba(27,42,74,0.6); }

.diagnosis-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .diagnosis-grid { grid-template-columns: 1fr 1fr; } }
.diagnosis-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.diagnosis-area { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.diagnosis-area svg { color: var(--gold-light); flex-shrink: 0; }
.results-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; border-radius: 2px; }
.results-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.result-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.result-item:last-child { border-bottom: none; }
.result-check { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(184,134,11,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.result-check svg { color: var(--gold-light); }
.result-item span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

.sessions-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .sessions-grid { grid-template-columns: repeat(2, 1fr); } }
.session-card { display: flex; gap: 1rem; padding: 1rem; background: var(--ivory); border-radius: 2px; border: 1px solid rgba(184,134,11,0.1); transition: box-shadow 0.3s; }
.session-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.session-number { width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.session-title { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.session-date { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-top: 0.125rem; }
.session-desc { font-size: 0.75rem; color: rgba(27,42,74,0.5); margin-top: 0.25rem; }

.included-card { background: var(--white); padding: 2rem; border-radius: 2px; border: 1px solid rgba(184,134,11,0.1); }
.included-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.included-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(184,134,11,0.05); }
.included-item:last-child { border-bottom: none; }
.included-item svg { color: var(--gold); flex-shrink: 0; }
.included-item span { font-size: 0.875rem; color: rgba(27,42,74,0.7); }

.price-display { text-align: center; margin-top: 1.5rem; }
.price-label { font-size: 0.875rem; color: rgba(27,42,74,0.5); margin-bottom: 0.5rem; }
.price-value { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.price-installments { font-size: 0.875rem; color: rgba(27,42,74,0.5); margin-top: 0.25rem; }

/* ---------- Link Tree ---------- */
.linktree { min-height: 100vh; background: var(--navy); position: relative; overflow: hidden; }
.linktree-bg { position: absolute; inset: 0; opacity: 0.05; background: radial-gradient(circle at 25% 25%, rgba(184,134,11,0.3) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(184,134,11,0.2) 0%, transparent 50%); }
.linktree-content { position: relative; z-index: 2; max-width: 28rem; margin: 0 auto; padding: 3rem 1rem; }
.linktree-profile { text-align: center; margin-bottom: 2.5rem; }
.linktree-avatar-wrap { position: relative; width: 7rem; height: 7rem; margin: 0 auto 1rem; }
.linktree-avatar-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(184,134,11,0.4); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.linktree-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--gold); }
.linktree-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.linktree-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-light); font-style: italic; margin-top: 0.25rem; }
.linktree-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); max-width: 20rem; margin: 0.5rem auto 0; }
.linktree-links { display: flex; flex-direction: column; gap: 0.75rem; }
.linktree-link { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 2px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); transition: all 0.3s; }
.linktree-link:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
.linktree-link.highlight { background: linear-gradient(to right, rgba(184,134,11,0.1), rgba(184,134,11,0.05)); border-color: rgba(184,134,11,0.3); }
.linktree-link.highlight:hover { border-color: var(--gold); background: rgba(184,134,11,0.15); }
.linktree-link-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.linktree-link.highlight .linktree-link-icon { background: rgba(184,134,11,0.2); }
.linktree-link:not(.highlight) .linktree-link-icon { background: rgba(255,255,255,0.1); }
.linktree-link.highlight .linktree-link-icon svg { color: var(--gold-light); }
.linktree-link:not(.highlight) .linktree-link-icon svg { color: rgba(255,255,255,0.6); }
.linktree-link-text { flex: 1; min-width: 0; }
.linktree-link-title { font-size: 0.875rem; font-weight: 600; color: var(--white); transition: color 0.3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linktree-link:hover .linktree-link-title { color: var(--gold-light); }
.linktree-link-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linktree-link-arrow { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.linktree-link:hover .linktree-link-arrow { color: rgba(255,255,255,0.4); }
.linktree-footer { text-align: center; margin-top: 3rem; }
.linktree-footer-line { width: 4rem; height: 1px; background: rgba(184,134,11,0.2); margin: 0 auto 1rem; }
.linktree-footer-quote { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; color: rgba(255,255,255,0.3); font-style: italic; }

/* ---------- Animations ---------- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.from-left { transform: translateX(-30px); }
.animate-on-scroll.from-left.visible { transform: translateX(0); }
.animate-on-scroll.from-right { transform: translateX(30px); }
.animate-on-scroll.from-right.visible { transform: translateX(0); }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.small-text { font-size: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.opacity-40 { opacity: 0.4; }
.w-32 { width: 8rem; }
.w-20 { width: 5rem; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ---------- Bonus Grid ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.bonus-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}
.bonus-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.bonus-icon {
  margin-bottom: 0.75rem;
}
.bonus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.bonus-desc {
  font-size: 0.85rem;
  color: rgba(27, 42, 74, 0.6);
  line-height: 1.5;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

/* ---------- Responsive Fixes ---------- */
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .comparison-table table {
    font-size: 0.8rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem !important;
  }
}

/* ---------- Navigation Dropdown ---------- */
.nav-dropdown {
    width: 100%;
    display: block; /* Voltando para block para evitar conflitos de eventos flex */
    text-align: center;
  }
  
  .nav-dropdown-trigger {
    display: inline-flex; /* Mantém o texto e ícone juntos */
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #000000;
    font-size: 1.1rem;
    padding: 1rem 0;
    cursor: pointer;
    pointer-events: auto; /* Garante que o elemento seja clicável */
    -webkit-tap-highlight-color: transparent; /* Remove o brilho azul ao clicar no mobile */
  }

  /* Ajuste para o SVG da seta não bloquear o clique */
  .nav-dropdown-trigger svg {
    pointer-events: none;
    margin-left: 5px;
  }

  .nav-dropdown-menu {
    display: none; /* Estado padrão fechado */
    width: 100%;
    background: rgba(184, 134, 11, 0.05);
    padding: 0.5rem 0;
    list-style: none;
  }

  /* Quando estiver aberto */
  .nav-dropdown.open .nav-dropdown-menu {
    display: block; /* Força a exibição */
    opacity: 1;
    visibility: visible;
    max-height: none; /* Remove restrições de altura para teste */
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 1rem;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* Scrolled header dropdown */
.site-header.scrolled .nav-dropdown-trigger {
  color: rgba(27,42,74,0.7);
}
.site-header.scrolled .nav-dropdown-trigger:hover {
  color: var(--gold);
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-trigger {
    color: #000000;
    font-size: 1.1rem;
    justify-content: center;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    padding: 0.5rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, visibility 0.3s, max-height 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }
  .nav-dropdown-menu a {
    color: #000000;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    display: block;
    width: 100%;
  }
  .nav-dropdown-menu a:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,0.05);
    padding-left: 1rem;
  }
}
