/* Ponto de entrada dos estilos. A ordem dos imports preserva a cascata. */
/* ============================================================
   Uniatman Experience — Estilos
   Fontes: Montserrat (display) + Nunito Sans (corpo)
   Paleta: Navy #142044 · Cyan #00BFFF · Navy Deep #0d1630
   ============================================================ */
/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --navy:      #142044;
  --navy-deep: #0d1630;
  --cyan:      #00BFFF;
  --cyan-lt:   #33ccff;
  --cyan-dk:   #0099cc;
  --white:     #ffffff;
  --gray-mid:  #8fa3b8;

  /* Tipografia — equivalentes Gotham */
  --f-display: 'Montserrat', sans-serif;
  --f-body:    'Nunito Sans', sans-serif;
}
/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
}
/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13, 22, 48, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,191,255,.1);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 48px; }
.nav-menu {
  display: flex; list-style: none; gap: 4px; align-items: center; margin: 0; padding: 0;
}
.nav-link {
  font-family: var(--f-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); background: rgba(0,191,255,.08); }
.nav-cta {
  font-family: var(--f-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--cyan); color: var(--navy-deep);
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,255,.4); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 110px 40px 70px; overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(13,22,48,.86), rgba(13,22,48,.86)),
    url('/bg-uniatman.jpg') center center / cover no-repeat;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,191,255,.1);
  animation: pulse-ring 7s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: 480px; height: 480px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-ring:nth-child(2) { width: 730px; height: 730px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.2s; opacity: .6; }
.hero-ring:nth-child(3) { width: 980px; height: 980px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2.4s; opacity: .3; }
@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50%       { transform: translate(-50%,-50%) scale(1.045); opacity: .45; }
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 840px; }
.hero-badge {
  display: inline-block;
  font-family: var(--f-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase;
  background: rgba(0,191,255,.1); border: 1px solid rgba(0,191,255,.32);
  color: var(--cyan); padding: 8px 22px; border-radius: 50px;
  margin-bottom: 32px; animation: fadeUp .8s ease both;
}
.hero-logo {
  width: 180px; margin: 0 auto 10px; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 0 44px rgba(0,191,255,.45));
  animation: fadeUp .9s ease .1s both;
}
.hero-event-name {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2rem, 2.4vw, 1.25rem);
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--cyan-lt); margin-bottom: 24px;
  text-shadow:
    0 0 8px rgba(255,255,255,.55),
    0 0 18px rgba(255,255,255,.26),
    0 0 28px rgba(255,255,255,.12);
  animation: fadeUp 1s ease .25s both;
}
.hero-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.15rem, 4.5vw, 3.85rem);
  line-height: 1.04; letter-spacing: -.025em;
  margin-bottom: 18px; animation: fadeUp 1s ease .3s both;
}
.hero-title span { color: var(--cyan); }
.hero-tagline {
  font-family: var(--f-body); font-weight: 300; font-style: italic;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: rgba(255,255,255,.6); line-height: 1.65;
  max-width: 720px; margin: 0 auto 42px; animation: fadeUp 1s ease .4s both;
}
.hero-date-box {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 52px; flex-wrap: wrap;
  animation: fadeUp 1s ease .5s both;
}
.date-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 500; font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.date-item svg { color: var(--cyan); flex-shrink: 0; }
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease .6s both;
}
/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  font-family: var(--f-display); font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--cyan); color: var(--navy-deep);
  padding: 18px 48px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 0 44px rgba(0,191,255,.28); transition: all .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,191,255,.52); }
.btn-secondary {
  font-family: var(--f-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  background: transparent; color: var(--cyan);
  padding: 18px 48px; border-radius: 50px; text-decoration: none;
  border: 2px solid rgba(0,191,255,.38); transition: all .25s;
}
.btn-secondary:hover { border-color: var(--cyan); background: rgba(0,191,255,.08); transform: translateY(-3px); }
/* ── ECOSSISTEMA ──────────────────────────────────────── */
.ecosystem-video {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}
.ecosystem-video-copy .section-subtitle { max-width: 480px; }
.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0,191,255,.18);
  background: rgba(0,0,0,.32);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.journey-section { max-width: 1180px; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}
.journey-card {
  position: relative;
  min-height: 230px;
  padding: 28px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,191,255,.16);
  background: linear-gradient(180deg, rgba(0,191,255,.08) 0%, rgba(255,255,255,.03) 100%);
  color: var(--white);
  text-decoration: none;
  transition: transform .25s, border-color .25s, background .25s;
}
.journey-card::after {
  content: '↓';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-family: var(--f-display);
  font-weight: 900;
  opacity: .75;
  z-index: 2;
}
.journey-card:last-child::after { display: none; }
.journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,191,255,.42);
  background: rgba(0,191,255,.1);
}
.journey-icon {
  display: block;
  font-size: 2.1rem;
  color: var(--cyan);
  margin-bottom: 20px;
}
.journey-card h3,
.pillar-card h3,
.testimonial-card h3,
.event-card h3,
.page-feature-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.journey-card p,
.pillar-card p,
.testimonial-card p,
.event-card p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
}
.pillars-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(0,191,255,.08);
  border-bottom: 1px solid rgba(0,191,255,.08);
}
.pillars-section > div {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
}
.pillars-grid,
.testimonials-grid,
.events-grid,
.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}
.pillar-card,
.testimonial-card,
.event-card,
.page-feature-card {
  min-height: 190px;
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,191,255,.15);
  background: rgba(255,255,255,.04);
}
.pillar-number,
.event-card span,
.testimonial-media,
.page-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(0,191,255,.1);
  color: var(--cyan);
  border: 1px solid rgba(0,191,255,.18);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .78rem;
}
.pillars-orbit {
  position: relative;
  min-height: 370px;
  margin-top: 68px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pillars-axis {
  position: absolute;
  top: 18px;
  bottom: 64px;
  left: 50%;
  z-index: 2;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}
.pillars-axis-line {
  position: relative;
  display: block;
  width: 2px;
  height: 100%;
  overflow: visible;
  background: rgba(0,200,243,.3);
}
.pillars-axis-line::before {
  content: '';
  position: absolute;
  inset: 0 -1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    var(--cyan) 48%,
    var(--cyan-lt) 54%,
    transparent 74%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: pillars-arrow-flow 3.2s linear infinite;
}
.pillars-axis-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -1px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--cyan);
  transform: translateX(-50%);
}
.pillars-axis strong {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
  opacity: .42;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.pillars-pyramid-scene {
  --pyramid-size: 288px;
  --pyramid-depth: calc(var(--pyramid-size) / 2);
  position: relative;
  z-index: 1;
  width: var(--pyramid-size);
  height: var(--pyramid-size);
  margin-top: 18px;
  perspective: 900px;
}
.pillars-pyramid {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: pillars-pyramid-turn 16s linear infinite;
}
.pillars-pyramid-face {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--pyramid-size);
  height: var(--pyramid-size);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54% 18px 16px;
  border: 1px solid rgba(0,200,243,.48);
  background: linear-gradient(145deg, rgba(0,200,243,.18), rgba(245,245,245,.92));
  box-shadow: none;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  backface-visibility: hidden;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transform-origin: 50% 100%;
}
.pillars-pyramid-face span {
  display: block;
  transform: translateY(18px);
}
.pillars-pyramid-front { transform: rotateY(0deg) translateZ(var(--pyramid-depth)) rotateX(30deg); }
.pillars-pyramid-right { transform: rotateY(90deg) translateZ(var(--pyramid-depth)) rotateX(30deg); }
.pillars-pyramid-back  { transform: rotateY(180deg) translateZ(var(--pyramid-depth)) rotateX(30deg); }
.pillars-pyramid-left  { transform: rotateY(-90deg) translateZ(var(--pyramid-depth)) rotateX(30deg); }
@keyframes pillars-arrow-flow {
  from { background-position: 0 120%; }
  to { background-position: 0 -120%; }
}
@keyframes pillars-pyramid-turn {
  0% { transform: rotateX(-12deg) rotateY(0deg); }
  100% { transform: rotateX(-12deg) rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .pillars-pyramid {
    animation: none;
    transform: rotateX(-12deg) rotateY(32deg);
  }

  .pillars-axis-line::before { animation: none; }
}
.testimonials-grid,
.events-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-card time {
  display: block;
  font-family: var(--f-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.cta-actions { gap: 16px; flex-wrap: wrap; }
/* ── PÁGINAS INTERNAS ─────────────────────────────────── */
.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 90px;
  max-width: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13,22,48,.84), rgba(13,22,48,.9)),
    url('/bg-uniatman.jpg') center / cover no-repeat;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero-content p:not(.section-label) {
  max-width: 680px;
  margin: 0 auto 36px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.64);
}
.page-features,
.interest-section {
  max-width: 1100px;
}
.page-feature-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.page-feature-card {
  min-height: 150px;
  text-align: center;
}
.page-feature-card span { margin-left: auto; margin-right: auto; }
/* ── COUNTDOWN ─────────────────────────────────────────── */
.countdown-section {
  padding: 60px 40px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(0,191,255,.09);
  border-bottom: 1px solid rgba(0,191,255,.09);
}
.countdown-label {
  text-align: center;
  font-family: var(--f-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 28px;
}
.countdown {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.countdown-item { text-align: center; min-width: 90px; }
.countdown-number {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--cyan); line-height: 1; display: block;
}
.countdown-unit {
  font-family: var(--f-body); font-weight: 300; font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gray-mid); margin-top: 6px;
}
.countdown-sep {
  font-family: var(--f-display); font-weight: 300;
  font-size: 3rem; color: rgba(0,191,255,.28);
  align-self: flex-start; padding-top: 8px; line-height: 1;
}
/* ── SECTION BASE ──────────────────────────────────────── */
section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--f-display); font-weight: 700; font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(1.0rem, 3vw, 2.20rem); line-height: 1.18; margin-bottom: 18px;
}
.section-subtitle {
  font-family: var(--f-body); font-weight: 300;
  font-size: 1.1rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 600px;
}
/* ── SOBRE ─────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.about-text p {
  font-family: var(--f-body); font-weight: 400; font-size: 1rem;
  line-height: 1.8; color: rgba(255,255,255,.7); margin-bottom: 18px;
}
.about-text strong { font-family: var(--f-display); font-weight: 700; color: var(--white); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-video {
  margin-top: 48px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(0,191,255,.16);
  background: linear-gradient(135deg, rgba(0,191,255,.07) 0%, rgba(255,255,255,.02) 100%);
}
.about-video-copy { margin-bottom: 22px; }
.about-video-copy h3 {
  font-family: var(--f-display); font-weight: 800; font-size: 1.4rem;
  margin-bottom: 10px;
}
.about-video-copy p {
  font-family: var(--f-body); font-weight: 300; font-size: .96rem;
  color: rgba(255,255,255,.64); line-height: 1.7;
}
.about-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.3);
}
.about-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.stat-card {
  background: rgba(0,191,255,.06); border: 1px solid rgba(0,191,255,.18);
  border-radius: 16px; padding: 28px 22px; transition: all .3s;
}
.stat-card:hover { border-color: rgba(0,191,255,.48); background: rgba(0,191,255,.1); }
.stat-number { font-family: var(--f-display); font-weight: 900; font-size: 2.4rem; color: var(--cyan); line-height: 1; }
.stat-desc { font-family: var(--f-body); font-weight: 300; font-size: .84rem; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.4; }
/* ── AGENDA ────────────────────────────────────────────── */
.agenda-section { background: var(--navy); }
.agenda-section > div { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.agenda-timeline { margin-top: 60px; position: relative; }
.agenda-timeline::before {
  content: ''; position: absolute; left: 118px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,191,255,.28) 10%, rgba(0,191,255,.28) 90%, transparent);
}
.agenda-item { display: flex; gap: 40px; margin-bottom: 28px; position: relative; align-items: flex-start; }
.agenda-time {
  font-family: var(--f-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; color: var(--cyan);
  width: 78px; flex-shrink: 0; padding-top: 18px; text-align: right;
}
.agenda-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--cyan); background: var(--navy);
  flex-shrink: 0; margin-top: 20px; position: relative; z-index: 1;
}
.agenda-dot.hl { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.agenda-card {
  flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 18px 24px; transition: border-color .3s, transform .2s;
}
.agenda-card:hover { border-color: rgba(0,191,255,.3); transform: translateX(4px); }
.agenda-card.keynote { border-color: rgba(0,191,255,.22); background: rgba(0,191,255,.05); }
.agenda-type {
  font-family: var(--f-display); font-weight: 800; font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 5px;
}
.agenda-type.panel { color: #7ecfff; }
.agenda-type.net   { color: #a8d8ea; }
.agenda-card h4 { font-family: var(--f-display); font-weight: 700; font-size: .98rem; margin-bottom: 4px; }
.agenda-card p { font-family: var(--f-body); font-weight: 300; font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.agenda-card .agenda-facilitators {
  margin-top: 8px; color: rgba(255,255,255,.72);
  font-size: .8rem;
}
.agenda-facilitators strong { font-weight: 700; color: var(--white); }
.unitalk-accordion { margin-top: 8px; }
.unitalk-accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  list-style: none; cursor: pointer;
  font-family: var(--f-body); font-weight: 300; font-size: .84rem;
  color: rgba(255,255,255,.58); line-height: 1.55;
}
.unitalk-accordion summary::-webkit-details-marker { display: none; }
.unitalk-toggle {
  width: 9px; height: 9px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transition: transform .2s ease; flex-shrink: 0;
}
.unitalk-accordion[open] .unitalk-toggle { transform: rotate(-135deg); }
.unitalk-list {
  list-style: none; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.unitalk-item { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 10px 0; }
.unitalk-number {
  font-family: var(--f-display); font-weight: 800; font-size: .68rem;
  letter-spacing: .1em; color: var(--cyan);
}
.unitalk-item h5 {
  font-family: var(--f-display); font-weight: 700; font-size: .88rem;
  margin-bottom: 3px; color: rgba(255,255,255,.9);
}
.unitalk-item p { margin: 0; }
/* ── PÚBLICO ───────────────────────────────────────────── */
.audience-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(0,191,255,.08); border-bottom: 1px solid rgba(0,191,255,.08);
}
.audience-section > div { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.audience-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 56px; }
.audience-card {
  text-align: center; padding: 48px 26px;
  background: rgba(0,191,255,.05); border: 1px solid rgba(0,191,255,.14); border-radius: 20px;
  transition: all .3s;
}
.audience-card:hover { border-color: rgba(0,191,255,.42); background: rgba(0,191,255,.1); transform: translateY(-4px); }
.audience-icon { font-size: 2.6rem; margin-bottom: 18px; }
.audience-card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1rem; margin-bottom: 10px; }
.audience-card p { font-family: var(--f-body); font-weight: 300; font-size: .84rem; color: rgba(255,255,255,.54); line-height: 1.65; }
/* ── LOCAL ─────────────────────────────────────────────── */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.local-info { display: flex; flex-direction: column; gap: 24px; }
.local-item { display: flex; gap: 16px; align-items: flex-start; }
.local-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,191,255,.1); border: 1px solid rgba(0,191,255,.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.local-item h4 {
  font-family: var(--f-display); font-weight: 700; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px;
}
.local-item p { font-family: var(--f-body); font-weight: 400; font-size: .94rem; color: rgba(255,255,255,.75); }
.local-map {
  background: rgba(0,191,255,.05); border: 1px solid rgba(0,191,255,.18);
  border-radius: 20px; height: 300px;
  overflow: hidden; position: relative;
}
.local-map-frame {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.08) saturate(.92) contrast(1.02);
}
.map-placeholder {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  text-align: center; padding: 14px 16px;
  background: rgba(13,22,48,.82); border: 1px solid rgba(0,191,255,.16);
  border-radius: 16px; backdrop-filter: blur(10px);
}
.map-placeholder p { font-family: var(--f-display); font-weight: 500; font-size: .88rem; color: rgba(255,255,255,.72); margin-top: 10px; }
.map-placeholder p:first-child { margin-top: 0; color: var(--white); }
.map-link {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 14px; padding: 11px 18px; border-radius: 999px;
  text-decoration: none; font-family: var(--f-display); font-weight: 700; font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--cyan); color: var(--navy-deep);
}
.map-link:hover { background: var(--cyan-lt); }
/* ── EQUIPE ────────────────────────────────────────────── */
.team-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(0,191,255,.09); border-bottom: 1px solid rgba(0,191,255,.09);
}
.team-inner { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  margin-top: 56px;
}
.team-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(0,191,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(0,191,255,.16);
  border-radius: 22px;
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,191,255,.42);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.team-avatar,
.team-modal-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 2rem;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #8de9ff 0%, var(--cyan) 48%, #71f0ff 100%);
  box-shadow: 0 0 32px rgba(0,191,255,.25);
}
.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 0 32px rgba(0,191,255,.18);
}
.team-modal-photo {
  border-radius: 50%;
  display: block;
}
.team-card h3,
.team-modal-name {
  font-family: var(--f-display); font-weight: 800; font-size: 1.08rem; margin-bottom: 8px; text-align: center;
}
.team-card p,
.team-modal-bio {
  font-family: var(--f-body); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.66);
}
.team-card p { font-size: .9rem; min-height: 48px; }
.team-link {
  margin-top: 18px; border: none; background: none; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
}
.team-link:hover { color: var(--cyan-lt); }
.team-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.team-modal.open { display: flex; }
.team-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 10, 24, .78);
  backdrop-filter: blur(8px);
}
.team-modal-dialog {
  position: relative; z-index: 1; width: min(100%, 560px);
  background: linear-gradient(180deg, rgba(20,32,68,.98) 0%, rgba(13,22,48,.98) 100%);
  border: 1px solid rgba(0,191,255,.2); border-radius: 24px;
  padding: 34px 30px 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}
.team-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}
.team-modal-kicker,
.team-modal-role {
  font-family: var(--f-display); letter-spacing: .12em; text-transform: uppercase;
}
.team-modal-kicker {
  color: var(--cyan); font-size: .7rem; font-weight: 700; margin-bottom: 10px; text-align: center;
}
.team-modal-role {
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.55);
  margin-bottom: 18px; text-align: center;
}
.team-modal-bio { text-align: center; font-size: .98rem; }
body.modal-open { overflow: hidden; }
/* ── INSCRIÇÃO ─────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 120px 40px;
  position: relative; overflow: hidden; max-width: none !important;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,191,255,.11) 0%, transparent 70%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.14; margin-bottom: 18px;
}
.cta-section h2 span { color: var(--cyan); }
.cta-section > p {
  font-family: var(--f-body); font-weight: 300; font-size: 1.05rem;
  color: rgba(255,255,255,.58); margin-bottom: 48px;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.cta-action {
  display: flex;
  justify-content: center;
}
.form-wrapper {
  max-width: 500px; margin: 0 auto;
  background: rgba(0,191,255,.06); border: 1px solid rgba(0,191,255,.2);
  border-radius: 24px; padding: 40px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--f-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11); border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--f-body); font-weight: 400; font-size: .94rem;
  color: var(--white); outline: none; transition: border-color .3s; -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus,
.form-group select:focus { border-color: var(--cyan); }
.form-group select option { background: var(--navy); }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--cyan); color: var(--navy-deep);
  font-family: var(--f-display); font-weight: 800; font-size: .95rem;
  letter-spacing: .05em; text-transform: uppercase;
  border: none; border-radius: 12px; cursor: pointer; transition: all .25s; margin-top: 6px;
}
.form-submit:hover { background: var(--cyan-lt); box-shadow: 0 8px 36px rgba(0,191,255,.42); transform: translateY(-2px); }
.form-success {
  text-align: center;
  padding: 32px 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .35);
  border-radius: 16px;
  color: #166534;
}
/* ── FOOTER ────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(0,191,255,.09); padding: 38px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: var(--navy-deep);
}
footer img { height: 26px; opacity: .8; }
.footer-text { font-family: var(--f-body); font-weight: 300; font-size: .8rem; color: rgba(255,255,255,.38); text-align: center; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.58);
  transition: color .2s, transform .2s;
}
.footer-social:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}
/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sponsor-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; order: 1; }
  .nav-cta { order: 2; font-size: .75rem; padding: 9px 18px; }
  nav { flex-wrap: wrap; gap: 0; padding: 16px 22px; }
  .nav-menu {
    display: none; flex-direction: column; align-items: flex-start;
    width: 100%; order: 3;
    padding: 12px 0 16px; border-top: 1px solid rgba(0,191,255,.12);
    margin-top: 12px; gap: 2px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: .82rem; padding: 10px 16px; width: 100%; }
  .ecosystem-video { grid-template-columns: 1fr; }
  .journey-grid,
  .pillars-grid,
  .testimonials-grid,
  .events-grid,
  .page-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journey-card::after { display: none; }

  .pillars-orbit {
    min-height: 310px;
    margin-top: 48px;
  }

  .pillars-pyramid-scene {
    --pyramid-size: 228px;
    --pyramid-depth: calc(var(--pyramid-size) / 2);
    margin-top: 18px;
  }

  .pillars-axis {
    top: 18px;
    bottom: 64px;
  }

  .pillars-axis strong {
    top: 50%;
    font-size: 12px;
    letter-spacing: .12em;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .nav-link { font-size: .74rem; padding: 7px 10px; }
  .nav-cta { display: none; }
  .journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .journey-card::after { display: none; }
  .page-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  section { padding: 70px 24px; }
  .about-grid,
  .local-grid,
  .topics-grid { grid-template-columns: 1fr; gap: 38px; }
  .facilitators-section { padding: 70px 24px; }
  .facilitators-head { flex-direction: column; align-items: flex-start; }
  .audience-cards { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .agenda-timeline::before { left: 76px; }
  .agenda-time { width: 56px; font-size: .76rem; }
  .facilitator-track { grid-auto-columns: minmax(260px, 86vw); }
  .speaker-topic { min-height: auto; }
  .team-inner { padding: 70px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card p { min-height: auto; }
  .team-modal-dialog { padding: 30px 22px 24px; }
  .team-modal-avatar { width: 82px; height: 82px; font-size: 1.65rem; }
  .sponsor-card { min-width: 180px; }
  .form-wrapper { padding: 28px 22px; }
  footer { flex-direction: column; text-align: center; }
  .hero { padding: 100px 22px 64px; }
  .hero-logo { width: 132px; }
  .hero-event-name { letter-spacing: .14em; font-size: .9rem; line-height: 1.45; }
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-date-box { gap: 14px; margin-bottom: 38px; }
  .date-item { width: 100%; justify-content: center; }
  .ecosystem-video,
  .journey-section,
  .testimonials-section,
  .events-section,
  .page-features,
  .interest-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pillars-section > div { padding: 70px 24px; }
  .journey-grid,
  .pillars-grid,
  .testimonials-grid,
  .events-grid,
  .page-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-card,
  .pillar-card,
  .testimonial-card,
  .event-card,
  .page-feature-card {
    min-height: auto;
  }
  .page-hero { min-height: 66vh; padding: 120px 24px 72px; }
  .page-hero-content h1 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
}
@media (min-width: 769px) and (max-width: 1040px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* ============================================================
   Novo layout Uniatman Ecosystem — baseado no anexo
   Mantém Vite/TS e componentes existentes, troca a camada visual.
   ============================================================ */
@font-face {
  font-family: Gotham;
  src: url('/assets/Gotham-Book_0.otf') format('opentype');
  font-display: swap;
}
:root {
  --navy: #30385b;
  --navy-deep: #30385b;
  --cyan: #00c8f3;
  --cyan-lt: #35d6f7;
  --cyan-dk: #00a7cc;
  --white: #ffffff;
  --paper: #f5f5f5;
  --ink: #30385b;
  --muted: rgba(48, 56, 91, .74);
  --line: rgba(48, 56, 91, .1);
  --f-display: Gotham, Arial, sans-serif;
  --f-body: Gotham, Arial, sans-serif;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
}
nav {
  position: sticky;
  top: 0;
  padding: 18px 6vw;
  background: rgba(245,245,245,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-logo-img {
  width: 190px;
  height: auto;
  object-fit: contain;
}
.nav-menu { gap: 26px; }
.nav-link {
  position: relative;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}
.nav-link:hover,
.nav-link.active {
  color: var(--cyan-dk);
  background: transparent;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.breadcrumb {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: auto;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(255,255,255,.62);
  font-family: var(--f-display);
  font-size: 13px;
}
.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current='page'] { color: rgba(255,255,255,.82); }
.nav-cta,
.btn-primary,
.btn-secondary,
.map-link,
.form-submit {
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.nav-cta,
.btn-primary,
.map-link,
.form-submit {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: none;
}
.btn-secondary {
  background: var(--ink);
  color: var(--white);
  border: 0;
}
.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(48,56,91,.15);
}
section,
.facilitators-section,
.page-features,
.interest-section {
  max-width: none;
  padding: 86px 6vw;
}
.section-label,
.hero-badge,
.card-label,
.speaker-role,
.agenda-type,
.sponsor-tier,
.team-modal-kicker,
.local-item h4 {
  color: var(--cyan-dk);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-title {
  color: var(--ink);
  font-size: clamp(25.9px, 3.24vw, 45.4px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-subtitle,
.about-text p,
.topic-card p,
.audience-card p,
.pillar-card p,
.testimonial-card p,
.event-card p,
.journey-card p,
.product-card p,
.page-hero-content p:not(.section-label) {
  color: var(--muted);
}
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 48px;
  align-items: center;
  justify-content: initial;
  padding: 86px 6vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,200,243,.22), transparent 34%),
    linear-gradient(135deg, #f5f5f5, #fff);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/pictures/experience/2026/DSC_4944.jpg') center / cover no-repeat;
  opacity: .13;
  z-index: 0;
}
.hero-bg {
  inset: auto 5vw 48px auto;
  width: min(42vw, 430px);
  height: min(52vw, 540px);
  background: url('/assets/pattern.png') center / contain no-repeat;
  opacity: .24;
  z-index: 0;
}
.hero-content {
  z-index: 1;
  max-width: 840px;
  text-align: left;
}
.hero-badge {
  padding: 0;
  margin-bottom: 14px;
  border: 0;
  background: transparent;
  color: var(--cyan-dk);
}
.hero-event-name {
  color: var(--ink);
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}
.hero-title {
  color: var(--ink);
  font-size: clamp(31px, 4.32vw, 59px);
  line-height: .98;
  letter-spacing: 0;
  margin: 14px 0 24px;
}
.hero-title span { color: var(--ink); }
.hero-tagline {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-style: normal;
  line-height: 1.65;
}
.hero-date-box {
  justify-content: flex-start;
  gap: 14px;
  margin: 28px 0 0;
}
.date-item {
  color: var(--muted);
  font-size: 13px;
}
.date-item svg { color: var(--cyan-dk); }
.hero-cta-group {
  justify-content: flex-start;
  margin-top: 34px;
}
.btn-primary,
.btn-secondary {
  padding: 15px 24px;
  font-size: .95rem;
}
.hero-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid rgba(48,56,91,.14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(48,56,91,.12);
}
.hero-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1.08;
}
.hero-card p:not(.card-label) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.ecosystem-video,
.video-section {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}
.ecosystem-video .section-title,
.ecosystem-video .section-subtitle,
.video-section .section-title,
.video-section .section-subtitle {
  color: var(--white);
}
.ecosystem-video .section-subtitle { color: rgba(255,255,255,.78); }
.video-shell,
.about-video-frame,
.video-wrapper {
  border-radius: 28px;
  border: 0;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}
.about-grid,
.topics-grid,
.audience-cards,
.pillars-grid,
.testimonials-grid,
.events-grid,
.page-feature-grid,
.team-grid,
.product-grid {
  gap: 20px;
}
.about-stats,
.topics-grid,
.audience-cards,
.pillars-grid,
.testimonials-grid,
.events-grid,
.page-feature-grid {
  margin-top: 42px;
}
.about-video,
.topic-card,
.audience-card,
.pillar-card,
.testimonial-card,
.event-card,
.journey-card,
.page-feature-card,
.team-card,
.speaker-card,
.sponsor-carousel,
.stat-card,
.agenda-card,
.local-map,
.form-wrapper {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: none;
}
.journey-section {
  width: 100%;
  max-width: none;
  padding-left: 6vw;
  padding-right: 6vw;
  background: var(--white);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}
.journey-card {
  min-height: 0;
  padding: 18px 22px;
  color: var(--ink);
}
.journey-card::after {
  content: '';
  right: -24px;
  width: 32px;
  height: 2px;
  background: var(--cyan);
}
.journey-icon {
  margin-bottom: 14px;
  color: var(--cyan-dk);
}
.pillars-section,
.audience-section,
.team-section,
.agenda-section,
.products {
  background: linear-gradient(180deg, #f5f5f5, #fff);
  border: 0;
}
.pillars-section > div,
.audience-section > div,
.team-inner,
.agenda-section > div {
  max-width: none;
  padding: 86px 6vw;
}
.pillar-card h3,
.testimonial-card h3,
.event-card h3,
.journey-card h3,
.page-feature-card h3,
.topic-card h3,
.audience-card h3,
.team-card h3 {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: 0;
}
.pillar-number,
.event-card span,
.testimonial-media,
.page-feature-card span,
.local-icon {
  background: rgba(0,200,243,.1);
  color: var(--cyan-dk);
  border-color: rgba(0,200,243,.22);
}
.event-card time,
.speaker-link,
.team-link,
.product-card a {
  color: var(--cyan-dk);
}
.corporate,
.page-hero,
.experience-page-hero {
  color: var(--white);
  background: var(--ink);
}
.page-hero {
  min-height: 620px;
  justify-content: flex-start;
  padding: 130px 6vw 86px;
}
.page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.9), rgba(48,56,91,.94)),
    url('/assets/pattern.png') right 8vw center / min(36vw, 430px) auto no-repeat;
}
.page-hero-content {
  margin: 0;
  text-align: left;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
.page-hero-content p:not(.section-label) {
  margin-left: 0;
  color: rgba(255,255,255,.78);
}
.experience-page-hero .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_4726.jpg') center / cover no-repeat;
}
.page-hero--comunidade .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_4862.jpg') center / cover no-repeat;
}
.page-hero--empresas .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_5917.jpg') center / cover no-repeat;
}
.page-hero--sobrePage .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_5053.jpg') center / cover no-repeat;
}
.page-hero--talks .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_4811.jpg') center / cover no-repeat;
}
.page-hero--sessions .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_4856.jpg') center / cover no-repeat;
}
.page-hero--treinamentos .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_5004.jpg') center / cover no-repeat;
}
.page-hero--mastermind .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_6165.jpg') center / cover no-repeat;
}
.page-hero--contato .page-hero-bg {
  background:
    linear-gradient(rgba(48,56,91,.82), rgba(48,56,91,.88)),
    url('/pictures/experience/2026/DSC_5598.jpg') center / cover no-repeat;
}
.contact-section .section-label,
.contact-section .form-group label {
  color: var(--ink);
}
.contact-section .form-wrapper {
  background: rgba(48,56,91,.05);
  border-color: rgba(48,56,91,.14);
}
.contact-section .form-group input,
.contact-section .form-group select {
  background: var(--white);
  border-color: rgba(48,56,91,.18);
  color: var(--ink);
}
.contact-section .form-group input::placeholder {
  color: rgba(48,56,91,.35);
}
.contact-section .form-group select option {
  background: var(--white);
  color: var(--ink);
}
.contact-section .form-group input:focus,
.contact-section .form-group select:focus {
  border-color: var(--cyan-dk);
}
.agenda-timeline::before {
  background: linear-gradient(180deg, transparent, rgba(0,200,243,.5) 10%, rgba(0,200,243,.5) 90%, transparent);
}
.agenda-dot { background: var(--paper); }
.agenda-card p,
.agenda-card .agenda-facilitators,
.unitalk-accordion summary,
.unitalk-item h5,
.local-item p,
.team-card p,
.speaker-topic,
.team-modal-bio {
  color: var(--muted);
}
.speaker-media {
  background:
    radial-gradient(circle at top, rgba(0,200,243,.24), transparent 52%),
    linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}
.speaker-role,
.team-modal-role { color: var(--muted); }
.team-modal-dialog {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.team-modal-close {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(48,56,91,.04);
}
#sobre .section-title,
#sobre .about-text strong {
  color: var(--ink);
}
#sobre .stat-desc {
  color: var(--muted);
}
.testimonials-section {
  background: var(--paper);
}
.testimonials-grid {
  align-items: stretch;
}
.testimonial-card {
  min-width: 0;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
}
.testimonial-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
}
.testimonial-media {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 7px 10px;
  border-radius: 999px;
  line-height: 1;
}
.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
}
.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonial-card-head {
  min-height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.testimonial-controls {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.testimonial-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
}
.testimonial-arrow:hover {
  color: var(--cyan-dk);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.testimonial-viewport {
  width: 100%;
  min-height: 230px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
}
.testimonial-track {
  display: flex;
  transition: transform .4s ease;
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 230px;
  margin: 0;
}
figure.testimonial-slide {
  overflow: hidden;
}
.testimonial-slide img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}
.testimonial-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
.testimonial-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.55;
}
.testimonial-quote cite {
  margin-top: 20px;
  color: var(--cyan-dk);
  font-family: var(--f-display);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.testimonial-dots {
  min-height: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(48,56,91,.22);
  cursor: pointer;
  transition: width .2s, border-radius .2s, background .2s;
}
.testimonial-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--cyan-dk);
}
@media (max-width: 768px) {
  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card-head {
    min-height: 90px;
  }

  .testimonial-viewport,
  .testimonial-slide {
    min-height: 210px;
  }

  .testimonial-slide img {
    height: 210px;
  }
}
.sponsor-carousel {
  mask-image: none;
  background: var(--white);
}
.sponsor-card {
  background: #f8f8f8;
  border-color: var(--line);
  color: var(--ink);
}
.cta-section {
  background: radial-gradient(circle at 50% 0%, rgba(0,200,243,.22), transparent 35%), #fff;
}
.cta-section h2,
.cta-section > p {
  color: var(--ink);
}
.cta-section > p { color: var(--muted); }
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
footer img {
  width: 170px;
  height: auto;
  opacity: 1;
}
.footer-text,
.footer-contact,
.footer-social {
  color: var(--muted);
}
@media (max-width: 900px) {
  nav {
    position: sticky;
    padding: 16px 24px;
  }

  .nav-logo-img { width: 158px; }
  .nav-cta { display: none; }
  .nav-hamburger span { background: var(--ink); }
  .nav-menu {
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-link::after {
    right: auto;
    bottom: 4px;
    width: 36px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }

  .hero-bg {
    width: 300px;
    height: 380px;
    opacity: .16;
  }

  .hero-title {
    font-size: clamp(29px, 9.36vw, 46px);
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-date-box,
  .hero-cta-group {
    justify-content: flex-start;
  }

  .date-item {
    width: auto;
    justify-content: flex-start;
  }

  section,
  .facilitators-section,
  .page-features,
  .interest-section,
  .pillars-section > div,
  .audience-section > div,
  .team-inner,
  .agenda-section > div {
    padding: 64px 24px;
  }

  .ecosystem-video,
  .about-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .pillars-grid,
  .testimonials-grid,
  .events-grid,
  .page-feature-grid,
  .audience-cards,
  .topics-grid,
  .team-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .journey-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .journey-card::after { display: none; }

  .page-hero {
    min-height: 520px;
    padding: 120px 24px 64px;
  }

  .page-hero-bg {
    background:
      linear-gradient(rgba(48,56,91,.9), rgba(48,56,91,.94)),
      url('/assets/pattern.png') right -80px center / 300px auto no-repeat;
  }
}
