/* ════════════════════════════════════════════════════════════════
   MUNDO MÁGICO 369 — SHARED SITE STYLES
   One source of truth for the whole site. Tokens + reusable
   components, extracted faithfully from the original landing page.
   ════════════════════════════════════════════════════════════════ */

:root {
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a26;
  --gold: #C9A84C;
  --gold2: #e0c270;
  --gold-light: #f0dca0;
  --rose: #c97a8a;
  --purple: #6732D8;
  --purple-light: #9b6df0;
  --purple-deep: #1a0a2e;
  --cream: #F5EDD8;
  --text: #F5EDD8;
  --text-muted: #aaaaaa;
  --text-micro: #666666;

  --maxw: 1100px;
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ambient stars — two layers twinkling at different rhythms (fixed, full-page) */
body::before, body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(201,168,76,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.32) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(201,168,76,0.32) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(201,168,76,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,0.26) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 45%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 75%, rgba(201,168,76,0.32) 0%, transparent 100%);
  animation: starTwinkleA 6s ease-in-out infinite;
}
body::after {
  background-image:
    radial-gradient(1px 1px at 5% 45%, rgba(155,109,240,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 8%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 92%, rgba(201,168,76,0.24) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 22%, rgba(201,168,76,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 95%, rgba(255,255,255,0.16) 0%, transparent 100%);
  animation: starTwinkleB 8.5s ease-in-out infinite 1.2s;
}
@keyframes starTwinkleA { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes starTwinkleB { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.95; } }

/* Ambient magic-dust canvas — injected by site.js, sits above the stars */
#mm-dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
  #mm-dust { display: none; }
}

main, footer, nav { position: relative; z-index: 1; }

/* Utilities */
.br-mobile { display: none; }
.sep-desktop { display: inline; }
@media (max-width: 768px) {
  .br-mobile { display: inline; }
  .sep-desktop { display: none; }
}

/* ── ACCESSIBILITY FLOOR ── */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--purple-deep);
  padding: 10px 18px; font-weight: 700; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ════════════════ NAV ════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  background: linear-gradient(180deg, rgba(10,10,15,0.96) 0%, rgba(10,10,15,0.72) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.site-nav .logo img { height: 50px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-link {
  color: var(--text); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: 0.04em;
  padding: 12px 20px; position: relative;
  transition: color 0.25s ease, letter-spacing 0.25s ease, text-shadow 0.25s ease;
  isolation: isolate;
}
/* Sparkle that blooms beside the label on hover */
.nav-link::before {
  content: '✦'; position: absolute; top: 50%; left: 2px;
  transform: translate(-4px, -50%) scale(0);
  color: var(--gold); font-size: 0.7rem; opacity: 0;
  text-shadow: 0 0 8px rgba(201,168,76,0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 6px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease, background-position 0.6s ease;
}
.nav-link:hover { color: var(--gold-light); letter-spacing: 0.07em; text-shadow: 0 0 16px rgba(201,168,76,0.45); }
.nav-link:hover::before { transform: translate(0, -50%) scale(1); opacity: 1; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); background-position: right center; }
.nav-link[aria-current="page"] { color: var(--gold-light); }
.nav-link:active { animation: navLinkPulse 0.4s ease; }

@keyframes navLinkPulse {
  0% { transform: scale(1); }
  35% { transform: scale(0.94); text-shadow: 0 0 22px rgba(201,168,76,0.8); }
  100% { transform: scale(1); }
}

/* Sparkle-burst particles spawned on nav click */
.mm-nav-spark {
  position: fixed; z-index: 999; color: var(--gold-light); font-size: 0.75rem;
  pointer-events: none; transform: translate(-50%, -50%);
  text-shadow: 0 0 8px rgba(201,168,76,0.9);
  animation: mmSparkFly 0.65s ease-out forwards;
}
@keyframes mmSparkFly {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-link::before, .mm-nav-spark { display: none; }
  .nav-link:active { animation: none; }
}

.nav-login {
  color: var(--text); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.88rem; letter-spacing: 0.1em;
  padding: 11px 22px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px; margin-left: 10px; position: relative;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-login:hover { color: var(--cream); border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.08); box-shadow: 0 0 22px rgba(201,168,76,0.22); }
.nav-login:active { animation: navLinkPulse 0.4s ease; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%; background: var(--cream);
  margin: 5px 0; transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .site-nav { padding: 10px 22px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,15,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 8px 22px 22px;
    transform: translateY(-120%); transition: transform .35s ease;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link::after { display: none; }
  .nav-link::before { left: -14px; }
  .nav-login { margin: 14px 0 0; text-align: center; padding: 13px 20px; font-size: 0.9rem; }
}

/* ════════════════ BUTTONS ════════════════ */
.btn-primary {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%);
  background-size: 200% auto; color: var(--purple-deep);
  text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 48px; border-radius: 2px; border: none; cursor: pointer;
  white-space: nowrap;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, transparent 66%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before { transform: translateX(140%); }
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 50px rgba(201,168,76,0.45); }

.btn-secondary {
  display: inline-block; border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 36px; border-radius: 2px;
  transition: border-color .25s, background .25s, color .25s;
}
.btn-secondary:hover { border-color: rgba(201,168,76,0.7); background: rgba(201,168,76,0.06); color: var(--gold-light); }

/* ════════════════ SHARED TYPE / LAYOUT ════════════════ */
.section-label {
  font-size: 0.92rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px; display: block;
}
.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 auto; }
.ornament span.line { display: block; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament span.line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span.star { color: var(--gold); font-size: 0.9rem; }

.eyebrow-gold { color: var(--gold); }
em.gold, .em-gold { color: var(--gold-light); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* Interior page hero (sub-pages) */
.page-hero {
  padding: 150px 24px 64px; text-align: center; position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.page-hero .wrap { max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.12; color: var(--cream);
  margin: 18px auto 22px; letter-spacing: 0.01em;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p.lede {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem); line-height: 1.75;
  color: var(--text-muted); max-width: 620px; margin: 0 auto;
}

/* Generic content section */
.section { padding: 84px 24px; position: relative; }
.section.tight { padding: 56px 24px; }
.section .inner { max-width: var(--maxw); margin: 0 auto; }
.section .inner.narrow { max-width: 760px; }
.divider-row { display: flex; justify-content: center; padding: 8px 0; }

/* Prose / article body */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; color: var(--cream);
  margin: 0 0 20px;
}
.prose h2 em { color: var(--gold-light); font-style: italic; }
.prose h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.04em; color: var(--gold); margin: 38px 0 12px;
}
.prose p { font-size: 1.05rem; line-height: 1.85; color: var(--text-muted); margin: 0 0 20px; }
.prose p strong { color: var(--cream); font-weight: 500; }
.prose ul { list-style: none; margin: 0 0 24px; }
.prose ul li {
  position: relative; padding-left: 28px; margin-bottom: 14px;
  font-size: 1.02rem; line-height: 1.7; color: var(--text-muted);
}
.prose ul li::before { content: '✦'; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: 0.8rem; }
.prose a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* Card grid */
.card-grid { display: grid; gap: 20px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 32px 28px; transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
.card .card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.card h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.04em; color: var(--gold); margin-bottom: 12px; text-transform: uppercase;
}
.card p { font-size: 0.96rem; line-height: 1.7; color: var(--text-muted); }
.card .card-icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: 16px; filter: drop-shadow(0 0 14px rgba(201,168,76,0.2)); }
@media (max-width: 880px) {
  .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; }
}

/* Two-column feature row (image + text) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row .media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); aspect-ratio: 4/3; background: var(--dark2);
}
.feature-row .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-row h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem,4vw,2.6rem); line-height: 1.2; color: var(--cream); margin-bottom: 18px; }
.feature-row h2 em { color: var(--gold-light); font-style: italic; }
.feature-row p { font-size: 1.03rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse { direction: ltr; }
}

/* Accordion (FAQ) */
.accordion { max-width: 760px; margin: 0 auto; }
.accordion details {
  border-bottom: 1px solid rgba(201,168,76,0.14); padding: 6px 0;
}
.accordion summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 22px 4px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.05rem; color: var(--cream);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .plus { color: var(--gold); font-size: 1.4rem; line-height: 1; transition: transform .3s; flex-shrink: 0; }
.accordion details[open] summary .plus { transform: rotate(45deg); }
.accordion .answer { padding: 0 4px 24px; }
.accordion .answer p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }
.accordion .answer a { color: var(--gold-light); }

/* International / boxed CTA */
.boxed-cta {
  max-width: 700px; margin: 0 auto; text-align: center;
  border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius);
  padding: 44px 36px; background: rgba(201,168,76,0.03);
}
.boxed-cta h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.8rem; color: var(--cream); margin-bottom: 12px; }
.boxed-cta p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 480px; margin: 0 auto 26px; }

/* CTA band */
.cta-band { text-align: center; padding: 84px 24px; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem,5vw,3.2rem); line-height: 1.2; color: var(--cream); margin-bottom: 18px; }
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; }

/* ════════════════ FOOTER ════════════════ */
.site-footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 40px 44px; background: var(--dark);
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .footer-logo img { height: 54px; width: auto; opacity: 0.92; }
.footer-brand p { color: var(--text-micro); font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block; color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; line-height: 1; margin-bottom: 13px; transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-micro); font-size: 0.8rem;
}
@media (max-width: 880px) {
  .site-footer { padding: 48px 22px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

/* ════════════════ REVEAL ON SCROLL ════════════════ */
.reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity .85s ease, transform .85s ease, filter .85s ease; }
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ════════════════ PRICING (shared: home + /planos) ════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; align-items: start; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; gap: 18px; } }

.value-panel { background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); padding: 34px 30px; }
.value-panel-header { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.value-panel h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 1.7rem; color: var(--cream); margin-bottom: 26px; line-height: 1.25; }
.value-panel h3 em { color: var(--gold-light); font-style: italic; }
.value-list { list-style: none; }
.value-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.value-list li:first-child { border-top: none; }
.value-list .value-icon { flex-shrink: 0; width: 38px; height: 38px; }
.value-list .value-icon img { width: 100%; height: 100%; object-fit: contain; }
.value-list strong { display: block; color: var(--cream); font-weight: 500; font-size: 1rem; margin-bottom: 4px; }
.value-list small { display: block; color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.value-list .value-feature { background: rgba(201,168,76,0.05); border-radius: 6px; padding: 16px; border-top: none; margin-bottom: 4px; }
.value-tag { display: inline-block; margin-top: 8px; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.03em; }

.price-stack { display: flex; flex-direction: column; gap: 10px; }
.price-option {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "left right" "cta cta";
  gap: 6px 16px; align-items: center; text-decoration: none;
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius);
  padding: 22px 24px; transition: border-color .25s, transform .2s, box-shadow .25s;
}
.price-option:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.price-option { position: relative; }
.price-option.featured { border-color: rgba(201,168,76,0.45); box-shadow: 0 0 30px rgba(201,168,76,0.08); margin-top: 6px; }
.price-option.featured::before {
  content: 'Melhor opção'; position: absolute; top: -10px; left: 24px;
  background: var(--gold); color: var(--purple-deep); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.price-option-left { grid-area: left; }
.price-option-right { grid-area: right; text-align: right; }
.price-option-name { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 500; font-size: 1.02rem; }
.price-savings { font-size: 0.8rem; font-weight: 700; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); border-radius: 999px; padding: 4px 12px; letter-spacing: 0.03em; }
.price-installment { display: block; margin-top: 4px; font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.02em; }
.price-option-meta { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }
.price-option-meta del { color: var(--text-micro); }
.price-option-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
.price-option-amount sup { font-size: 0.9rem; vertical-align: super; }
.price-option-period { color: var(--text-micro); font-size: 0.78rem; margin-top: 4px; }
.price-option-cta { grid-area: cta; color: var(--gold); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 6px; display: flex; justify-content: flex-end; gap: 8px; }
.price-option:hover .price-option-arrow { transform: translateX(4px); }
.price-option-arrow { transition: transform .2s; }
.pricing-checkout-note { text-align: center; color: var(--text-micro); font-size: 0.84rem; margin-top: 14px; }

/* ════════════ HORIZONTAL PLAN CARDS (planos + home) ════════════ */
.plans-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 48px auto 0; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); border-radius: 8px; padding: 34px 20px 26px; transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease; overflow: visible; }
.plan-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.45); box-shadow: 0 12px 34px rgba(0,0,0,0.45); }
.plan-card.featured { border-color: rgba(201,168,76,0.5); box-shadow: 0 0 34px rgba(201,168,76,0.1); }
/* Spotlight glow that follows the cursor — the card's badge (if any) sits
   above the card's own top edge, so this stays overflow:visible and the
   glow (inset:0) is naturally contained without needing to clip. */
.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.plan-card:hover::after { opacity: 1; }
.plan-flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--purple-deep); font-family: 'DM Sans', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 13px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.plan-badge { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); border-radius: 999px; padding: 5px 14px; margin-bottom: 16px; }
.plan-badge.is-hidden { visibility: hidden; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--gold-light); font-size: 3rem; line-height: 1; }
.plan-price sup { font-size: 1rem; vertical-align: super; margin-right: 2px; }
.plan-price small { font-size: 1.15rem; }
.plan-price-alt { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--gold-light); font-size: 1.7rem; line-height: 1.15; }
.plan-period { color: var(--text-micro); font-size: 0.78rem; margin-top: 5px; }
.plan-note { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; margin-top: 16px; margin-bottom: 22px; }
.plan-cta { margin-top: auto; align-self: stretch; background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%); background-size: 200% auto; color: var(--purple-deep); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 13px 12px; border-radius: 2px; transition: background-position .4s ease; }
.plan-card:hover .plan-cta { background-position: right center; }
.value-panel-wide { max-width: 1080px; margin: 0 auto; }
.value-panel-wide .value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 34px; }
.value-panel-wide .value-list .value-feature { grid-column: 1 / -1; }
.value-panel-wide .value-list li { border-top: none; border-bottom: none; }
@media (max-width: 900px) { .plans-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .plans-row { grid-template-columns: 1fr; } .value-panel-wide .value-list { grid-template-columns: 1fr; } .plan-badge.is-hidden { display: none; } }

/* discreet landscape backdrop for the plans area */
.pricing-bg {
  background:
    linear-gradient(180deg, #0A0A0E 0%, rgba(10,10,14,0.84) 12%, rgba(10,10,14,0.66) 50%, rgba(10,10,14,0.84) 88%, #0A0A0E 100%),
    url('/images/pricing-bg.jpeg') center center / cover no-repeat;
}
