/* =========================================================
   Portugal Conecta — Landing Premium (dark edition)
   Paleta: preto quente / dourado gradiente
   Tipografia: Fraunces (display) + Inter (body) + Instrument Serif
   ========================================================= */

:root {
  /* escala de pretos quentes */
  --bg-0: #08060a;
  --bg-1: #0c090c;
  --bg-2: #12100e;
  --bg-3: #1a1612;
  --bg-elev: #1d1815;
  --bg-card: rgba(28, 22, 18, 0.55);
  --bg-card-solid: #1a1612;

  /* texto */
  --ink: #f6edd7;
  --ink-2: #c9bfab;
  --ink-3: #8a7f6c;
  --ink-4: #5a5244;

  /* dourado */
  --gold-1: #f2d789;
  --gold-2: #e6c974;
  --gold-3: #c9a661;
  --gold-4: #a6821c;
  --gold-5: #866421;
  --gold-soft: rgba(230, 201, 116, 0.14);
  --gold-soft-2: rgba(230, 201, 116, 0.28);

  /* linhas */
  --line: rgba(230, 201, 116, 0.12);
  --line-2: rgba(230, 201, 116, 0.22);
  --line-strong: rgba(230, 201, 116, 0.45);

  /* gradientes */
  --grad-gold: linear-gradient(92deg, #f2d789 0%, #c9a661 45%, #866421 100%);
  --grad-gold-soft: linear-gradient(92deg, #f2d789 0%, #e6c974 50%, #c9a661 100%);
  --grad-gold-radial: radial-gradient(circle at 30% 20%, #f2d789 0%, #c9a661 50%, #866421 100%);

  /* sombras */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 40px -18px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 100px -30px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 20px 50px -20px rgba(201, 166, 97, 0.4);
  --glow-gold: 0 0 0 1px rgba(230, 201, 116, 0.25), 0 20px 60px -15px rgba(201, 166, 97, 0.45);

  /* radios */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

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

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg-0);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-0);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
em { font-style: italic; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-3), var(--gold-5));
  border-radius: 10px;
  border: 2px solid var(--bg-1);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold-2), var(--gold-4)); }

/* seleção */
::selection { background: rgba(230, 201, 116, 0.35); color: var(--ink); }

/* tipografia base */
h1, h2, h3, h4, h5 {
  font-family: "Fraunces", "Instrument Serif", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.italic-gold {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    100deg,
    #e6c974 0%,
    #f5e8b8 25%,
    #c9a661 50%,
    #f2d789 75%,
    #e6c974 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  animation: goldShimmer 8s ease-in-out infinite;
  position: relative;
  display: inline-block;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Efeito de entrada no headline principal */
.hero__title .italic-gold {
  position: relative;
}
.hero__title .italic-gold::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.05em;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: underlineReveal 1.4s var(--ease) 1.5s forwards;
  opacity: 0.6;
}
@keyframes underlineReveal {
  to { transform: scaleX(0.85); }
}

/* Letra capital destacada no headline */
.hero__title-row:first-child::first-letter {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1.15em;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-right: 0.02em;
}

.gold-text {
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ NOISE OVERLAY ============ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0 0.55 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ CURSOR GLOW ============ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(230, 201, 116, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ============ EYEBROW / LEAD ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 22px;
  position: relative;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3));
}
.eyebrow--center { display: inline-flex; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: var(--gold-1); }

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0 0 18px;
}
.lead strong { color: var(--ink); font-weight: 500; }
.lead--muted { color: var(--ink-3); }
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.display {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.display--center { text-align: center; }

.section__head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

/* ============ BUTTONS ============ */
.btn {
  --pad-y: 16px;
  --pad-x: 28px;
  --fs: 14.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-size: var(--fs);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s ease;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
}
.btn--sm { --pad-y: 11px; --pad-x: 18px; --fs: 13px; }
.btn--lg { --pad-y: 18px; --pad-x: 32px; --fs: 15px; }
.btn--xl { --pad-y: 22px; --pad-x: 40px; --fs: 16px; font-weight: 600; }

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}

/* --- GOLD --- */
.btn--gold {
  background: linear-gradient(92deg, #f2d789 0%, #c9a661 45%, #866421 100%);
  color: #1d1408;
  border: 1px solid rgba(242, 215, 137, 0.6);
  box-shadow: 0 10px 30px -10px rgba(201, 166, 97, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.4),
              inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, #866421 0%, #c9a661 45%, #f2d789 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(201, 166, 97, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.btn--gold:hover::before { opacity: 1; }
.btn--gold:hover .btn__arrow { transform: translateX(4px); }
.btn--gold:active { transform: translateY(0); }

/* --- GHOST --- */
.btn--ghost {
  background: rgba(28, 22, 18, 0.5);
  color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(28, 22, 18, 0.8);
  border-color: var(--gold-3);
  color: var(--gold-2);
  transform: translateY(-2px);
}

/* ============ BRAND (logo PNG transparente) ============ */
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  line-height: 0;
}
.nav .brand__logo,
.brand__logo {
  /* logo do nav — compacto mas legível */
  display: block !important;
  height: 68px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain;
  transition: transform 0.5s var(--ease), filter 0.4s ease, opacity 0.3s ease;
  filter: drop-shadow(0 4px 14px rgba(230, 201, 116, 0.15));
  -webkit-user-drag: none;
  user-select: none;
}
.brand:hover .brand__logo {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 20px rgba(230, 201, 116, 0.28));
}
.brand:focus-visible .brand__logo {
  outline: none;
  filter: drop-shadow(0 0 0 2px rgba(230, 201, 116, 0.5)) drop-shadow(0 4px 14px rgba(230, 201, 116, 0.35));
}

/* variante do footer — ligeiramente maior e com mais ar */
.brand--footer .brand__logo {
  height: 84px !important;
  max-width: 320px !important;
  filter: drop-shadow(0 6px 22px rgba(230, 201, 116, 0.2));
}

/* ============ RESPONSIVO DO LOGO ============ */
@media (max-width: 1024px) {
  .nav .brand__logo,
  .brand__logo               { height: 58px !important; }
  .brand--footer .brand__logo { height: 76px !important; }
}

@media (max-width: 720px) {
  .nav .brand__logo,
  .brand__logo               { height: 48px !important; max-width: 200px !important; }
  .brand--footer .brand__logo { height: 66px !important; max-width: 260px !important; }
}

@media (max-width: 420px) {
  .nav .brand__logo,
  .brand__logo               { height: 42px !important; max-width: 170px !important; }
  .brand--footer .brand__logo { height: 58px !important; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 6, 10, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 20px;
}
@media (max-width: 720px) {
  .nav__inner { height: 72px; }
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--gold-2); }
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .brand__sub { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05) brightness(0.35);
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
.hero__bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(230, 201, 116, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(8, 6, 10, 0.7) 0%, rgba(8, 6, 10, 0.9) 60%, rgba(8, 6, 10, 1) 100%),
    linear-gradient(135deg, rgba(134, 100, 33, 0.15), transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 201, 116, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 201, 116, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 201, 116, 0.18), transparent 70%);
  top: -100px; left: -120px;
}
.hero__orb--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(166, 130, 28, 0.14), transparent 70%);
  bottom: -140px; right: -100px;
  animation-delay: -7s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  font-weight: 500;
}
.badge__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(230, 201, 116, 0.2);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230, 201, 116, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(230, 201, 116, 0.02); }
}

.hero__title {
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 14ch;
  margin: 0;
}
.hero__title-row {
  display: block;
}
.hero__title .italic-gold {
  font-size: 1.08em;
  line-height: 1;
}

.hero__kicker {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}
.hero__kicker strong { color: var(--ink); font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero__meta {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  padding: 20px 28px;
  border-radius: 20px;
  background: rgba(16, 12, 14, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  gap: 20px;
}
.hero__meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}
.hero__meta-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.hero__meta-value {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__meta-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero { padding: 140px 0 90px; }
  .hero__meta {
    flex-direction: column;
    padding: 10px 22px;
    width: calc(100% - 20px);
    gap: 0;
  }
  .hero__meta-divider { display: none; }
  .hero__meta-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
  }
  .hero__meta-item:last-child { border-bottom: none; }
  .hero__meta-label {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    flex-shrink: 0;
  }
  .hero__meta-value {
    font-size: 17px;
    text-align: right;
    line-height: 1.2;
  }
}

/* ============ DATEBAR (14 maio · 20h · Câmara de Valongo) ============ */
.datebar {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 26px 40px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(230, 201, 116, 0.08), rgba(134, 100, 33, 0.02) 50%, rgba(230, 201, 116, 0.05)),
    rgba(14, 10, 12, 0.75);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(230, 201, 116, 0.18),
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(230, 201, 116, 0.06);
  position: relative;
  isolation: isolate;
  max-width: 900px;
}
.datebar::before {
  /* brilho dourado superior */
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0.6;
}
.datebar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.datebar__label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.datebar__value {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  white-space: nowrap;
}
.datebar__value .italic-gold { font-size: 1em; line-height: 1; }
.datebar__sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-align: center;
}
.datebar__sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
  flex-shrink: 0;
}

/* Variante dentro do CTA (fundo mais escuro) */
.datebar--cta {
  margin: 8px auto 10px;
  background:
    linear-gradient(135deg, rgba(230, 201, 116, 0.12), rgba(134, 100, 33, 0.04) 50%, rgba(230, 201, 116, 0.08)),
    rgba(8, 6, 10, 0.6);
}

@media (max-width: 820px) {
  .datebar {
    flex-direction: column;
    padding: 26px 22px;
    gap: 0;
    width: calc(100% - 8px);
    max-width: 520px;
  }
  .datebar__item {
    width: 100%;
    padding: 16px 0;
    gap: 6px;
    border-bottom: 1px solid var(--line);
  }
  .datebar__item:last-child { border-bottom: none; }
  .datebar__sep { display: none; }
  .datebar__label {
    font-size: 10.5px;
    letter-spacing: 0.3em;
  }
  .datebar__value {
    font-size: 28px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }
  .datebar__sub {
    font-size: 12px;
    margin-top: 4px;
  }
}

.hero__scroll {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold-3), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50%      { transform: scaleY(1);   transform-origin: top; }
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background:
    linear-gradient(90deg, var(--bg-0), var(--bg-2) 50%, var(--bg-0)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-0), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-0), transparent); }
.marquee__track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
}
.marquee__track span {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.marquee__track em {
  font-style: normal;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS BASE ============ */
.section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.section__decor {
  position: absolute;
  top: 20%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 201, 116, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.section__decor--right { left: auto; right: -200px; top: 50%; }

@media (max-width: 640px) {
  .section { padding: 100px 0; }
}

/* ============ INTRO ============ */
.section--intro {
  background:
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .intro { grid-template-columns: 1fr; gap: 48px; }
}

.intro__left .display { margin-bottom: 28px; }

.intro__stats {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__num {
  font-family: "Fraunces", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.intro__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1) brightness(0.75);
  transition: transform 1.4s var(--ease);
}
.intro__media:hover img { transform: scale(1.04); }
.intro__media-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(230, 201, 116, 0.35);
  border-radius: calc(var(--r-lg) - 12px);
  pointer-events: none;
}
.intro__media-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(8, 6, 10, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.intro__media-dot {
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(230, 201, 116, 0.25);
}

.intro__card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, rgba(28, 22, 18, 0.6), rgba(16, 12, 14, 0.4));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
}
.intro__card-quote {
  margin-bottom: 12px;
}
.intro__card p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}

/* ============ AUDIENCE ============ */
.section--audience {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(166, 130, 28, 0.08), transparent 70%),
    var(--bg-0);
}
.audience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1040px) { .audience { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .audience { grid-template-columns: 1fr; } }

.audience__card {
  padding: 32px 26px;
  background: linear-gradient(180deg, rgba(28, 22, 18, 0.55), rgba(16, 12, 14, 0.35));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(6px);
  isolation: isolate;
}
.audience__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(450px circle at var(--mx, 50%) var(--my, 0%), rgba(230, 201, 116, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.audience__card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md), var(--glow-gold);
}
.audience__card:hover::before { opacity: 1; }

.audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.12), rgba(134, 100, 33, 0.06));
  border: 1px solid var(--line-2);
  margin-bottom: 20px;
  color: var(--gold-2);
  transition: transform 0.5s var(--ease), background 0.4s ease;
}
.audience__card:hover .audience__icon {
  transform: scale(1.08) rotate(-2deg);
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.22), rgba(134, 100, 33, 0.1));
}

.audience__card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.audience__card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ============ LEARN ============ */
.section--learn {
  background:
    linear-gradient(180deg, var(--bg-0), var(--bg-1), var(--bg-0));
}
.learn {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 1040px) { .learn { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .learn { grid-template-columns: 1fr; } }

.learn__item {
  padding: 36px 28px;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.4s ease, transform 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.learn__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.learn__item:hover { background: var(--bg-2); }
.learn__item:hover::after { transform: scaleX(1); }

.learn__num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 400;
}
.learn__body h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.learn__body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ============ SPEAKERS ============ */
.section--speakers {
  background:
    radial-gradient(900px 500px at 0% 30%, rgba(166, 130, 28, 0.08), transparent 70%),
    var(--bg-0);
}
.speaker {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.speaker:last-child { margin-bottom: 0; }
.speaker--reverse { grid-template-columns: 1.1fr 0.9fr; }
.speaker--reverse .speaker__photo { order: 2; }
.speaker--reverse .speaker__content { order: 1; }

@media (max-width: 920px) {
  .speaker, .speaker--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 64px;
  }
  .speaker--reverse .speaker__photo { order: 0; }
  .speaker--reverse .speaker__content { order: 0; }
}

/* ----- SPEAKER PHOTO ELEGANT FRAME ----- */
.speaker__photo {
  position: relative;
  padding: 18px;
}
.speaker__photo::before {
  /* moldura dourada externa */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-lg) + 4px);
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.3), rgba(134, 100, 33, 0.1) 40%, transparent 70%);
  padding: 1px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.speaker__photo::after {
  /* glow suave atrás */
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(230, 201, 116, 0.12), transparent 65%);
  filter: blur(30px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.speaker__photo:hover::after { opacity: 1; }

.speaker__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--line-2);
  box-shadow:
    inset 0 1px 0 rgba(230, 201, 116, 0.1),
    inset 0 -40px 80px -20px rgba(0, 0, 0, 0.5),
    0 30px 80px -30px rgba(0, 0, 0, 0.7);
  transition: transform 0.8s var(--ease), box-shadow 0.6s ease;
}
.speaker__photo:hover .speaker__photo-frame {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(230, 201, 116, 0.2),
    inset 0 -40px 80px -20px rgba(0, 0, 0, 0.5),
    0 40px 100px -30px rgba(201, 166, 97, 0.35);
}
.speaker__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.4s var(--ease), filter 0.6s ease;
  filter: saturate(0.92) contrast(1.06) brightness(0.95);
}
.speaker__photo:hover .speaker__photo-frame img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.08) brightness(1);
}

/* reforço visual quando há foto real */
.speaker__photo-frame--has-image {
  position: relative;
}
.speaker__photo-frame--has-image::before {
  /* gradiente escuro no rodapé para integração com tag */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8, 6, 10, 0.25) 50%,
    rgba(8, 6, 10, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.speaker__photo-frame--has-image::after {
  /* brilho suave dourado no topo */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(230, 201, 116, 0.08) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* placeholder quando ainda não há foto */
.speaker__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 40%, rgba(230, 201, 116, 0.06), transparent 65%),
    repeating-linear-gradient(45deg, rgba(230, 201, 116, 0.02) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, var(--bg-3), var(--bg-1));
  color: var(--ink-3);
}
.speaker__placeholder span {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.speaker__photo-tag {
  position: absolute;
  left: 30px; bottom: 30px;
  padding: 9px 16px;
  background: rgba(8, 6, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  z-index: 2;
}

/* ----- SPEAKER CONTENT ----- */
.speaker__content {
  padding: 0 8px;
}
.speaker__name {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.speaker__bio {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.speaker__bio em {
  font-family: "Instrument Serif", serif;
  color: var(--gold-2);
}

.speaker__talk {
  position: relative;
  padding: 28px 30px;
  background: linear-gradient(180deg, rgba(28, 22, 18, 0.55), rgba(16, 12, 14, 0.3));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.speaker__talk::before {
  content: "";
  position: absolute;
  top: -1px; left: 28px;
  width: 60px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.speaker__talk-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.speaker__talk-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.speaker__talk p {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.75;
}
.speaker__talk p:last-child { margin-bottom: 0; }
.speaker__talk p strong { color: var(--ink); font-weight: 600; }

/* ============ REINFORCE ============ */
.section--reinforce {
  background:
    radial-gradient(700px 400px at 10% 0%, rgba(230, 201, 116, 0.08), transparent 70%),
    radial-gradient(700px 400px at 90% 100%, rgba(166, 130, 28, 0.08), transparent 70%),
    var(--bg-0);
}
.reinforce {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.reinforce__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .reinforce__grid { grid-template-columns: 1fr; } }
.reinforce__item {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(28, 22, 18, 0.6), rgba(16, 12, 14, 0.3));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: left;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(6px);
}
.reinforce__item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.reinforce__icon {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.14), rgba(134, 100, 33, 0.06));
  border: 1px solid var(--line-2);
  margin-bottom: 18px;
}
.reinforce__item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.reinforce__item p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ============ CTA FINAL ============ */
.cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.3);
}
.cta__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% 30%, rgba(230, 201, 116, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(8, 6, 10, 0.9), rgba(8, 6, 10, 0.95));
}
.cta__orb {
  position: absolute;
  width: 700px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230, 201, 116, 0.35), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta__title {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.cta__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.cta__lead strong { color: var(--gold-2); font-weight: 500; }

.cta__note {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.55);
  border: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.cta__note-dot {
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 201, 116, 0.2);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

.footer__brand .brand { margin-bottom: 16px; }
.footer__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 42ch;
}
.footer__col h4 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 20px;
}
.footer__col-title { margin-top: 28px; }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.footer__links a {
  transition: color 0.3s ease;
  display: inline-block;
}
.footer__links a:hover { color: var(--gold-2); }
.footer__links .ext-mark {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: var(--gold-3);
  transition: transform 0.3s var(--ease);
}
.footer__links a:hover .ext-mark {
  transform: translate(2px, -2px);
  color: var(--gold-2);
}

/* info do evento no footer */
.footer__links li strong { color: var(--ink); font-weight: 600; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: var(--bg-0);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-4);
}
.footer__credit a {
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.footer__credit a:hover { opacity: 0.75; }

/* ============ REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.audience [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.audience [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.audience [data-reveal]:nth-child(3) { transition-delay: 0.10s; }
.audience [data-reveal]:nth-child(4) { transition-delay: 0.14s; }
.audience [data-reveal]:nth-child(5) { transition-delay: 0.18s; }
.audience [data-reveal]:nth-child(6) { transition-delay: 0.22s; }
.audience [data-reveal]:nth-child(7) { transition-delay: 0.26s; }
.audience [data-reveal]:nth-child(8) { transition-delay: 0.30s; }

.learn [data-reveal]:nth-child(1)  { transition-delay: 0.02s; }
.learn [data-reveal]:nth-child(2)  { transition-delay: 0.06s; }
.learn [data-reveal]:nth-child(3)  { transition-delay: 0.10s; }
.learn [data-reveal]:nth-child(4)  { transition-delay: 0.14s; }
.learn [data-reveal]:nth-child(5)  { transition-delay: 0.18s; }
.learn [data-reveal]:nth-child(6)  { transition-delay: 0.22s; }
.learn [data-reveal]:nth-child(7)  { transition-delay: 0.26s; }
.learn [data-reveal]:nth-child(8)  { transition-delay: 0.30s; }

/* =========================================================
   Polimento profissional · Ajustes finos de produção
   ========================================================= */

/* ------ Focus visível refinado (acessibilidade premium) ------ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bg-0),
    0 0 0 4px var(--gold-2),
    0 0 0 6px rgba(230, 201, 116, 0.25);
  border-radius: 999px;
}

/* ------ Datebar: brilho dourado refinado ------ */
.datebar {
  position: relative;
}
.datebar::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(230, 201, 116, 0.3), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

/* ------ Hero meta: brilho e elevação refinados ------ */
.hero__meta {
  position: relative;
  isolation: isolate;
}
.hero__meta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.3), transparent 40%, rgba(230, 201, 116, 0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* ------ Cards de audiência: hover spotlight refinado ------ */
.audience__card {
  transform-origin: center;
}
.audience__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.08), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.audience__card:hover::after { opacity: 1; }

.audience__icon {
  position: relative;
  overflow: hidden;
}
.audience__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(242, 215, 137, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.audience__card:hover .audience__icon::before { opacity: 1; }

/* ------ Learn: divisor dourado animado por cima ------ */
.learn {
  position: relative;
}
.learn::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  opacity: 0.9;
  z-index: 1;
}

.learn__item {
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.learn__item .learn__num {
  transition: transform 0.6s var(--ease), letter-spacing 0.4s ease;
  display: inline-block;
  transform-origin: left center;
}
.learn__item:hover .learn__num {
  transform: scale(1.05) translateX(2px);
}

/* ------ Speakers: melhorias no enquadramento ------ */
.speaker {
  position: relative;
  padding: 20px 0;
  transition: transform 0.5s var(--ease);
}
.speaker::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
.speaker:not(:last-child)::after {
  content: "◆";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-3);
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 0.5em;
}

.speaker__talk {
  position: relative;
  overflow: hidden;
}
.speaker__talk::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(230, 201, 116, 0.08), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ------ Reinforce: hover mais elegante ------ */
.reinforce__item {
  position: relative;
  overflow: hidden;
}
.reinforce__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.reinforce__item:hover::before { transform: scaleX(1); }
.reinforce__icon {
  transition: transform 0.5s var(--ease);
}
.reinforce__item:hover .reinforce__icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.22), rgba(134, 100, 33, 0.1));
}

/* ------ CTA final: brilho suplementar ------ */
.cta__inner {
  position: relative;
}
.cta__title {
  position: relative;
  display: inline-block;
}
.cta__title::before,
.cta__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3));
  opacity: 0.4;
}
.cta__title::before { left: -120px; }
.cta__title::after  { right: -120px; transform: scaleX(-1); }

@media (max-width: 720px) {
  .cta__title::before,
  .cta__title::after { display: none; }
}

/* ------ Section__head: ornamento decorativo ------ */
.section__head {
  position: relative;
}
.section__head .eyebrow--center {
  position: relative;
  padding: 0 48px;
}
.section__head .eyebrow--center::before,
.section__head .eyebrow--center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3));
  opacity: 0.5;
}
.section__head .eyebrow--center::before { left: 0; }
.section__head .eyebrow--center::after  {
  right: 0;
  transform: scaleX(-1);
}

/* ------ Intro media: enquadramento premium ------ */
.intro__media {
  transition: transform 0.6s var(--ease);
}
.intro__media::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, rgba(230, 201, 116, 0.3), transparent 40%, rgba(230, 201, 116, 0.15));
  z-index: -1;
  opacity: 0.6;
}

.intro__card {
  position: relative;
  overflow: hidden;
}
.intro__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 3px;
  height: 100%;
  background: var(--grad-gold);
}
.intro__card::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(230, 201, 116, 0.12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.intro__stats .stat {
  position: relative;
  transition: transform 0.4s var(--ease);
}
.intro__stats .stat:hover {
  transform: translateY(-3px);
}
.intro__stats .stat__num {
  position: relative;
  display: inline-block;
  transition: transform 0.5s var(--ease);
}

/* ------ Marquee: aura dourada por baixo ------ */
.marquee {
  box-shadow:
    inset 0 1px 0 rgba(230, 201, 116, 0.1),
    inset 0 -1px 0 rgba(230, 201, 116, 0.1);
}

/* ------ Speaker photo: refinement ------ */
.speaker__photo-tag {
  transition: transform 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
  font-variation-settings: "wght" 600;
}
.speaker__photo:hover .speaker__photo-tag {
  transform: translateY(-2px);
  background: rgba(230, 201, 116, 0.15);
  color: var(--gold-1);
}

/* ------ Benefit/learn items: número com detalhe ------ */
.learn__num {
  position: relative;
}
.learn__num::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 24px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  opacity: 0.6;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}
.learn__item:hover .learn__num::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ------ Footer: refinamento das colunas ------ */
.footer__col {
  position: relative;
}
.footer__links li {
  transition: transform 0.3s ease;
}
.footer__links li:hover {
  transform: translateX(4px);
}

/* ------ Badge no hero: animação subtil ------ */
.badge {
  position: relative;
  transition: border-color 0.4s ease;
}
.badge:hover {
  border-color: var(--line-strong);
}

/* ------ Botões: shine + pulse glow + arrow ------ */
.btn--gold {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* camada de shine */
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 248, 220, 0.5) 50%,
    transparent 100%
  );
  transition: left 0.8s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.btn--gold:hover::after { left: 100%; }

/* glow dourado pulsante por detrás */
.btn--gold.btn--lg::before,
.btn--gold.btn--xl::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(230, 201, 116, 0.45) 0%,
    transparent 70%
  );
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: -1;
  animation: btnPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.btn--gold.btn--lg:hover::before,
.btn--gold.btn--xl:hover::before {
  opacity: 1;
}

/* Arrow com movimento mais sofisticado */
.btn--gold .btn__arrow svg {
  transition: transform 0.45s var(--ease);
}
.btn--gold:hover .btn__arrow svg {
  transform: translateX(4px);
}
.btn--gold:active .btn__arrow svg {
  transform: translateX(2px) scale(0.95);
}

/* Ripple effect no click */
.btn--gold {
  -webkit-tap-highlight-color: transparent;
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}
.btn--gold .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 248, 220, 0.55);
  pointer-events: none;
  animation: ripple 0.65s linear;
  z-index: 3;
}

/* Estados focus */
.btn--gold:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bg-0),
    0 0 0 4px var(--gold-1),
    0 20px 40px -12px rgba(201, 166, 97, 0.6);
}

/* Bot\u00e3o hero especialmente destacado */
.hero__ctas .btn--gold.btn--lg {
  box-shadow:
    0 14px 35px -12px rgba(201, 166, 97, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(230, 201, 116, 0.5);
  animation: heroBtnGlow 3.5s ease-in-out infinite;
}
@keyframes heroBtnGlow {
  0%, 100% {
    box-shadow:
      0 14px 35px -12px rgba(201, 166, 97, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(230, 201, 116, 0);
  }
  50% {
    box-shadow:
      0 18px 44px -12px rgba(201, 166, 97, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2),
      0 0 0 6px rgba(230, 201, 116, 0.1);
  }
}

/* ------ Scrollbar refinada (reforço) ------ */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* ------ Section decor: mais rico ------ */
.section__decor {
  position: absolute;
  top: 20%; left: -200px;
  width: 500px; height: 500px;
  background:
    radial-gradient(circle, rgba(230, 201, 116, 0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: decorDrift 20s ease-in-out infinite alternate;
}
.section__decor--right {
  left: auto; right: -200px; top: 50%;
  animation-delay: -10s;
}
@keyframes decorDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.1); }
}

/* ------ Hero scroll indicator: refinamento ------ */
.hero__scroll {
  transition: opacity 0.5s ease, transform 0.4s var(--ease);
}
.hero__scroll:hover {
  opacity: 0.85;
  transform: translateX(-50%) translateY(-4px);
}

/* ------ Speaker name: detalhe de acento ------ */
.speaker__name {
  position: relative;
  padding-left: 22px;
}
.speaker__name::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: translateY(-50%);
}
@media (max-width: 920px) {
  .speaker__name {
    padding-left: 0;
  }
  .speaker__name::before {
    position: static;
    display: block;
    margin-bottom: 14px;
    transform: none;
    width: 40px;
    height: 2px;
  }
}

/* ------ Hover refinado em cartões com imagem ------ */
.speaker__photo-frame--has-image {
  position: relative;
}
.speaker__photo-frame--has-image::before,
.speaker__photo-frame--has-image::after {
  z-index: 2;
}

/* ------ Ligações no rodapé: sublinhado dourado no hover ------ */
.footer__links a {
  position: relative;
  padding-bottom: 2px;
}
.footer__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.footer__links a:hover::after {
  transform: scaleX(1);
}

/* ------ Mobile refinements ------ */
@media (max-width: 720px) {
  .section { padding: 90px 0; }
  .section__head { margin-bottom: 48px; }
  .display { font-size: clamp(34px, 7vw, 48px); }
  .lead { font-size: 16px; }
  .hero__title { font-size: clamp(44px, 11vw, 72px); }
  .hero__kicker { font-size: 15px; line-height: 1.7; }
  .speakers { gap: 48px; }
  .speaker { margin-bottom: 40px; }
  .speaker__name { font-size: 34px; }
  .speaker__talk { padding: 22px 20px; }
  .speaker__talk-title { font-size: 22px; }
  .audience__card { padding: 26px 22px; }
  .audience__card h3 { font-size: 19px; }
  .cta__title { font-size: clamp(42px, 11vw, 64px); }
  .cta__lead { font-size: 16px; }
  .cta { padding: 100px 0; }
  .btn--xl { padding: 18px 28px; font-size: 15px; }
  .marquee__track span,
  .marquee__track em { font-size: 15px; }
  .intro__stats { gap: 28px; flex-wrap: wrap; }
  .stat__num { font-size: 42px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

/* ------ Impressão ------ */
@media print {
  .nav, .hero__scroll, .marquee, .cta, .footer, .cursor-glow, .noise { display: none !important; }
  body { background: white; color: black; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__bg img, .hero__orb, .hero__scroll-line,
  .section__decor, .badge__pulse { animation: none; }
  * { scroll-behavior: auto !important; }
}
