@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,300;1,400;1,700;1,800&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');


/* ============================================================
   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.8rem, 5vw, 4.0rem);
  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(.95rem, 1.9vw, 1.15rem);
  color: rgba(255,255,255,.6); line-height: 1.65;
  margin-bottom: 48px; 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); }
/* ── 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.8rem, 4vw, 3rem); line-height: 1.18; margin-bottom: 18px;
}
.section-subtitle {
  font-family: var(--f-body); font-weight: 300;
  font-size: 1.05rem; 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; }
/* ── TÓPICOS ───────────────────────────────────────────── */
.topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 60px; }
.topic-card {
  background: linear-gradient(135deg, rgba(0,191,255,.07) 0%, rgba(20,32,68,.5) 100%);
  border: 1px solid rgba(0,191,255,.17); border-radius: 20px;
  padding: 40px 34px; position: relative; overflow: hidden; transition: all .3s;
}
.topic-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .3s;
}
.topic-card:hover { border-color: rgba(0,191,255,.42); transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0,0,0,.3); }
.topic-card:hover::before { opacity: 1; }
.topic-number { font-family: var(--f-display); font-weight: 900; font-size: 3.2rem; color: rgba(0,191,255,.1); line-height: 1; margin-bottom: 14px; }
.topic-icon { font-size: 1.9rem; margin-bottom: 14px; }
.topic-card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; line-height: 1.3; margin-bottom: 10px; }
.topic-card p { font-family: var(--f-body); font-weight: 300; font-size: .87rem; color: rgba(255,255,255,.54); line-height: 1.65; }
/* ── 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); }
/* ── FACILITADORES ────────────────────────────────────── */
.facilitators-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.facilitators-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.facilitators-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,191,255,.24);
  background: rgba(0,191,255,.08);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s, border-color .2s, background .2s;
}
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0,191,255,.48);
  background: rgba(0,191,255,.16);
}
.facilitator-carousel {
  margin-top: 48px;
  overflow: hidden;
}
.facilitator-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.facilitator-track::-webkit-scrollbar { display: none; }
.speaker-card {
  scroll-snap-align: start;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,191,255,.16);
  background: linear-gradient(180deg, rgba(0,191,255,.08) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.speaker-media {
  aspect-ratio: 4 / 4.6;
  background:
    radial-gradient(circle at top, rgba(0,191,255,.28), transparent 52%),
    linear-gradient(180deg, rgba(20,32,68,.55) 0%, rgba(13,22,48,.95) 100%);
}
.speaker-photo,
.team-photo,
.speaker-avatar,
.facilitator-modal-photo,
.team-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--white);
}
.speaker-copy {
  padding: 24px 22px 22px;
}
.speaker-role {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.speaker-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.speaker-topic {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,.66);
  min-height: 78px;
}
.speaker-link {
  margin-top: 18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.speaker-link:hover { color: var(--cyan-lt); }
.facilitator-modal-avatar {
  overflow: hidden;
}
/* ── 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-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; }
/* ── PATROCINADORES ───────────────────────────────────── */
.sponsor-carousel {
  margin-top: 56px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0,191,255,.14);
  background: linear-gradient(180deg, rgba(0,191,255,.06) 0%, rgba(255,255,255,.02) 100%);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.sponsor-track {
  display: flex; gap: 18px; width: max-content;
  padding: 26px 18px;
  animation: sponsor-scroll 26s linear infinite;
}
.sponsor-card {
  min-width: 220px;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(13,22,48,.72);
  text-align: center;
}
.sponsor-tier {
  display: block;
  font-family: var(--f-display); font-size: .66rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.sponsor-card strong {
  font-family: var(--f-display); font-size: 1.1rem; font-weight: 800;
}
/* ── 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); }
/* ── 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%; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .nav-link { font-size: .74rem; padding: 7px 10px; }
}
@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; }
}
@media (min-width: 769px) and (max-width: 1040px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
