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

:root {
  --blue: #00A8FF;
  --bg: #0D0F12;
  --bg-2: #090b0e;
  --text: #FFFFFF;
  --muted: rgba(255,255,255,0.76);
  --muted-2: rgba(255,255,255,0.56);
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(0,168,255,0.16), transparent 24%),
    linear-gradient(180deg, #07090c 0%, #0d0f12 100%);
  transition: opacity .75s ease, visibility .75s ease;
}
.entry-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.entry-core,
.entry-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.entry-core {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,168,255,0.26), transparent 68%);
  filter: blur(18px);
  animation: pulseCore 2.1s ease-in-out infinite;
}
.entry-ring-1 {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0,168,255,0.16);
  animation: spinSlow 6s linear infinite;
}
.entry-ring-2 {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.05);
  animation: spinSlowReverse 9s linear infinite;
}

.entry-card {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 0 24px;
  text-align: center;
}
.entry-logo-image {
  width: min(100%, 620px);
  display: block;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 26px rgba(0,168,255,0.16));
}
.enter-button {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #081018;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow:
    0 18px 44px rgba(0,168,255,0.26),
    0 0 24px rgba(0,168,255,0.14);
  transition: transform .22s ease, box-shadow .22s ease;
}
.enter-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(0,168,255,0.34),
    0 0 28px rgba(0,168,255,0.18);
}
.entry-note {
  margin-top: 16px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  letter-spacing: 0.03em;
}

@keyframes pulseCore {
  0%, 100% { transform: scale(0.94); opacity: 0.72; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinSlowReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,168,255,0.10), transparent 40%),
    linear-gradient(180deg, #05070a 0%, #0d0f12 100%);
}

.bg-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 84%);
  opacity: 0.8;
}
.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.7;
}
.ambient-1 { width: 360px; height: 360px; left: -90px; top: 8%; background: rgba(0,168,255,0.14); }
.ambient-2 { width: 320px; height: 320px; right: -80px; bottom: 12%; background: rgba(0,168,255,0.10); }
.ambient-3 { width: 280px; height: 280px; left: 50%; top: 22%; transform: translateX(-50%); background: rgba(255,255,255,0.04); }
.vignette { position: absolute; inset: 0; box-shadow: inset 0 0 240px rgba(0,0,0,0.62); }

.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 36px 20px 18px;
}
.hero-shell {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: center;
}
.video-panel,
.content-panel {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17,20,24,0.74), rgba(10,12,15,0.66));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.42),
    0 0 0 1px rgba(0,168,255,0.05),
    0 0 54px rgba(0,168,255,0.11);
}
.video-panel {
  position: relative;
  padding: 14px;
  overflow: hidden;
}
.panel-glow {
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle, rgba(0,168,255,0.14), transparent 60%);
  pointer-events: none;
}
.video-frame {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 0 40px rgba(0,168,255,0.12),
    0 0 80px rgba(0,168,255,0.08);
}
.brand-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050608;
  transform: scale(1.02);
  transition: transform 2s ease;
}
.content-panel {
  padding: 36px 32px;
}
.micro-topline {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.24em;
  font-size: 14px;
  color: rgba(255,255,255,0.90);
  margin-bottom: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}
.headline {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
}
.actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--blue);
  color: #081018;
  box-shadow: 0 14px 34px rgba(0,168,255,0.26);
}
.btn-primary:hover {
  box-shadow:
    0 20px 50px rgba(0,168,255,0.35),
    0 0 30px rgba(0,168,255,0.25);
}
.micro-copy {
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bottom-note {
  position: relative;
  z-index: 2;
  padding: 0 20px 26px;
}
.bottom-card {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.note-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(14,17,21,0.56);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.20);
}
.note-item strong { display: block; margin-bottom: 6px; font-size: 14px; }
.note-item span { color: var(--muted-2); font-size: 14px; line-height: 1.5; }

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}
body.is-ready .reveal-up {
  opacity: 1;
  transform: translateY(0);
}
body.is-ready .delay-1 { transition-delay: .05s; }
body.is-ready .delay-2 { transition-delay: .18s; }
body.is-ready .delay-3 { transition-delay: .32s; }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .content-panel { padding: 28px 22px; }
  .entry-logo-image { width: min(100%, 520px); }
}
@media (max-width: 820px) {
  .bottom-card { grid-template-columns: 1fr; }
}


/* ===== ENTRADA NOVA (DIREITA) ===== */
.entry-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6vw, 80px);
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 0 28px rgba(0,168,255,0.10);
}

.entry-sub {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
}

.entry-line {
  width: 220px;
  height: 2px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #00A8FF, transparent);
  opacity: 0.5;
}

.entry-card {
  width: min(100%, 760px);
  padding: 0 24px;
  text-align: center;
}


/* ===== PARTICULAS SUTIS ===== */
#particles{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}

/* Mantem o fundo visualmente vivo sem mudar layout */
.brand-video{
  transform: scale(1.06);
}


/* ===== RESPIRACAO DO FUNDO (VERSAO B) ===== */
.bg-layer{
  animation: breathing 6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes breathing{
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.84; transform: scale(1.022); }
  100% { opacity: 1; transform: scale(1); }
}
