:root {
  --bg: #f9f8f6;
  --bg-dark: #f2f0eb;
  --bg-card: #ffffff;
  --bg-card-hover: #fffdf9;
  --bg-dark-section: #141210;
  --gold: #B8962E;
  --gold-light: #D4AF37;
  --gold-dark: #8B7023;
  --gold-subtle: #faf7ee;
  --gold-border: rgba(184,150,46,0.2);
  --text: #141210;
  --text-muted: #6b6560;
  --text-light: #9c9690;
  --gray: #999999;
  --border: #e8e4dc;
  --border-light: #f2efe8;
  --red: #dc3545;
  --green: #28a745;
  --gradient-gold: linear-gradient(135deg, #e0c040 0%, #B8962E 50%, #8B7023 100%);
  --gradient-gold-shine: linear-gradient(105deg, #c9a227 0%, #e8c84a 40%, #c9a227 60%, #8B7023 100%);
  --gradient-hero: linear-gradient(160deg, #ffffff 0%, #fdf9f2 50%, #f8f2e4 100%);
  --gradient-dark: linear-gradient(160deg, #1a1710 0%, #141210 100%);
  --shadow-gold: 0 8px 32px rgba(184,150,46,0.3), 0 2px 8px rgba(184,150,46,0.15);
  --shadow-gold-hover: 0 16px 48px rgba(184,150,46,0.4), 0 4px 16px rgba(184,150,46,0.2);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-dark: 0 24px 64px rgba(0,0,0,0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ── Breaking News Bar ── */
.breaking-news {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  height: 38px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.breaking-label {
  background: #fff;
  color: #c0392b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  margin: 0 12px;
  flex-shrink: 0;
  text-transform: uppercase;
  animation: pulse-label 1.4s ease-in-out infinite;
}

@keyframes pulse-label {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.breaking-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.breaking-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.gold {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--gradient-gold-shine);
  background-size: 200% auto;
  color: #fff;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
  background-position: right center;
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 44px;
  font-size: 15px;
  border-radius: var(--radius);
}

.btn-xlarge {
  padding: 20px 52px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,150,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
}

.hero-content {
  text-align: left;
}

.hero-pretitle {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  line-height: 1.55;
}

.bullet-icon {
  width: 22px;
  height: 22px;
  background: var(--gradient-gold);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: block;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 15px;
}

.hero-cta-dates {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 10px;
  letter-spacing: 0.3px;
  max-width: 420px;
}

.hero-cta-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.3px;
  max-width: 420px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Foto dos experts no hero */
.hero-experts-photo {
  width: 100%;
  max-width: 440px;
  position: relative;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}

.hero-experts-photo img,
.hero-experts-photo canvas {
  width: 100%;
  height: auto;
  display: block;
}

.hero-speakers-photo {
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}

.hero-speakers-photo img,
.hero-speakers-photo canvas {
  width: 100%;
  height: auto;
}

.hero-experts-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.hero-experts-label-names {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.hero-experts-label-names .dot {
  color: var(--gold);
  margin: 0 6px;
}

.hero-experts-label-date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-darker {
  background: var(--bg-dark-section);
  color: #f0ece4;
}

.section-darker .section-title,
.section-darker .section-title-large,
.section-darker .section-subtitle,
.section-darker .section-lead,
.section-darker .result-text {
  color: #f0ece4;
}

.section-darker .section-lead,
.section-darker .section-lead-center {
  color: #a09890;
}

.section-highlight {
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-subtle) 50%, var(--bg) 100%);
  padding: 100px 0;
  text-align: center;
}

.section-gold {
  background: linear-gradient(180deg, var(--gold-subtle) 0%, var(--bg) 100%);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid rgba(184, 150, 46, 0.12);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-title-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-title-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 500;
}

.section-pretitle {
  font-size: 0.75rem;
  text-align: center;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.section-lead {
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-lead-center {
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.highlight-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 8px;
  font-style: italic;
}

.highlight-answer {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 56px;
}

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  border: 1.5px solid #f0ece8;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-card:hover {
  border-color: rgba(220, 53, 69, 0.3);
  box-shadow: 0 8px 32px rgba(220, 53, 69, 0.08);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 1rem;
  color: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 50%;
}

.problem-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  margin-top: 6px;
}

/* Details List */
.details-list {
  list-style: none;
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.details-list li {
  font-size: 1.05rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.details-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Wrong Ways */
.wrong-ways {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wrong-ways li {
  font-size: 1.05rem;
  color: var(--text-muted);
  padding: 12px 24px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  max-width: 360px;
  width: 100%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.wrong-icon {
  font-size: 0.85rem;
  color: #c0392b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 50%;
  font-weight: 700;
}

.result-text {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}

.result-highlight {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  font-style: italic;
}

/* Method */
.method-points {
  text-align: center;
  margin-bottom: 40px;
}

.method-points p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.method-points p:last-child {
  color: var(--gold);
}

.method-list {
  max-width: 560px;
  margin: 40px auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}

.method-item:last-child {
  border-bottom: none;
}

.method-item:hover {
  background: var(--bg-card-hover);
}

.method-number {
  font-size: 1.2rem;
}

.method-footer {
  text-align: center;
  margin-top: 40px;
}

.method-footer p {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Agenda */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.agenda-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.agenda-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.agenda-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
}

.agenda-card:hover::before {
  opacity: 1;
}

.agenda-day {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.day-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.day-label {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.agenda-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.agenda-list {
  list-style: none;
}

.agenda-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.agenda-list li:last-child {
  margin-bottom: 0;
}

.check {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* Results */
.results-box {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.results-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
}

.results-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 28px;
}

.results-list li {
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.results-list li:last-child {
  margin-bottom: 0;
}

.results-footer {
  font-size: 1.05rem;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.results-footer strong {
  color: var(--gold);
}

.results-box + .btn {
  display: block;
  margin: 32px auto 0;
  max-width: 320px;
  text-align: center;
}

/* Target */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}

.target-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.target-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.target-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.not-for-box {
  text-align: center;
  padding: 36px 32px;
  background: var(--gold-subtle);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  border: 1px solid rgba(184, 150, 46, 0.15);
}

.not-for-box h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

/* Bonuses */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 40px auto;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.bonus-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.value-estimate {
  text-align: center;
  font-size: 1.15rem;
  margin-top: 32px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Pricing */
.section-pricing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-subtle) 50%, var(--bg) 100%);
  padding: 100px 0;
  text-align: center;
}

.pricing-card {
  background: var(--bg-dark-section);
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 480px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #c8bfa8;
  line-height: 1.4;
  font-weight: 400;
}

.pricing-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(212,175,55,0.12);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(212,175,55,0.2);
}

.pricing-label {
  color: #8a8278;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}

.currency {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

.amount {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-cta-text {
  color: #8a8278;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* Speakers */
.section-speakers {
  overflow: hidden;
  background: var(--bg);
}

.speakers-photo-wrapper {
  max-width: 480px;
  margin: 40px auto 48px;
  position: relative;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.15));
}

.speakers-photo {
  width: 100%;
  height: auto;
  display: block;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}

.speaker-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.speaker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.speaker-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.speaker-card:hover::before {
  opacity: 1;
}

.speaker-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--gradient-gold) border-box;
  box-shadow: 0 8px 24px rgba(184, 150, 46, 0.18);
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.speaker-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.speaker-bio {
  text-align: left;
}

.speaker-bio p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.speaker-bio p:last-child {
  margin-bottom: 0;
}

/* Guarantee */
.section-guarantee {
  padding: 96px 0;
  background: var(--bg-dark);
}

.guarantee-box {
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gold-subtle);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--gold-border);
}

.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.guarantee-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.faq-container {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question[aria-expanded="true"] {
  background: var(--bg-card-hover);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: all var(--transition);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 20px;
  text-align: center;
}

.footer p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
/* ================================
   RESPONSIVO TABLET (≤ 768px)
   ================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 40px 20px 48px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    text-align: center;
    order: 2;
    padding-top: 16px;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 0;
  }

  .hero-pretitle {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .hero-bullets {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
    align-items: stretch;
    text-align: left;
  }

  .hero-bullets li {
    text-align: left;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .hero-cta {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-dates,
  .hero-cta-note {
    font-size: 0.78rem;
    text-align: center;
    white-space: normal;
  }

  .hero-experts-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-experts-label {
    display: none;
  }

  /* Botões full-width em mobile */
  .btn-large,
  .btn-xlarge {
    width: 100%;
    display: block;
    text-align: center;
    padding: 18px 24px;
    font-size: 15px;
    box-sizing: border-box;
  }

  /* Grids → coluna única */
  .agenda-grid,
  .problem-grid,
  .target-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .speakers-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* Cards */
  .problem-card {
    padding: 22px 18px;
    min-width: 0;
    word-break: break-word;
  }

  .agenda-card {
    padding: 28px 20px;
  }

  .target-card {
    padding: 20px 14px;
  }

  .speaker-card {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 36px 20px;
  }

  .guarantee-box {
    padding: 36px 20px;
  }

  .results-box {
    padding: 32px 20px;
  }

  /* Preço */
  .amount {
    font-size: 3.8rem;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    text-align: left;
  }

  .faq-answer {
    padding: 0 18px;
  }

  /* Seção títulos */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .section-title-large,
  .section-title-xl {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .section-pretitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

/* ================================
   RESPONSIVO MOBILE (≤ 480px)
   ================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 32px 14px 40px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-bullets {
    padding: 14px 16px;
  }

  .hero-bullets li {
    font-size: 0.9rem;
    gap: 8px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 4px;
  }

  .section-title {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .section-title-large,
  .section-title-xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-lead-center,
  .section-lead {
    font-size: 0.95rem;
  }

  .highlight-quote {
    font-size: 1.6rem;
  }

  .highlight-answer {
    font-size: 1.2rem;
  }

  .day-number {
    font-size: 2.8rem;
  }

  .amount {
    font-size: 3.2rem;
  }

  .agenda-card {
    padding: 24px 16px;
  }

  .results-box {
    padding: 28px 18px;
  }

  /* Speaker card */
  .speaker-card {
    padding: 24px 16px;
  }

  .speaker-image {
    width: 100px;
    height: 100px;
  }

  /* Modal */
  .modal-content {
    padding: 28px 18px;
    margin: 12px;
    border-radius: var(--radius-lg);
  }

  .modal-title {
    font-size: 1.35rem;
  }

  /* WhatsApp section */
  .btn-whatsapp-section {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 20px;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px 16px;
  }

  .guarantee-box {
    padding: 28px 16px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  /* Bonus list */
  .bonus-item {
    padding: 16px 14px;
    gap: 12px;
  }
}

/* ================================
   MODAL
   ================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(-16px) scale(0.97);
  transition: all var(--transition);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--gold);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--text);
  background: var(--bg-dark);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.modal-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
}

/* ================================
   FORMULÁRIO DE INSCRIÇÃO
   ================================ */

.form-inscricao {
  margin-top: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}

.form-group input::placeholder {
  color: var(--gray);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
  text-align: left;
  font-weight: 500;
}

.phone-input-wrapper {
  position: relative;
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: visible;
  transition: all var(--transition);
}

.phone-input-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}

.phone-country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  cursor: pointer;
  border-right: 1px solid var(--border);
  background: var(--bg-dark);
  flex-shrink: 0;
  transition: background var(--transition);
  border-radius: var(--radius) 0 0 var(--radius);
}

.phone-country-selector:hover {
  background: var(--border);
}

.country-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.country-code {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.country-arrow {
  font-size: 0.6rem;
  color: var(--gray);
  margin-left: 2px;
}

.phone-input-wrapper input[type="tel"] {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.phone-input-wrapper input[type="tel"]::placeholder {
  color: var(--gray);
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: none;
}

.country-dropdown.active {
  display: block;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--transition);
}

.country-option:hover {
  background: var(--bg-dark);
}

.country-option span {
  font-size: 0.95rem;
  color: var(--text);
}

.country-dial {
  margin-left: auto;
  color: var(--gray) !important;
  font-size: 0.9rem !important;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 15px;
  text-align: center;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 20px;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* ================================
   WHATSAPP
   ================================ */

.section-whatsapp {
  background: var(--bg);
  text-align: center;
  padding: 80px 0;
}

.btn-whatsapp-section {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-section:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-section .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-numero {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  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 var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 480px) {
  .phone-country-selector {
    padding: 12px 10px;
  }
  
  .country-code {
    font-size: 0.85rem;
  }
}
