/* ========================================
   THE VELASK · ROYAL FLAME & GOLD SOCIETY
   Official Stylesheet · v1.0
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: dark;
  /* PALETTE - From Brand Manual */
  --black: #020202;
  --obsidian: #090806;
  --ink: #11100C;
  --gold-deep: #7A5516;
  --gold-old: #A97720;
  --gold: #C89D2C;
  --gold-light: #F2D67C;
  --gold-ivory: #FFF1B4;
  --blue-royal: #0F5E8B;
  --blue-deep: #062C45;
  --blue-black: #031520;
  --ivory: #E8E2D1;
  --paper: #CFC3A6;
  --muted: #928A78;
  --dim: #5A5548;
  --blood: #6F1712;
  --flame: #B56B1B;

  /* TYPOGRAPHY */
  --display: "Cinzel", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;

  /* DECORATIONS */
  --line: rgba(242, 214, 124, .16);
  --line-strong: rgba(242, 214, 124, .32);
  --gold-grad: linear-gradient(135deg, #7A5516 0%, #A97720 22%, #C89D2C 42%, #FFF1B4 55%, #C89D2C 72%, #6B4312 100%);
  --hairline: linear-gradient(90deg, transparent, rgba(255, 241, 180, .72), rgba(200, 157, 44, .72), transparent);
  --shadow-deep: 0 48px 130px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .04);
  --shadow-gold: 0 22px 70px rgba(200, 157, 44, .24), inset 0 1px 0 rgba(255, 255, 255, .16);
  --shadow-card: 0 30px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .04);
}

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

html { scroll-behavior: smooth; background: var(--black); }

body {
  min-height: 100vh;
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(15, 94, 139, .15), transparent 27%),
    radial-gradient(circle at 82% 2%, rgba(242, 214, 124, .10), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(122, 85, 22, .08), transparent 38%),
    linear-gradient(135deg, #020202 0%, #080806 42%, #0B0905 70%, #020202 100%);
}

body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; opacity: .25; z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 84px 84px, 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .15) 75%, transparent);
}

body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, .30) 50%, rgba(0, 0, 0, .85) 100%);
}

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.gold-text { color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(2, 2, 2, .25), rgba(2, 2, 2, 0));
  transition: background .35s ease, padding .35s ease, border .35s ease;
  border-bottom: 1px solid transparent;
}
.topbar-scrolled {
  background: linear-gradient(180deg, rgba(2, 2, 2, .92), rgba(2, 2, 2, .82));
  padding: 12px 0;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-brand { display: flex; align-items: center; gap: 12px; }
.topbar-brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 8px 22px rgba(200, 157, 44, .3)); }
.topbar-brand strong {
  display: block; font-family: var(--display); font-size: 14px; color: #fff;
  letter-spacing: .02em; font-weight: 800; line-height: 1.1;
}
.topbar-brand span {
  display: block; color: var(--gold-light); font-size: 8.5px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 900; margin-top: 3px;
}
.topbar-nav { display: flex; align-items: center; gap: 30px; }
.topbar-nav a {
  color: var(--paper); font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
}
.topbar-nav a:hover { color: var(--gold-light); }

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  background: var(--gold-grad);
  color: #1A1100;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 241, 180, .35);
  box-shadow: 0 18px 40px rgba(200, 157, 44, .35), inset 0 1px 0 rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 26px 56px rgba(200, 157, 44, .48), inset 0 1px 0 rgba(255, 255, 255, .65); filter: brightness(1.08); }
.cta-btn-mini { padding: 9px 18px; font-size: 11px; }
.cta-btn-large { padding: 18px 38px; font-size: 14px; }
.cta-btn-block { display: flex; width: 100%; margin-top: 22px; }
.cta-btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.cta-btn-ghost:hover {
  background: rgba(200, 157, 44, .08);
  border-color: var(--gold);
  color: var(--gold-ivory);
  box-shadow: 0 14px 36px rgba(200, 157, 44, .2);
}
.cta-btn-gold {
  background: var(--gold-grad);
  color: #1A1100;
}
.cta-btn-disabled {
  display: flex; width: 100%; margin-top: 22px;
  padding: 14px 30px; background: rgba(255, 255, 255, .03);
  color: var(--muted); border: 1px solid var(--line);
  border-radius: 4px; font-family: var(--display); font-weight: 800;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; cursor: not-allowed;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 157, 44, .14), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(15, 94, 139, .12), transparent 45%),
    radial-gradient(ellipse at 20% 60%, rgba(111, 23, 18, .08), transparent 40%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 241, 180, .25), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255, 241, 180, .2), transparent),
    radial-gradient(2px 2px at 70% 40%, rgba(255, 241, 180, .22), transparent),
    radial-gradient(1.5px 1.5px at 85% 65%, rgba(242, 214, 124, .18), transparent),
    radial-gradient(2.5px 2.5px at 55% 20%, rgba(255, 241, 180, .2), transparent);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  width: 100%;
}
.hero-kicker {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(200, 157, 44, .08);
  border: 1px solid rgba(242, 214, 124, .25);
  border-radius: 99px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 124px);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 38px;
}
.hero-sub {
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  font-weight: 500;
}
.hero-sub em { font-style: italic; color: var(--gold-light); }
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 720px; margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.section.revealed { opacity: 1; transform: translateY(0); }
.section-dark { background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .35), transparent); }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.45;
}

/* ===== MANIFESTO ===== */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.manifesto-block {
  position: relative;
  padding: 42px 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .010));
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .25s ease;
}
.manifesto-block.revealed { opacity: 1; transform: translateY(0); }
.manifesto-block:hover { border-color: var(--line-strong); }
.manifesto-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.manifesto-block h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.manifesto-block p {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

/* ===== SOCIETY / TIERS ===== */
.society-intro, .community-intro {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}
.society-intro p, .community-intro p { font-style: italic; }
.community-intro em { color: var(--gold-light); font-style: italic; }

.tier-grid, .plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.tier-card, .plan-card {
  position: relative;
  padding: 44px 34px 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.tier-card.revealed, .plan-card.revealed { opacity: 1; transform: translateY(0); }
.tier-card:hover, .plan-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.tier-founder {
  background: linear-gradient(145deg, rgba(200, 157, 44, .12), rgba(255, 255, 255, .02), rgba(15, 94, 139, .04));
  border-color: rgba(242, 214, 124, .35);
}
.tier-founder::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 8px;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}
.tier-council {
  background: linear-gradient(145deg, rgba(15, 94, 139, .15), rgba(255, 255, 255, .02), rgba(111, 23, 18, .08));
  border-color: rgba(15, 94, 139, .35);
}

.tier-badge, .plan-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 157, 44, .12);
  border: 1px solid rgba(200, 157, 44, .3);
  border-radius: 99px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
}

.tier-name, .plan-name {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.tier-cap, .plan-savings {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 26px;
  font-style: italic;
  font-family: var(--serif);
}
.tier-price, .plan-price {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  color: #fff;
  margin-bottom: 6px;
}
.tier-currency, .plan-currency {
  font-size: 22px;
  margin-right: 6px;
  color: var(--gold-light);
  font-weight: 600;
}
.tier-price { font-size: 56px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plan-price { font-size: 48px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.tier-period, .plan-period {
  font-size: 18px;
  color: var(--paper);
  font-weight: 500;
  margin-left: 4px;
}
.tier-lock {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 30px;
}

.tier-list, .plan-list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.tier-list li, .plan-list li {
  position: relative;
  padding-left: 22px;
  color: var(--paper);
  font-size: 14.5px;
  line-height: 1.5;
}
.tier-list li::before, .plan-list li::before {
  content: "◆";
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 7px;
}
.tier-list li strong, .plan-list li strong { color: var(--gold-ivory); }

/* PLAN CARDS */
.plan-recommended {
  border-color: rgba(242, 214, 124, .45);
  background: linear-gradient(145deg, rgba(200, 157, 44, .12), rgba(255, 255, 255, .02));
  transform: scale(1.02);
}
.plan-recommended.revealed { transform: scale(1.02); }
.plan-tag-recommended {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px;
  background: var(--gold-grad);
  color: #1A1100;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(200, 157, 44, .35);
}
.plan-savings { color: var(--gold-light); }

/* TITLES PROGRESSION */
.titles-progression {
  margin-top: 100px;
  padding: 56px 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .010));
  border: 1px solid var(--line);
  border-radius: 8px;
}
.titles-head { text-align: center; margin-bottom: 50px; }
.titles-head h3 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.titles-head p {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}
.titles-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.titles-line::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  z-index: 0;
}
.title-step {
  text-align: center;
  position: relative; z-index: 1;
}
.title-dot {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--black), var(--obsidian));
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-ivory);
  box-shadow: 0 12px 30px rgba(200, 157, 44, .25);
}
.title-final .title-dot {
  background: var(--gold-grad);
  color: #1A1100;
  border-color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(200, 157, 44, .45);
}
.title-step strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.title-step span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  font-family: var(--serif);
  font-style: italic;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-card {
  padding: 36px 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .25s ease, background .25s ease;
}
.benefit-card.revealed { opacity: 1; transform: translateY(0); }
.benefit-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(200, 157, 44, .08), rgba(255, 255, 255, .02));
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 14px rgba(200, 157, 44, .35));
}
.benefit-card h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.benefit-card p {
  color: var(--paper);
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--serif);
}

/* ===== CATALOGO DO REINO (coleções visuais) ===== */
.colecao { margin-bottom: 90px; }
.colecao:last-of-type { margin-bottom: 0; }
.colecao-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.colecao-kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.colecao-name {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.colecao-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--paper);
  line-height: 1.5;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.catalogo-grid.grid-experiencias {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.produto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .35s ease, box-shadow .35s ease;
}
.produto-card.revealed { opacity: 1; transform: translateY(0); }
.produto-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 40px 96px rgba(0, 0, 0, .58), 0 0 0 1px rgba(200, 157, 44, .14), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.produto-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--obsidian);
}
.grid-experiencias .produto-img { aspect-ratio: 16 / 9; }
.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1), filter .6s ease;
  filter: saturate(1.02) contrast(1.02);
}
.produto-card:hover .produto-img img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
.produto-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 2, 2, .55) 100%);
  pointer-events: none;
}
.produto-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 13px;
  background: rgba(2, 2, 2, .62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 157, 44, .4);
  border-radius: 99px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.produto-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 28px;
}
.produto-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.produto-desc {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 22px;
  flex: 1;
}
.produto-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.produto-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.produto-price .price-amount {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.produto-price .price-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
}
.produto-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.produto-cta:hover {
  background: rgba(200, 157, 44, .1);
  border-color: var(--gold);
  color: var(--gold-ivory);
}

@media (max-width: 640px) {
  .catalogo-grid, .catalogo-grid.grid-experiencias { grid-template-columns: 1fr; }
  .produto-foot { flex-direction: column; align-items: flex-start; }
  .produto-cta { width: 100%; text-align: center; }
}

/* ===== APPLY CTA ===== */
.apply-card {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(145deg, rgba(200, 157, 44, .14), rgba(255, 255, 255, .02), rgba(15, 94, 139, .08));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.apply-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 241, 180, .14), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(15, 94, 139, .15), transparent 45%);
}
.apply-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.apply-card .section-title { font-size: clamp(36px, 4.5vw, 64px); }
.apply-text {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  margin: 20px auto;
  max-width: 640px;
}
.apply-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 80px;
  padding: 80px 0 40px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand strong {
  display: block; font-family: var(--display); font-size: 17px; color: #fff;
  letter-spacing: .02em; font-weight: 800;
}
.footer-brand span {
  display: block; color: var(--gold-light); font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 900; margin-top: 4px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-title {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 500;
}
.footer-col a:hover { color: var(--gold-ivory); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}
.footer-motto {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .topbar-nav a:not(.cta-btn) { display: none; }
  .topbar-nav { gap: 12px; }
  .titles-line { grid-template-columns: 1fr; gap: 28px; }
  .titles-line::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-foot { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 80px 0; }
  .apply-card { padding: 56px 32px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-btn { width: 100%; }
  .section { padding: 60px 0; }
  .section-title { font-size: 32px; }
  .tier-grid, .plan-grid, .manifesto-grid, .benefits-grid { grid-template-columns: 1fr; }
  .plan-recommended { transform: none; }
  .plan-recommended.revealed { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .titles-progression { padding: 36px 24px; }
  .topbar-brand strong { font-size: 13px; }
  .topbar-brand span { font-size: 8px; }
}

/* Print */
@media print {
  .topbar, .hero-bg { display: none !important; }
  body { background: white !important; color: black !important; }
}
