/* ==========================================================================
   SA365 Talks 2026 — Landing Page
   ========================================================================== */

:root {
  --bg: #0c0e0d;
  --bg-soft: #101312;
  --bg-card: #131715;
  --line: rgba(255, 255, 255, 0.07);
  --grid-line: rgba(255, 255, 255, 0.09);
  --lime: #d7f542;
  --teal: #00e5c7;
  --white: #f4f5f2;
  --grey: #9ba39c;
  --black: #060807;

  --font-display: "Roboto", sans-serif;
  --font-body: "Roboto", sans-serif;

  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--lime);
  color: var(--black);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section-dark {
  position: relative;
  background: var(--bg);
}

/* ---------- Tipografia de seção ---------- */
.section-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-title--sm {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  max-width: 40ch;
  margin-bottom: 0;
}

/* ---------- Highlight marca-texto ---------- */
.hl {
  position: relative;
  display: inline;
  color: var(--black);
  font-style: normal;
  padding: 0.05em 0.18em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: color 0.2s;
}

.hl:not(.hl--on) {
  color: var(--white);
}

.hl--on {
  background-size: 100% 100%;
}

/* ---------- Botões ---------- */
#rd-form button, .btn {
  display: inline-flex !important;
  align-items: center !important;;
  justify-content: center !important;
  gap: 0.6rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.01em !important;
  padding: 0.85rem 1.8rem !important;
  border-radius: 999px !important;
  border: 1.5px solid transparent !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s, color 0.25s,
    border-color 0.25s, box-shadow 0.25s !important;
  white-space: nowrap !important;
}

#rd-form button, .btn--solid {
  background: var(--lime) !important;
  color: var(--black) !important;
}

#rd-form button:hover, .btn--solid:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 0 1px var(--lime), 0 8px 32px rgba(215, 245, 66, 0.25) !important;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.btn--outline:hover {
  border-color: var(--lime) !important;
  color: var(--lime);
  transform: translateY(-2px);
}

#rd-form button, .btn--lg {
  padding: 1.05rem 2.4rem !important;
  font-size: 1.05rem !important;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

/* Gradiente de proteção no topo — visível apenas com a nav sobre o hero */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -48px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s;
  z-index: -1;
}

.header.is-scrolled::before {
  opacity: 0;
}

.header.is-scrolled {
  background: rgba(12, 14, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 90px !important;
  position: fixed !important;
  top: 0 !important;
}

.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-sa {
  color: var(--white);
}

.logo-talks {
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-year {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.header__nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.header__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--grey);
  position: relative;
  transition: color 0.25s;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.header__burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 14, 13, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
}

.mobile-menu__cta {
  margin-top: 1rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem var(--pad) 5rem;
}

.hero__grid-bg,
.inscricao__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 110% 100% at 50% 45%, #000 60%, transparent 115%);
  mask-image: radial-gradient(ellipse 110% 100% at 50% 45%, #000 60%, transparent 115%);
  pointer-events: none;
}

/* Órbita do KV (Elemento 01) */
.hero__orbits {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.hero__orbit-img {
  width: min(108vmin, 940px);
  height: auto;
  opacity: 0.85;
  animation: orbit-spin 120s linear infinite;
  will-change: transform;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Conteúdo */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

/* Proteção de leitura sobre a malha de ondas */
.hero__content::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(12, 14, 13, 0.78) 0%,
    rgba(12, 14, 13, 0.4) 55%,
    transparent 78%
  );
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
  border: 1px solid rgba(215, 245, 66, 0.8);
  background: rgba(12, 14, 13, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  margin-bottom: 2.6rem;
  text-align: center;
}

.hero__badge-address {
  font-size: 0.8rem;
  opacity: 0.65;
  letter-spacing: 0.03em;
}

.hero__lockup {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__lockup-img {
  width: clamp(200px, 28vw, 380px);
  height: auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.9vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero__title-em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--grey);
  max-width: 56ch;
  margin: 0 auto 2.6rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.hero__seats {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Scroll hint */
.hero__scroll {
  display: none;
}

/* Luzes nos cantos inferiores do KV */
.hero__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Luz canto inferior esquerdo — lima/amarelo */
.hero__lights::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle at center,
    rgba(215, 245, 66, 0.65) 0%,
    rgba(215, 245, 66, 0.28) 35%,
    transparent 70%
  );
  filter: blur(50px);
  animation: float-light 8s ease-in-out infinite;
}

/* Luz canto inferior direito — teal */
.hero__lights::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 199, 0.55) 0%,
    rgba(0, 229, 199, 0.22) 35%,
    transparent 72%
  );
  filter: blur(55px);
  animation: float-light 10s ease-in-out infinite reverse;
}

@keyframes float-light {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-30px) scale(1.05);
    opacity: 1;
  }
}

/* ==========================================================================
   Sobre / Bloco 02
   ========================================================================== */
.sobre {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--line);
}

.sobre__manifesto {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 30ch;
  max-width: 62rem;
}

.sobre__manifesto .word {
  opacity: 0.14;
  transition: opacity 0.3s;
}

.sobre__manifesto--2 {
  margin-top: 2.5rem;
}

.sobre__cone {
  position: absolute;
  right: -4%;
  top: 16%;
  width: clamp(180px, 24vw, 360px);
  opacity: 0.35;
  pointer-events: none;
}

/* Stats */
.stats {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.stat {
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  position: relative;
}

.stat:last-child {
  border-right: 0;
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats.is-inview .stat::before {
  transform: scaleX(1);
}

.stats.is-inview .stat:nth-child(2)::before {
  transition-delay: 0.12s;
}

.stats.is-inview .stat:nth-child(3)::before {
  transition-delay: 0.24s;
}

.stats.is-inview .stat:nth-child(4)::before {
  transition-delay: 0.36s;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ==========================================================================
   Programação / Bloco 04
   ========================================================================== */
.prog {
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.panel {
  border-top: 1px solid var(--line);
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
}

.panel:last-of-type {
  border-bottom: 1px solid var(--line);
}

.panel__head {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: 2.2rem;
}

.panel__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  padding: 0.35em 0.8em;
  line-height: 1;
  flex-shrink: 0;
}

.panel__num--keynote {
  color: var(--lime);
  border-color: var(--lime);
}

.panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.panel__desc {
  color: var(--grey);
  max-width: 64ch;
}

.panel__people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin: auto;
}

.person {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.4rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}

.person:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 245, 66, 0.45);
}

.person__photo-wrap {
  position: relative;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  margin-bottom: 1.1rem;
}

.person__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.person:hover .person__photo {
  transform: scale(1.07);
}

/* Luz lima que "acende" suavemente na base da foto no hover */
.person__photo-wrap::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -30%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 100%, rgba(215, 245, 66, 0.55), rgba(215, 245, 66, 0) 70%);
  filter: blur(20px);
  opacity: 0;
  transform: translateY(18%);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.person:hover .person__photo-wrap::after {
  opacity: 1;
  transform: translateY(0);
}

.person__tag {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: var(--lime);
  color: var(--black);
  padding: 0.28em 0.7em;
}

.person__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.person__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  line-height: 1.45;
}

/* Painel "em breve" */
.panel__soon {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--grey);
}

.panel__soon-ufo {
  width: 44px;
  animation: floatUfo 3.5s ease-in-out infinite;
}

@keyframes floatUfo {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

.prog__cta,
.sobre__cta,
.sa365__cta {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

/* ==========================================================================
   Marcas / Bloco 05
   ========================================================================== */
.marcas {
  padding: clamp(5rem, 12vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

/* Recap em vídeo da 1ª edição (player Vimeo) */
.recap {
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.recap__player {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.recap__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Grid de logos com linhas finas e marcadores nas interseções */
.logo-grid {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  position: relative;
}

/* Borda externa pintada sobre os cards (não sofre clipping do overflow) */
.logo-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 10;
}

.logo-cell {
  position: relative;
  background: var(--bg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  transition: box-shadow 0.35s, background-color 0.35s;
}

/* Hover no mesmo estilo dos cards de painelistas: fundo + borda */
.logo-cell:hover {
  z-index: 3;
  background: var(--bg-card);
  box-shadow: 0 0 0 1px rgba(215, 245, 66, 0.45);
}


.logo-cell img {
  max-width: 70%;
  max-height: clamp(34px, 4vw, 44px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-cell:hover img {
  opacity: 0.85;
  transform: scale(1.06);
}

/* Normalização de peso visual por proporção do logo
   (compactos ganham altura, wordmarks largos perdem) */
.logo-cell img.logo--s1 {
  max-height: clamp(42px, 5vw, 54px); /* ~quadrados (proporção até 1.4) */
}

.logo-cell img.logo--s2 {
  max-height: clamp(52px, 6vw, 72px); /* médio — Vivara, Vulcabras */
}

.logo-cell img.logo--btg {
  width: clamp(120px, 14vw, 170px);
  max-width: 85%;
  max-height: none;
}

.logo-cell img.logo--s3 {
  max-height: clamp(26px, 3vw, 33px); /* largos (~3:1) */
}

.logo-cell img.logo--s4 {
  max-height: clamp(19px, 2.2vw, 24px); /* muito largos (5:1 ou mais) */
  max-width: 78%;
}

.logo-cell img.logo--s5 {
  max-height: clamp(14px, 1.6vw, 18px); /* extra largos ou redução pontual */
  max-width: 62%;
}

.marcas__cta {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

/* ==========================================================================
   Inscrição / Bloco 03
   ========================================================================== */
.inscricao {
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.inscricao__cols {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.inscricao__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.inscricao__title .hl {
  margin-right: 0.1em;
}

.inscricao__orbit {
  width: clamp(220px, 26vw, 380px);
  margin-top: 3rem;
  opacity: 0.8;
}

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  position: relative;
}

.form__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--lime);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.form__subtitle {
  color: var(--grey);
  font-size: 0.95rem;
  margin: -1rem 0 1.8rem;
  max-width: 46ch;
}

.form__venue {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--grey);
  margin: -0.8rem 0 1.8rem;
}

.form__venue svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--lime);
}

.form__cursor {
  animation: blink 1.1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.d-none{
  display: none !important;
}

#rd-form-mqgx5o6i .select2-container .select2-choice{
  background: transparent !important;
  display: flex;
  align-items: center;
  box-shadow: none !important;
}

#rd-form-mqgx5o6i .with-select-flags > .phone-input-group > .select2-container > .select2-choice > .select2-chosen > .flag {
  margin-left: 0 !important;
}

#select2-drop img{
  display: inline !important;
}

.select2-drop{
  background: #000 !important;
  color: #fff !important;
  border-color: var(--lime) !important;
}

.select2-highlighted{
  background: var(--lime) !important;
  color: #000 !important;
}

#rd-form-mqgx5o6i .bricks-form__fieldset {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem;
}

#rd-form-mqgx5o6i .bricks-form__fieldset > :nth-child(n+5) {
  grid-column: span 2; /* Os demais ocupam a largura total (coluna) */
}

#rd-section-mqgx5o6b{
  background: transparent !important;
  border: none !;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field {
  margin-bottom: 1.1rem;
}

.form__field label,
#rd-form-mqgx5o6i .bricks-form__label {
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  color: var(--grey) !important;
  margin-bottom: 0.4rem !important;
}

.form__field input,
#rd-form-mqgx5o6i .bricks-form__input,
.select2-input {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  padding: 0.75rem 0.9rem !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s !important;
}

.form__field input::placeholder,
#rd-form-mqgx5o6i .bricks-form__input::placeholder,
.select2-input::placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}

.form__field input:focus,
#rd-form-mqgx5o6i .bricks-form__input:focus,
.select2-input:focus {
  border-color: var(--lime) !important;
  box-shadow: 0 0 0 3px rgba(215, 245, 66, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.form__field input.is-invalid {
  border-color: #ff5a64;
  box-shadow: 0 0 0 3px rgba(255, 90, 100, 0.12);
}

#rd-form button, .form__submit {
  width: 100% !important;
  margin-top: 0.6rem !important;
  border: 0 !important;
}

.form__submit[disabled] {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form__error {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: #ff8a91;
}

.form__success {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}

.form__success img {
  width: 64px;
  margin: 0 auto 1.2rem;
  animation: floatUfo 3.5s ease-in-out infinite;
}

.form__success h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lime);
  margin-bottom: 0.7rem;
}

.form__success p {
  color: var(--grey);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-inline: auto;
}

.form__success p + p {
  margin-top: 0.85rem;
}

.form__success-notice {
  border-left: 2px solid var(--teal);
  background: rgba(0, 229, 199, 0.06);
  padding: 0.9rem 1.1rem;
  margin: 1.4rem auto;
  max-width: 52ch;
  border-radius: 0 4px 4px 0;
  text-align: left;
}

.form__success-notice p {
  font-size: 0.875rem;
  margin: 0;
  max-width: none;
}

.form__success-contact {
  margin-top: 1.2rem;
  font-size: 0.875rem;
}

.form__success-contact a {
  color: var(--teal);
  text-decoration: none;
}

.form__success-contact a:hover {
  text-decoration: underline;
}

.form__disclaimer {
  margin-top: 1.3rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
}

.form__doubts {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--grey);
}

.form__doubts a {
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.form__doubts a:hover {
  border-bottom-color: var(--teal);
}

/* ==========================================================================
   SA365 / Bloco 06
   ========================================================================== */
.sa365 {
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.sa365__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.sa365__claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.sa365__eye {
  width: clamp(220px, 24vw, 340px);
  margin-top: 3rem;
  opacity: 0.9;
}

.sa365__right p {
  color: var(--grey);
  margin-bottom: 1.4rem;
  max-width: 58ch;
}

.sa365__right p:last-child {
  margin-bottom: 0;
}

.sa365__right em {
  color: var(--white);
}

/* ==========================================================================
   Footer / Bloco 07
   ========================================================================== */
.footer {
  background: var(--white);
  color: var(--black);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
}

.footer__inner {
  text-align: center;
}

.footer__contact {
  font-size: 0.95rem;
  color: #4a4f4a;
  margin-bottom: 2.2rem;
}

.footer__contact a {
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--lime);
  transition: background-color 0.25s;
}

.footer__contact a:hover {
  background: var(--lime);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.8rem;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}

.footer__social a:hover {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 19px;
  height: 19px;
}

.footer__legal {
  font-size: 0.78rem;
  color: #8a8f8a;
  line-height: 1.7;
}

/* ==========================================================================
   Reveal helpers (estado inicial é aplicado via JS para não esconder
   conteúdo quando JS falha)
   ========================================================================== */
.js [data-reveal],
.js [data-reveal-group] > * {
  will-change: transform, opacity;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 960px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .panel__people {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .inscricao__cols,
  .sa365__cols {
    grid-template-columns: 1fr;
  }

  .inscricao__orbit {
    display: none;
  }

  .sobre__cone {
    opacity: 0.15;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {

  .recap__player {
    aspect-ratio: 9 / 16;
  }

  .header__inner {
    gap: 1rem;
    height: 100%;
  }

  a.btn.btn--solid.header__cta {
      height: 10px;
      font-size: 10px !important;
      min-width: 90px !important;
  }

  .header__logo-img {
      min-width: 80px;
  }

  #rd-form-mqgx5o6i .bricks-form__fieldset div {
  grid-column: span 2;
}

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 1rem 1rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-cell {
    padding: 0.9rem;
  }

  .logo-cell img {
    max-width: 78%;
  }
}

/* Em viewports muito baixas, o indicador de scroll colide com o conteúdo */
@media (max-height: 620px) {
  .hero__scroll {
    display: none;
  }
}

/* ==========================================================================
   Acessibilidade — reduz movimento
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sobre__manifesto .word {
    opacity: 1;
  }
}
