/* ============================================================
   CONGRESSO VP 2026 — Identidade visual cinematográfica
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --black:        #050505;
  --black-2:      #0a0807;
  --black-3:      #100c08;
  --gold:         #D6A84F;
  --gold-bright:  #F2D58A;
  --gold-deep:    #9b6b1e;
  --amber:        #FF8A00;
  --red:          #9B0D12;
  --red-glow:     #d4242b;
  --white:        #F7F3E8;
  --white-dim:    rgba(247, 243, 232, 0.62);
  --white-faint:  rgba(247, 243, 232, 0.40);

  --metal: linear-gradient(135deg, #F7E6B0 0%, #D6A84F 38%, #9b6b1e 64%, #F2D58A 100%);
  --metal-soft: linear-gradient(120deg, #F2D58A, #D6A84F 55%, #b3863a);
  --ember: linear-gradient(135deg, #FF8A00, #9B0D12);

  --glass: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
  --glass-border: rgba(214, 168, 79, 0.26);

  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* fixed atmospheric backdrop layers */
.bg-fx {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% 12%, rgba(255,138,0,0.14), transparent 60%),
    radial-gradient(700px 700px at 12% 88%, rgba(155,13,18,0.18), transparent 62%),
    radial-gradient(1100px 800px at 50% -10%, rgba(214,168,79,0.10), transparent 60%),
    var(--black);
}
#particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 3; }

/* ---------- Reusable bits ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

.metal-text {
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: ''; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center { justify-content: center; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 800;
  margin: 0.5em 0 0.3em;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--white-dim);
  font-weight: 400;
}

p.body { color: var(--white-dim); font-size: clamp(1rem, 1.2vw, 1.08rem); }

section { padding: clamp(80px, 11vh, 150px) 0; position: relative; }
.divider-line {
  height: 1px; border: 0; max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(214,168,79,0.4), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem;
  padding: 1em 1.8em; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 0.7em;
  cursor: pointer; border: 0; text-decoration: none;
  transition: all 0.4s var(--ease); position: relative;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--metal); color: #2a1c05;
  box-shadow: 0 6px 26px rgba(214,168,79,0.32), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold:hover { box-shadow: 0 10px 40px rgba(255,138,0,0.5), inset 0 1px 0 rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(247,243,232,0.02); color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(214,168,79,0.08); color: var(--gold-bright); }

.btn-lg { padding: 1.15em 2.2em; font-size: 0.92rem; }

/* ---------- Header ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s var(--ease);
}
header.nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 64px);
  transition: all 0.5s var(--ease);
}
header.nav.scrolled {
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(214,168,79,0.16);
}
header.nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); }
.logo .mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  border: 1.5px solid var(--gold);
  background: radial-gradient(circle at 35% 30%, rgba(255,138,0,0.35), rgba(155,13,18,0.55) 70%, #1a0805);
  box-shadow: 0 0 18px rgba(255,138,0,0.35), inset 0 0 12px rgba(0,0,0,0.6);
}
.logo .mark span { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--gold-bright); }
.logo .lockup { line-height: 1.05; }
.logo .lockup .l1 { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.02em; }
.logo .lockup .l2 { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

nav.links { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
nav.links a {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none; transition: color 0.3s; position: relative; white-space: nowrap;
}
nav.links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
nav.links a:hover { color: var(--white); }
nav.links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; display: block; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero .rays {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    linear-gradient(118deg, transparent 44%, rgba(214,168,79,0.10) 45%, transparent 46%),
    linear-gradient(122deg, transparent 54%, rgba(255,138,0,0.07) 55%, transparent 56%),
    linear-gradient(112deg, transparent 64%, rgba(247,243,232,0.05) 65%, transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(2.6rem, 6.6vw, 6rem); margin: 0.28em 0 0; }
.hero h1 .line2 { color: var(--white); }
.hero .kicker {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(0.95rem, 1.8vw, 1.5rem); letter-spacing: 0.04em; line-height: 1.1; color: var(--white-dim);
}
.hero .kicker b { color: var(--gold); font-weight: 800; }
.hero-sub {
  font-family: var(--font-serif); font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--white-dim); margin: 1.4em 0 0; max-width: 30ch; line-height: 1.4;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 34px; margin: 2em 0; }
.hero-meta .item { display: flex; align-items: flex-start; gap: 12px; }
.hero-meta .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--glass-border); background: var(--glass); color: var(--gold); flex-shrink: 0; }
.hero-meta .ic svg { width: 18px; height: 18px; }
.hero-meta .lbl { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.02em; }
.hero-meta .sub { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-faint); margin-top: 2px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* glow sphere placeholder (maçã-globo) */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.sphere {
  position: relative; width: min(90%, 480px); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255,160,40,0.55), transparent 42%),
    radial-gradient(circle at 62% 70%, rgba(155,13,18,0.7), transparent 55%),
    radial-gradient(circle at 50% 50%, #3a1404, #160602 70%, #0a0302);
  box-shadow: 0 0 90px rgba(255,138,0,0.4), 0 0 160px rgba(155,13,18,0.35), inset -30px -40px 90px rgba(0,0,0,0.8), inset 24px 20px 60px rgba(255,138,0,0.25);
  display: grid; place-items: center;
  animation: floaty 8s var(--ease) infinite;
}
.sphere::before {
  content: ''; position: absolute; inset: -6%;
  border-radius: 50%; background: repeating-linear-gradient(115deg, rgba(214,168,79,0.07) 0 2px, transparent 2px 9px);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%); mask: radial-gradient(circle, transparent 58%, #000 60%);
  opacity: 0.6;
}
.sphere .stem { position: absolute; top: -8%; left: 52%; width: 7px; height: 16%; border-radius: 6px; background: linear-gradient(var(--gold), var(--gold-deep)); box-shadow: 0 0 12px rgba(214,168,79,0.6); transform: rotate(8deg); }
.sphere .tag { font-family: 'Courier New', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(247,243,232,0.55); text-align: center; padding: 0 2em; }
.orbit {
  position: absolute; inset: -8% -2%; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(255,138,0,0.7); border-right-color: rgba(214,168,79,0.4);
  transform: rotate(-22deg); filter: drop-shadow(0 0 8px rgba(255,138,0,0.6));
  animation: spin 14s linear infinite;
}
.orbit.o2 { inset: 2% -10%; transform: rotate(28deg); border-top-color: rgba(214,168,79,0.55); border-left-color: rgba(155,13,18,0.5); animation-duration: 22s; animation-direction: reverse; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white-faint); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 1.5px solid var(--white-faint); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: var(--gold); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-unit { min-width: 78px; text-align: center; padding: 14px 8px; border-radius: 14px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.cd-unit .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; }
.cd-unit .lab { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--white-faint); margin-top: 8px; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto-inner {
  max-width: 920px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.manifesto-lead {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.18;
  margin: 0.7em 0 0; max-width: 20ch; text-wrap: balance;
  color: var(--white);
}
.manifesto-lead em { font-style: italic; color: var(--gold-bright); }
.manifesto-body {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.55;
  margin: 1.1em 0 0; max-width: 56ch; text-wrap: pretty;
  color: var(--white-dim);
}
.manifesto-sig {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-top: 2.6em;
}
.manifesto-sig .sig-rule {
  width: 54px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.manifesto-sig .sig-text {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.28em; font-size: 0.78rem; text-transform: uppercase; color: var(--gold);
}

/* ---------- Section header (shared) ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vh, 70px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p.body { margin-top: 0.6em; }

/* ---------- Choose / Modality ---------- */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mode-card {
  position: relative; padding: 40px; border-radius: 22px; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); transition: all 0.5s var(--ease);
}
.mode-card::before { content: ''; position: absolute; inset: 0; opacity: 0.5; transition: opacity 0.5s; pointer-events: none; }
.mode-card.presencial::before { background: radial-gradient(600px 300px at 80% -10%, rgba(255,138,0,0.22), transparent 60%); }
.mode-card.polo::before { background: radial-gradient(600px 300px at 80% -10%, rgba(214,168,79,0.2), transparent 60%); }
.mode-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 50px rgba(255,138,0,0.12); }
.mode-card:hover::before { opacity: 1; }
.mode-card .tag-pill { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; }
.mode-card.presencial .tag-pill { background: rgba(255,138,0,0.16); color: var(--amber); border: 1px solid rgba(255,138,0,0.4); }
.mode-card.polo .tag-pill { background: rgba(214,168,79,0.14); color: var(--gold); border: 1px solid rgba(214,168,79,0.4); }
.mode-card h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin: 0.7em 0 0.3em; }
.mode-card .desc { color: var(--white-dim); font-size: 1rem; line-height: 1.6; }
.mode-card ul { list-style: none; margin: 1.4em 0; display: flex; flex-direction: column; gap: 12px; }
.mode-card li { display: flex; align-items: flex-start; gap: 11px; color: var(--white-dim); font-size: 0.95rem; }
.mode-card li svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- Comparison table ---------- */
.compare { overflow-x: auto; border-radius: 20px; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(12px); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 620px; }
table.cmp th, table.cmp td { padding: 20px 24px; text-align: left; border-bottom: 1px solid rgba(214,168,79,0.12); }
table.cmp thead th { font-family: var(--font-display); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em; }
table.cmp thead th:first-child { color: var(--white-faint); font-weight: 500; }
table.cmp thead th.col-p { color: var(--amber); }
table.cmp thead th.col-g { color: var(--gold); }
table.cmp tbody td:first-child { font-weight: 600; color: var(--white); font-size: 0.92rem; }
table.cmp tbody td { color: var(--white-dim); font-size: 0.92rem; vertical-align: top; }
table.cmp tbody tr:hover { background: rgba(214,168,79,0.04); }
table.cmp tr:last-child td { border-bottom: 0; }
.cell-yes { color: var(--gold-bright); display: inline-flex; align-items: center; gap: 7px; }
.cell-yes svg { width: 15px; height: 15px; }

/* ---------- Stages (palcos) ---------- */
.stages { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stage-card { border-radius: 22px; overflow: hidden; border: 1px solid var(--glass-border); background: var(--black-2); transition: all 0.5s var(--ease); }
.stage-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.stage-card .ph { aspect-ratio: 16/10; position: relative; }
.stage-card .ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage-prog {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 8px; border-radius: 100px;
  background: rgba(8,6,4,0.74); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(214,168,79,0.55);
  text-decoration: none; transition: all 0.35s var(--ease);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.8);
}
.stage-prog img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; display: block; flex: 0 0 auto; }
.stage-prog span { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--gold-bright); white-space: nowrap; }
.stage-prog:hover { background: rgba(214,168,79,0.18); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(255,138,0,0.5); }
.stage-card .body { padding: 30px 32px 34px; }
.stage-card .flag { font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.stage-card h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 0.4em 0 0.2em; }
.stage-card .venue { color: var(--white-dim); font-size: 0.95rem; }
.stage-card .venue b { color: var(--white); font-weight: 600; display: block; font-family: var(--font-display); letter-spacing: 0.02em; }

/* image placeholder pattern */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(214,168,79,0.05) 0 10px, rgba(255,138,0,0.03) 10px 20px),
    radial-gradient(circle at 50% 40%, rgba(255,138,0,0.12), transparent 60%),
    var(--black-3);
  display: grid; place-items: center; position: relative;
}
.ph .ph-tag {
  font-family: 'Courier New', monospace; font-size: 0.72rem; letter-spacing: 0.06em;
  color: rgba(247,243,232,0.5); border: 1px dashed rgba(214,168,79,0.4);
  padding: 8px 14px; border-radius: 8px; background: rgba(5,5,5,0.5); text-align: center;
}

/* ---------- Experience grid ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.exp-card { padding: 30px 26px; border-radius: 18px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); transition: all 0.4s var(--ease); }
.exp-card:hover { transform: translateY(-5px); border-color: var(--gold); background: rgba(214,168,79,0.06); }
.exp-card .ic { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--ember); color: #150400; margin-bottom: 18px; box-shadow: 0 8px 24px rgba(255,138,0,0.25); }
.exp-card .ic svg { width: 24px; height: 24px; }
.exp-card h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.exp-card p { color: var(--white-dim); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Polo VP Global feature ---------- */
.polo-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.polo-visual { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; }
.polo-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.polo-list { display: flex; flex-direction: column; gap: 20px; margin-top: 1.6em; }
.polo-step { display: flex; gap: 18px; align-items: flex-start; }
.polo-step .n { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; background: var(--glass); border: 1px solid var(--gold); color: var(--gold-bright); }
.polo-step .t b { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1rem; margin-bottom: 3px; }
.polo-step .t p { color: var(--white-dim); font-size: 0.92rem; }

/* ---------- Countries ---------- */
.countries { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.country {
  padding: 26px 14px; border-radius: 16px; text-align: center;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease); cursor: default;
}
.country:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 0 40px rgba(255,138,0,0.15); }
.country .pin { width: 14px; height: 14px; margin: 0 auto 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(214,168,79,0.15), 0 0 16px var(--amber); position: relative; }
.country .nm { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.86rem; letter-spacing: 0.04em; }
.country .role { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* ---------- Solidário ---------- */
.solidario { position: relative; overflow: hidden; }
.solidario-card {
  border-radius: 26px; padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(150deg, rgba(155,13,18,0.28), rgba(255,138,0,0.10) 60%, rgba(5,5,5,0.4));
  border: 1px solid rgba(214,168,79,0.3);
}
.solidario-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% -20%, rgba(255,138,0,0.2), transparent 60%); pointer-events: none; }
.solidario-card .kg { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 9vw, 7rem); line-height: 0.9; }
.solidario-card .kg span { font-size: 0.35em; }
.solidario-card .lead { max-width: 40ch; margin: 1em auto 1.6em; }

/* ---------- Trabalhos Científicos ---------- */
.sci-sec { position: relative; overflow: hidden; }
.sci-card {
  border-radius: 26px; padding: clamp(40px, 6vw, 68px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(150deg, rgba(214,168,79,0.16), rgba(255,138,0,0.06) 55%, rgba(5,5,5,0.42));
  border: 1px solid rgba(214,168,79,0.32);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(247,243,232,0.06);
}
.sci-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 360px at 50% -15%, rgba(255,138,0,0.18), transparent 62%); }
.sci-card > * { position: relative; z-index: 1; }
.sci-icon {
  width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 18px; display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--gold);
  box-shadow: 0 0 30px rgba(255,138,0,0.18);
}
.sci-icon svg { width: 34px; height: 34px; }
.sci-card .lead { max-width: 52ch; margin: 1em auto 1.8em; }
.sci-steps { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin: 0 auto 2.2em; max-width: 880px; }
.sci-step {
  flex: 1 1 200px; max-width: 260px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 18px; border-radius: 16px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(8px);
}
.sci-step .n { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sci-step .t { color: var(--white-dim); font-size: 0.92rem; line-height: 1.4; }
.sci-note { color: var(--white-faint); font-size: 0.8rem; margin-top: 14px; }

/* ---------- Aliança Valéria & Kelly ---------- */
.alianca-sec { position: relative; overflow: hidden; }
.alianca-sec::before { content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(620px 520px at 22% 40%, rgba(255,138,0,0.10), transparent 62%); }
.alianca-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.alianca-photo { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--glass-border);
  box-shadow: 0 36px 90px -34px rgba(0,0,0,0.85), 0 0 50px rgba(255,138,0,0.08); }
.alianca-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.alianca-names { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 16px;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: clamp(5px, 1.4vw, 8px);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: clamp(0.66rem, 2.6vw, 1rem); color: var(--white); white-space: nowrap;
  background: linear-gradient(to top, rgba(5,5,5,0.92), transparent); }
.alianca-names .an-amp { color: var(--gold); font-weight: 800; }
.alianca-names .an-flag { font-size: 1.1em; }
.alianca-copy .eyebrow { margin-bottom: 0.4em; }
.alianca-copy .section-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-bottom: 0.5em; }
.alianca-copy .body { margin-bottom: 1em; }
.alianca-copy .body b { color: var(--white); }
.alianca-bios { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: clamp(28px, 4vw, 44px) 0 0; }
@media (max-width: 920px) { .alianca-bios { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; } }
.alianca-bio { padding: 20px 22px; border-radius: 16px; background: var(--glass); border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold); backdrop-filter: blur(8px); }
.alianca-bio .ab-name { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 1.02rem; color: var(--gold-bright); margin-bottom: 8px; }
.alianca-bio .ab-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.alianca-bio .ab-fl { font-size: 1em; }
.alianca-bio p { color: var(--white-dim); font-size: 0.92rem; line-height: 1.6; }
.alianca-close { font-family: var(--font-serif); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45;
  color: var(--white-dim); margin-top: 1.2em; text-wrap: pretty; }

/* ---------- Speakers (coverflow 3D) ---------- */
.spk-cover { position: relative; width: 100%; overflow: hidden; }
.cover-stage { position: relative; height: clamp(360px, 46vw, 480px); display: flex; align-items: center; justify-content: center; perspective: 1100px; overflow: hidden; }
.speaker { position: absolute; width: clamp(216px, 25vw, 296px); height: clamp(330px, 38vw, 452px); transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.55s ease, filter 0.55s ease; will-change: transform, opacity, filter; }
.speaker .ph { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(214,168,79,0.28); background: var(--black-2); }
.speaker .ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; border-radius: 22px; -webkit-user-drag: none; user-select: none; }
.speaker.is-center .ph { box-shadow: 0 0 52px rgba(255,138,0,0.24), 0 30px 70px -16px rgba(0,0,0,0.85), inset 0 0 0 1.5px var(--gold); }
/* Border Beam — animated light traveling around the highlighted card */
@property --spk-beam-ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.speaker.is-mid .ph::after {
  content: ''; position: absolute; inset: 0; border-radius: 22px; pointer-events: none; z-index: 4;
  padding: 2px;
  background: conic-gradient(from var(--spk-beam-ang),
    transparent 0deg, rgba(242,213,138,0.95) 18deg, #FF8A00 32deg, rgba(242,213,138,0.95) 46deg, transparent 70deg,
    transparent 180deg, rgba(242,213,138,0.95) 198deg, #FF8A00 212deg, rgba(242,213,138,0.95) 226deg, transparent 250deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 7px rgba(255,138,0,0.65));
  animation: spkBeam 7.2s linear infinite;
}
@keyframes spkBeam { to { --spk-beam-ang: 360deg; } }
@media (prefers-reduced-motion: reduce) { .speaker.is-mid .ph::after { animation: none; } }

/* ---------- Hero header polish: texts, spacing, eyebrow dashes ---------- */
/* gold dashes on BOTH sides of "O MAIOR DO MUNDO" */
.hero .eyebrow::after {
  content: ''; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
/* tidy vertical rhythm */
.hero .kicker, .hero .kicker[style] { margin-top: 0.9em !important; }
.hero-title { margin-top: 0.3em; }
.hero-sub { margin-top: 0.75em; }
.hero-actions { margin-top: 1.6em; }

@media (min-width: 601px) {
  /* keep the copy clear of the apple on the right side of the video */
  .hero .hero-inner .hero-copy { max-width: min(46vw, 600px); }
  .hero-title span, .hero-title span[style] { white-space: normal; }
}
@media (max-width: 600px) {
  /* centered, symmetric dashes; never cut at the sides */
  .hero .hero-copy .eyebrow::before { display: inline-block; }
  .hero .eyebrow::before, .hero .eyebrow::after { width: 26px; flex: 0 0 auto; }
  .hero-copy { padding-left: 8px; padding-right: 8px; }
  .hero-title span, .hero-title span[style] { white-space: normal; }
}

/* ---------- Hero title: two lines, equal visual width ---------- */
.hero-title span.t-line, .hero-title span.t-line[style] { display: block; width: fit-content; white-space: nowrap; line-height: 1.04; }
@media (max-width: 600px) {
  .hero-title span.t-line, .hero-title span.t-line[style] { margin-left: auto; margin-right: auto; white-space: nowrap; }
}

/* ---------- Polos: bifurcação (dois caminhos) ---------- */
.polo-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ppath {
  position: relative; padding: 40px; border-radius: 22px; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); transition: all 0.5s var(--ease);
  display: flex; flex-direction: column; align-items: flex-start;
}
.ppath::before { content: ''; position: absolute; inset: 0; opacity: 0.5; transition: opacity 0.5s; pointer-events: none;
  background: radial-gradient(600px 300px at 80% -10%, rgba(255,138,0,0.18), transparent 60%); }
.ppath:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 50px rgba(255,138,0,0.12); }
.ppath:hover::before { opacity: 1; }
.ppath .tag-pill { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; background: rgba(214,168,79,0.14); color: var(--gold); border: 1px solid rgba(214,168,79,0.4); }
.ppath h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 0.8em 0 0.35em; }
.ppath .desc { color: var(--white-dim); font-size: 0.98rem; line-height: 1.6; }
.ppath ul { list-style: none; margin: 1.3em 0 1.6em; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.ppath li { display: flex; align-items: flex-start; gap: 11px; color: var(--white-dim); font-size: 0.93rem; }
.ppath li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.polo-close { text-align: center; margin-top: 40px; font-family: var(--font-serif); font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--white-dim); }
@media (max-width: 880px) { .polo-paths { grid-template-columns: 1fr; } .ppath { padding: 28px 22px; } }

/* ---------- Última Edição: scroll-expand video (port do ScrollExpandMedia) ---------- */
.vexp-track { position: relative; height: 220vh; z-index: 3; }
.vexp {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.vexp-titles {
  position: absolute; z-index: 3; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.08em;
  pointer-events: none; mix-blend-mode: screen; text-align: center;
}
.vexp-t1, .vexp-t2 {
  font-size: clamp(2rem, 6.4vw, 5rem); line-height: 1; margin: 0;
  will-change: transform, opacity; white-space: nowrap;
}
.vexp-t2 { color: var(--white); }
.vexp-media {
  position: relative; z-index: 1; border-radius: 22px; overflow: hidden;
  width: 360px; height: 224px; max-width: 94vw; max-height: 80vh;
  border: 1px solid rgba(214,168,79,0.32);
  box-shadow: 0 34px 90px rgba(0,0,0,0.65), 0 0 60px rgba(255,138,0,0.12);
  background: #000; will-change: width, height;
}
.vexp-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; border: 0; }
.vexp-dim { position: absolute; inset: 0; background: rgba(5,5,5,0.32); pointer-events: none; transition: opacity 0.3s; }
.vexp-cap {
  position: absolute; bottom: 36px; z-index: 3; pointer-events: none;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 0.68rem; color: var(--gold);
}
@media (max-width: 600px) {
  .vexp-track { height: 180vh; }
  .vexp-media { width: 280px; height: 174px; }
  .vexp-t1, .vexp-t2 { font-size: clamp(1.5rem, 7.6vw, 2.2rem); }
}
.cover-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: rgba(8,6,4,0.62); border: 1px solid var(--glass-border); color: var(--gold); backdrop-filter: blur(8px); transition: all 0.3s var(--ease); }
.cover-nav:hover { border-color: var(--gold); background: rgba(214,168,79,0.16); color: var(--gold-bright); transform: translateY(-50%) scale(1.06); }
.cover-prev { left: clamp(4px, 3vw, 40px); }
.cover-next { right: clamp(4px, 3vw, 40px); }
.cover-nav svg { width: 22px; height: 22px; }
.cover-cap { text-align: center; margin-top: 26px; min-height: 56px; }
.cap-nm { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.2rem, 2.4vw, 1.7rem); transition: opacity 0.4s ease; }
.cap-role { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 7px; }

/* ---------- Modo editor (palestrantes) ---------- */
.spk-editor-bar { display: none; }
html.vp-edit .spk-editor-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px;
  padding: 14px 20px; border-radius: 14px; background: var(--glass);
  border: 1px dashed rgba(214,168,79,0.5); backdrop-filter: blur(10px);
}
.seb-tag { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--gold); }
.seb-hint { font-size: 0.82rem; color: var(--white-dim); flex: 1; min-width: 200px; }
.seb-btn { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 16px; border-radius: 100px; border: 0; cursor: pointer; background: var(--metal); color: #2a1c05; transition: all 0.3s var(--ease); }
.seb-btn.ghost { background: rgba(247,243,232,0.06); color: var(--white); border: 1px solid var(--glass-border); }
.seb-btn:hover { transform: translateY(-2px); }

html.vp-edit .speaker { cursor: grab; }
html.vp-edit .speaker.dragging { opacity: 0.5; outline: 2px dashed var(--gold); }
html.vp-edit .speaker.drop-active .ph { outline: 3px solid var(--amber); outline-offset: -3px; }
html.vp-edit .speaker.drop-active .ph .drop-hint { opacity: 1; }
html.vp-edit .speaker .ph { cursor: copy; }
html.vp-edit .speaker [contenteditable] { outline: none; cursor: text; border-radius: 4px; transition: background 0.2s; }
html.vp-edit .speaker [contenteditable]:hover, html.vp-edit .speaker [contenteditable]:focus { background: rgba(214,168,79,0.12); box-shadow: 0 0 0 4px rgba(214,168,79,0.12); }
.spk-tools { position: absolute; top: 10px; right: 10px; display: flex; gap: 6px; }
html.vp-edit .speaker { position: relative; }
.spk-grab, .spk-del { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(5,5,5,0.7); border: 1px solid var(--glass-border); color: var(--gold); cursor: grab; font-size: 0.9rem; }
.spk-del { color: #ff6b74; cursor: pointer; border: 0; }
.spk-del:hover { background: rgba(255,59,70,0.2); }

.spk-export { position: fixed; inset: 0; z-index: 200; background: rgba(5,5,5,0.85); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; }
.spk-export-box { background: var(--black-2); border: 1px solid var(--glass-border); border-radius: 18px; padding: 28px; max-width: 560px; width: 100%; }
.spk-export-box h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.spk-export-box textarea { width: 100%; height: 240px; background: rgba(5,5,5,0.6); border: 1px solid var(--glass-border); border-radius: 10px; color: var(--white); padding: 12px; font-family: monospace; font-size: 0.8rem; resize: vertical; }
.spk-export-box p { color: var(--white-dim); font-size: 0.82rem; margin: 12px 0; }
.spk-export-box button { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; padding: 10px 20px; border-radius: 100px; border: 0; cursor: pointer; background: var(--metal); color: #2a1c05; }
.spk-toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 210; background: var(--metal); color: #2a1c05; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; padding: 13px 22px; border-radius: 100px; box-shadow: 0 14px 40px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: all 0.4s var(--ease); max-width: 90vw; text-align: center; }
.spk-toast.show { opacity: 1; transform: translate(-50%, 0); }
.speaker .info { padding: 20px 22px 24px; }
.speaker .nm { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.speaker .role { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.06em; margin-top: 4px; }
.speaker .org { color: var(--white-faint); font-size: 0.76rem; margin-top: 6px; }

/* ---------- Depoimentos (marquee 3D) ---------- */
/* ---------- Depoimentos (marquee 3D, full-bleed) ---------- */
.testi-sec { position: relative; overflow: hidden; padding: clamp(30px, 4.5vh, 54px) 0 0; }
.testi-sec .sec-head { margin-bottom: 0; position: relative; z-index: 6; }
.testi-stage {
  position: relative; height: 620px; margin-top: 28px;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
}
.testi-3d { display: flex; gap: 22px; flex-shrink: 0; justify-content: center; }
.testi-col { width: 286px; height: 600px; overflow: hidden; position: relative; }
.testi-track {
  display: flex; flex-direction: column; gap: 22px;
  animation: testiUp var(--dur, 40s) linear infinite;
  will-change: transform;
}
.testi-track.rev { animation-name: testiDown; }
.testi-col:hover .testi-track { animation-play-state: paused; }
@keyframes testiUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes testiDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.testi-card {
  flex-shrink: 0; width: 286px; padding: 22px 22px 24px; border-radius: 18px;
  background: linear-gradient(155deg, rgba(28,20,9,0.95), rgba(12,9,6,0.92));
  border: 1px solid rgba(214,168,79,0.22);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.8), inset 0 1px 0 rgba(247,243,232,0.05);
}
.tc-head { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: #2a1c05;
  background: var(--metal); box-shadow: 0 4px 14px rgba(214,168,79,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.tc-id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.tc-name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--white); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.tc-flag { font-size: 0.72rem; color: var(--white-dim); font-weight: 500; }
.tc-role { font-size: 0.74rem; color: var(--gold); letter-spacing: 0.02em; margin-top: 2px; }
.tc-text {
  margin: 14px 0 0; font-family: var(--font-serif); font-style: italic;
  font-size: 1.08rem; line-height: 1.55; color: rgba(247,243,232,0.82);
}
.tc-text::before { content: '“'; color: var(--gold); font-weight: 700; margin-right: 1px; }
.tc-text::after { content: '”'; color: var(--gold); font-weight: 700; }

.testi-fade { position: absolute; pointer-events: none; z-index: 4; }
.tf-top { top: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to bottom, var(--black) 14%, transparent); }
.tf-bottom { bottom: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to top, var(--black) 6%, transparent); }
.tf-left { top: 0; bottom: 0; left: 0; width: 12%; background: linear-gradient(to right, var(--black), transparent); }
.tf-right { top: 0; bottom: 0; right: 0; width: 12%; background: linear-gradient(to left, var(--black), transparent); }

/* fit columns inside narrower desktops/tablets */
@media (max-width: 1180px) {
  .testi-col:nth-child(4) { display: none; }
}

@media (max-width: 760px) {
  .testi-stage { height: 560px; }
  .testi-3d { gap: 16px; }
  .testi-col { width: min(44vw, 300px); height: 560px; }
  .testi-card { width: 100%; padding: 18px 16px; }
  .testi-col:nth-child(3), .testi-col:nth-child(4) { display: none; }
  .tf-left, .tf-right { display: none; }
}
@media (max-width: 520px) {
  .testi-stage { height: 540px; }
  .testi-3d { gap: 0; }
  .testi-col { width: min(88vw, 360px); height: 540px; }
  .testi-col:nth-child(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}

/* ---------- Tickets ---------- */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; --spot: 340px; }
.ticket {
  position: relative; padding: 38px 34px; border-radius: 22px; display: flex; flex-direction: column;
  border: 1px solid var(--glass-border); backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); overflow: hidden;
  --t-hue: calc(34 + var(--xp, 0.5) * 18);
  background-color: rgba(247,243,232,0.018);
  background-image:
    radial-gradient(
      var(--spot) var(--spot) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
      hsl(var(--t-hue) 95% 58% / var(--t-bg-op, 0.14)), transparent 72%),
    linear-gradient(160deg, rgba(247,243,232,0.05), rgba(247,243,232,0.012));
  background-attachment: fixed, scroll;
  background-repeat: no-repeat;
}
/* moving spotlight border (masked ring) */
.ticket::before, .ticket::after {
  content: ''; position: absolute; inset: 0; z-index: 4;
  border-radius: inherit; border: 1.5px solid transparent;
  background-attachment: fixed; background-repeat: no-repeat; pointer-events: none;
  -webkit-mask: linear-gradient(#000, #000) padding-box, linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000) padding-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.ticket::before {
  background-image: radial-gradient(
    calc(var(--spot) * 0.7) calc(var(--spot) * 0.7) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    hsl(var(--t-hue) 100% 60% / 1), transparent 100%);
  filter: brightness(1.7);
}
.ticket::after {
  background-image: radial-gradient(
    calc(var(--spot) * 0.45) calc(var(--spot) * 0.45) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    hsl(44 100% 92% / 0.9), transparent 100%);
}
.ticket:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.ticket.featured { border-color: rgba(214,168,79,0.55); box-shadow: 0 0 0 1px rgba(214,168,79,0.5), 0 24px 70px rgba(255,138,0,0.16); --t-bg-op: 0.22; }
.ticket > * { position: relative; z-index: 5; }
.ribbon { position: absolute; top: 20px; right: -34px; transform: rotate(45deg); background: var(--metal); color: #2a1c05; font-family: var(--font-display); font-weight: 800; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 44px; }
.ticket .t-loc { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ticket h3 { font-size: 1.5rem; margin: 0.5em 0 0.2em; text-transform: none; }
.ticket .price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0.4em 0 0.1em; }
.ticket .price small { font-size: 0.42em; font-weight: 600; color: var(--white-faint); letter-spacing: 0.05em; display: block; text-transform: uppercase; }
.ticket .price .cur { font-size: 0.5em; vertical-align: top; }
.ticket ul { list-style: none; margin: 1.6em 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.ticket li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: var(--white-dim); }
.ticket li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.ticket .btn { width: 100%; justify-content: center; }

/* ---------- Polo registration form ---------- */
.register { position: relative; }
.reg-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; }
.reg-form { padding: clamp(30px, 4vw, 46px); border-radius: 24px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem;
  background: rgba(5,5,5,0.55); border: 1px solid rgba(214,168,79,0.22); color: var(--white); transition: all 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,243,232,0.32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,168,79,0.14); background: rgba(5,5,5,0.8); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--red-glow); box-shadow: 0 0 0 3px rgba(212,36,43,0.16); }
.field .msg { font-size: 0.74rem; color: var(--red-glow); margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23D6A84F' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: pop 0.5s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.form-success .check { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: var(--metal); color: #1a0e00; box-shadow: 0 0 40px rgba(255,138,0,0.4); }
.form-success .check svg { width: 34px; height: 34px; }

.reg-perks { display: flex; flex-direction: column; gap: 22px; margin-top: 1.8em; }
.reg-perk { display: flex; gap: 16px; align-items: flex-start; }
.reg-perk .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--glass-border); background: var(--glass); color: var(--gold); }
.reg-perk .ic svg { width: 20px; height: 20px; }
.reg-perk b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; display: block; margin-bottom: 3px; }
.reg-perk p { color: var(--white-dim); font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: 16px; border: 1px solid var(--glass-border); background: var(--glass); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.15rem); }
.faq-q .plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease); }
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a .inner { padding: 0 28px 26px; color: var(--white-dim); font-size: 0.98rem; line-height: 1.65; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); max-width: 16ch; margin: 0.3em auto 0.5em; }

/* ---------- Footer ---------- */
footer.ft { padding: 80px 0 36px; border-top: 1px solid rgba(214,168,79,0.16); background: linear-gradient(180deg, transparent, rgba(155,13,18,0.06)); }
.ft-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.ft-top.ft-social-only { grid-template-columns: 1fr; place-items: center; text-align: center; margin-bottom: 40px; }
.ft-top.ft-social-only .ft-brand p { margin-left: auto; margin-right: auto; }
.ft-top.ft-social-only .ft-social { justify-content: center; }
.ft-col h5 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px; }
.ft-col a, .ft-col p { display: block; color: var(--white-dim); text-decoration: none; font-size: 0.9rem; margin-bottom: 11px; transition: color 0.3s; }
.ft-col a:hover { color: var(--gold-bright); }
.ft-brand p { max-width: 34ch; color: var(--white-dim); font-size: 0.92rem; margin-top: 16px; }
.ft-social { display: flex; gap: 12px; margin-top: 20px; }
.ft-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--glass-border); color: var(--gold); transition: all 0.3s; }
.ft-social a:hover { background: var(--gold); color: #150400; border-color: var(--gold); }
.ft-social svg { width: 18px; height: 18px; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; border-top: 1px solid rgba(214,168,79,0.1); }
.ft-bottom p { color: var(--white-faint); font-size: 0.8rem; }
.ft-bottom .legal { display: flex; gap: 22px; }
.ft-bottom .legal a { color: var(--white-faint); font-size: 0.8rem; text-decoration: none; }
.ft-bottom .legal a:hover { color: var(--gold); }

/* ---------- Scroll reveal (only hidden once JS confirms it can reveal) ---------- */
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sphere, .orbit, .scroll-hint .mouse::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  border-radius: 100px; background: rgba(8,6,4,0.5);
  border: 1px solid rgba(214,168,79,0.3); backdrop-filter: blur(10px);
}
.lang-opt {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  border: 0; background: none; border-radius: 100px;
  padding: 6px 10px; color: var(--white-dim);
  font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.08em; transition: all 0.3s var(--ease);
}
.lang-opt .fi { font-size: 1rem; line-height: 1; filter: saturate(1.1); }
.lang-opt .lc { letter-spacing: 0.1em; }
.lang-opt:hover { color: var(--white); }
.lang-opt.active { background: var(--metal); color: #2a1c05; box-shadow: 0 3px 12px rgba(255,138,0,0.3); }

/* ---------- Mobile nav drawer (focused) ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 130; background: rgba(5,5,5,0.98); backdrop-filter: blur(22px);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 22px clamp(20px, 6vw, 40px) calc(28px + env(safe-area-inset-bottom));
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.md-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 18px; border-bottom: 1px solid rgba(214,168,79,0.18); margin-bottom: 14px; }
.md-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; }
.mobile-drawer .close { background: none; border: 0; color: var(--gold); font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 0 6px; }
.md-nav { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.md-nav a {
  display: flex; flex-direction: column; gap: 3px;
  min-height: 64px; justify-content: center;
  padding: 14px 18px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  text-decoration: none; transition: all 0.3s var(--ease);
}
.md-nav a:active, .md-nav a:hover { border-color: var(--gold); background: rgba(214,168,79,0.08); transform: translateX(3px); }
.md-nav .md-t { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.12rem; letter-spacing: 0.04em; color: var(--white); }
.md-nav .md-s { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.02em; }
.md-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; padding-top: 20px; border-top: 1px solid rgba(214,168,79,0.18); }
.md-cta .btn { width: 100%; justify-content: center; min-height: 54px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .countries { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .pill-nav-wrap, .nav-cta .nav-polo, .nav-cta .nav-vaga { display: none; }
  .menu-toggle { display: flex; }
  .lang-opt { padding: 6px 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; min-height: 340px; }
  .sphere { width: min(72%, 320px); }
  .modes, .stages, .polo-feature, .reg-grid, .tickets, .alianca-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
}
@media (max-width: 560px) {
  .exp-grid, .countries { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .row2 { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .cd-unit { min-width: 64px; }
}

/* ============================================================
   ✦ CINEMATIC CAMPAIGN LAYER — full-bleed hero + depth upgrades
   ============================================================ */

/* deeper ambient atmosphere */
.bg-fx {
  background:
    radial-gradient(1000px 720px at 84% 4%, rgba(255,138,0,0.17), transparent 56%),
    radial-gradient(820px 820px at 6% 94%, rgba(155,13,18,0.22), transparent 60%),
    radial-gradient(1300px 950px at 50% -14%, rgba(214,168,79,0.11), transparent 58%),
    radial-gradient(900px 600px at 50% 108%, rgba(255,138,0,0.08), transparent 60%),
    var(--black);
}
.grain { opacity: 0.045; }

/* ---------- HERO (scroll-scrub video sequence) ---------- */
.hero-track { position: relative; height: 206vh; z-index: 3; }
.hero {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: flex;
  align-items: center;
  align-items: safe center;
  padding: clamp(116px, 13vh, 150px) 0 clamp(178px, 20vh, 240px);
  overflow: hidden; isolation: isolate;
}
/* Short / zoomed-in viewports: scale the hero copy down so it never
   overflows under the header (top) or the countdown bar (bottom). */
@media (min-width: 601px) and (max-height: 880px) {
  .hero-title, .hero-title span, .hero-title span[style] { font-size: clamp(2.2rem, 5.2vw, 3.6rem) !important; }
  .hero .kicker, .hero .kicker[style] { font-size: clamp(0.85rem, 1.3vw, 1.1rem) !important; margin-top: 0.9em; }
  .hero-sub { font-size: clamp(1rem, 1.6vw, 1.3rem); margin-top: 0.8em; }
  .hero-actions { margin-top: 1.5em; }
}
@media (min-width: 601px) and (max-height: 720px) {
  .hero-title, .hero-title span, .hero-title span[style] { font-size: clamp(1.85rem, 4.4vw, 2.7rem) !important; }
  .hero .eyebrow { font-size: 0.72rem; }
  .hero .kicker, .hero .kicker[style] { font-size: clamp(0.8rem, 1.2vw, 1rem) !important; margin-top: 0.7em; }
  .hero-sub { font-size: clamp(0.92rem, 1.4vw, 1.15rem); margin-top: 0.6em; }
  .hero-actions { margin-top: 1.2em; }
  .hero-actions .btn { padding-top: 0.85em; padding-bottom: 0.85em; }
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; display: block;
  background: #050505;
}
.scroll-hint { transition: opacity 0.4s var(--ease); }
.hero-cta-mobile { display: none; }
.hb-mobile { display: none; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(99deg, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.87) 22%, rgba(5,5,5,0.5) 42%, rgba(10,6,2,0.10) 62%, rgba(5,5,5,0.42) 100%),
    linear-gradient(0deg, #050505 11%, rgba(5,5,5,0.96) 25%, rgba(5,5,5,0.55) 37%, transparent 52%),
    radial-gradient(70% 55% at 70% 40%, rgba(255,138,0,0.18), transparent 62%);
}
.hero-rays {
  position: absolute; inset: -10%; z-index: 2; pointer-events: none; opacity: 0.7; mix-blend-mode: screen;
  background:
    linear-gradient(115deg, transparent 39%, rgba(255,186,84,0.12) 40.2%, transparent 42%),
    linear-gradient(119deg, transparent 49%, rgba(214,168,79,0.09) 50%, transparent 51.4%),
    linear-gradient(111deg, transparent 59%, rgba(247,243,232,0.07) 59.7%, transparent 61.5%);
  animation: rayDrift 14s ease-in-out infinite alternate;
}
@keyframes rayDrift { from { transform: translateX(0); } to { transform: translateX(2%); } }
.hero-dust { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(125% 105% at 52% 32%, transparent 52%, rgba(5,5,5,0.62) 100%);
  box-shadow: inset 0 -160px 130px -50px #050505, inset 0 90px 120px -60px rgba(5,5,5,0.85);
}
.hero-inner { position: relative; z-index: 5; width: 100%; will-change: opacity, transform; }
.hero-copy { max-width: 840px; }

.hero .kicker {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.88rem, 1.4vw, 1.18rem); letter-spacing: 0.05em; line-height: 1.3;
  color: rgba(247,243,232,0.74); margin-top: 1.3em; max-width: 30ch;
}
.hero .kicker b { color: var(--gold-bright); font-weight: 800; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.4rem); line-height: 0.92; letter-spacing: -0.02em;
  margin: 0.26em 0 0; filter: drop-shadow(0 6px 34px rgba(0,0,0,0.72));
}
.hero-title span { display: block; line-height: 0.92; white-space: nowrap; }
.hero-title .line2 { color: var(--white); }
.hero-sub {
  font-family: var(--font-serif); font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  color: rgba(247,243,232,0.82); margin: 1.1em 0 0; max-width: 34ch; line-height: 1.38;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.hero-actions { margin-top: 1.9em; }
.hero .btn-gold { box-shadow: inset 0 1px 0 rgba(255,255,255,0.5); }
.hero .btn-ghost { background: rgba(8,6,4,0.4); backdrop-filter: blur(8px); }

/* overlapping glass bar */
.hero-bar-wrap { position: absolute; left: 0; right: 0; bottom: clamp(26px, 4.5vh, 54px); z-index: 6; will-change: opacity, transform; }
.hero-bar {
  display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); flex-wrap: wrap;
  padding: 20px clamp(22px, 2.8vw, 38px); border-radius: 20px;
  background: linear-gradient(150deg, rgba(22,15,7,0.7), rgba(8,6,4,0.52));
  border: 1px solid rgba(214,168,79,0.36);
  backdrop-filter: blur(20px) saturate(1.25);
  box-shadow: 0 34px 90px rgba(0,0,0,0.62), inset 0 1px 0 rgba(247,243,232,0.09), 0 0 70px rgba(255,138,0,0.09);
}
.hb-meta { display: flex; gap: clamp(18px, 2.4vw, 36px); flex-wrap: wrap; }
.hb-item { display: flex; gap: 12px; align-items: center; }
.hb-item .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--glass-border); background: var(--glass); color: var(--gold); flex-shrink: 0; }
.hb-item .ic svg { width: 18px; height: 18px; }
.hb-item .lbl { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; display: block; }
.hb-item .sub { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white-faint); display: block; margin-top: 2px; }
.hb-divider { width: 1px; align-self: stretch; min-height: 44px; background: linear-gradient(transparent, rgba(214,168,79,0.45), transparent); }
.hero-bar .countdown { margin-left: auto; align-items: flex-start; gap: 6px; }
.hb-lote-desk { margin-left: auto; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hb-lote-desk .lote-lbl { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.62rem; color: var(--gold); }
.hb-lote-desk .countdown { margin-left: 0; }
.hero-bar .cd-unit { min-width: 0; padding: 0 6px; background: none; border: 0; backdrop-filter: none; }
.hero-bar .cd-unit .num { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.hero-bar .cd-unit .lab { font-size: 0.56rem; margin-top: 4px; }
.cd-sep { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 2rem); color: rgba(214,168,79,0.45); margin-top: 2px; }

/* ---------- Section drama ---------- */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,168,79,0.55) 35%, rgba(255,138,0,0.7) 50%, rgba(214,168,79,0.55) 65%, transparent);
  box-shadow: 0 0 22px rgba(255,138,0,0.3);
}
.section-title { filter: drop-shadow(0 2px 24px rgba(0,0,0,0.5)); }
.sec-head .eyebrow { margin-bottom: 0.2em; }

/* ambient glow behind centerpieces */
.manifesto, .solidario, .cta-band, #cadastro { position: relative; }
.manifesto::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(560px 520px at 50% 46%, rgba(255,138,0,0.12), transparent 62%);
}
.manifesto .big em, .manifesto-lead em { text-shadow: 0 0 38px rgba(255,138,0,0.45); }

/* ---------- Richer glass + gold glow on all cards ---------- */
.mode-card, .ticket, .exp-card, .stage-card, .speaker, .country, .faq-item, .reg-form, .compare, .solidario-card {
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.75), inset 0 1px 0 rgba(247,243,232,0.06);
}
.mode-card { padding: 44px; }
.mode-card::after {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 2px;
  background: var(--metal); opacity: 0; transition: opacity 0.5s var(--ease);
  box-shadow: 0 0 16px rgba(255,138,0,0.6);
}
.mode-card:hover::after { opacity: 0.95; }
.mode-card.presencial:hover { box-shadow: 0 36px 90px -24px rgba(0,0,0,0.8), 0 0 70px rgba(255,138,0,0.18); }
.mode-card.polo:hover { box-shadow: 0 36px 90px -24px rgba(0,0,0,0.8), 0 0 70px rgba(214,168,79,0.16); }

.exp-card:hover, .country:hover, .speaker:hover, .stage-card:hover, .ticket:hover {
  box-shadow: 0 30px 70px -22px rgba(0,0,0,0.8), 0 0 44px rgba(255,138,0,0.14);
}

/* premium image placeholders */
.ph {
  background:
    radial-gradient(circle at 50% 38%, rgba(255,138,0,0.18), transparent 58%),
    radial-gradient(circle at 50% 90%, rgba(155,13,18,0.22), transparent 60%),
    repeating-linear-gradient(125deg, rgba(214,168,79,0.05) 0 12px, rgba(0,0,0,0) 12px 26px),
    #0a0705;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.7), inset 0 0 1px rgba(214,168,79,0.4);
}
.ph .ph-tag { background: rgba(5,5,5,0.62); backdrop-filter: blur(4px); }

/* ---------- Tickets / solidário extra drama ---------- */
.ticket.featured { transform: translateY(-10px); }
.ticket.featured:hover { transform: translateY(-16px); }
.solidario-card .kg { filter: drop-shadow(0 0 40px rgba(255,138,0,0.5)); }

/* faint apple texture on the closing CTA band */
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url('assets/hero-apple.png') center 30% / cover no-repeat;
  opacity: 0.16;
  -webkit-mask: radial-gradient(120% 90% at 50% 40%, #000 10%, transparent 70%);
  mask: radial-gradient(120% 90% at 50% 40%, #000 10%, transparent 70%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 420px at 50% 30%, rgba(255,138,0,0.14), transparent 60%);
}

/* ---------- Header polish ---------- */
header.nav.scrolled { background: rgba(5,5,5,0.78); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

/* ---------- Sliding-pill nav (ported from React/framer-motion component) ---------- */
.pill-nav-wrap { display: flex; justify-content: center; }
.pill-nav {
  position: relative; display: flex; list-style: none; margin: 0; padding: 5px;
  border-radius: 100px;
  background: linear-gradient(150deg, rgba(20,14,6,0.6), rgba(8,6,4,0.42));
  border: 1px solid rgba(214,168,79,0.32);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(247,243,232,0.06), 0 8px 30px rgba(0,0,0,0.4);
}
.pill-nav > li:not(.pill-cursor) { position: relative; z-index: 2; display: block; }
.pill-nav a {
  display: block; position: relative; z-index: 2;
  padding: 9px clamp(12px, 1.1vw, 18px); border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.3s var(--ease);
}
.pill-nav a:hover { color: #1f1206; }
.pill-cursor {
  position: absolute; z-index: 1; top: 5px; left: 0; width: 0;
  height: calc(100% - 10px); border-radius: 100px;
  background: var(--metal); opacity: 0; pointer-events: none;
  box-shadow: 0 4px 18px rgba(255,138,0,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: left 0.36s var(--ease), width 0.36s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Responsive (cinematic hero) ---------- */
@media (max-width: 920px) {
  .hero-scrim {
    background:
      linear-gradient(0deg, #050505 4%, rgba(5,5,5,0.78) 26%, rgba(5,5,5,0.2) 58%, rgba(5,5,5,0.55) 100%),
      radial-gradient(70% 50% at 60% 38%, rgba(255,138,0,0.16), transparent 62%);
  }
  .hero-bar { gap: 18px; }
  .hero-bar .countdown { margin-left: 0; width: 100%; justify-content: space-between; }
  .hb-divider { display: none; }
}
@media (max-width: 560px) {
  .hero-track { height: 183vh; }
  .hero { padding: 130px 0 200px; }
  .hero-bar { flex-direction: column; align-items: stretch; }
  .hb-meta { justify-content: space-between; }
  .mode-card { padding: 30px; }
  .cd-sep { display: none; }
  .hero-bar .countdown { gap: 10px; }
}

/* ---------- Fixed floating VP badge (always visible) ---------- */
.vp-badge {
  position: fixed;
  left: clamp(16px, 2.2vw, 32px);
  bottom: clamp(16px, 2.2vw, 32px);
  z-index: 120;
  width: clamp(64px, 7vw, 96px);
  height: clamp(64px, 7vw, 96px);
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(214,168,79,0.35));
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.vp-badge img {
  width: 100%; height: 100%; display: block; object-fit: contain; pointer-events: none;
  animation: badgeFloat 6s ease-in-out infinite;
}
.vp-badge::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,138,0,0.28), transparent 68%);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.vp-badge:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 28px rgba(255,138,0,0.55));
}
.vp-badge:hover::after { opacity: 1; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .vp-badge img { animation: none; }
}
@media (max-width: 560px) {
  .vp-badge { width: 60px; height: 60px; left: 14px; bottom: 14px; }
}

/* ============================================================
   ✦ Animated rotating gradient border on gold buttons
   (ported from animated-gradient-border.tsx — vanilla CSS)
   Excludes the top-menu gold button.
   ============================================================ */
@property --vp-grad-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes vpBorderRotate {
  to { --vp-grad-angle: 360deg; }
}

.btn-gold {
  border: 2px solid transparent;
  background-image:
    var(--metal),
    conic-gradient(
      from var(--vp-grad-angle),
      #584827 0%,
      #c7a03c 18%,
      #f9de90 25%,
      #c7a03c 32%,
      #584827 45%,
      #584827 55%,
      #c7a03c 68%,
      #f9de90 75%,
      #c7a03c 82%,
      #584827 100%
    );
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  animation: vpBorderRotate 4.5s linear infinite;
}
/* keep the top-menu (header) gold button as a plain solid pill */
header .btn-gold {
  border: 0;
  background-image: var(--metal);
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-gold { animation: none; }
}

/* ---------- Header control height normalization ---------- */
.nav-cta { align-items: center; }
.header-h-norm {}
header.nav .pill-nav,
header.nav .lang-switch,
header.nav .nav-polo,
header.nav .nav-vaga {
  height: 46px;
  box-sizing: border-box;
}
header.nav .pill-nav { padding: 4px; align-items: center; }
header.nav .pill-nav a { display: flex; align-items: center; }
header.nav .lang-switch { display: inline-flex; align-items: center; }
header.nav .nav-polo,
header.nav .nav-vaga {
  padding-top: 0; padding-bottom: 0;
  display: inline-flex; align-items: center;
}

/* ============================================================
   ✦ Globe section (COBE) + pulsing red/blue markers
   ============================================================ */
.globe-sec { position: relative; overflow: hidden; }
.globe-sec::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(680px 560px at 50% 52%, rgba(255,138,0,0.10), transparent 64%);
}
.globe-wrap { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.globe-orbit {
  position: relative; width: min(96vw, 760px); aspect-ratio: 1;
  margin: 0 auto; display: grid; place-items: center;
  --flag-R: clamp(146px, 46vw, 336px);
  --flag-dur: 46s;
}
.flag-orbit {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  animation: flag-orbit var(--flag-dur) linear infinite;
}
.flag-slot {
  position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  transform: translate(calc(var(--x) * var(--flag-R)), calc(var(--y) * var(--flag-R)));
}
.flag-fimg {
  position: absolute; left: 50%; top: 50%;
  width: clamp(54px, 10vw, 82px); height: clamp(54px, 10vw, 82px);
  margin-left: calc(clamp(54px, 10vw, 82px) / -2);
  margin-top: calc(clamp(54px, 10vw, 82px) / -2);
  animation: flag-float 6s ease-in-out infinite;
}
.flag-slot:nth-child(2) .flag-fimg { animation-delay: -0.8s; }
.flag-slot:nth-child(3) .flag-fimg { animation-delay: -1.6s; }
.flag-slot:nth-child(4) .flag-fimg { animation-delay: -2.4s; }
.flag-slot:nth-child(5) .flag-fimg { animation-delay: -3.2s; }
.flag-slot:nth-child(6) .flag-fimg { animation-delay: -4.0s; }
.flag-slot:nth-child(7) .flag-fimg { animation-delay: -4.8s; }
.flag-fimg img {
  width: 100%; height: 100%; display: block; object-fit: contain;
  clip-path: circle(39.3% at 50% 50%);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
  animation: flag-counter var(--flag-dur) linear infinite;
}
@keyframes flag-orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes flag-counter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes flag-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .flag-orbit, .flag-fimg img, .flag-fimg { animation: none; }
}
.globe-stage {
  position: relative; width: min(90vw, 600px); aspect-ratio: 1; margin: 0 auto;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6));
}
.globe-canvas {
  width: 100%; height: 100%; display: block; cursor: grab;
  opacity: 1; touch-action: none; border-radius: 50%;
}
.globe-canvas:active { cursor: grabbing; }
.globe-markers { position: absolute; inset: 0; pointer-events: none; }

/* a projected marker */
.gm { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); pointer-events: none; will-change: transform, opacity; }
.gm .gm-dot {
  display: block; width: var(--s, 8px); height: var(--s, 8px); border-radius: 50%;
  background: var(--c, #33ccdd);
  box-shadow: 0 0 0 2px rgba(5,5,5,0.85), 0 0 10px 1px var(--c, #33ccdd);
}
.gm .gm-ring {
  position: absolute; left: 50%; top: 50%; width: var(--rs, 30px); height: var(--rs, 30px);
  margin-left: calc(var(--rs, 30px) / -2); margin-top: calc(var(--rs, 30px) / -2);
  border: 2px solid var(--c, #33ccdd); border-radius: 50%; opacity: 0;
  animation: gm-pulse 2.2s ease-out infinite;
}
.gm .gm-ring.r2 { animation-delay: 1.1s; }
.gm .gm-leader {
  position: absolute; left: 50%; top: 50%; height: 1.5px;
  transform-origin: 0 50%; pointer-events: none;
  background: linear-gradient(90deg, var(--c, #F2C75A), rgba(242,199,90,0.2));
  opacity: 0.85; z-index: -1;
}
.gm .gm-label {
  position: absolute; left: 50%; top: 50%; transform: translate(14px, calc(-50% + var(--ldy, 0px)));
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 0.66rem; letter-spacing: 0.04em; white-space: nowrap;
  color: var(--white); padding: 3px 8px; border-radius: 100px;
  background: rgba(5,5,5,0.62); border: 1px solid rgba(214,168,79,0.28);
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.gm .gm-label.big { color: #ffd9cf; font-size: 0.74rem; border-color: rgba(255,59,70,0.5); background: rgba(20,4,4,0.7); box-shadow: 0 2px 12px rgba(255,59,70,0.35); }
@keyframes gm-pulse {
  0% { transform: scale(0.3); opacity: 0.85; }
  100% { transform: scale(1.5); opacity: 0; }
}

.globe-legend { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.lg-item { display: flex; align-items: center; gap: 12px; }
.lg-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.lg-dot.red { background: #ff3b46; box-shadow: 0 0 12px rgba(255,59,70,0.7); }
.lg-dot.gold { background: #F2C75A; box-shadow: 0 0 12px rgba(242,199,90,0.7); }
.lg-dot.blue { background: #7ec8ff; box-shadow: 0 0 12px rgba(126,200,255,0.7); }
.lg-txt { display: flex; flex-direction: column; line-height: 1.25; }
.lg-txt b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.86rem; letter-spacing: 0.04em; }
.lg-txt span { font-size: 0.8rem; color: var(--white-dim); }
@media (prefers-reduced-motion: reduce) {
  .gm .gm-ring { animation: none; }
}

/* ============================================================
   ✦ MOBILE REFINEMENTS — navegação + layout (junho 2026)
   ============================================================ */

/* drawer language switch (segmented) */
.md-lang { display: flex; gap: 8px; margin-bottom: 4px; }
.md-lang .lang-opt {
  flex: 1; justify-content: center; min-height: 50px; gap: 8px;
  border: 1px solid var(--glass-border); border-radius: 14px;
  background: rgba(8,6,4,0.5); font-size: 0.9rem;
}
.md-lang .lang-opt .fi { font-size: 1.25rem; }
.md-lang .lang-opt.active { border-color: transparent; }

/* bigger tap target for the hamburger */
.menu-toggle { min-width: 46px; min-height: 46px; align-items: center; justify-content: center; }

/* ---- ≤920px: SIMPLE header = logo + hamburger only ----
   (pill-nav + header CTAs + header language switch all move into the drawer;
   !important defeats the later-in-source base rules.) */
@media (max-width: 920px) {
  header.nav .nav-inner { padding-left: 16px; padding-right: 16px; }
  header.nav .pill-nav-wrap { display: none !important; }
  header.nav .nav-polo,
  header.nav .nav-vaga,
  header.nav .lang-switch { display: none !important; }
  .menu-toggle { display: flex !important; }
  .nav-cta { gap: 6px; }
  /* the orbiting flags must not collide with the globe on tablets */
  .globe-orbit { --flag-R: clamp(150px, 47vw, 300px); }
}

@media (max-width: 600px) {
  /* CTA sobe (fluxo, logo abaixo de "Clínica & Esportiva");
     barra (local+data+virada do lote) desce para o rodapé do hero */
  .hero { flex-direction: column; }
  .hero-bar-wrap { display: block !important; position: absolute; bottom: 16px; left: 0; right: 0; margin-top: 0; z-index: 6; }
  .hero-bar { padding: 10px 12px; gap: 8px; border-radius: 14px; justify-content: center; }
  .hero-bar .hb-meta, .hero-bar .hb-divider, .hero-bar > .countdown, .hero-bar .hb-lote-desk { display: none; }
  .hb-mobile { display: flex; width: 100%; flex-direction: row; align-items: center; justify-content: center; gap: 10px; flex-wrap: nowrap; min-width: 0; }
  .hb-mobile .hb-item { justify-content: center; gap: 7px; flex-shrink: 1; min-width: 0; }
  .hb-mobile .hb-item .ic { width: 26px; height: 26px; border-radius: 7px; }
  .hb-mobile .hb-item .ic svg { width: 14px; height: 14px; }
  .hb-mobile .lbl { font-size: 0.72rem; white-space: nowrap; }
  .hb-mobile .sub { font-size: 0.5rem; white-space: nowrap; letter-spacing: 0.1em; }
  .hb-lote { display: flex; flex-direction: column; align-items: center; gap: 1px; width: auto; flex-shrink: 0; }
  .lote-lbl { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.5rem; color: var(--gold); }
  .hb-lote .countdown { justify-content: center; gap: 4px; margin: 0; }
  .hb-lote .cd-unit { padding: 0 1px; min-width: 0; background: none; border: 0; }
  .hb-lote .cd-unit .num { font-size: 0.95rem; }
  .hb-lote .cd-unit .lab { font-size: 0.4rem; margin-top: 1px; }
  .hb-lote .cd-sep { font-size: 0.75rem; color: rgba(214,168,79,0.45); margin-top: 0; }

  /* VP badge → top-left, inside the header bar */
  .vp-badge { top: 13px; bottom: auto; left: 12px; width: 46px; height: 46px; z-index: 130; }
  /* header title centered, hamburger stays right */
  header.nav .nav-inner { position: relative; justify-content: flex-end; }
  header.nav .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; }
  header.nav .logo .lockup { align-items: center; text-align: center; }
  header.nav .logo .l1, header.nav .logo .l2 { text-align: center; }

  /* center ALL hero copy */
  .hero-copy { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
  .hero .eyebrow { justify-content: center; text-align: center; }
  .hero .eyebrow::before { display: none; }
  .hero .kicker, .hero .kicker[style] { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  /* HERO: copy pinned to top → centered emblem (canvas) stays visible below */
  .hero { align-items: flex-start; padding-top: 84px; padding-bottom: 30px; }
  .hero-copy { max-width: 100%; }
  .hero .eyebrow { font-size: 0.58rem; letter-spacing: 0.14em; }
  .hero .kicker, .hero .kicker[style] { font-size: clamp(0.8rem, 3.4vw, 0.98rem) !important; letter-spacing: 0.03em; margin-top: 0.6em; }
  .hero-title { font-size: clamp(1.55rem, 7vw, 2.4rem) !important; margin-top: 0.32em; }
  .hero-title span, .hero-title span[style] { font-size: clamp(1.55rem, 7vw, 2.4rem) !important; line-height: 1.02; }
  .hero-sub { font-size: clamp(0.86rem, 3.5vw, 1.04rem); max-width: 32ch; margin-top: 0.6em; line-height: 1.34; }
  .hero-actions { display: none !important; }
  /* single, compact CTA centered at the very bottom — clear of the apple/emblem.
     Centered with auto margins (NOT translateX) because the .reveal system sets
     `transform: none !important` inline, which would cancel a translateX(-50%). */
  .hero-cta-mobile {
    display: inline-flex !important; position: static;
    margin: 16px auto 0;
    z-index: 7; width: fit-content; min-width: 0; max-width: 86vw;
    justify-content: center; align-items: center; white-space: nowrap;
    padding: 12px 26px; min-height: 0; font-size: 0.8rem; gap: 0.55em;
  }
  .hero-cta-mobile svg { width: 14px; height: 14px; }

  /* black gradient softening the top & bottom of the mobile video */
  .hero-vignette {
    background:
      linear-gradient(to bottom, #050505 0%, rgba(5,5,5,0.86) 24%, rgba(5,5,5,0.0) 44%),
      linear-gradient(to top, #050505 0%, #050505 15%, rgba(5,5,5,0.62) 27%, transparent 42%);
    box-shadow: none;
  }
  .hero-scrim { background: linear-gradient(180deg, rgba(5,5,5,0.4), transparent 30%); }

  /* SECTION rhythm */
  section { padding-top: clamp(54px, 12vw, 84px); padding-bottom: clamp(54px, 12vw, 84px); }
  .section-title { font-size: clamp(1.7rem, 7.4vw, 2.4rem); }
  .sec-head { margin-bottom: 30px; }
  .lead { font-size: 1.05rem; }

  /* CARDS / grids */
  .exp-grid, .countries { grid-template-columns: 1fr 1fr; gap: 12px; }
  .speakers { gap: 12px; }
  .cover-stage { height: clamp(300px, 78vw, 380px); perspective: 800px; }
  .speaker { width: clamp(168px, 52vw, 220px); height: clamp(252px, 78vw, 330px); }
  .cover-nav { width: 42px; height: 42px; }
  .cover-prev { left: 2px; } .cover-next { right: 2px; }
  .exp-card { padding: 22px 18px; }
  .exp-card .ic { width: 44px; height: 44px; margin-bottom: 14px; }
  .exp-card h4 { font-size: 0.98rem; }
  .mode-card { padding: 26px 22px; }
  .ticket { padding: 30px 24px; }
  .country { padding: 20px 10px; }
  .country .nm { font-size: 0.8rem; }

  /* GLOBE + orbiting flags */
  .globe-wrap { gap: 22px; }
  .globe-orbit { width: min(92vw, 460px); margin-left: auto; margin-right: auto; --flag-R: clamp(128px, 43vw, 205px); }
  .globe-stage { width: min(82vw, 440px); margin-left: auto; margin-right: auto; }
  .flag-fimg {
    width: clamp(38px, 11.5vw, 54px); height: clamp(38px, 11.5vw, 54px);
    margin-left: calc(clamp(38px, 11.5vw, 54px) / -2);
    margin-top: calc(clamp(38px, 11.5vw, 54px) / -2);
  }
  /* slimmer markers so dots don't look bulky on phones */
  .gm .gm-dot { width: calc(var(--s, 8px) * 0.6); height: calc(var(--s, 8px) * 0.6); box-shadow: 0 0 0 1.5px rgba(5,5,5,0.85), 0 0 7px 1px var(--c, #33ccdd); }
  .gm .gm-ring { width: calc(var(--rs, 30px) * 0.62); height: calc(var(--rs, 30px) * 0.62); margin-left: calc(var(--rs, 30px) * -0.31); margin-top: calc(var(--rs, 30px) * -0.31); border-width: 1.5px; }
  /* legend: keep both items on a single row */
  .globe-legend { flex-wrap: nowrap; gap: 16px; width: 100%; }
  .lg-item { gap: 9px; }
  .lg-dot { width: 11px; height: 11px; }
  .lg-txt b { font-size: 0.72rem; }
  .lg-txt span { font-size: 0.64rem; }

  /* MANIFESTO */
  .manifesto-lead { font-size: clamp(1.2rem, 5.4vw, 1.7rem); }
  .manifesto-body { font-size: 1rem; }

  /* COMPARISON table — fit the viewport, no horizontal scroll */
  .compare { overflow-x: visible; }
  table.cmp { min-width: 0; width: 100%; table-layout: fixed; }
  table.cmp th, table.cmp td { padding: 13px 12px; font-size: 0.8rem; }
  table.cmp thead th { font-size: 0.68rem; letter-spacing: 0.04em; }
  table.cmp tbody td { font-size: 0.8rem; word-break: break-word; }
  table.cmp td:first-child, table.cmp th:first-child { border-right: 1px solid rgba(214,168,79,0.12); }
  .cell-yes { align-items: flex-start; gap: 5px; }
  .cell-yes svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }

  /* SOLIDÁRIO */
  .solidario-card { padding: 36px 22px; }
  .sci-card { padding: 34px 20px; }
  .sci-steps { gap: 12px; }
  .sci-step { flex-basis: 100%; max-width: 100%; flex-direction: row; justify-content: flex-start; text-align: left; padding: 16px; }

  /* FORM */
  .reg-form { padding: 26px 20px; }
}

@media (max-width: 380px) {
  .exp-grid, .countries { grid-template-columns: 1fr; }
  .hero-bar .countdown { gap: 6px; }
  .hero-bar .cd-unit { padding: 0 3px; }
}

/* ============================================================
   ✦ Patrocinadores — marquee infinito (porte do InfiniteSlider)
   ============================================================ */
.pat-sec { position: relative; overflow: hidden; }
.pat-sec::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(720px 420px at 50% 40%, rgba(214,168,79,0.08), transparent 64%);
}
.pat-rows { display: flex; flex-direction: column; gap: 22px; }
.pat-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 11%, #000 89%, transparent);
}
.pat-track { display: flex; width: max-content; animation: pat-scroll 46s linear infinite; }
.pat-row-rev .pat-track { animation-direction: reverse; animation-duration: 54s; }
.pat-group { display: flex; align-items: stretch; gap: 18px; padding-right: 18px; flex: 0 0 auto; }
.pat-row:hover .pat-track { animation-play-state: paused; }

@keyframes pat-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.pat-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 200px; height: 100px; padding: 16px 22px; border-radius: 16px; flex: 0 0 auto;
  background: #ffffff;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pat-logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block; pointer-events: none; user-select: none;
}
.pat-logo:hover { transform: translateY(-4px); box-shadow: 0 0 36px rgba(255,138,0,0.22), 0 18px 40px -16px rgba(0,0,0,0.9); }
.pat-note { text-align: center; margin-top: clamp(28px, 4vh, 44px); color: var(--white-dim); font-size: 0.98rem; }
.pat-note a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(214,168,79,0.4); padding-bottom: 1px; transition: color 0.3s; }
.pat-note a:hover { color: var(--gold-bright); }

@media (max-width: 600px) {
  .pat-rows { gap: 14px; }
  .pat-logo { width: 144px; height: 74px; padding: 11px 15px; border-radius: 13px; }
  .pat-group { gap: 12px; padding-right: 12px; }
  .pat-track { animation-duration: 34s; }
  .pat-row-rev .pat-track { animation-duration: 40s; }
}
@media (prefers-reduced-motion: reduce) {
  .pat-track { animation: none; }
  .pat-row { -webkit-mask-image: none; mask-image: none; }
  .pat-group:nth-child(2) { display: none; }
  .pat-group { flex-wrap: wrap; }
}


/* ---------- Última Edição: bloco de vídeo simples (sem animação de scroll) ---------- */
.video-sec { padding: clamp(60px, 9vh, 110px) 0; }
.video-frame {
  position: relative; max-width: 1000px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(214,168,79,0.32); background: #000;
  box-shadow: 0 34px 90px rgba(0,0,0,0.65), 0 0 60px rgba(255,138,0,0.12);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
@media (max-width: 600px) {
  .video-sec { padding: 44px 0; }
  .video-frame { border-radius: 14px; }
}


/* ---------- Ingressos Brasil: categorias BASIC / STANDARD / GLAMOUR ---------- */
.tickets-sub { text-align: center; margin: 8px 0 22px; }
.tickets-sub .t-loc { display: block; }
.tickets-sub .tsub-title { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-top: 0.3em; }
.tier-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.ticket .li-off { opacity: 0.45; }
.ticket .li-off svg { color: var(--red-glow); }
.ticket.glamour { border-color: rgba(214,168,79,0.55); background: linear-gradient(160deg, rgba(214,168,79,0.10), rgba(255,255,255,0.012)); }
.ticket.glamour:hover { box-shadow: 0 30px 70px -22px rgba(0,0,0,0.8), 0 0 60px rgba(255,138,0,0.2); }
.tickets-2 { grid-template-columns: 1fr 1fr; max-width: 880px; margin: 26px auto 0; }
@media (max-width: 880px) { .tickets-2 { grid-template-columns: 1fr; } }


/* ---------- Pricing interativo (Ingressos Brasil) ---------- */
.pricing-x { max-width: 620px; margin: 0 auto 34px; display: flex; flex-direction: column; gap: 14px; }
.px-toggle {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 5px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
}
.px-slider {
  position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 3);
  border-radius: 100px; background: var(--metal);
  box-shadow: 0 4px 18px rgba(255,138,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.35s var(--ease); z-index: 1;
}
.px-seg {
  position: relative; z-index: 2; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.7rem; line-height: 1.2; padding: 11px 6px;
  color: var(--white-dim); transition: color 0.3s;
}
.px-seg.active { color: #2a1c05; -webkit-text-fill-color: #2a1c05; }
.px-plans { display: flex; flex-direction: column; gap: 12px; }
.px-plan {
  border-radius: 18px; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.px-plan.open { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 18px 50px -20px rgba(0,0,0,0.7), 0 0 40px rgba(255,138,0,0.12); }
.px-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; padding: 18px 20px; text-align: left;
}
.px-info { display: flex; flex-direction: column; gap: 4px; }
.px-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: 0.05em; color: var(--white); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.px-pop { font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; background: var(--metal); color: #2a1c05; -webkit-text-fill-color: #2a1c05; }
.px-price { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--gold-bright); display: flex; align-items: center; gap: 8px; }
.px-off { font-style: normal; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 100px; background: rgba(255,138,0,0.16); color: var(--amber); border: 1px solid rgba(255,138,0,0.4); }
.px-bump { animation: pxBump 0.35s var(--ease); }
@keyframes pxBump { 0% { opacity: 0.2; transform: translateY(-4px); } 100% { opacity: 1; transform: none; } }
.px-radio {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(214,168,79,0.45); display: grid; place-items: center;
  transition: border-color 0.3s;
}
.px-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--metal); opacity: 0; transition: opacity 0.3s; }
.px-plan.open .px-radio { border-color: var(--gold); }
.px-plan.open .px-radio::after { opacity: 1; }
.px-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.px-body ul { list-style: none; margin: 0; padding: 0 20px 18px; display: flex; flex-direction: column; gap: 10px; }
.px-body li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--white-dim); }
.px-body li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.px-body .li-off { opacity: 0.45; }
.px-body .li-off svg { color: var(--red-glow); }
.pricing-x #pxCta { width: 100%; justify-content: center; }
@media (max-width: 600px) {
  .px-seg { font-size: 0.56rem; letter-spacing: 0.03em; padding: 10px 4px; }
  .px-name { font-size: 1.05rem; }
  .px-price { font-size: 0.9rem; }
}


/* ---------- Pricing: linhas mais compactas (cabe numa tela de celular) ---------- */
.px-head { padding: 13px 16px; }
.px-info { gap: 2px; }
.px-name { font-size: 1.05rem; }
.px-body ul { gap: 5px; padding: 0 16px 12px; }
.px-body li { font-size: 0.84rem; line-height: 1.3; }
.px-body li svg { width: 14px; height: 14px; margin-top: 2px; }
@media (max-width: 600px) {
  .pricing-x { gap: 10px; }
  .px-plans { gap: 8px; }
  .px-head { padding: 11px 13px; }
  .px-name { font-size: 0.95rem; }
  .px-price { font-size: 0.82rem; }
  .px-body ul { gap: 4px; padding: 0 13px 10px; }
  .px-body li { font-size: 0.78rem; line-height: 1.25; }
  .pricing-x #pxCta { min-height: 46px; padding-top: 0.8em; padding-bottom: 0.8em; }
}


/* ---------- Planeje sua viagem ---------- */
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.travel-card {
  padding: 30px 28px; border-radius: 20px; text-align: center;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.travel-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7), 0 0 40px rgba(255,138,0,0.12); }
.travel-card h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin: 4px 0 0; }
.tc-dates { color: var(--white-dim); font-size: 0.9rem; }
.tc-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }
.tc-actions .btn svg { width: 17px; height: 17px; }
@media (max-width: 760px) {
  .travel-grid { grid-template-columns: 1fr; }
  .tc-actions { width: 100%; }
  .tc-actions .btn { flex: 1 1 45%; justify-content: center; }
}

/* ---------- FAB: ticket dourado fixo ---------- */
.ticket-fab {
  position: fixed; right: clamp(14px, 2.2vw, 30px); bottom: clamp(14px, 2.2vw, 30px);
  z-index: 130; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #2a1c05;
  background: var(--metal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55), 0 0 28px rgba(255,138,0,0.45), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.ticket-fab svg { width: 28px; height: 28px; }
.ticket-fab:hover { transform: scale(1.1); box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 44px rgba(255,138,0,0.6), inset 0 1px 0 rgba(255,255,255,0.6); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.55), 0 0 22px rgba(255,138,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,0.55), 0 0 42px rgba(255,138,0,0.6), inset 0 1px 0 rgba(255,255,255,0.5); }
}
@media (prefers-reduced-motion: reduce) { .ticket-fab { animation: none; } }
@media (max-width: 600px) { .ticket-fab { width: 50px; height: 50px; } .ticket-fab svg { width: 25px; height: 25px; } }


/* ---------- Travelpayouts widget: themed frame ---------- */
.tp-widget {
  max-width: 920px; margin: 0 auto 26px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(214,168,79,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(214,168,79,0.32);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.75), inset 0 1px 0 rgba(247,243,232,0.06);
  overflow: hidden;
}
.tp-widget iframe { border-radius: 14px; display: block; }
@media (max-width: 600px) { .tp-widget { padding: 10px; border-radius: 16px; } }

/* ---------- Trabalhos científicos (compacto) ---------- */
.sci-card.sci-compact { padding: clamp(30px, 4.5vw, 50px); }
.sci-card.sci-compact .section-title { margin: 0 0 0.7em; }
