:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-subtle: #1a1a1a;
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8962E;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-strong: rgba(212, 175, 55, 0.45);
  --white: #f5f3ee;
  --white-muted: #c8c6c0;
  --border: rgba(201, 168, 76, 0.15);
  --border-strong: rgba(201, 168, 76, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.breaking-bar {
  background: linear-gradient(90deg, #b71c1c 0%, #c62828 50%, #b71c1c 100%);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 800;
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.4);
}

.breaking-track {
  display: inline-flex;
  animation: breaking-scroll 22s linear infinite;
}

.breaking-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 3rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.breaking-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes breaking-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 680px;
}

.text-center {
  text-align: center;
}

/* ===== Tipografia ===== */
h1,
h2,
h3,
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--white-muted);
  margin: 0 0 2rem;
  max-width: 54ch;
}

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

.lead-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.numeros-note {
  font-size: 0.9375rem;
  color: var(--white-muted);
  max-width: 56ch;
  margin: 1.5rem auto 0;
}

.taxdeed-lead {
  color: var(--white-muted);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 1.5rem;
}

.taxdeed-body {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.taxdeed-body p {
  margin: 0 0 1rem;
}

.taxdeed-body strong {
  color: var(--white);
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--gold-glow);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 10px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow:
    0 4px 20px var(--gold-glow),
    0 0 30px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid var(--gold-light);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow:
    0 6px 28px var(--gold-glow-strong),
    0 0 40px var(--gold-glow-strong),
    0 0 60px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-glow);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--gold-glow) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-logo {
  width: 160px;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--white-muted);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

.hero-speakers {
  width: 100%;
  max-width: 480px;
  margin: 1.5rem auto 0.25rem;
  display: block;
}

.hero-names {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 0 0 2rem;
}

.hero-names strong {
  color: var(--gold);
}

.hero-cta {
  margin-bottom: 1rem;
}

.hero-meta {
  font-size: 0.8125rem;
  color: var(--white-muted);
  margin: 0;
}

/* ===== VSL ===== */
.section-vsl {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vsl-wrapper {
  margin: 1.5rem auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px var(--gold-glow);
  max-width: 400px;
  position: relative;
}

.vsl-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.3;
}

.vsl-player {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}

.vsl-cta {
  display: block;
  max-width: 340px;
  margin: 0 auto;
}

/* ===== Seções ===== */
.section {
  padding: 4.5rem 0;
}

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

.section-alt {
  background:
    linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.section-accent {
  background:
    linear-gradient(135deg, #1a1608 0%, #0f0d07 100%);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  text-align: center;
}

/* ===== Cards prova ===== */
.cards-prova {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.card-prova {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s;
}

.card-prova:hover {
  border-color: var(--border-strong);
}

.card-prova-label,
.card-prova-e {
  font-size: 0.875rem;
  color: var(--white-muted);
}

.card-prova-valor {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}

.card-prova-retorno {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 0.4rem;
  color: var(--white);
}

/* ===== Números ===== */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.numero-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.numero-val {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.numero-label {
  font-size: 0.8125rem;
  color: var(--white-muted);
  display: block;
  margin-top: 0.25rem;
}

/* ===== Programação ===== */
.programacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.programacao-dia {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.programacao-dia-titulo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--gold);
}

.programacao-lista {
  margin: 0;
  padding-left: 1.1rem;
}

.programacao-lista li {
  margin-bottom: 0.4rem;
  color: var(--white-muted);
}

.programacao-lista li strong {
  color: var(--white);
}

.programacao-lista small {
  color: var(--white-muted);
  font-size: 0.8125rem;
}

/* ===== Especialistas ===== */
.especialistas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.especialista-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.especialista-card:hover {
  border-color: var(--gold-glow);
  transform: translateY(-4px);
}

.especialista-avatar {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
  display: block;
  margin: 0 auto;
}

.especialista-header {
  margin-bottom: 1rem;
  text-align: center;
}

.especialista-nome {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.especialista-titulo {
  font-size: 0.875rem;
  color: var(--white-muted);
  margin: 0;
  font-weight: 500;
}

.especialista-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.especialista-bio {
  text-align: left;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.bio-content {
  padding-top: 1rem;
}

.especialista-bio.collapsed {
  max-height: 0;
  opacity: 0;
}

.especialista-bio.expanded {
  max-height: 2000px;
  opacity: 1;
}

.bio-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--white-muted);
}

.bio-content p:first-child {
  margin-top: 1rem;
}

.bio-content p:last-child {
  margin-bottom: 1rem;
}

.bio-content strong {
  color: var(--white);
}

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

.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.bio-toggle:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.bio-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.bio-toggle.active .bio-toggle-icon {
  transform: rotate(180deg);
}

/* ===== Bloco data ===== */
.data-local-label {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.data-local-desc {
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 0 0 0.5rem;
}

.data-local-nome {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.data-local-cidade {
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 0 0 1.75rem;
}

/* ===== Incluso ===== */
.lista-incluso {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.lista-incluso li {
  padding: 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* ===== Preço ===== */
.preco-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: 
    0 0 60px var(--gold-glow),
    0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.preco-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.preco-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  display: inline-block;
}

.preco-lista li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.4;
}

.preco-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preco-lista li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a0a0a;
}

.preco-de {
  font-size: 1rem;
  color: var(--white-muted);
  margin: 0 0 0.25rem;
}

.preco-riscado {
  text-decoration: line-through;
  color: #888;
}

.preco-valor {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  margin: 0;
  color: var(--gold);
}

.preco-parcela {
  font-size: 0.4em;
  font-weight: 500;
  vertical-align: 0.25em;
  color: var(--white);
  margin-right: 0.15em;
}

.preco-simbolo {
  font-size: 0.55em;
  vertical-align: 0.15em;
}

.preco-avista {
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 0.25rem 0 1.5rem;
}

.preco-selos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.selo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-muted);
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  transition: transform 0.2s, color 0.2s;
}

.selo-item:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.selo-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px var(--gold-glow));
}

/* ===== Urgency Counter ===== */
.urgency-counter {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.15) 0%, rgba(183, 28, 28, 0.05) 100%);
  border: 1px solid rgba(183, 28, 28, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.urgency-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--white-muted);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px var(--gold-glow);
}

.countdown-unit {
  font-size: 0.6875rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.urgency-slots {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ef5350;
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulse-urgency 2s ease-in-out infinite;
}

.urgency-icon {
  font-size: 1.1rem;
}

@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.preco-label {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preco-obs {
  font-size: 0.875rem;
  color: var(--white-muted);
  margin: 0.5rem 0 0;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.faq-item:hover {
  background: rgba(255, 215, 0, 0.03);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1rem;
  margin: 0 -1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 60px;
  border-radius: var(--radius);
  transition: color 0.2s;
}

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

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-right: 0.5rem;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

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

.faq-answer p {
  margin: 0 0 1.25rem;
  padding: 0.25rem 1rem 0.5rem;
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.65;
}

/* ===== Story ===== */
.section-story {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.story-lead {
  font-size: 1.0625rem;
  color: var(--white-muted);
  margin: 0 0 1.5rem;
}

.story-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--white-muted);
}

.story-text p strong {
  color: var(--white);
}

.story-cta {
  margin-top: 2rem;
}

/* ===== CTA WhatsApp ===== */
.section-cta .section-title {
  margin-bottom: 0.5rem;
}

.section-cta .section-lead {
  margin-bottom: 1.5rem;
}

.whatsapp-numero {
  font-size: 0.875rem;
  color: var(--white-muted);
  margin: 0.5rem 0 0;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  background: #050505;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  text-align: center;
  color: var(--white-muted);
}

.footer-logo {
  width: 100px;
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.footer-copy {
  margin: 0;
}

/* ===== Escrituras / Deeds Slider ===== */
.deeds-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 1rem;
}

.deeds-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
  flex: 1;
}

.deeds-slider::-webkit-scrollbar {
  display: none;
}

.deeds-slider .deed-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.deeds-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.deeds-arrow:hover {
  background: var(--bg-subtle);
  border-color: var(--gold);
}

.deeds-arrow svg {
  width: 20px;
  height: 20px;
}

.deeds-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.deeds-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-clip: content-box;
  box-sizing: content-box;
  position: relative;
}

.deeds-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.deeds-dot:hover::before {
  background: var(--gold-dark);
}

.deeds-dot.active::before {
  background: var(--gold);
  transform: scale(1.3);
  width: 24px;
  border-radius: 6px;
}

.deed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.deed-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.deed-img-wrap {
  position: relative;
  overflow: hidden;
}

.deed-img-wrap img {
  width: 100%;
  display: block;
}

.deed-caption {
  padding: 0.7rem 1rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--white-muted);
  text-align: center;
}

.deeds-total {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--white-muted);
  margin: 1rem 0 2rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== Depoimentos Slider ===== */
.deps-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 1rem;
}

.deps-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
  flex: 1;
}

.deps-slider::-webkit-scrollbar {
  display: none;
}

.deps-slider .dep-print-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.deps-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.deps-arrow:hover {
  background: var(--bg-subtle);
  border-color: var(--gold);
}

.deps-arrow svg {
  width: 20px;
  height: 20px;
}

.deps-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.deps-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.deps-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.deps-dot:hover::before {
  background: var(--gold-dark);
}

.deps-dot.active::before {
  background: var(--gold);
  transform: scale(1.3);
  width: 24px;
  border-radius: 6px;
}

.dep-print-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.dep-print-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.dep-print-card img {
  width: 100%;
  display: block;
}

/* ===== Divider ===== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
  border: none;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsivo — Desktop (>960px) ===== */
@media (min-width: 961px) {
  .hero-inner {
    max-width: 700px;
  }

  .cards-prova {
    grid-template-columns: repeat(3, 1fr);
  }

  .numeros-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .programacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .especialistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lista-incluso {
    grid-template-columns: repeat(5, 1fr);
  }

  .btn-gold.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.125rem;
  }

  .preco-box {
    padding: 3rem 2.5rem;
  }

  #escrituras .container {
    max-width: 1080px;
  }

  #depoimentos .container {
    max-width: 1080px;
  }
}

/* ===== Responsivo — Tablet (641–960px) ===== */
@media (min-width: 641px) and (max-width: 960px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    min-height: 70vh;
    padding: 4rem 0 3rem;
  }

  .cards-prova {
    grid-template-columns: repeat(2, 1fr);
  }

  .numeros-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .programacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .especialistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lista-incluso {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* ===== Responsivo — Mobile (<=640px) ===== */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .container-narrow {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 2rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .hero-speakers {
    max-width: 320px;
    margin: 1rem auto 0;
  }

  .hero-names {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    margin-bottom: 0.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
  }

  .section-lead {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  /* Botões full-width no mobile */
  .btn {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .btn-lg {
    padding: 1rem 1rem;
    font-size: 1rem;
  }

  .vsl-cta {
    max-width: 100%;
  }

  /* VSL - full width vertical video */
  .vsl-wrapper {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1rem auto 1.5rem;
  }

  .vsl-player {
    max-width: 100%;
  }

  /* Breaking bar mobile */
  .breaking-item {
    font-size: 0.75rem;
    padding: 0.55rem 2rem;
  }

  .breaking-track {
    animation-duration: 28s;
  }

  /* Escrituras */
  .deeds-slider-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .deeds-slider {
    order: 1;
    width: 100%;
    padding: 0 0.5rem;
  }

  .deeds-slider .deed-card {
    flex: 0 0 85%;
    max-width: 300px;
  }

  .deeds-arrow {
    display: none;
  }

  .deeds-dots {
    gap: 0.25rem;
  }

  .deeds-dot {
    min-width: 40px;
    min-height: 40px;
  }

  .deeds-dot::before {
    width: 10px;
    height: 10px;
  }

  .deeds-dot.active::before {
    width: 20px;
  }

  .deeds-total {
    font-size: 0.8125rem;
    padding: 0.85rem;
  }

  /* Depoimentos */
  .deps-slider-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .deps-slider {
    order: 1;
    width: 100%;
    padding: 0 0.5rem;
  }

  .deps-slider .dep-print-card {
    flex: 0 0 85%;
    max-width: 320px;
  }

  .deps-arrow {
    display: none;
  }

  .deps-dots {
    gap: 0.25rem;
  }

  .deps-dot {
    min-width: 40px;
    min-height: 40px;
  }

  .deps-dot::before {
    width: 10px;
    height: 10px;
  }

  .deps-dot.active::before {
    width: 20px;
  }

  /* Cards prova */
  .cards-prova {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .card-prova {
    padding: 1.25rem;
  }

  .card-prova-valor {
    font-size: 1.25rem;
  }

  /* Números */
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .numero-item {
    padding: 1rem 0.5rem;
  }

  .numero-val {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .numero-label {
    font-size: 0.75rem;
  }

  /* Programação */
  .programacao-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .programacao-dia {
    padding: 1.25rem;
  }

  .programacao-dia-titulo {
    font-size: 1.05rem;
  }

  .programacao-lista {
    padding-left: 1rem;
  }

  .programacao-lista li {
    font-size: 0.9375rem;
  }

  /* Especialistas */
  .especialistas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .especialista-card {
    padding: 1.5rem;
  }

  .avatar-placeholder {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
  }

  .avatar-img {
    width: 90px;
    height: 90px;
  }

  .especialista-nome {
    font-size: 1.25rem;
  }

  .especialista-titulo {
    font-size: 0.8125rem;
  }

  .especialista-stats {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .especialista-bio p {
    font-size: 0.9375rem;
  }

  /* Data e local */
  .data-local-label {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .data-local-nome {
    font-size: 1rem;
  }

  .data-local-cidade {
    margin-bottom: 1.25rem;
  }

  /* Incluso */
  .lista-incluso {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .lista-incluso li {
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
  }

  /* Preço */
  .preco-box {
    padding: 2rem 1.25rem;
    margin: 1.5rem 0;
  }

  .preco-lista li {
    font-size: 0.875rem;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
  }

  .preco-lista li::before {
    width: 18px;
    height: 18px;
  }

  .preco-lista li::after {
    left: 4px;
    font-size: 0.7rem;
  }

  .preco-valor {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .preco-parcela {
    font-size: 0.35em;
  }

  .preco-avista {
    font-size: 0.8125rem;
  }

  .preco-selos {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .selo-item {
    font-size: 0.7rem;
    min-width: 70px;
  }

  .selo-icon {
    width: 32px;
    height: 32px;
  }

  .preco-label {
    font-size: 0.8125rem;
  }

  .preco-obs {
    font-size: 0.8125rem;
  }

  /* Urgency counter mobile */
  .urgency-counter {
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
  }

  .countdown-item {
    min-width: 50px;
  }

  .countdown-value {
    font-size: 1.75rem;
  }

  .countdown-sep {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .countdown-unit {
    font-size: 0.6rem;
  }

  .urgency-slots {
    font-size: 0.8125rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.9375rem;
    padding: 1rem 0.5rem;
    margin: 0 -0.5rem;
    min-height: 56px;
  }

  .faq-question::after {
    width: 10px;
    height: 10px;
    margin-right: 0.25rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem 0.5rem;
  }

  /* Story */
  .story-text p {
    font-size: 0.9375rem;
  }

  /* WhatsApp */
  .whatsapp-numero {
    font-size: 0.8125rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0;
    font-size: 0.75rem;
  }
}

/* ===== Modal Checkout ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.modal-header p {
  color: var(--white-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.modal-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--white-muted);
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder {
  color: #666;
}

.btn-block {
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.btn-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btn-shimmer 2s infinite;
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

.btn-block:disabled::before {
  animation: none;
}

.btn-text,
.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-loading .spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.iti__tel-input:focus {
  outline: none;
  border-color: var(--gold);
}

.iti__tel-input::placeholder {
  color: #666;
}

.iti__country-container {
  border-radius: var(--radius) 0 0 var(--radius);
}

.iti__selected-dial-code {
  color: var(--white);
}

.iti__dropdown-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.iti__search-input {
  background: var(--bg);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
}

.iti__search-input::placeholder {
  color: #666;
}

.iti__country {
  color: var(--white);
}

.iti__country:hover,
.iti__country--highlight {
  background: rgba(207, 163, 60, 0.15);
}

.iti__dial-code {
  color: var(--white-muted);
}

.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-text {
  font-size: 0.8125rem;
  color: var(--white-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-sticky {
  padding: 0.55rem 1.5rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .sticky-cta-inner {
    padding: 0.55rem 1rem;
    justify-content: center;
  }

  .sticky-cta-text {
    display: none;
  }

  .btn-sticky {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
  }
}