/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --onix:       #0A192F;
  --grafite:    #112240;
  --gold:       #00BFFF;
  --gold-light: #38D9F5;
  --ivory:      #E2E8F0;
  --muted:      #8892B0;
  --jade:       #64FFDA;
  --border:     rgba(0, 191, 255, 0.18);
  --border-hover: rgba(0, 191, 255, 0.45);
  --header-scroll-bg: rgba(10, 25, 47, 0.92);
  --menu-open-bg:     rgba(10, 25, 47, 0.97);
  --pulse-rgb:  0,191,255;

  --ff-display: 'Outfit', sans-serif;
  --ff-body:    'Nunito Sans', sans-serif;
  --ff-num:     'Outfit', sans-serif;

  --radius:     16px;
  --transition: 0.3s ease;

  --max-w: 1180px;
  --px:    clamp(1rem, 5vw, 2rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--onix);
  color: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 900;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--ff-body);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--ff-body);
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-pulse.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.12rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: #FAFAF8;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(138, 106, 31, 0.25);
}

.btn-pulse {
  animation: btnPulse 2.2s ease-in-out infinite;
}
.btn-pulse:hover {
  animation: none;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--pulse-rgb, 138,106,31), 0.45); }
  50%       { box-shadow: 0 0 0 14px rgba(var(--pulse-rgb, 138,106,31), 0); }
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(26, 26, 29, 0.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(138, 106, 31, 0.07);
  border-color: var(--gold);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--header-scroll-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.1rem;
}
.logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ivory);
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--ivory); }

.header .btn-primary { margin-left: 1rem; flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(138, 106, 31, 0.08), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 4rem;
}
.hero-content { max-width: 580px; }
.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--ivory);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-badges i { color: var(--jade); font-size: 1rem; }

/* SVG animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wave-anim {
  width: min(420px, 100%);
  overflow: visible;
}
.ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}
.r1 { opacity: 0.55; animation: pulse 2.5s ease-in-out infinite; }
.r2 { opacity: 0.35; animation: pulse 2.5s ease-in-out 0.4s infinite; }
.r3 { opacity: 0.2;  animation: pulse 2.5s ease-in-out 0.8s infinite; }
.r4 { opacity: 0.1;  animation: pulse 2.5s ease-in-out 1.2s infinite; }
.dot      { fill: var(--gold); opacity: 0.9; }
.dot-inner{ fill: var(--onix); }

@keyframes pulse {
  0%, 100% { opacity: var(--base-op, 0.3); transform-origin: center; transform: scale(1); }
  50%       { opacity: calc(var(--base-op, 0.3) * 1.6); transform: scale(1.04); }
}
.r1 { --base-op: 0.55; }
.r2 { --base-op: 0.35; }
.r3 { --base-op: 0.2; }
.r4 { --base-op: 0.1; }

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.credbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.4rem;
  background: var(--grafite);
}
.credbar-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.credbar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
}
.credbar-items .sep { color: var(--gold); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-dark { background: var(--grafite); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ============================================================
   CARDS (BENEFÍCIOS)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--grafite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(138, 106, 31, 0.09);
}
.card-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--ivory); }
.card p  { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  font-family: var(--ff-num);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-line {
  width: 2px;
  height: 2px;
  margin: 0.75rem auto 1.25rem;
  background: var(--gold);
  opacity: 0.3;
}
.step h3 { margin-bottom: 0.75rem; color: var(--ivory); }
.step p  { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.tab.active, .tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(138, 106, 31, 0.07);
}

/* ============================================================
   PLANS
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.plan-card {
  background: var(--grafite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.plan-featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #f5efe0, var(--grafite));
  box-shadow: 0 0 40px rgba(138, 106, 31, 0.1);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #FAFAF8;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.plan-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.plan-name  { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 0.75rem; }
.plan-price {
  font-family: var(--ff-num);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.currency { font-size: 1.2rem; vertical-align: super; margin-right: 2px; }
.plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ivory);
}
.plan-features i { color: var(--jade); flex-shrink: 0; font-size: 1rem; }

.plans-custom {
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.plans-custom p { color: var(--muted); margin-bottom: 0.5rem; font-size: 0.92rem; }
.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.link-gold:hover { gap: 0.6rem; }

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.payment-badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.payment-badges i { color: var(--gold); }

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.metric-num {
  font-family: var(--ff-num);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}
.metric-plus {
  font-family: var(--ff-num);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
}
.metric p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--grafite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.testimonial:hover { border-color: var(--border-hover); }
.testimonial p {
  color: var(--ivory);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #FAFAF8;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--ivory); }
.testimonial-author span  { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   HERO TRUST BAR
   ============================================================ */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}
.hero-trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.hero-trust-bar i { font-size: 1rem; }

/* ============================================================
   COMPARATIVO
   ============================================================ */
.comparativo { max-width: 820px; margin-inline: auto; }

.comp-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--onix);
  border-bottom: 1px solid var(--border);
}
.comp-header .comp-col-label { padding: 1rem; }
.comp-col {
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}
.comp-col-others { color: var(--muted); }
.comp-col-us { color: var(--gold); background: rgba(138, 106, 31, 0.07); }

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(138, 106, 31, 0.04); }

.comp-feature {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.comp-feature strong { font-size: 0.88rem; color: var(--ivory); }
.comp-feature span   { font-size: 0.75rem; color: var(--muted); }

.comp-row .comp-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 1rem 0.75rem;
  text-align: center;
}
.comp-col-others i { color: #E05555; }
.comp-col-us i     { color: var(--jade); }
.comp-col-others   { color: var(--muted); }
.comp-col-us       {
  color: var(--ivory);
  background: rgba(138, 106, 31, 0.05);
  font-weight: 600;
}

.comp-cta { text-align: center; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(138, 106, 31, 0.07), transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.cta-final p {
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-micro { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--grafite);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-block: 0.75rem 1rem;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-disclaimer { font-size: 0.72rem !important; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   BOTÃO AFILIADO FLUTUANTE
   ============================================================ */
.afiliado-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  background: var(--onix);
  border: 2px solid var(--gold);
  color: var(--gold);
  height: 52px;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.3rem 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, right 0.35s ease;
  animation: afiliadoGlow 2.4s ease-in-out infinite;
}
.afiliado-float:hover {
  background: rgba(var(--pulse-rgb), 0.08);
  transform: translateY(-2px);
}
.afiliado-float i { font-size: 1.2rem; }

@keyframes afiliadoGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--pulse-rgb), 0); }
  50%       { box-shadow: 0 0 0 6px rgba(var(--pulse-rgb), 0.18); }
}

/* ============================================================
   NOTIFICAÇÕES DE COMPRA
   ============================================================ */
.notif-container {
  position: fixed;
  top: 5rem;
  left: 1.25rem;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  pointer-events: none;
  max-width: 320px;
}
.notif-toast {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  background: var(--onix);
  border: 1px solid var(--border-hover);
  border-left: 4px solid var(--gold);
  border-radius: 1rem;
  padding: 1rem 1.2rem 1rem 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  width: 340px;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.notif-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.notif-toast.hide {
  opacity: 0;
  transform: translateX(-24px);
}
.notif-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-num);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--onix);
  flex-shrink: 0;
  text-transform: uppercase;
}
.notif-body { flex: 1; min-width: 0; }
.notif-nome {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notif-acao {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}
.notif-acao strong { color: var(--gold); font-weight: 700; }
.notif-tempo {
  font-size: 0.72rem;
  color: var(--muted);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.1rem;
}

/* ============================================================
   MODAL INSTAGRAM
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 1rem;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--onix);
  border: 1px solid rgba(var(--pulse-rgb), 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s cubic-bezier(.34,1.4,.64,1), opacity 0.25s;
  opacity: 0;
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--ivory); }
.modal-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.modal-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}
.modal-box p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.modal-input-wrap {
  display: flex;
  align-items: center;
  background: var(--grafite);
  border: 1.5px solid rgba(var(--pulse-rgb), 0.25);
  border-radius: 0.65rem;
  padding: 0 1rem;
  margin-bottom: 1.1rem;
  transition: border-color 0.2s;
}
.modal-input-wrap:focus-within {
  border-color: rgba(var(--pulse-rgb), 0.7);
}
.modal-at {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 0.3rem;
  user-select: none;
}
.modal-input-wrap input {
  background: none;
  border: none;
  outline: none;
  color: var(--ivory);
  font-size: 1.05rem;
  padding: 0.85rem 0;
  width: 100%;
  font-family: inherit;
}
.modal-input-wrap input::placeholder { color: var(--muted); }
.modal-submit {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
}
.modal-micro {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .wave-anim { width: min(280px, 70vw); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--menu-open-bg);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav.open a { font-size: 1.4rem; color: var(--ivory); }
  .menu-toggle { display: block; }
  .header .btn-primary { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .credbar-items .sep { display: none; }

  .plans-grid { grid-template-columns: 1fr; }

  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 1fr;
  }
  .comp-header .comp-col-label,
  .comp-feature { display: none; }

  .comp-header { grid-template-columns: 1fr 1fr; }

  .hero-trust-bar { gap: 0.5rem; justify-content: center; }
}

/* ============================================================
   THEME SWITCHER
   ============================================================ */
.theme-switcher {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 200;
  font-family: var(--ff-body);
}

.switcher-buttons {
  display: flex;
  gap: 0.5rem;
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grafite);
  border: 1px solid var(--border-hover);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all var(--transition);
}
.theme-toggle:hover,
.theme-toggle.active {
  transform: scale(1.06);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--onix);
}

.theme-panel {
  position: absolute;
  bottom: 58px;
  left: 0;
  background: var(--grafite);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 0.85rem;
  width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 70vh;
  overflow-y: auto;
}
.theme-panel.open { display: flex; }

#fontPanel { left: 54px; }

.theme-panel-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

/* opção de cor */
.palette-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  background: none;
  width: 100%;
  font-family: var(--ff-body);
}
.palette-option:hover { border-color: var(--border-hover); }
.palette-option.active { border-color: var(--gold); background: rgba(0,0,0,0.04); }

.palette-swatches { display: flex; gap: 3px; flex-shrink: 0; }
.swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.palette-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ivory);
  text-align: left;
}

/* opção de fonte */
.font-option {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  background: none;
  width: 100%;
  text-align: left;
}
.font-option:hover { border-color: var(--border-hover); }
.font-option.active { border-color: var(--gold); background: rgba(0,0,0,0.04); }

.font-option-name {
  font-size: 0.68rem;
  color: var(--muted);
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.font-option-preview {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
}
