/* ============================================================
   PG TECH 2026 — Landing de Confirmação (PRODUÇÃO)
   Estratégia: Mobile-First, Fluid, Sem Overflows
   ============================================================ */

:root {
  /* Cores principais */
  --bg-deep: #050b1f;
  --bg-base: #0a1a3a;
  --bg-card: rgba(10, 25, 60, 0.55);
  --bg-card-hover: rgba(15, 35, 80, 0.7);

  /* Azuis neon */
  --neon: #00d4ff;
  --neon-soft: #3ab5f5;
  --neon-dim: rgba(0, 212, 255, 0.35);
  --neon-glow: rgba(0, 212, 255, 0.6);

  /* Textos */
  --text-primary: #e8f4ff;
  --text-secondary: #9bb3d6;
  --text-muted: #6b7fa3;

  /* Bordas */
  --border-neon: rgba(0, 212, 255, 0.4);
  --border-soft: rgba(155, 179, 214, 0.15);

  /* Estados */
  --error: #ff5577;
  --success: #00ffa3;

  /* Tipografia */
  --font-display: 'Orbitron', 'Arial Narrow', sans-serif;
  --font-body: 'Rajdhani', system-ui, sans-serif;

  /* Sombras */
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

  /* Espaçamentos fluidos */
  --space-section: clamp(48px, 10vw, 80px);
  --space-gutter: clamp(16px, 4vw, 24px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   BACKGROUND FX
   ============================================================ */

.bg-grid,
.bg-particles,
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: -3;
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.bg-particles {
  inset: 0;
  z-index: -2;
}

#particles {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-glow {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: glow-float 18s ease-in-out infinite;
}

.bg-glow--1 {
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, #0066ff 0%, transparent 70%);
  top: -20vw;
  left: -20vw;
}

.bg-glow--2 {
  width: 70vw;
  height: 70vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  bottom: -30vw;
  right: -20vw;
  animation-delay: -9s;
}

@keyframes glow-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

/* ============================================================
   LAYOUT
   ============================================================ */

.page {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(32px, 8vw, 60px) var(--space-gutter) 32px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  text-align: center;
  padding: 8px 0 var(--space-section);
  animation: fade-in-up 0.8s ease-out backwards;
}

.hero__logo {
  display: block;
  width: clamp(180px, 45vw, 260px);
  height: auto;
  margin: 0 auto clamp(20px, 5vw, 32px);
  filter: drop-shadow(0 0 25px var(--neon-glow));
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px var(--neon-glow)); }
  50% { filter: drop-shadow(0 0 35px var(--neon-glow)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.3)); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(9px, 2.4vw, 11px);
  font-weight: 700;
  letter-spacing: clamp(1.5px, 0.6vw, 3px);
  color: var(--neon);
  margin-bottom: clamp(20px, 5vw, 28px);
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
  animation: fade-in-up 0.8s ease-out 0.2s backwards;
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(14px, 3vw, 20px);
  animation: fade-in-up 0.8s ease-out 0.3s backwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__title-accent {
  background: linear-gradient(180deg, #ffffff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto clamp(28px, 6vw, 40px);
  font-weight: 400;
  animation: fade-in-up 0.8s ease-out 0.4s backwards;
  padding: 0 4px;
}

.hero__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  animation: fade-in-up 0.8s ease-out 0.5s backwards;
}

@media (min-width: 640px) {
  .hero__info {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 0;
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.08) 100%);
  pointer-events: none;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.info-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--neon);
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.info-card > div {
  min-width: 0;
  flex: 1;
}

.info-card__label {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  word-wrap: break-word;
}

.info-card__sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 2px;
  font-weight: 400;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 20px);
  margin-bottom: clamp(24px, 5vw, 36px);
  padding: 0 8px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.4vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.4vw, 3px);
  color: var(--text-primary);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-shrink: 1;
  min-width: 0;
}

.section-title__line {
  flex: 1;
  max-width: 100px;
  min-width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  position: relative;
  flex-shrink: 1;
}

.section-title__line::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon);
}

.section-title__line:first-child::after {
  right: auto;
  left: 0;
}

/* ============================================================
   VIDEO SECTION (vertical 9:16)
   ============================================================ */

.video-section {
  margin-bottom: var(--space-section);
}

.video-section__lead {
  text-align: center;
  color: var(--text-secondary);
  margin: -8px auto clamp(20px, 5vw, 32px);
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  max-width: 560px;
  padding: 0 8px;
}

.video-frame {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  padding: clamp(10px, 2.5vw, 14px);
  box-shadow:
    0 0 50px rgba(0, 212, 255, 0.15),
    inset 0 0 30px rgba(0, 212, 255, 0.05);
  overflow: hidden;
}

.video-frame--vertical {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(0, 212, 255, 0.08) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: scan-light 6s linear infinite;
  pointer-events: none;
}

@keyframes scan-light {
  0% { background-position: -100% -100%; }
  100% { background-position: 100% 100%; }
}

.video-frame__corner {
  position: absolute;
  width: clamp(20px, 5vw, 28px);
  height: clamp(20px, 5vw, 28px);
  border: 2px solid var(--neon);
  z-index: 2;
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.video-frame__corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.video-frame__corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.video-frame__corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.video-frame__corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.video-frame__circuit {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  z-index: 2;
}

.video-frame__circuit--top { top: 0; left: 50%; transform: translateX(-50%); width: 60%; }
.video-frame__circuit--bottom { bottom: 0; left: 50%; transform: translateX(-50%); width: 60%; }

.video-frame__hud {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(7px, 2vw, 9px);
  letter-spacing: clamp(1px, 0.4vw, 2px);
  color: var(--neon);
  background: rgba(0, 10, 30, 0.8);
  padding: 3px 8px;
  border: 1px solid var(--border-neon);
  z-index: 3;
  font-weight: 700;
  text-shadow: 0 0 4px var(--neon-glow);
}

.video-frame__hud--rec {
  top: clamp(16px, 4vw, 22px);
  left: clamp(16px, 4vw, 22px);
  animation: blink 2s ease-in-out infinite;
}

.video-frame__hud--id {
  top: clamp(16px, 4vw, 22px);
  right: clamp(16px, 4vw, 22px);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.video-frame__wrap {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-frame--vertical .video-frame__wrap {
  aspect-ratio: 9 / 16;
}

.video-frame__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

/* ============================================================
   MAPA HI-TECH
   ============================================================ */

.map-section {
  margin-bottom: var(--space-section);
}

.map-section__lead {
  text-align: center;
  color: var(--text-secondary);
  margin: -8px auto clamp(20px, 5vw, 32px);
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  max-width: 560px;
  padding: 0 8px;
}

.map-section__lead strong {
  color: var(--text-primary);
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: #050b1f;
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(0, 212, 255, 0.18),
    inset 0 0 40px rgba(0, 212, 255, 0.06);
}

@media (min-width: 640px) {
  .map-frame {
    aspect-ratio: 16 / 10;
  }
}

.map-frame__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter:
    invert(0.92)
    hue-rotate(180deg)
    saturate(0.6)
    brightness(0.95)
    contrast(1.1);
}

.map-frame__corner {
  position: absolute;
  width: clamp(22px, 5vw, 32px);
  height: clamp(22px, 5vw, 32px);
  border: 2px solid var(--neon);
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}

.map-frame__corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.map-frame__corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.map-frame__corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.map-frame__corner--br { bottom: 0; right: 0; border-left: none; border-top: none; }

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 30%, rgba(5, 15, 35, 0.35) 100%);
  background-size: 30px 30px, 30px 30px, 100% 100%;
  mix-blend-mode: screen;
}

.map-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.7), transparent);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 10px var(--neon-glow);
  animation: scanline-move 4s linear infinite;
}

@keyframes scanline-move {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(520px); opacity: 0; }
}

.map-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 30vw, 180px);
  height: clamp(120px, 30vw, 180px);
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  color: var(--neon);
  filter: drop-shadow(0 0 8px var(--neon-glow));
  animation: reticle-drift 6s ease-in-out infinite;
}

@keyframes reticle-drift {
  0%, 100% { transform: translate(-50%, -50%); }
  25% { transform: translate(calc(-50% + 8px), calc(-50% - 5px)); }
  50% { transform: translate(calc(-50% - 5px), calc(-50% + 8px)); }
  75% { transform: translate(calc(-50% + 4px), calc(-50% + 4px)); }
}

.map-reticle__outer,
.map-reticle__cross {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-reticle__outer { animation: reticle-rotate 12s linear infinite; }

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

.map-reticle__cross { animation: reticle-pulse 2s ease-in-out infinite; }

@keyframes reticle-pulse {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 0.65; }
}

.map-reticle__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid var(--neon);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2.5s ease-out infinite;
  opacity: 0;
}

.map-reticle__pulse--delay { animation-delay: 1.25s; }

@keyframes pulse-ring {
  0% { width: 30px; height: 30px; opacity: 0.8; border-width: 2px; }
  100% { width: 200px; height: 200px; opacity: 0; border-width: 0.5px; }
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: clamp(18px, 4vw, 24px) auto 0;
  padding: 12px 22px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  color: var(--neon);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 16px);
  text-align: center;
}

.map-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.map-link:hover {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 20px var(--neon-glow);
  transform: translateX(-50%) translateY(-2px);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  margin-bottom: var(--space-section);
  text-align: center;
}

.about__text {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto clamp(20px, 5vw, 28px);
  line-height: 1.7;
}

.about__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about__event-date {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: clamp(14px, 3.5vw, 18px) clamp(18px, 4vw, 24px);
  margin: 12px auto clamp(24px, 5vw, 28px);
  text-align: left;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
  max-width: calc(100% - 16px);
}

.about__event-date-icon {
  width: clamp(36px, 8vw, 40px);
  height: clamp(36px, 8vw, 40px);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__event-date-icon svg {
  width: 22px;
  height: 22px;
  color: var(--neon);
  filter: drop-shadow(0 0 4px var(--neon-glow));
}

.about__event-date > div { min-width: 0; }

.about__event-label {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-soft);
  font-weight: 700;
  margin-bottom: 3px;
}

.about__event-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  word-wrap: break-word;
}

.about__event-place {
  display: block;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: var(--text-muted);
  margin-top: 2px;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 auto;
  max-width: 700px;
}

.about__pills li {
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  font-size: clamp(0.78rem, 2.2vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--neon-soft);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.about__pills li:hover {
  background: rgba(0, 212, 255, 0.15);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================================
   FORMULÁRIO
   ============================================================ */

.form-section {
  margin-bottom: clamp(40px, 8vw, 60px);
  position: relative;
}

.form-section__lead {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: clamp(28px, 6vw, 40px);
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  padding: 0 8px;
}

.form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: clamp(24px, 6vw, 40px) clamp(18px, 5vw, 36px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  box-shadow: var(--shadow-card), 0 0 60px rgba(0, 212, 255, 0.1);
}

.form::before,
.form::after {
  content: '';
  position: absolute;
  width: clamp(18px, 4vw, 24px);
  height: clamp(18px, 4vw, 24px);
  border: 2px solid var(--neon);
  filter: drop-shadow(0 0 4px var(--neon-glow));
}

.form::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 16px;
}

.form::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 16px;
}

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

@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.field {
  margin-bottom: 18px;
  position: relative;
  min-width: 0;
}

.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-soft);
  margin-bottom: 7px;
}

.field__input {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(5, 15, 35, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0 12px;
  transition: all 0.3s ease;
}

.field__input svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.field__input input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.field__input input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.field__input:focus-within {
  border-color: var(--neon);
  background: rgba(5, 15, 35, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.field__input:focus-within svg { color: var(--neon); }

.field.field--error .field__input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 85, 119, 0.15);
}

.field.field--error .field__input svg { color: var(--error); }

.field__error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 5px;
  min-height: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.field.field--error .field__error {
  opacity: 1;
  transform: translateY(0);
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: clamp(15px, 3.5vw, 18px) 22px;
  background: linear-gradient(135deg, #00aaff 0%, #00d4ff 100%);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: clamp(11px, 2.8vw, 14px);
  font-weight: 700;
  letter-spacing: clamp(1.5px, 0.5vw, 3px);
  color: #001428;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 4px 20px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-submit:hover::before { left: 100%; }

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(0, 212, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-submit:active:not(:disabled) { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-submit__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-submit:hover:not(:disabled) .btn-submit__arrow { transform: translateX(4px); }

.btn-submit__spinner {
  width: 20px;
  height: 20px;
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn-submit__spinner circle {
  stroke-dasharray: 80, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}

.btn-submit.is-loading .btn-submit__text,
.btn-submit.is-loading .btn-submit__arrow { display: none; }

.btn-submit.is-loading .btn-submit__spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash {
  0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 200; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 200; stroke-dashoffset: -124; }
}

.form__privacy {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  padding: 0 4px;
}

/* ============================================================
   TELA DE SUCESSO
   ============================================================ */

.success {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--success);
  border-radius: 16px;
  padding: clamp(32px, 7vw, 50px) clamp(20px, 5vw, 36px);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0, 255, 163, 0.2);
  animation: fade-in-up 0.6s ease-out;
}

.success__icon {
  width: clamp(64px, 16vw, 80px);
  height: clamp(64px, 16vw, 80px);
  margin: 0 auto clamp(16px, 4vw, 24px);
  color: var(--success);
  filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.6));
}

.success__icon svg { width: 100%; height: 100%; }

.success__circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw-circle 0.6s ease-out forwards;
}

.success__check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw-check 0.4s ease-out 0.4s forwards;
}

@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.success h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: clamp(1px, 0.4vw, 2px);
  margin-bottom: 14px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, var(--success) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  word-wrap: break-word;
}

.success p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: clamp(0.9rem, 2.4vw, 1rem);
}

.success__date {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  color: var(--text-primary);
  background: rgba(0, 255, 163, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.3);
  border-radius: 10px;
  padding: 14px;
  margin-top: 18px !important;
  line-height: 1.8;
  letter-spacing: 0.4px;
}

.success__date strong {
  color: var(--success);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 1.2px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  text-align: center;
  padding: clamp(28px, 6vw, 40px) clamp(16px, 4vw, 20px) 20px;
  border-top: 1px solid var(--border-soft);
  margin-top: clamp(28px, 6vw, 40px);
}

.footer__realization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 5vw, 32px);
}

.footer__realization-label {
  font-family: var(--font-display);
  font-size: clamp(9px, 2.4vw, 11px);
  font-weight: 700;
  letter-spacing: clamp(2.5px, 0.8vw, 4px);
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0 22px;
}

.footer__realization-label::before,
.footer__realization-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
}

.footer__realization-label::before {
  right: 100%;
  background: linear-gradient(270deg, var(--border-neon), transparent);
}

.footer__realization-label::after {
  left: 100%;
  background: linear-gradient(90deg, var(--border-neon), transparent);
}

.footer__realization-logo {
  max-height: clamp(56px, 14vw, 80px);
  max-width: min(260px, 80%);
  width: auto;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.2));
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}

.footer__divider {
  width: 80%;
  max-width: 400px;
  height: 1px;
  margin: 0 auto clamp(24px, 5vw, 32px);
  background: linear-gradient(90deg, transparent, var(--border-neon), transparent);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.footer__brand span {
  color: var(--neon);
  text-shadow: 0 0 15px var(--neon-glow);
}

.footer__tag {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: clamp(18px, 4vw, 24px);
  font-size: clamp(0.85rem, 2.4vw, 1rem);
}

.footer__whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 100px;
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: clamp(0.85rem, 2.4vw, 1rem);
  transition: all 0.3s ease;
  margin-bottom: 18px;
}

.footer__whats svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__whats:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.footer__copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  padding: 0 8px;
}

/* ============================================================
   ANIMAÇÕES UTILITÁRIAS
   ============================================================ */

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ACESSIBILIDADE
   ============================================================ */

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

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}
/* ============================================================
   PG TECH 2026 — SITE OFICIAL (extensões sobre a base do coquetel)
   ============================================================ */

:root {
  /* Acentos secundários vindos do logo (digital) */
  --accent-green: #00ffa3;
  --accent-yellow: #ffe14d;
  --accent-blue: #2f7cff;
  --nav-h: 72px;
  --container: 1200px;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 11, 31, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(5, 11, 31, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--border-neon);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--neon-dim));
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  transition: right 0.3s ease;
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--neon); }
.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }

.nav__cta {
  display: none;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #001428;
  background: linear-gradient(135deg, #00aaff, #00d4ff);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 212, 255, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0, 212, 255, 0.55); }

.nav__burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-neon);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer mobile */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5, 11, 31, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-neon);
  padding: 18px var(--space-gutter) 26px;
  display: none;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.nav__drawer.is-open { display: block; animation: fade-in-up 0.3s ease; }

.nav__drawer ul { list-style: none; }

.nav__drawer a {
  display: block;
  padding: 13px 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav__drawer a:hover,
.nav__drawer a.is-active { color: var(--neon); padding-left: 12px; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
  .nav__burger, .nav__drawer { display: none !important; }
}

/* ============================================================
   LAYOUT GERAL
   ============================================================ */

.site {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--space-gutter);
  padding-right: var(--space-gutter);
}

.section { padding: var(--space-section) 0; position: relative; }

.section__lead {
  text-align: center;
  color: var(--text-secondary);
  max-width: 720px;
  margin: -10px auto clamp(28px, 6vw, 44px);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
}

/* ============================================================
   HERO HOME
   ============================================================ */

.hero-home {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(40px, 8vw, 80px) var(--space-gutter);
}

#hero3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.85;
}

.hero-home__content { position: relative; z-index: 2; max-width: 900px; }

.hero-home__logo {
  width: clamp(200px, 38vw, 340px);
  margin: 0 auto clamp(16px, 4vw, 28px);
  filter: drop-shadow(0 0 30px var(--neon-glow));
  animation: logo-pulse 4s ease-in-out infinite;
}

.hero-home__tag {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: clamp(2px, 1vw, 6px);
  text-transform: uppercase;
  margin-bottom: clamp(16px, 3.5vw, 24px);
  background: linear-gradient(180deg, #ffffff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home__desc {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 2.5vw, 1.18rem);
  max-width: 760px;
  margin: 0 auto clamp(26px, 5vw, 36px);
  line-height: 1.7;
}

.hero-home__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(26px, 5vw, 38px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--neon);
  box-shadow: inset 0 0 18px rgba(0, 212, 255, 0.08);
}

.chip svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Botões */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(14px, 3vw, 17px) clamp(22px, 5vw, 34px);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: clamp(11px, 2.6vw, 13px);
  font-weight: 700;
  letter-spacing: clamp(1.5px, 0.5vw, 2.5px);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, #00aaff 0%, #00d4ff 100%);
  color: #001428;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::before { left: 100%; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6); }

.btn--ghost {
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border-neon);
  color: var(--neon);
}

.btn--ghost:hover {
  background: rgba(0, 212, 255, 0.16);
  box-shadow: 0 0 24px var(--neon-dim);
  transform: translateY(-2px);
}

.btn--green {
  background: linear-gradient(135deg, #00cc7a 0%, #00ffa3 100%);
  color: #00140c;
  box-shadow: 0 4px 20px rgba(0, 255, 163, 0.35);
}

.btn--green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 255, 163, 0.5); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Scroll hint */
.hero-home__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--neon);
  opacity: 0.7;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-home__scroll svg { width: 26px; height: 26px; }

@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============================================================
   COUNTDOWN
   ============================================================ */

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2.6vw, 20px);
  flex-wrap: wrap;
}

.countdown__item {
  min-width: clamp(70px, 18vw, 110px);
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: clamp(14px, 3vw, 22px) clamp(10px, 2vw, 16px);
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}

.countdown__item::before,
.countdown__item::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 2px solid var(--neon);
}

.countdown__item::before { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.countdown__item::after { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }

.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-glow);
  line-height: 1.1;
}

.countdown__label {
  display: block;
  font-size: clamp(9px, 2vw, 11px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 820px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: clamp(18px, 4vw, 30px) clamp(14px, 3vw, 24px);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.08) 100%);
  pointer-events: none;
}

.stat:hover { transform: translateY(-5px); border-color: var(--neon); box-shadow: 0 12px 36px rgba(0, 212, 255, 0.18); }

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.6vw, 2.3rem);
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
  margin-bottom: 6px;
}

.stat__txt {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

/* ============================================================
   CARDS (eixos, espaços, públicos…)
   ============================================================ */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: clamp(20px, 4vw, 28px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform-style: preserve-3d;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.07) 100%);
  pointer-events: none;
}

.card:hover {
  border-color: var(--neon);
  box-shadow: 0 14px 44px rgba(0, 212, 255, 0.2);
}

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

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--neon);
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-dim);
}

.card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.35;
}

.card p {
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-top: auto;
  padding-top: 6px;
}

.card__tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--neon-soft);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.card__more {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card__more svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.card:hover .card__more svg { transform: translateX(4px); }

.card--soon::after {
  content: 'PROGRAMAÇÃO EM BREVE';
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-yellow);
  border: 1px solid rgba(255, 225, 77, 0.4);
  background: rgba(255, 225, 77, 0.07);
  padding: 4px 9px;
  border-radius: 100px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  position: relative;
  border: 1px solid var(--border-neon);
  border-radius: 18px;
  padding: clamp(32px, 7vw, 60px) clamp(20px, 5vw, 50px);
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 255, 163, 0.08), transparent 55%),
    var(--bg-card);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.12);
}

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  width: clamp(20px, 4vw, 28px);
  height: clamp(20px, 4vw, 28px);
  border: 2px solid var(--neon);
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.cta-band::before { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 18px; }
.cta-band::after { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 18px; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band p {
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto clamp(22px, 5vw, 30px);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.7;
}

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */

.page-hero {
  text-align: center;
  padding: clamp(48px, 9vw, 90px) 0 clamp(30px, 6vw, 50px);
  position: relative;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(9px, 2.4vw, 11px);
  font-weight: 700;
  letter-spacing: clamp(1.5px, 0.6vw, 3px);
  color: var(--neon);
  margin-bottom: clamp(18px, 4vw, 26px);
}

.page-hero__badge .hero__badge-dot,
.page-hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(12px, 3vw, 18px);
}

.page-hero h1 .accent {
  background: linear-gradient(180deg, #ffffff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

/* ============================================================
   BLOCOS DE TEXTO INSTITUCIONAL
   ============================================================ */

.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 2.4vw, 1.1rem);
  line-height: 1.8;
  text-align: center;
}

.prose strong { color: var(--text-primary); font-weight: 600; }
.prose + .prose { margin-top: 18px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item.is-open { border-color: var(--neon); box-shadow: 0 0 30px rgba(0, 212, 255, 0.12); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3px;
}

.faq__q svg {
  width: 18px; height: 18px;
  color: var(--neon);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__q svg { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__a p {
  padding: 0 18px 16px;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  line-height: 1.7;
}

/* ============================================================
   FORM EXTRAS (select, textarea)
   ============================================================ */

.field__input select,
.field__input textarea {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.field__input select { appearance: none; cursor: pointer; }
.field__input select option { background: var(--bg-base); color: var(--text-primary); }
.field__input textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field__input--area { align-items: flex-start; }
.field__input--area svg { margin-top: 14px; }

/* ============================================================
   TIMELINE (PG Challenge)
   ============================================================ */

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon), rgba(0, 212, 255, 0.08));
}

.timeline__item { position: relative; padding: 0 0 26px 14px; }
.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--neon);
  box-shadow: 0 0 14px var(--neon-glow);
}

.timeline__item h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline__item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   FOOTER MEGA
   ============================================================ */

.footer-mega {
  border-top: 1px solid var(--border-soft);
  margin-top: var(--space-section);
  padding: clamp(36px, 7vw, 60px) 0 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 20, 50, 0.35));
}

.footer-mega__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: clamp(28px, 6vw, 40px);
}

@media (min-width: 820px) {
  .footer-mega__top { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-mega__brand img {
  width: 160px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 16px var(--neon-dim));
}

.footer-mega__brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-mega h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
}

.footer-mega ul { list-style: none; }

.footer-mega ul a {
  display: inline-block;
  padding: 5px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-mega ul a:hover { color: var(--neon); padding-left: 6px; }

.footer-mega__bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-mega__realization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   HERO V2 — Cenário 3D + UI minimalista HUD
   ============================================================ */

.hero-v2 {
  background: radial-gradient(ellipse at 50% 120%, rgba(0, 60, 120, 0.25), transparent 60%), #020610;
  border-bottom: 1px solid var(--border-soft);
}

.hero-v2 #hero3d { opacity: 1; }

.hero-v2 #hero3d canvas { display: block; width: 100%; height: 100%; }

.hero-v2 .hero-home__content { pointer-events: none; }
.hero-v2 .hero-home__content a { pointer-events: auto; }

.hero-v2 .hero-home__logo {
  width: clamp(170px, 30vw, 270px);
  margin-bottom: clamp(14px, 3vw, 22px);
}

.hero-v2__line {
  font-family: var(--font-display);
  font-size: clamp(10px, 2.4vw, 13px);
  font-weight: 500;
  letter-spacing: clamp(3px, 1vw, 7px);
  color: var(--text-secondary);
  margin-bottom: clamp(14px, 3vw, 20px);
  white-space: nowrap;
}

.hero-v2__line span { color: var(--neon); margin: 0 4px; }

.hero-v2 .hero-home__tag {
  font-size: clamp(1.3rem, 5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: clamp(1px, 0.5vw, 3px);
}

.hero-v2__desc {
  max-width: 560px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.btn--thin {
  background: transparent;
  border-width: 1px;
  font-weight: 500;
  letter-spacing: 3px;
}

/* HUD — cantos */
.hud-corner {
  position: absolute;
  width: clamp(18px, 3.5vw, 30px);
  height: clamp(18px, 3.5vw, 30px);
  border: 1px solid rgba(0, 212, 255, 0.55);
  z-index: 3;
  pointer-events: none;
}

.hud-corner--tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.hud-corner--tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.hud-corner--bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.hud-corner--br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

/* HUD — labels */
.hud-label {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: clamp(7px, 1.6vw, 9px);
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(0, 212, 255, 0.55);
  white-space: nowrap;
}

.hud-label--tl { top: 26px; left: clamp(44px, 7vw, 62px); }
.hud-label--tr { top: 26px; right: clamp(44px, 7vw, 62px); display: inline-flex; align-items: center; gap: 6px; }
.hud-label--bl { bottom: 26px; left: clamp(44px, 7vw, 62px); }
.hud-label--br { bottom: 26px; right: clamp(44px, 7vw, 62px); }

.hud-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@media (max-width: 640px) {
  .hud-label--bl, .hud-label--br { display: none; }
  .hud-corner--bl, .hud-corner--br { bottom: 64px; }
}

/* Scroll indicator vertical minimalista */
.hero-v2__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(0, 212, 255, 0.6);
  animation: none;
}

.hero-v2__scroll-line {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--neon));
  position: relative;
  overflow: hidden;
}

.hero-v2__scroll-line::after {
  content: '';
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: #fff;
  animation: scroll-drip 2s ease-in-out infinite;
}

@keyframes scroll-drip {
  0% { top: -40%; }
  100% { top: 110%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__scroll-line::after { animation: none; }
}

/* ============================================================
   STATS BARE — números sem box (A força do evento)
   ============================================================ */

.stats--bare { gap: 0; }

.stats--bare .stat {
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: clamp(18px, 4vw, 30px) clamp(12px, 2.5vw, 20px);
  position: relative;
}

.stats--bare .stat::before { display: none; }

.stats--bare .stat:hover {
  transform: none;
  border: none;
  box-shadow: none;
}

.stats--bare .stat:hover .stat__num {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* linha fina embaixo de cada número */
.stats--bare .stat::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-dim), transparent);
}

/* ============================================================
   GRID BARE — cards sem box (Para quem é o PG Tech)
   ============================================================ */

.grid--bare .card {
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-align: center;
  align-items: center;
}

.grid--bare .card::before { display: none; }

.grid--bare .card:hover {
  border: none;
  box-shadow: none;
}

.grid--bare .card:hover .card__icon {
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}

/* ============================================================
   VIDEO FRAME WIDE — embed YouTube 16:9 (O que é o PG Tech)
   ============================================================ */

.video-frame--wide {
  width: 100%;
  max-width: 860px;
  margin: clamp(28px, 6vw, 40px) auto 0;
}

.video-frame--wide .video-frame__wrap {
  aspect-ratio: 16 / 9;
}

.video-frame--wide .video-frame__video {
  border: none;
}

/* ============================================================
   MEDIA GRID — PG Tech na Mídia (2 players lado a lado)
   ============================================================ */

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .media-grid { grid-template-columns: 1fr 1fr; }
}

.video-frame--media .video-frame__wrap {
  aspect-ratio: 16 / 9;
}

.video-frame--media .video-frame__video {
  border: none;
}

/* ============================================================
   REVISÃO MOBILE — produção
   ============================================================ */

/* — Telas até 640px — */
@media (max-width: 640px) {

  /* navbar mais compacta = mais área útil */
  :root { --nav-h: 60px; }
  .nav__logo img { height: 36px; }

  /* hero: linha de data quebra em vez de cortar */
  .hero-v2__line {
    white-space: normal;
    line-height: 2;
    letter-spacing: 2.5px;
    padding: 0 10px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* respiro para o indicador de scroll não cobrir os botões */
  .hero-home { padding-bottom: 96px; }
  .hero-v2__scroll { bottom: 18px; }

  /* countdown: 4 itens sempre cabem na largura */
  .countdown { gap: 8px; flex-wrap: nowrap; }
  .countdown__item {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 4px;
  }
  .countdown__num { font-size: clamp(1.25rem, 7.5vw, 1.9rem); }
  .countdown__label { font-size: 8px; letter-spacing: 1.5px; }

  /* pills e tags: quebra de linha liberada (era a principal causa de corte) */
  .about__pills li,
  .card__tags li {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  /* grades de 4 colunas viram 2 (eixos, perfis) em vez de coluna única gigante */
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid--4 .card { padding: 16px 10px; gap: 8px; }
  .grid--4 .card h3 { font-size: 0.78rem; letter-spacing: 0.5px; }
  .grid--4 .card p { font-size: 0.8rem; }
  .grid--4 .card__icon { width: 38px; height: 38px; border-radius: 10px; }
  .grid--4 .card__icon svg { width: 20px; height: 20px; }
  .grid--4 .card__more { font-size: 8.5px; letter-spacing: 1.2px; }

  /* botões: texto longo quebra com elegância, nunca corta */
  .btn,
  .btn-submit {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
  .btn-submit { letter-spacing: 1.5px; }

  /* stats sem box: tipografia mais justa */
  .stats--bare .stat { padding: 14px 8px 22px; }

  /* seções com respiro menor = menos rolagem */
  .section { padding: clamp(36px, 9vw, 52px) 0; }

  /* rodapé centralizado no mobile */
  .footer-mega__top { gap: 26px; text-align: center; }
  .footer-mega__brand { display: flex; flex-direction: column; align-items: center; }
  .footer-mega__brand p { max-width: 320px; }

  /* selo "programação em breve" não invade o texto */
  .card--soon { padding-bottom: 48px !important; }
  .card--soon::after { bottom: 12px; right: 50%; transform: translateX(50%); }
}

/* — Telas muito estreitas (≤360px) — */
@media (max-width: 360px) {
  .hero-v2__line { font-size: 9px; letter-spacing: 2px; }
  .hero-home__desc { font-size: 0.9rem; }
  .countdown__num { font-size: 1.15rem; }
  .grid--4 { gap: 8px; }
  .page-hero h1 { font-size: 1.4rem; }
  .section-title h2 { font-size: 0.9rem; letter-spacing: 1px; }
}

/* — Telas baixas (landscape mobile / notebooks pequenos) — */
@media (max-height: 640px) {
  .hero-v2__scroll { display: none; }
  .hero-home { min-height: auto; padding-top: clamp(48px, 10vh, 80px); padding-bottom: clamp(48px, 10vh, 80px); }
}

/* — Tablets (641–1023px): grades intermediárias — */
@media (min-width: 641px) and (max-width: 1023px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-mega__top { grid-template-columns: 1fr 1fr; }
}

/* — Garantia global contra corte horizontal — */
.section, .container, .card, .cta-band, .form, .page-hero { min-width: 0; }
.card h3, .card p, .stat__num, .stat__txt, .page-hero h1, .cta-band h2 {
  overflow-wrap: break-word;
}
