/* =================================================================
   PRÉ-JOGO · LANDING PAGE COMERCIAL
   ================================================================= */

:root {
  --asfalto: #0d0d0f;
  --programa: #f0ece0;
  --programa-2: #e6e0d0;
  --holofote: #ffce3a;
  --brasa: #ff4a1c;
  --wa: #25d366;
  --rule: rgba(13,13,15,.18);
  --rule-light: rgba(240,236,224,.18);

  --f-display: "Big Shoulders Display", Impact, sans-serif;
  --f-edit: "Bricolage Grotesque", system-ui, sans-serif;
  --f-mono: "Departure Mono", ui-monospace, monospace;
  --f-body: "Figtree", -apple-system, sans-serif;
}

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

body {
  background: var(--programa);
  color: var(--asfalto);
  font-family: var(--f-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* paper grain */
.grain {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none; mix-blend-mode: multiply; opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =================================================================
   THE LOGO
   ================================================================= */
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.005em;
  line-height: .8;
  color: var(--asfalto);
  text-transform: uppercase;
  font-stretch: 75%;
}
.logo__sep {
  display: inline-block;
  width: .35em; height: .35em;
  border-radius: 50%;
  background: var(--holofote);
  margin: 0 .12em;
  position: relative; top: -.14em;
  flex: none;
  box-shadow: 0 0 0 .08em var(--asfalto);
}
.logo--xs { font-size: 1.1rem; }
.logo--sm { font-size: 1.6rem; }
.logo--md { font-size: clamp(2.5rem, 5vw, 4rem); }
.logo--hero {
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: .8;
}
.logo--giant {
  font-size: clamp(7rem, 27vw, 24rem);
  line-height: .8;
}

.logo--paper, .logo--paper .logo__pre, .logo--paper .logo__jogo { color: var(--programa); }
.logo--paper .logo__sep { box-shadow: 0 0 0 .08em var(--programa); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: .8rem 1.5rem;
  background: rgba(240,236,224,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav__links {
  display: flex; gap: 1.5rem;
  justify-content: center;
}
.nav__links a {
  opacity: .7;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }

.nav__cta {
  background: var(--asfalto);
  color: var(--programa);
  padding: .55rem .9rem;
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--holofote); color: var(--asfalto); }

@media (max-width: 800px) {
  .nav { grid-template-columns: 1fr auto; gap: 1rem; }
  .nav__links { display: none; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  min-height: 100vh;
  padding: 5rem 1.5rem 2rem;
  display: flex; flex-direction: column;
  background:
    radial-gradient(ellipse 1000px 500px at 50% 10%, rgba(255,206,58,.15), transparent 60%),
    var(--programa);
}

.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: .5rem 0;
  margin-bottom: 2rem;
  flex-wrap: wrap; gap: .5rem;
}

.hero__stage {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: rise .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero__pre {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  opacity: .6;
  display: block;
  margin-bottom: 1rem;
}
.hero__tag {
  font-family: var(--f-edit);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: .75rem;
  max-width: 24ch;
  margin-inline: auto;
}
.hero__tag em { font-style: italic; color: var(--brasa); font-weight: 800; }

.hero__video {
  position: relative;
  margin: 0 auto 1.5rem;
  width: min(420px, 100%);
  aspect-ratio: 9/16;
  background: var(--asfalto);
  overflow: hidden;
  border: 1.5px solid var(--asfalto);
  box-shadow: 8px 8px 0 var(--asfalto), 0 30px 60px -20px rgba(0,0,0,.4);
  animation: pop 1s .15s cubic-bezier(.2,.8,.2,1) both;
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__sound {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(13,13,15,.75);
  color: var(--programa);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem .7rem;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .12em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s;
}
.hero__sound:hover { background: var(--holofote); color: var(--asfalto); }
.hero__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between;
  padding: .6rem .8rem;
  background: linear-gradient(to top, rgba(13,13,15,.85), transparent);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em;
  color: var(--programa);
}
.hero__cap span:first-child { color: var(--brasa); }

.hero__bottom {
  display: flex; gap: .75rem; justify-content: center;
  flex-wrap: wrap;
  animation: rise .9s .3s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: none; }
}

/* Buttons -------------------------------------------------------- */
.btn {
  display: inline-grid;
  align-items: center;
  padding: .9rem 1.25rem;
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--asfalto);
  background: var(--asfalto);
  color: var(--programa);
  transition: background .2s, color .2s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translate(-1px, -1px); }
.btn:active { transform: translate(2px, 2px); }
.btn small {
  display: block;
  font-size: 9px; letter-spacing: .14em; opacity: .8;
  margin-top: 3px;
  text-transform: none;
  font-family: var(--f-body);
  font-weight: 500;
}
.btn--whats {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 4px 4px 0 var(--asfalto);
}
.btn--whats:hover { background: #1ec25b; }
.btn--whats:active { box-shadow: 1px 1px 0 var(--asfalto); }
.btn--gold {
  background: var(--holofote);
  color: var(--asfalto);
  border-color: var(--asfalto);
  box-shadow: 4px 4px 0 var(--asfalto);
}
.btn--gold:hover { background: var(--programa); }
.btn--gold:active { box-shadow: 1px 1px 0 var(--asfalto); }
.btn--ghost {
  background: transparent;
  color: var(--asfalto);
}
.btn--ghost:hover { background: var(--asfalto); color: var(--programa); }

/* =================================================================
   TICKER
   ================================================================= */
.ticker {
  background: var(--asfalto);
  color: var(--programa);
  overflow: hidden;
  padding: 1rem 0;
  border-block: 1px solid var(--asfalto);
}
.ticker__track {
  display: inline-flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  animation: scroll 40s linear infinite;
  padding-left: 2rem;
}
.ticker__track em {
  color: var(--holofote);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =================================================================
   SECTIONS — common
   ================================================================= */
section {
  padding: 6rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.program__head, .audience__head, .season__head, .how__head, .tiers__head, .materials__head, .cta__head {
  display: grid; gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.program__head span, .audience__head span, .season__head span,
.how__head span, .tiers__head span, .materials__head span, .cta__head span {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  opacity: .65;
}
.program__head h2, .audience__head h2, .season__head h2,
.how__head h2, .tiers__head h2, .materials__head h2, .cta__head h2 {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.program__head h2 em, .audience__head h2 em, .season__head h2 em,
.how__head h2 em, .tiers__head h2 em, .materials__head h2 em, .cta__head h2 em {
  font-style: italic;
  color: var(--brasa);
}
.program__head p, .audience__head p, .cta__head p {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 64ch;
  opacity: .85;
}
.program__head p strong, .audience__head p strong, .cta__head p b {
  color: var(--asfalto);
  font-weight: 800;
}
.audience__head p strong { color: var(--brasa); }

/* =================================================================
   PROGRAM (4 acts)
   ================================================================= */
.acts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.acts li {
  padding: 2rem 1.25rem 0 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid; gap: .25rem;
  position: relative;
}
.acts li:last-child { border-right: 0; }
.acts li > span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .16em;
  color: var(--brasa);
}
.acts li b {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--rule);
}
.acts li h3 {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -.02em;
}
.acts li p {
  margin: .5rem 0 2rem;
  opacity: .75;
  font-size: .95rem;
  line-height: 1.4;
  max-width: 24ch;
}

@media (max-width: 800px) {
  .acts { grid-template-columns: repeat(2, 1fr); }
  .acts li:nth-child(2) { border-right: 0; }
}
@media (max-width: 480px) {
  .acts { grid-template-columns: 1fr; }
  .acts li { border-right: 0; }
}

/* =================================================================
   AUDIENCE
   ================================================================= */
.audience { max-width: 1280px; }
.big-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.big-metrics li {
  background: var(--asfalto);
  color: var(--programa);
  padding: 2rem 1.5rem;
  display: grid; gap: .5rem;
}
.big-metrics li:nth-child(2),
.big-metrics li:nth-child(3) { background: var(--holofote); color: var(--asfalto); }
.big-metrics b {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.big-metrics span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  opacity: .8;
}

@media (max-width: 800px) {
  .big-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .big-metrics { grid-template-columns: 1fr; }
}

/* =================================================================
   SEASON
   ================================================================= */
.season {
  max-width: none;
  background: var(--asfalto);
  color: var(--programa);
  padding-block: 6rem;
}
.season > * { max-width: 1280px; margin-inline: auto; }
.season__head { border-bottom-color: var(--rule-light); }
.season__head span { opacity: .55; }
.season__head h2 em { color: var(--holofote); }

.season__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rule-light);
}
.season__item {
  padding: 2rem 1rem;
  border-right: 1px solid var(--rule-light);
  display: grid; gap: .5rem;
  position: relative;
  min-height: 280px;
}
.season__item:last-child { border-right: 0; }
.season__item--first {
  background: var(--holofote);
  color: var(--asfalto);
}
.season__star {
  position: absolute; top: .75rem; right: .75rem;
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em;
  background: var(--asfalto); color: var(--holofote);
  padding: .25rem .5rem;
}
.season__ep {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .16em; opacity: .65;
}
.season__date {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--brasa);
}
.season__item--first .season__date { color: var(--asfalto); }
.season__item strong {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: auto;
  line-height: 1.05;
}
.season__tag {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em;
  opacity: .6;
  text-transform: uppercase;
}
.season__note {
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .1em;
  opacity: .55;
}

@media (max-width: 800px) {
  .season__list { grid-template-columns: repeat(2, 1fr); }
  .season__item { min-height: 200px; }
  .season__item:nth-child(2) { border-right: 0; }
}
@media (max-width: 480px) {
  .season__list { grid-template-columns: 1fr; }
  .season__item { border-right: 0; }
}

/* =================================================================
   HOW (mockups)
   ================================================================= */
.how__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.how__card {
  border: 1px solid var(--asfalto);
  background: var(--asfalto);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.how__label {
  padding: .55rem .9rem;
  background: var(--programa);
  color: var(--asfalto);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.how__art {
  padding: 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  text-align: center;
  color: var(--programa);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.how__art .hl {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .3em;
  color: var(--holofote);
}
.brand-slot {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 1.5rem;
  border: 1px dashed var(--programa);
  padding: .5rem 1.25rem;
  letter-spacing: 0;
}
.brand-slot--sm { font-size: 1.1rem; padding: .35rem .85rem; }

.how__card--vinheta { grid-column: 1 / -1; }
.how__card--vinheta .how__art {
  background:
    radial-gradient(circle at 50% 70%, rgba(255,74,28,.25), transparent 55%),
    var(--asfalto);
  min-height: 240px;
}

.how__art--thumb {
  background:
    radial-gradient(circle at 75% 50%, rgba(255,206,58,.4), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,74,28,.2), transparent 50%),
    var(--asfalto);
  align-items: stretch !important;
  justify-content: space-between !important;
  text-align: left !important;
  aspect-ratio: 16/9;
  min-height: 0 !important;
}
.how__art--thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.025) 12px 13px);
}
.how__art--thumb > * { position: relative; }
.thumb-chips { display: flex; gap: .5rem; }
.thumb-chips span {
  padding: .25rem .5rem;
  background: var(--programa); color: var(--asfalto);
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em;
}
.thumb-chips--alt { background: var(--holofote) !important; }
.how__art--thumb h4 {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: 0;
}
.how__art--thumb h4 em {
  font-style: normal;
  color: var(--holofote);
}
.thumb-foot {
  display: flex; justify-content: space-between; align-items: end;
}
.thumb-foot span:last-child {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em;
  opacity: .8;
}

.how__art--story {
  background:
    linear-gradient(180deg, rgba(13,13,15,.85) 0%, rgba(13,13,15,.4) 30%, rgba(13,13,15,.6) 70%, rgba(13,13,15,.95) 100%),
    radial-gradient(circle at 50% 30%, var(--brasa) 0%, transparent 50%),
    var(--asfalto);
  aspect-ratio: 9/14;
  min-height: 0 !important;
}
.how__art--story strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--holofote);
  line-height: .85;
}

.how__card--backdrop .how__art {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,206,58,.12), transparent 60%),
    var(--asfalto);
}

@media (max-width: 800px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
  .how__card--vinheta { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__card--vinheta { grid-column: 1; }
}

/* =================================================================
   TIERS
   ================================================================= */
.tiers { padding-bottom: 4rem; }
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--asfalto);
}
.tier {
  border-right: 1px solid var(--asfalto);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
  gap: .75rem;
  background: var(--programa);
  min-height: 460px;
}
.tier:last-child { border-right: 0; }
.tier--master {
  background: var(--asfalto);
  color: var(--programa);
}
.tier header {
  display: flex; justify-content: space-between; align-items: center;
}
.tier__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 2rem;
  color: var(--brasa);
  letter-spacing: 0;
  line-height: 1;
}
.tier__only {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .16em;
  background: var(--holofote);
  color: var(--asfalto);
  padding: .25rem .45rem;
}
.tier h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1;
}
.tier__sub {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: .9rem;
  opacity: .7;
}
.tier ul {
  display: grid; gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--rule);
  font-size: .9rem;
}
.tier--master ul { border-top-color: var(--rule-light); }
.tier li {
  padding-left: 1.1rem;
  position: relative;
}
.tier li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--brasa);
}
.tier--master li::before { color: var(--holofote); }
.tier footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1.5px solid var(--asfalto);
  display: flex; align-items: baseline; gap: .75rem;
}
.tier--master footer { border-top-color: var(--programa); }
.tier strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brasa);
  letter-spacing: 0;
}
.tier--master strong { color: var(--holofote); }
.tier footer span {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em;
  opacity: .7;
}

@media (max-width: 1000px) {
  .tiers__grid { grid-template-columns: 1fr 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--asfalto); }
  .tier:nth-child(odd) { border-right: 1px solid var(--asfalto); }
  .tier:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .tiers__grid { grid-template-columns: 1fr; }
  .tier { border-right: 0 !important; border-bottom: 1px solid var(--asfalto); }
  .tier:last-child { border-bottom: 0; }
  .tier { min-height: 0; }
}

/* package */
.package {
  margin-top: 1rem;
  background: var(--asfalto);
  color: var(--programa);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem 2rem;
  align-items: center;
}
.package__tag {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .25em;
  color: var(--holofote);
  display: inline-block;
  margin-bottom: .75rem;
}
.package h3 {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .75rem;
}
.package p { opacity: .8; max-width: 50ch; }

.package__r { text-align: right; }
.package__from {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em;
  opacity: .55;
  display: block;
  margin-bottom: .25rem;
}
.package__from s { text-decoration-thickness: 1px; }
.package strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  color: var(--holofote);
  letter-spacing: -.02em;
  display: block;
}
.package__cpa {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em;
  display: block;
  margin-top: .5rem;
  opacity: .65;
}

@media (max-width: 700px) {
  .package { grid-template-columns: 1fr; padding: 1.5rem; }
  .package__r { text-align: left; }
}

/* =================================================================
   TIER CTA · "Solicitar valores"
   ================================================================= */
.tier__cta {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .65rem 0;
  border-bottom: 1.5px solid var(--asfalto);
  color: var(--asfalto);
  transition: letter-spacing .25s, color .2s;
  width: 100%;
}
.tier__cta:hover { letter-spacing: .22em; }
.tier--master .tier__cta {
  color: var(--holofote);
  border-bottom-color: var(--holofote);
}

/* package CTA */
.package__cta {
  display: inline-grid;
  align-items: end;
  text-align: right;
  padding: 1.25rem 1.75rem;
  background: var(--holofote);
  color: var(--asfalto);
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 4px 4px 0 var(--brasa);
}
.package__cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--brasa);
}
.package__cta strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0;
  display: block;
  color: var(--asfalto);
}
.package__cta span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* =================================================================
   LEAD FORM
   ================================================================= */
.lead {
  max-width: none;
  background:
    radial-gradient(ellipse 800px 400px at 80% 0%, rgba(255,206,58,.18), transparent 60%),
    radial-gradient(ellipse 600px 300px at 10% 100%, rgba(255,74,28,.1), transparent 60%),
    var(--asfalto);
  color: var(--programa);
  padding-block: 6rem;
}
.lead > * { max-width: 1100px; margin-inline: auto; padding-inline: 1.5rem; }

.lead__head {
  display: grid; gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule-light);
}
.lead__head span {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  opacity: .55;
}
.lead__head h2 {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.lead__head h2 em { font-style: italic; color: var(--holofote); }
.lead__head p {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 64ch;
  opacity: .85;
}
.lead__head p b { color: var(--holofote); font-weight: 800; }

.lead__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rule-light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
}
.lead__field { display: grid; gap: .5rem; }
.lead__field--full { grid-column: 1 / -1; }
.lead__field span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  opacity: .6;
}
.lead__field input,
.lead__field select,
.lead__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(240,236,224,.3);
  color: var(--programa);
  font-family: var(--f-edit);
  font-weight: 500;
  font-size: 1.05rem;
  padding: .55rem 0;
  letter-spacing: -.005em;
  transition: border-color .2s;
}
.lead__field textarea {
  border: 1px solid rgba(240,236,224,.3);
  padding: .9rem;
  border-radius: 4px;
  resize: vertical;
  font-family: var(--f-body);
  font-size: 1rem;
}
.lead__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23f0ece0' d='M0 0l6 8 6-8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  background-size: 10px;
  padding-right: 24px;
  cursor: pointer;
}
.lead__field select option {
  background: var(--asfalto);
  color: var(--programa);
}
.lead__field input::placeholder,
.lead__field textarea::placeholder {
  color: rgba(240,236,224,.32);
}
.lead__field input:focus,
.lead__field select:focus,
.lead__field textarea:focus {
  outline: 0;
  border-color: var(--holofote);
}

.lead__submit {
  grid-column: 1 / -1;
  display: grid; gap: .75rem;
  margin-top: .5rem;
}
.lead__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.15rem 1.25rem;
  background: var(--holofote);
  color: var(--asfalto);
  border: 0;
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, letter-spacing .3s, transform .15s;
  width: 100%;
  border-radius: 4px;
}
.lead__btn:hover { background: var(--programa); letter-spacing: .3em; }
.lead__btn:active { transform: translateY(1px); }
.lead__btn:disabled {
  opacity: .6; cursor: progress;
  letter-spacing: .22em; background: var(--holofote);
}
.lead__submit small {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .12em;
  text-align: center;
  opacity: .55;
}

.lead__success[hidden],
.lead__error[hidden] { display: none !important; }

.lead__success,
.lead__error {
  grid-column: 1 / -1;
  background: rgba(37,211,102,.15);
  border: 1px solid var(--wa);
  padding: 1.5rem;
  border-radius: 6px;
  display: grid; gap: .75rem;
  text-align: center;
  animation: pop .5s cubic-bezier(.2,.8,.2,1) both;
}
.lead__error {
  background: rgba(255,74,28,.15);
  border-color: var(--brasa);
}
.lead__success strong,
.lead__error strong {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.01em;
}
.lead__success p,
.lead__error p {
  font-size: .95rem;
  line-height: 1.5;
  opacity: .9;
  max-width: 60ch;
  margin: 0 auto;
}
.lead__success b { color: var(--holofote); }
.lead__error a { color: var(--holofote); text-decoration: underline; }

.lead__whats {
  display: inline-block;
  margin: .5rem auto 0;
  padding: .85rem 1.5rem;
  background: var(--wa);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  width: fit-content;
  transition: background .2s;
}
.lead__whats:hover { background: #1ec25b; }

@media (max-width: 700px) {
  .lead__form { grid-template-columns: 1fr; padding: 1.5rem 1.25rem; }
}

/* =================================================================
   CTA
   ================================================================= */
.cta {
  max-width: none;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(255,206,58,.18), transparent 60%),
    var(--asfalto);
  color: var(--programa);
  padding-block: 6rem;
}
.cta > * { max-width: 1280px; margin-inline: auto; }
.cta__head { border-bottom-color: var(--rule-light); }
.cta__head span { opacity: .55; }
.cta__head h2 em { color: var(--holofote); }
.cta__head p b { color: var(--holofote); }

.cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cta-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--rule-light);
  padding: 1.75rem;
  display: grid; gap: .5rem;
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.cta-card:hover {
  background: rgba(255,255,255,.1);
  transform: translate(-2px, -2px);
}
.cta-card--whats {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 4px 4px 0 var(--holofote);
}
.cta-card--whats:hover {
  background: #1ec25b;
  border-color: #1ec25b;
}
.cta-card__ic {
  font-size: 1.6rem;
  margin-bottom: .25rem;
}
.cta-card strong {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}
.cta-card span {
  font-family: var(--f-edit);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
}
.cta-card b {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 75%;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.1;
  word-break: break-word;
}

@media (max-width: 800px) {
  .cta__cards { grid-template-columns: 1fr; }
}

/* =================================================================
   FOOTER
   ================================================================= */
.foot {
  background: var(--asfalto);
  color: var(--programa);
  border-top: 1px solid var(--rule-light);
  overflow: hidden;
}
.foot__top, .foot__bottom {
  display: flex; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  opacity: .7;
  flex-wrap: wrap; gap: .5rem;
}
.foot__bottom { justify-content: center; opacity: .55; }
.foot__big {
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(180deg, var(--asfalto) 0%, rgba(13,13,15,.6) 100%);
}
.foot__big .logo { line-height: .82; }
