/* ============================================================
   Meeting Pet 2026 — v2 · identidade "Velocidade e Crescimento"
   Azul #0036ff · Laranja #ff5e00 · racing / F1
   ============================================================ */

/* ===== Tokens ===== */
:root {
  --blue: #0036ff;
  --blue-deep: #050c26;
  --blue-navy: #081033;
  --orange: #ff5e00;
  --orange-hot: #ff7a26;
  --ink: #0d1120;
  --ink-dim: #4b5265;
  --paper: #ffffff;
  --paper-2: #f2f4fa;
  --line-light: rgba(13, 17, 32, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 8px;
  --space-section: clamp(4.5rem, 10vw, 7.5rem);
  --duration: 0.65s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--space-section); }

/* ===== Tipografia ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.015em; }

.section__title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section__title--blue { color: var(--blue); }
.section__title--blue em { font-style: italic; color: var(--orange); }
.section__title--orange { color: var(--orange); }
.section__title--onblue { color: #fff; }
.section__title--onblue em { font-style: italic; color: var(--orange-hot); }
.section__title--center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: var(--orange-hot); }

/* ===== Botões (racing: levemente inclinados) ===== */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 1rem 2.1rem;
  border: none;
  border-radius: 6px;
  transform: skewX(-6deg);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  box-shadow: 0 10px 28px -12px rgba(255, 94, 0, 0.7);
}
.btn:hover { background: var(--orange-hot); transform: skewX(-6deg) translateY(-3px); box-shadow: 0 16px 36px -10px rgba(255, 94, 0, 0.65); }
.btn:active { transform: skewX(-6deg) translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn--lg { font-size: 1.02rem; padding: 1.15rem 2.5rem; }
.btn--sm { font-size: 0.78rem; padding: 0.6rem 1.2rem; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid var(--line-dark);
  box-shadow: none;
}
.btn--ghost:hover { background: transparent; border-color: var(--orange-hot); color: var(--orange-hot); box-shadow: none; }
.btn--ghost-dark { color: var(--blue); border-color: var(--line-light); }
.btn--ghost-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: skewX(-6deg); box-shadow: none; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }
.d-5 { transition-delay: 0.4s; }

/* ===== Nav ===== */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav.is-scrolled { background: rgba(5, 12, 38, 0.88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-dark); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }
.nav__logo img { width: 177px; }
.nav__links { display: flex; gap: 1.75rem; }
.nav__links a { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: #fff; }
@media (max-width: 820px) { .nav__links { display: none; } }
@media (max-width: 480px) {
  .nav__logo img { width: 138px; }
  .nav .btn--sm { font-size: 0.7rem; padding: 0.55rem 1rem; }
  .btn--lg { font-size: 0.88rem; padding: 1rem 1.5rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--blue-deep) url("../assets/imgs/bg_hero_section.webp") center / cover no-repeat;
  color: #fff;
  padding-top: 76px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 38, 0.9));
  pointer-events: none;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__video.is-playing { opacity: 1; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 12, 38, 0.85) 0%, rgba(5, 12, 38, 0.55) 45%, rgba(5, 12, 38, 0.2) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(5, 12, 38, 0.8) 0%, rgba(5, 12, 38, 0.45) 70%, rgba(5, 12, 38, 0.25) 100%); }
}
.hero .container { max-width: 1340px; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-block: 2.5rem 0;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 0; }
}
.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transform: skewX(-6deg);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  display: grid;
  gap: 0.15em;
  margin-bottom: 1.4rem;
}
.hero__title .hl { color: var(--orange-hot); }
.hero__sub {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .hero__sub { margin-inline: auto; } }
.hero__cta-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__visual { position: relative; align-self: end; }
.hero__pilot {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  width: min(100%, 700px);
  max-height: min(84vh, 780px);
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}
.hero__x {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
}
.hero__x--1 { width: 90%; top: 2%; left: 50%; translate: -50% 0; animation: x-float 7s ease-in-out infinite alternate; }
.hero__x--2 { width: 34%; bottom: 8%; left: -6%; opacity: 0.55; animation: x-float 9s ease-in-out infinite alternate-reverse; }
@keyframes x-float { from { transform: translateY(-8px) rotate(-2deg); } to { transform: translateY(10px) rotate(2deg); } }
@media (max-width: 900px) { .hero__visual { max-width: 420px; margin-inline: auto; } }

/* ===== Countdown strip ===== */
.cdstrip { background: var(--blue); color: #fff; border-block: 3px solid var(--orange); }
.cdstrip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 1.4rem;
}
@media (max-width: 900px) { .cdstrip__inner { justify-content: center; text-align: center; } }
.cdstrip__label, .cdstrip__tag {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.cdstrip__tag { color: rgba(255, 255, 255, 0.85); font-weight: 700; font-size: 0.85rem; }
.cdstrip__tag span { color: var(--orange-hot); }
.countdown { display: flex; gap: clamp(0.5rem, 1.6vw, 1rem); }
.countdown__unit {
  min-width: 76px;
  text-align: center;
  padding: 0.55rem 0.4rem 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  transform: skewX(-6deg);
}
.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown__num.tick { animation: cd-tick 0.4s var(--ease); }
@keyframes cd-tick { 0% { transform: translateY(-7px); opacity: 0.2; } 100% { transform: none; opacity: 1; } }
.countdown__label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.7); }

/* ===== Diagnóstico (branco) ===== */
.diag { position: relative; background: var(--paper); overflow: hidden; }
.diag__x { position: absolute; width: 300px; left: -130px; top: 60px; opacity: 0.5; pointer-events: none; }
.diag .container { position: relative; }
.diag .section__title { text-align: center; }
.diag__intro { max-width: 640px; margin-inline: auto; text-align: center; color: var(--ink-dim); }
.diag__ask {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 2.4rem 0 4.4rem;
}
.diag__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .diag__grid { row-gap: 3.2rem; } }
@media (max-width: 900px) { .diag__grid { grid-template-columns: 1fr; } }
.diag__card {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.55;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.diag__card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(13, 17, 32, 0.5); }
.diag__card--orange { background: var(--orange); }
.diag__card--blue { background: var(--blue); }
.diag__card--wide { grid-column: 1 / -1; text-align: center; }
.diag__card strong { font-weight: 700; }

/* Cards com foto vazada (recorte transparente estourando o topo do card) */
.diag__card--img-right, .diag__card--img-left { position: relative; }
.diag__card--img-right { padding-right: 46%; }
.diag__card--img-left { padding-left: 46%; }
.diag__cutout {
  position: absolute;
  bottom: 0;
  width: 44%;
  height: 124%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}
.diag__card--img-right .diag__cutout { right: 0; object-position: bottom right; }
.diag__card--img-left .diag__cutout { left: 0; object-position: bottom left; }
@media (max-width: 520px) {
  .diag__card--img-right { padding-right: 50%; }
  .diag__card--img-left { padding-left: 50%; }
  .diag__cutout { width: 42%; }
}

/* ===== Método (azul) ===== */
.method { background: var(--blue); color: #fff; }
.method .section__title { text-align: center; }
.method__intro { max-width: 560px; margin: 0 auto 2.6rem; text-align: center; color: rgba(255, 255, 255, 0.85); }
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .method__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.method__card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  border-top: 5px solid var(--orange);
  padding: 1.9rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.method__card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(0, 0, 0, 0.55); }
.method__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  transform: skewX(-6deg);
  margin-bottom: 1.2rem;
}
.method__icon svg { width: 26px; height: 26px; }
.method__card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.method__card h3 span { color: var(--orange); display: block; }
.method__card p { font-size: 0.92rem; color: var(--ink-dim); }

/* ===== Faixa de texto (marquee) ===== */
.tband { background: var(--orange); overflow: hidden; padding-block: 0.8rem; }
.tband__track { display: flex; width: max-content; animation: marquee-left 30s linear infinite; }
.tband__track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* ===== Evolução ===== */
.evo { background: var(--paper); }
.evo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: 2.8rem;
}
@media (max-width: 860px) { .evo__grid { grid-template-columns: 1fr; } }
.evo__text p { color: var(--ink-dim); margin-bottom: 1rem; }
.evo__text strong { color: var(--ink); }
.evo__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
@media (max-width: 760px) { .evo__stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 1.4rem 0.8rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--orange);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--blue);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: 0.85rem; color: var(--ink-dim); }

/* ===== Galeria dupla (sentidos opostos) ===== */
.pmarquee {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pmarquee__row { overflow: hidden; }
.pmarquee__track { display: flex; gap: 1rem; width: max-content; animation: marquee-left 46s linear infinite; }
.pmarquee__track--reverse { animation: marquee-right 52s linear infinite; }
.pmarquee__track img {
  width: clamp(230px, 26vw, 320px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .pmarquee__track, .tband__track { animation: none; }
  .pmarquee__row { overflow-x: auto; }
}

/* ===== Palestrantes ===== */
.speakers { background: var(--paper-2); }
.speakers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
@media (max-width: 1000px) { .speakers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .speakers__grid { grid-template-columns: 1fr; } }
.speaker {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 4px solid transparent;
  box-shadow: 0 10px 30px -18px rgba(13, 17, 32, 0.35);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.speaker:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 26px 48px -22px rgba(13, 17, 32, 0.4); }
.speaker img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: scale 0.5s var(--ease); }
.speaker:hover img { scale: 1.05; }
.speaker__info { padding: 1.1rem 1.2rem 1.3rem; }
.speaker__info h3 { font-size: 1.02rem; font-weight: 900; font-style: italic; text-transform: uppercase; color: var(--blue); margin-bottom: 0.35rem; }
.speaker__info p { font-size: 0.86rem; color: var(--ink-dim); line-height: 1.5; }

/* ===== Local (navy) ===== */
.venue { background: var(--blue-navy); color: #fff; }
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .venue__grid { grid-template-columns: 1fr; } }
.venue__info { margin: 1.5rem 0 2rem; display: grid; gap: 1.1rem; }
.venue__info li { display: grid; gap: 0.1rem; padding-left: 1.1rem; border-left: 3px solid var(--orange); }
.venue__info strong { font-family: var(--font-display); font-size: 1.08rem; }
.venue__info span { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }
.venue__schedule { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.8rem; }
.venue__schedule > h3 { font-size: 0.85rem; font-style: italic; text-transform: uppercase; letter-spacing: 0.16em; color: var(--orange-hot); margin-bottom: 1.2rem; }
.venue__day + .venue__day { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); }
.venue__day h4 { font-size: 1rem; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 0.7rem; }
.venue__day li { display: flex; gap: 0.9rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); padding-block: 0.28rem; }
.venue__day li span { font-family: var(--font-display); font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; min-width: 46px; }

/* ===== Ingressos ===== */
.tickets { background: var(--paper); }
.tickets__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; align-items: stretch; }
@media (max-width: 900px) { .tickets__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.9rem 1.7rem;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}
.ticket--soon, .ticket--sold { opacity: 0.75; background: var(--paper-2); }
.ticket--sold h3 { color: var(--ink-dim); }
.ticket__bar { height: 8px; border-radius: 999px; background: rgba(13, 17, 32, 0.1); overflow: hidden; }
.ticket__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 1.2s var(--ease) 0.3s;
}
.ticket__bar.is-visible i { width: var(--w); }
.ticket--active { border: 2px solid var(--blue); box-shadow: 0 28px 60px -30px rgba(0, 54, 255, 0.45); transform: scale(1.02); }
.ticket__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  translate: -50% 0;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.1rem;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.ticket header { display: flex; justify-content: space-between; align-items: center; }
.ticket h3 { font-size: 1.15rem; font-weight: 900; font-style: italic; text-transform: uppercase; color: var(--blue); }
.ticket--soon h3 { color: var(--ink-dim); }
.ticket__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  border: 1px solid var(--line-light);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.ticket__tag--live { color: var(--orange); border-color: rgba(255, 94, 0, 0.5); }
.ticket__price { font-family: var(--font-display); font-style: italic; font-size: 2rem; font-weight: 900; line-height: 1.1; color: var(--ink); }
.ticket__price span { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; font-weight: 400; color: var(--ink-dim); }
.ticket__status { font-size: 0.82rem; color: var(--ink-dim); }
.ticket__perks { display: grid; gap: 0.4rem; font-size: 0.9rem; color: var(--ink-dim); }
.ticket__perks li { padding-left: 1.3rem; position: relative; }
.ticket__perks li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.ticket .btn { margin-top: auto; }
.ticket__note { font-size: 0.78rem; color: var(--ink-dim); text-align: center; }
.tickets__group { margin-top: 2.2rem; text-align: center; color: var(--ink-dim); }
.tickets__group a { font-weight: 600; }

/* ===== Organização (azul) ===== */
.org { background: var(--blue); color: #fff; }
.org__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 860px) { .org__grid { grid-template-columns: 1fr; } }
.org__grid p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.1rem; max-width: 56ch; }
.org__grid strong { color: #fff; }
.org__img img { border-radius: var(--radius); box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.6); }

/* ===== Patrocinadores ===== */
.sponsors { padding-block: 3.5rem; background: var(--paper); border-top: 1px solid var(--line-light); }
.sponsors__marquee {
  overflow: hidden;
  margin-top: 1.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sponsors__track {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3.2vw, 3rem);
  width: max-content;
  padding-inline: clamp(0.7rem, 1.6vw, 1.5rem);
  animation: marquee-left 28s linear infinite;
}
.sponsors__marquee:hover .sponsors__track { animation-play-state: paused; }
.sponsors__track img {
  height: clamp(44px, 5.4vw, 76px);
  width: auto;
  flex: none;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}
.sponsors__track img:hover { opacity: 1; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .sponsors__track { animation: none; }
  .sponsors__marquee { overflow-x: auto; }
}
.sponsors__cta { margin-top: 2rem; text-align: center; font-size: 0.9rem; color: var(--ink-dim); }

/* ===== FAQ ===== */
.faq { background: var(--paper-2); }
.faq__wrap { max-width: 760px; }
.faq__list { margin-top: 2rem; display: grid; gap: 0.7rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  text-align: left;
}
.faq__q:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.faq__q i { flex: none; width: 12px; height: 12px; position: relative; transition: transform 0.3s var(--ease); }
.faq__q i::before, .faq__q i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  translate: 0 -50%;
}
.faq__q i::after { rotate: 90deg; }
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__a > p { overflow: hidden; color: var(--ink-dim); font-size: 0.92rem; padding-inline: 1.3rem; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__item.is-open .faq__a > p { padding-bottom: 1.2rem; }
.faq__contact { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.faq__contact p { color: var(--ink-dim); }
@media (max-width: 700px) {
  .faq__contact { flex-direction: column; justify-content: center; text-align: center; gap: 0.9rem; }
}

/* ===== CTA final ===== */
.final {
  position: relative;
  background: var(--blue-deep) url("../assets/imgs/bg_hero_section.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  overflow: hidden;
}
.final__inner { position: relative; }
.final__x {
  position: absolute;
  width: 380px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0.14;
  pointer-events: none;
}
.final h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.final em { color: var(--orange-hot); }
.final p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; }

/* ===== Footer ===== */
.footer { background: var(--blue-deep); color: #fff; padding-top: 3.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__grid h4 {
  font-size: 0.8rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-hot);
  margin-bottom: 0.8rem;
}
.footer__grid p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin-top: 0.8rem; }
.footer__grid a { color: #fff; }
.footer__grid a:hover { color: var(--orange-hot); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-block: 1.4rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ===== Modal de cadastro ===== */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 38, 0.78);
  backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  width: min(94vw, 440px);
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 5px solid var(--orange);
  padding: 2.2rem 1.9rem 1.9rem;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  animation: modal-in 0.35s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink-dim);
  padding: 0.3rem;
}
.modal__close:hover { color: var(--orange); }
.modal__title {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.modal__sub { font-size: 0.92rem; color: var(--ink-dim); margin-bottom: 1.4rem; }
.modal__field { margin-bottom: 1rem; }
.modal__field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.modal__field input {
  width: 100%;
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color 0.2s;
}
.modal__field input:focus { outline: none; border-color: var(--blue); background: #fff; }
.modal__field input.is-invalid { border-color: #e02424; }
.modal__error { color: #e02424; font-size: 0.85rem; margin-bottom: 0.9rem; }
.modal form .btn { margin-top: 0.4rem; }
.modal .btn[disabled] { opacity: 0.6; cursor: wait; transform: skewX(-6deg); }
.modal__note { margin-top: 0.9rem; text-align: center; font-size: 0.76rem; color: var(--ink-dim); }
body.modal-open { overflow: hidden; }

/* ===== CTA flutuante ===== */
.floatcta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  z-index: 60;
  width: min(92vw, 460px);
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.floatcta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.floatcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(5, 12, 38, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.7rem 0.8rem 0.7rem 1.1rem;
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.75);
}
.floatcta__inner img { width: 133px; flex: none; }
.floatcta__btn { font-size: 0.82rem; padding: 0.75rem 1.4rem; white-space: nowrap; }
@media (max-width: 480px) {
  .floatcta__inner { gap: 0.6rem; padding: 0.6rem 0.6rem 0.6rem 0.9rem; }
  .floatcta__inner img { width: 96px; }
  .floatcta__btn { font-size: 0.68rem; padding: 0.65rem 0.85rem; letter-spacing: 0.03em; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__x--1, .hero__x--2 { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
