/* =========================================================
   FUTUREFY 2026 — v4 · festival editorial handcrafted
   Paleta oficial:
     coral #FF4D6D · cyan #42D4D6 · lime #E7FF6A
     cyan-2 #5AD1D5 · mint #8EE18F · rosa #FF9ED1 · lavender #A18CFF
   ========================================================= */

:root {
  --coral:    #FF4D6D;
  --cyan:     #42D4D6;
  --lime:     #E7FF6A;
  --cyan-2:   #5AD1D5;
  --mint:     #8EE18F;
  --rosa:     #FF9ED1;
  --lavender: #A18CFF;

  --bg:       #FAF8F2;
  --bg-warm:  #F2EDE2;
  --bg-soft:  #ECE5FF; /* lavender pastel claríssimo — usado da seção Speakers em diante */
  --bg-card:  #FFFFFF;
  --frame:    #0A0A0A;
  --line:     #E8E2D5;

  --text:      #0A0A0A;
  --text-mute: #6E6A60;
  --text-soft: #2C2A24;

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-hand:    'Caveat', 'Comic Sans MS', cursive;

  --radius-sm: 17px;
  --radius:    29px;
  --radius-lg: 43px;

  --transition: 280ms cubic-bezier(.2,.8,.2,1);
  --container:  1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--frame); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TIPOGRAFIA UTIL ========== */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--frame);
}
.section-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-mute);
  max-width: 460px;
  margin: 0 0 26px;
}
.dot-coral { color: var(--coral); }

.hl-yellow {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 .15em;
}
.hl-yellow::before {
  content: "";
  position: absolute;
  inset: 18% -.18em -10% -.12em;
  background: var(--lime);
  z-index: -1;
  border-radius: 55% 45% 60% 40% / 70% 50% 65% 35%;
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 0 0 0 transparent, inset 4px -2px 0 rgba(0,0,0,.06);
}
.hl-underline {
  position: relative;
  display: inline-block;
}
.hl-underline::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: .35em;
  background: var(--lime);
  z-index: -1;
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  transform: rotate(-.5deg);
}
.hl-underline-thin {
  position: relative;
  display: inline-block;
}
.hl-underline-thin::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 4px;
  background: var(--coral);
  border-radius: 4px;
}

.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--frame);
  border-bottom: 0;
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.link-arrow:hover { color: var(--coral); }
.link-arrow .ico { transition: transform var(--transition); }
.link-arrow:hover .ico { transform: translateX(3px); }
.link-arrow--scribble::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 18px;
  height: 28px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 28' fill='none'><path d='M14 3 C 5 6, 5 22, 14 25' stroke='%230a0a0a' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.ico { display: inline-block; vertical-align: middle; }
.ico-lg { width: 28px; height: 28px; flex-shrink: 0; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 86px; /* -40% da altura anterior (143px) */
  background: rgba(250, 248, 242, .44); /* -20% de opacidade (era .55) */
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(232, 226, 213, .25);
  overflow: visible; /* deixa a logo "vazar" pra baixo sem cortar */
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  height: 86px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img {
  height: 116px;
  width: auto;
  margin-top: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
}
.main-nav a {
  position: relative;
  padding: 6px 4px;
  color: var(--text);
  transition: color var(--transition);
}
.main-nav a::before {
  content: '';
  position: absolute;
  inset: 20% -3px 10% -3px;
  background: var(--lime);
  opacity: .75;
  border-radius: 2px;
  transform: skewX(-4deg);
  transform-origin: left center;
  scale: 0 1;
  transition: scale 220ms cubic-bezier(.4,0,.2,1);
  z-index: -1;
  pointer-events: none;
}
.main-nav a:hover::before { scale: 1 1; }
.main-nav a:hover { color: var(--frame); }

/* Divider e items mobile-only — escondidos no desktop */
.nav-divider,
.nav-mobile-only { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; position: relative; }

/* Dropdown */
.dropdown { position: relative; }
.nav-cta {
  background: var(--frame);
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: 0;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }
.nav-cta .chev { transition: transform var(--transition); }
.dropdown.open .nav-cta .chev { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1.5px solid var(--frame);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 60;
}
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--frame);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: #d0fe8a; color: var(--frame); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--frame);
  background: var(--bg);
  align-items: center;
  justify-content: center;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--bg);
  padding: 180px 0 100px; /* clears o header (86px) + logo overflow */
  overflow: hidden;
  isolation: isolate;
  min-height: 660px;
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
/* Layout split: texto esquerda + vídeo direita */
.hero-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.44fr);
  gap: 32px;
  align-items: center;
}
.hero-left {
  position: relative;
  z-index: 1;
}
.hero-right {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-left: auto;
}
.hero-side-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  text-transform: uppercase;
  color: var(--frame);
}
.hero-sub {
  font-size: 1.02rem;
  max-width: 440px;
  color: var(--text-soft);
  margin: 0 0 28px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-info {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: nowrap;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.info-block .ico-lg { color: var(--frame); width: 24px; height: 24px; }
.info-block strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--frame);
  white-space: nowrap;
}
.info-block span {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

/* (Hero direita removida — agora é vídeo de background) */

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  border: 0;
  white-space: nowrap;
}
.btn-primary {
  background: var(--frame);
  color: #fff;
}
.btn-primary .ico { color: var(--lime); }
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); }
.btn-primary:hover .ico { color: #fff; }
.btn-ghost {
  background: var(--bg);
  color: var(--frame);
  border: 1.5px solid var(--frame);
}
.btn-ghost:hover { background: var(--frame); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--frame);
}
.btn-block { display: flex; width: 100%; }

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ========== PARCEIROS / APOIO INSTITUCIONAL ========== */
.parceiros {
  background: #fff;
  padding: 6px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.parceiros-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.parceiros-label {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  flex-shrink: 0;
  max-width: 130px;
  line-height: 1.3;
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.parceiro-logo {
  opacity: .9;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-soft);
  font-size: .85rem;
  letter-spacing: .02em;
}
.parceiro-logo--fixed { flex: 0 0 auto; }
.parceiro-logo--img img {
  height: 64px;
  width: auto;
  display: block;
}
.parceiro-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}
.parceiros-rotator {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.parceiros-rotator-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: parceiros-scroll 22s linear infinite;
}
.parceiros-rotator:hover .parceiros-rotator-track { animation-play-state: paused; }
.parceiros-rotator.boost .parceiros-rotator-track {
  animation-duration: 18.3s;
}
@keyframes parceiros-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.parceiros-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--frame);
  color: var(--frame);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.parceiros-next:hover { background: var(--frame); color: #fff; }

/* ========== EXPERIÊNCIAS ========== */
.experiencias {
  padding: 100px 0;
  background: var(--bg);
  overflow-x: hidden;
}
.exp-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.exp-intro { padding-top: 12px; }
.exp-intro .section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.015em;
  max-width: 280px;
}
.exp-intro .section-sub {
  margin-bottom: 24px;
  font-size: .98rem;
}
.exp-cta-sub {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}
.link-inline {
  position: relative;
  isolation: isolate;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.link-inline::before {
  content: '';
  position: absolute;
  inset: 20% -3px 10% -3px;
  background: var(--lime);
  opacity: .75;
  border-radius: 2px;
  transform: skewX(-4deg);
  transform-origin: left center;
  scale: 0 1;
  transition: scale 220ms cubic-bezier(.4,0,.2,1);
  z-index: -1;
  pointer-events: none;
}
.link-inline:hover::before { scale: 1 1; }
.link-inline:hover { color: var(--frame); }
.exp-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 2px; /* evita clip dos botões na borda */
}
.exp-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  cursor: grab;
}
.exp-cards:active { cursor: grabbing; }
.exp-cards::-webkit-scrollbar { display: none; }
.exp-cards { -ms-overflow-style: none; scrollbar-width: none; }
.exp-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.exp-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--frame);
  background: transparent;
  color: var(--frame);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.exp-nav-btn:hover {
  background: var(--frame);
  color: var(--bg);
  transform: scale(1.06);
}
.exp-nav-btn:disabled {
  opacity: .25;
  cursor: default;
  transform: none;
}
.exp-card {
  background: var(--col);
  color: var(--frame);
  border-radius: 24px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition);
}
.exp-card:hover { transform: translateY(-5px); }
.exp-icon {
  display: inline-flex;
  align-items: center;
  background: transparent;
}
.exp-icon svg {
  width: 48px;
  height: 48px;
  color: #fff;
}
.exp-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 28px 0 8px;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--frame);
}
.exp-card p {
  margin: 0 0 16px;
  font-size: .82rem;
  line-height: 1.4;
  opacity: .82;
  font-weight: 500;
  color: var(--frame);
}
.card-arrow {
  align-self: flex-end;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}
.card-arrow svg { width: 16px; height: 16px; }
.card-arrow:hover {
  background: #fff;
  color: var(--frame);
  transform: translateX(3px);
}

/* ========== SPEAKERS ========== */
.speakers {
  padding: 140px 0 100px;
  background: var(--bg-soft);
  position: relative;
  /* Arco curvo que conecta cream → lavender de forma orgânica.
     Cada canto superior recebe 50% de raio horizontal + 100px vertical →
     os dois arcos se encontram no centro formando uma curva suave full-width */
  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  margin-top: -40px;
}
.sp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
}
.sp-title-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.sp-title {
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.015em;
}
.sp-link { flex-shrink: 0; }
.sp-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(120deg, #A18CFF 0%, #FF9ED1 60%, #FF4D6D 100%);
  border-radius: var(--radius);
}
.sp-cta-bar p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
  max-width: 560px;
  line-height: 1.45;
}
.sp-heart {
  margin-top: -6px;
  transform: rotate(-12deg);
  flex-shrink: 0;
}
.sp-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sp-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--col);
  isolation: isolate;
  transition: transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.sp-card:nth-child(1) { transform: rotate(-1.2deg); }
.sp-card:nth-child(2) { transform: rotate(.6deg); }
.sp-card:nth-child(3) { transform: rotate(-.4deg); }
.sp-card:nth-child(4) { transform: rotate(1deg); }
.sp-card:nth-child(5) { transform: rotate(-1.4deg); }
.sp-card:hover { transform: translateY(-4px) rotate(0); z-index: 2; }
.sp-photo-bg {
  position: absolute;
  inset: 0;
  background: var(--col);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sp-photo-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: rgba(0,0,0,.18);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Overlay escuro no rodapé do card pra legibilidade do texto sobre foto */
.sp-card:has(.sp-photo-img)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.sp-card:has(.sp-photo-img) .sp-info h3 { color: #fff; }
.sp-card:has(.sp-photo-img) .sp-info p { color: rgba(255,255,255,.85); opacity: 1; }
.sp-card:has(.sp-photo-img) .card-arrow {
  border-color: rgba(255,255,255,.85);
  color: #fff;
}
.sp-card:has(.sp-photo-img) .card-arrow:hover {
  background: #fff;
  color: var(--frame);
}
.sp-info-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color var(--transition);
}
.sp-info-link:hover { color: var(--lime); }
.sp-card-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
.sp-info { flex: 1; min-width: 0; }
.sp-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--frame);
  letter-spacing: .02em;
  line-height: 1.1;
}
.sp-info p {
  margin: 0;
  font-size: .72rem;
  color: var(--frame);
  opacity: .75;
  line-height: 1.3;
  font-weight: 500;
}
.sp-card .card-arrow {
  position: relative;
  margin-top: 0;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1.5px solid var(--frame);
  background: transparent;
  color: var(--frame);
  filter: none;
}
.sp-card .card-arrow:hover { background: var(--frame); color: #fff; }

/* ========== MANIFESTO ========== */
/* ========== VIDEO STRIP ========== */
.vstrip {
  padding: 0 0 64px;
  background: var(--bg-soft);
  overflow: hidden;
}
.vstrip-card {
  width: 95%;
  margin: 60px auto 0;
  line-height: 0;
  border-radius: 52px;
  overflow: hidden;
}
.vstrip-video {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== TICKER ========== */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker {
  background: #fff;
  overflow: hidden;
  padding: 0;
  width: 100%;
  border-top: 2px solid var(--frame);
  border-bottom: 2px solid var(--frame);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 20px 0;
  animation: ticker-scroll 18s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--frame);
}
.ticker-dot {
  color: var(--frame) !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  opacity: .35;
}

/* ========== SIMULADOR ========== */
.simulador {
  padding: 14px 0;
  background: var(--bg-soft);
}
.sim-card {
  background:
    linear-gradient(120deg, var(--rosa) 0%, var(--lavender) 50%, var(--cyan) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 252px;
}
/* conteúdo comprimido pra altura bater com CTA Final */
.sim-card .section-title {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.sim-tag {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.sim-left p {
  color: var(--frame);
  max-width: 360px;
  margin: 0 0 18px;
  font-size: .9rem;
  line-height: 1.4;
}
.sim-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sim-mini {
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius);
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 118px;
  box-shadow: 0 4px 12px -6px rgba(0,0,0,.08);
  position: relative;
}
.sim-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px -10px rgba(0,0,0,.14);
}
.sim-mini svg {
  width: 38px; height: 38px;
  color: var(--col);
  transition: transform var(--transition);
}
.sim-mini:hover svg { transform: scale(1.08); }
.sim-mini span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--frame);
}
.bulb-deco {
  position: absolute;
  bottom: 24px;
  right: 24px;
  transform: rotate(8deg);
  opacity: .9;
}

/* ========== PATROCINADORES ========== */
.patrocinadores {
  background: var(--bg);
  padding: 80px 0 100px;
}
.patroc-head {
  margin-bottom: 52px;
  text-align: center;
}
.patroc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--frame);
  opacity: .45;
  margin-bottom: 16px;
}
.patroc-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
}
.patroc-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0;
}
.patroc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.patroc-card {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 140px;
  text-align: center;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.patroc-card:hover {
  border-color: var(--frame);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.1);
}
.patroc-card span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--frame);
  line-height: 1.2;
}
.patroc-card--cta {
  border-style: dashed;
  border-color: rgba(10,10,10,.2);
  background: transparent;
  grid-column: span 2;
}
.patroc-card--cta span {
  opacity: .35;
  font-size: .85rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: .72rem;
  min-height: auto;
}

/* ========== EU ❤ CWB ========== */
.cwb {
  position: relative;
  background: url('../assets/img/cwb-bg.png') center top / 100% 100% no-repeat;
  padding: 200px 0 100px;
  margin-top: 0;
  overflow: hidden;
}
.cwb-skyline { display: none; }
.cwb .container {
  max-width: 860px;
}
.cwb-title-img {
  display: block;
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 48px auto 96px;
}
.cwb-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.cwb-left p {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  line-height: 1.7;
  margin-bottom: 1em;
}
.cwb-left p:last-child { margin-bottom: 0; }
.cwb-apoio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 24px;
}
.cwb-apoio-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.cwb-apoio-logo {
  height: auto;
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  opacity: .85;
}
.cwb-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cwb-card {
  background: rgba(20,10,60,.4);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 18px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .2s, background .2s;
}
a.cwb-card { text-decoration: none; cursor: pointer; }
.cwb-card:hover {
  border-color: rgba(66,212,214,.5);
  background: rgba(20,10,60,.55);
}
.cwb-card--filled {
  background: #FF4D6D;
  border-color: #FF4D6D;
}
.cwb-card--filled:hover {
  background: #e8405e;
  border-color: #e8405e;
}
.cwb-card strong {
  display: block;
  font-size: 1.56rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #42D4D6;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.15;
}
.cwb-card--filled strong {
  color: #fff;
}
.cwb-card p {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.cwb-card p {
  color: rgba(255,255,255,.75);
  font-size: .86rem;
  line-height: 1.5;
  margin: 0;
}

/* ========== CTA FINAL ========== */
.cta-final {
  padding: 14px 0 80px;
  background: linear-gradient(to bottom, var(--bg-soft) 60%, var(--bg) 100%);
}
.final-card {
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(255,255,255,.55) 0%, transparent 55%),
    linear-gradient(95deg, var(--lime) 0%, var(--rosa) 50%, var(--lavender) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 252px;
}
.final-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.final-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0;
}
.final-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  align-self: end;
  padding-bottom: 8px;
}
.final-side p {
  font-size: .92rem;
  line-height: 1.45;
  margin: 0;
  color: var(--frame);
  max-width: 280px;
}
.final-flourish {
  display: block;
  margin-top: 4px;
}
.final-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.logo3d-wrap {
  position: relative;
  width: 280px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo3d {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11rem;
  line-height: 1;
  color: #fff;
  text-shadow:
    2px 2px 0 var(--frame),
    4px 4px 0 var(--frame),
    6px 6px 0 var(--frame),
    8px 8px 0 var(--frame),
    10px 10px 0 var(--frame);
  display: inline-block;
  transform: rotate(-6deg);
  letter-spacing: -.04em;
}
.logo3d-slash {
  color: var(--coral);
  font-style: italic;
  margin-left: -.05em;
}
.cube {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 6px;
  box-shadow: 0 6px 12px -4px rgba(0,0,0,.25);
  z-index: 3;
}
.cube-1 { top: 8%;   left: 12%;  background: var(--coral);    transform: rotate(-14deg); width: 26px; height: 26px; }
.cube-2 { top: 78%;  left: 18%;  background: var(--cyan);     transform: rotate(8deg); }
.cube-3 { top: 2%;   right: 22%; background: var(--mint);     transform: rotate(22deg); width: 20px; height: 20px; }
.cube-4 { top: 88%;  right: 18%; background: var(--lavender); transform: rotate(-8deg); width: 24px; height: 24px; }
.cube-5 { top: 48%;  right: -4%; background: var(--lime);     transform: rotate(15deg); width: 30px; height: 30px; }
.cube-6 { top: 22%;  right: 4%;  background: var(--rosa);     transform: rotate(-20deg); width: 18px; height: 18px; }
.cube-7 { top: 62%;  left: 4%;   background: var(--lime);     transform: rotate(12deg); width: 18px; height: 18px; }
.cube-8 { top: 38%;  left: 28%;  background: var(--lavender); transform: rotate(-6deg); width: 16px; height: 16px; }

.final-card::before {
  content: "";
  position: absolute;
  top: 50%; left: 65%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg 8deg,
      rgba(255,255,255,.18) 8deg 9deg,
      transparent 9deg 30deg
    );
  border-radius: 50%;
  pointer-events: none;
  mask-image: radial-gradient(circle, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 65%);
  z-index: 1;
}

/* ========== LEADS ========== */
.leads-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.leads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.leads-copy p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 420px;
}
.leads-form {
  display: grid;
  gap: 14px;
  background: var(--bg-warm);
  padding: 36px;
  border-radius: var(--radius);
}
.leads-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.leads-form input {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition);
}
.leads-form input:focus { outline: none; border-color: var(--coral); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.leads-feedback { margin: 8px 0 0; font-size: .9rem; min-height: 1.2em; color: var(--text-mute); }
.leads-feedback.success { color: var(--mint); }
.leads-feedback.error { color: var(--coral); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--frame);
  color: #fff;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.footer-logo {
  height: 55px;
  width: auto;
  flex-shrink: 0;
}
.footer-left p {
  margin: 0;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  white-space: nowrap;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-nav a {
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--coral); }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 20px; height: 20px; }

/* ========== MODAL VIP ========== */
.vip-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 8, 28, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 0s linear 300ms;
}
.vip-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 300ms ease, visibility 0s;
}
.vip-modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px 36px;
  position: relative;
  overflow: hidden;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(28px) scale(.97);
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.vip-overlay.open .vip-modal {
  transform: translateY(0) scale(1);
}
/* faixa decorativa no topo */
.vip-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--lavender) 50%, var(--cyan) 100%);
}
.vip-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.vip-close:hover { background: var(--frame); color: #fff; border-color: var(--frame); }

.vip-header { margin-bottom: 28px; }
.vip-logo {
  height: 43px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.vip-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--frame);
  margin: 0 0 12px;
}
.vip-sub {
  font-size: .88rem;
  color: var(--text-mute);
  line-height: 1.65;
  margin: 0;
}
.vip-honey {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}
.vip-form { display: flex; flex-direction: column; gap: 14px; }
.vip-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.vip-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.vip-field input {
  width: 100%;
  height: 50px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: .95rem;
  background: #fff;
  color: var(--frame);
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.vip-field input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,77,109,.12);
}
.vip-field input::placeholder { color: #c0bbb4; }
.vip-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
  font-size: .92rem;
}
.vip-feedback {
  font-size: .84rem;
  text-align: center;
  min-height: 18px;
  margin: 2px 0 0;
  font-weight: 600;
  line-height: 1.4;
}
.vip-feedback.success { color: #1e9c51; }
.vip-feedback.error { color: var(--coral); }
.vip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .vip-row { grid-template-columns: 1fr; }
}

/* Tela de sucesso VIP */
.vip-success {
  display: none;          /* oculto por padrão — não usa [hidden] */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
}
.vip-success--show {
  display: flex;
  animation: vip-pop .4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes vip-pop {
  from { opacity: 0; transform: scale(.88) translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.vip-success-icon {
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 20px;
}
.vip-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--frame);
  margin: 0 0 16px;
}
.vip-success-msg {
  font-size: .92rem;
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 320px;
  margin: 0;
}

.vip-privacy {
  font-size: .7rem;
  color: var(--text-mute);
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .vip-modal { padding: 40px 22px 28px; }
  .vip-title { font-size: 1.8rem; }
}

/* ========== MODAL PATROCÍNIO ========== */
.pat-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 4, 20, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 0s linear 300ms;
}
.pat-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 300ms ease, visibility 0s;
}
.pat-modal {
  background: var(--bg);
  color: var(--frame);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px 36px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(28px) scale(.97);
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.pat-overlay.open .pat-modal { transform: translateY(0) scale(1); }
.pat-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--lavender) 50%, var(--cyan) 100%);
}
.pat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pat-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--frame);
  margin: 0 0 10px;
}
.dot-lime { color: var(--cyan); }
.pat-sub {
  font-size: .85rem;
  color: rgba(10,10,10,.52);
  line-height: 1.6;
  margin: 0 0 28px;
}
.pat-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pat-bullet-ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--col);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--frame);
}
.pat-bullet-ico svg { width: 18px; height: 18px; }
.pat-bullets li div { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.pat-bullets li strong { font-size: .88rem; font-weight: 700; color: var(--frame); }
.pat-bullets li span  { font-size: .78rem; color: rgba(10,10,10,.5); line-height: 1.45; }
.pat-next { width: 100%; justify-content: center; background: var(--coral); color: #fff; }
.pat-next:hover { background: #e8405e; }
.pat-submit { width: 100%; justify-content: center; background: var(--coral); color: #fff; margin-top: 6px; }
.pat-submit:hover { background: #e8405e; }

/* Step 2 — formulário */
.pat-step--hidden { display: none; }
.pat-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(10,10,10,.4);
  margin-bottom: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.pat-back:hover { color: var(--coral); }
/* inputs dentro do modal claro */
.pat-modal .vip-field label { color: rgba(10,10,10,.6); }
.pat-modal .vip-field input,
.vip-select {
  background: #fff;
  border-color: rgba(10,10,10,.14);
  color: var(--frame);
  height: 50px;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  border: 1.5px solid rgba(10,10,10,.14);
}
.pat-modal .vip-field input::placeholder { color: rgba(10,10,10,.3); }
.pat-modal .vip-field input:focus,
.vip-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,77,109,.10);
}
.vip-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(10,10,10,.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.vip-select option { background: #fff; color: var(--frame); }

@media (max-width: 480px) {
  .pat-modal { padding: 40px 22px 28px; }
}

/* ========== MODAL CONTATO (Speaker / Imprensa) ========== */
.cont-modal { border-radius: var(--radius-lg); max-width: 500px; }
.cont-modal::before {
  background: linear-gradient(90deg, var(--lavender) 0%, var(--cyan) 50%, var(--coral) 100%);
}
.cont-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--lavender);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.vip-select--light {
  background-color: #fff;
  border-color: rgba(10,10,10,.14);
  color: var(--frame);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(10,10,10,.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.vip-select--light option { background: #fff; color: var(--frame); }
.cont-textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(10,10,10,.14);
  border-radius: var(--radius-sm);
  color: var(--frame);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 14px 16px;
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cont-textarea::placeholder { color: rgba(10,10,10,.3); }
.cont-textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(161,140,255,.12);
}
.vip-req--opt {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(10,10,10,.35);
  letter-spacing: 0;
}
.cont-submit { background: var(--lavender); }
.cont-submit:hover { background: #8f79ee; }

/* ========== LINHA IMPRENSA ========== */
.press-strip {
  background: var(--bg-warm);
  border-top: 1.5px solid rgba(10,10,10,.08);
  border-bottom: 1.5px solid rgba(10,10,10,.08);
  padding: 28px 0;
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.press-text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.press-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lavender);
  border: 1.5px solid var(--lavender);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.press-text p {
  font-size: .88rem;
  color: rgba(10,10,10,.55);
  margin: 0;
  line-height: 1.5;
  max-width: 520px;
}
.press-cta {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .press-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .press-text { flex-direction: column; align-items: flex-start; gap: 8px; }
  .press-cta { width: 100%; justify-content: center; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ========== RESPONSIVE ========== */

/* TABLET (≤ 1080px) ─ stack das colunas, ajusta grids */
@media (max-width: 1080px) {
  .hero-inner--split { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { aspect-ratio: 16/10; max-height: 420px; }
  .hero-info { flex-wrap: wrap; gap: 24px; }

  .exp-grid { grid-template-columns: 1fr; gap: 32px; }
  .exp-card { flex: 0 0 calc(50% - 8px); }
  .exp-intro .section-title { max-width: 100%; }

  .sp-cards { grid-template-columns: repeat(3, 1fr); }
  .sp-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sp-link { align-self: flex-start; }

  .vstrip-card { width: 100%; margin-top: 60px; }
  .ticker-track span { font-size: 2rem; }
  .final-card { grid-template-columns: 1fr; padding: 40px; gap: 28px; min-height: auto; }
  .logo3d { font-size: 8rem; }
  .logo3d-wrap { width: 240px; height: 160px; }
  .final-card::before { left: 50%; }

  .leads-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-left { flex-direction: column; gap: 10px; }
  .footer-left p { white-space: normal; }
  .footer-nav { margin-left: 0; flex-wrap: wrap; justify-content: center; gap: 18px 24px; }
}

/* MOBILE (≤ 760px) ─ simplifica hero, esconde decorações pesadas */
@media (max-width: 760px) {
  .container, .hero-inner, .header-inner { padding-left: 20px; padding-right: 20px; }

  /* Header: nav vira off-canvas */
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
    z-index: 49;
    margin-left: 0;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--transition), transform var(--transition), visibility 0s;
  }
  .main-nav a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  /* Mostra os items do dropdown PARTICIPAR no mobile */
  .nav-divider {
    display: block;
    padding: 18px 20px 6px;
    font-family: var(--font-display);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--text-mute);
    text-transform: uppercase;
    border-top: 2px solid var(--line);
    margin-top: 4px;
  }
  .nav-mobile-only { display: flex !important; }
  .nav-toggle { display: flex; }
  .logo-img { height: 87px; }
  .header-actions .dropdown { display: none; }

  /* Hero: vídeo lateral some, texto empilhado */
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub { font-size: .98rem; }
  .hero-info { flex-direction: column; align-items: flex-start; gap: 18px; }
  .info-block { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; min-height: 48px; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(250,248,242,.7) 0%,
      rgba(250,248,242,.55) 50%,
      rgba(250,248,242,.65) 100%);
  }

  /* Apoio Institucional — empilhado e centralizado */
  .parceiros { padding: 14px 0 18px; }
  .parceiros-inner { flex-direction: column; gap: 12px; padding: 0 20px; }
  .parceiros-label {
    border-right: 0;
    padding-right: 0;
    max-width: 100%;
    text-align: center;
    font-size: .62rem;
    line-height: 1.4;
  }
  .parceiro-divider { display: none; }
  .parceiro-logo--img img { height: 72px; }
  .parceiros-rotator { width: 100%; }
  .parceiros-rotator-track { gap: 36px; }
  .parceiro-logo { font-size: .72rem; }

  /* Experiências */
  .exp-card { flex: 0 0 calc(80% - 8px); min-height: 280px; padding: 24px; }
  .exp-icon svg { width: 44px; height: 44px; }
  .exp-card h3 { font-size: 1.2rem; }

  /* Speakers CTA bar */
  .sp-cta-bar { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; }
  .sp-cta-bar .btn { width: 100%; }

  /* Speakers — sem rotação no mobile (some natural feel quando stack) */
  .speakers { padding: 80px 0 0; border-radius: 0; margin-top: 0; }
  .sp-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sp-card,
  .sp-card:nth-child(1),
  .sp-card:nth-child(2),
  .sp-card:nth-child(3),
  .sp-card:nth-child(4),
  .sp-card:nth-child(5) { transform: none; }
  .sp-card:hover { transform: translateY(-2px); }
  /* Card +20 NOMES (último) ocupa as 2 colunas pra não ficar órfão */
  .sp-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
  }
  .sp-card:last-child .sp-photo-tag { font-size: 2rem; }
  .sp-title { font-size: clamp(2rem, 7vw, 2.4rem); }
  .sp-info h3 { font-size: .82rem; }
  .sp-info p { font-size: .68rem; }
  .sp-card-bottom { left: 12px; right: 12px; bottom: 12px; }
  .sp-card .card-arrow { width: 32px; height: 32px; }

  /* Video strip + Ticker */
  .vstrip { padding: 24px 0 0; }
  .vstrip-card { width: 92%; margin: 24px auto 0; border-radius: 36px; }
  .cta-final { padding-top: 48px; }
  .ticker-track { gap: 20px; padding: 10px 0; }
  .ticker-track span { font-size: 1.15rem; letter-spacing: .08em; }
  .ticker-dot { font-size: .55rem !important; }

  /* Patrocinadores */
  .patroc-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .patroc-card { height: 100px; }
  .patroc-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* CWB */
  .cwb { padding: 220px 0 60px; background-size: cover; }
  .cwb-title-img { max-width: 180px; margin: 0 auto 40px; }
  .cwb-left p { font-size: .92rem; line-height: 1.65; }
  .cwb-card { padding: 16px 20px; }
  .cwb-card strong { font-size: 1.2rem; }
  .cwb-card p { font-size: .82rem; }
  .cwb-apoio-logo { max-height: 72px; }

  /* CTA Final — logo 3D bem reduzido, cubos minúsculos */
  .final-card { padding: 32px 24px; }
  .final-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .logo3d { font-size: 5rem; text-shadow:
    1px 1px 0 var(--frame),
    2px 2px 0 var(--frame),
    3px 3px 0 var(--frame),
    4px 4px 0 var(--frame),
    5px 5px 0 var(--frame); }
  .logo3d-wrap { width: 160px; height: 110px; }
  .cube { width: 14px !important; height: 14px !important; }
  .cube-1, .cube-5 { width: 18px !important; height: 18px !important; }
  .final-side { padding-bottom: 0; }
  .final-side p { max-width: 100%; font-size: .88rem; }
  .final-flourish { display: none; }

  /* Buttons touch-friendly */
  .btn, .nav-cta { min-height: 48px; }

  /* CWB */
  .cwb-inner { grid-template-columns: 1fr; gap: 40px; }
  .cwb-title { font-size: clamp(2.4rem, 9vw, 3.4rem); margin-bottom: 40px; }

  /* Footer */
  .footer-inner { padding: 0 20px; }
  .footer-logo { height: 52px; }
}

/* MOBILE PEQUENO (≤ 480px) ─ ajustes finais de respiro */
@media (max-width: 480px) {
  .container, .hero-inner, .header-inner { padding-left: 16px; padding-right: 16px; }
  .header-inner { padding-top: 8px; padding-bottom: 8px; }
  .logo-img { height: 75px; }

  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hl-yellow::before { inset: 22% -.12em -8% -.08em; }

  .sp-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sp-info h3 { font-size: .76rem; }
  .sp-info p { font-size: .64rem; line-height: 1.25; }

  .exp-card { min-height: 240px; padding: 22px; }
  .exp-card h3 { font-size: 1.1rem; }
  .exp-card p { font-size: .8rem; }

  .vstrip-card { width: 92%; margin-top: 16px; border-radius: 28px; }
  .ticker-track span { font-size: .95rem; }

  .final-card { padding: 24px 20px; border-radius: 24px; }
  .patroc-grid { gap: 10px; }
  .patroc-card { height: 84px; }

  /* CTA Final ainda menor pra caber */
  .logo3d { font-size: 4.8rem; }
  .logo3d-wrap { width: 160px; height: 110px; }
  .cube { width: 16px !important; height: 16px !important; }
  .cube-1 { width: 18px !important; height: 18px !important; }
  .cube-5 { width: 20px !important; height: 20px !important; }

  .footer-nav { font-size: .68rem; gap: 14px 18px; }
  .footer-social a { width: 36px; height: 36px; }
}

/* Reduzir motion pra quem prefere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .parceiros-rotator-track { animation: none; }
  .hero-video { display: none; }
}
