:root {
  --fundo: #030303;
  --chumbo: #051018;
  --chumbo-2: #061d2e;
  --vidro: rgba(4, 16, 26, 0.74);
  --amarelo: #18b8ff;
  --amarelo-vivo: #7cff9f;
  --amarelo-suave: rgba(0, 255, 93, 0.24);
  --vermelho: #0b2a1a;
  --vermelho-vivo: #00b946;
  --texto: rgba(255, 250, 235, 0.93);
  --texto-suave: rgba(255, 250, 235, 0.64);
  --linha: rgba(62, 190, 255, 0.34);
  --sombra: 0 24px 70px rgba(0, 0, 0, 0.56);
  --raio: 22px;
  --max: 760px;
  --transicao: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--fundo);
  color: var(--texto);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

img,
iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fundo-fixo {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 93, 0.28), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(0, 75, 125, 0.24), transparent 38%),
    linear-gradient(180deg, #041827 0%, #050505 52%, #020202 100%);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #030303;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-bar { height: 3px; overflow: hidden; margin-top: 1.25rem; border-radius: 999px; background: rgba(255,255,255,0.12); }
.loading-bar span { display: block; width: 42%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, transparent, var(--amarelo-vivo), transparent); animation: load 1.25s ease-in-out infinite; }

.pagina {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(13,8,18,0.96), rgba(5,5,6,0.99));
  box-shadow: 0 0 0 1px rgba(0,255,93,0.16), 0 30px 120px rgba(0,0,0,0.62);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: max(1rem, env(safe-area-inset-top)) 1rem 1.95rem;
}

.hero__cover {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('../assets/images/ivan-nunes-hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(var(--hero-scale, 1));
  transition: transform 80ms linear;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.04) 0%, rgba(5,5,5,0.18) 43%, rgba(5,5,5,0.86) 100%),
    radial-gradient(circle at 50% 88%, rgba(0,255,93,0.34), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(124,255,159,0.2), transparent 34%),
    linear-gradient(90deg, rgba(5,5,5,0.54), rgba(5,5,5,0.08) 50%, rgba(5,5,5,0.54));
}

.particles span {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 14px rgba(255,255,255,0.38);
  animation: particle 9s linear infinite;
}

.particles span:nth-child(1) { left: 8%; top: 18%; animation-delay: -1s; }
.particles span:nth-child(2) { left: 18%; top: 50%; animation-delay: -4s; }
.particles span:nth-child(3) { left: 31%; top: 16%; animation-delay: -6s; }
.particles span:nth-child(4) { left: 44%; top: 34%; animation-delay: -2s; }
.particles span:nth-child(5) { left: 60%; top: 18%; animation-delay: -5s; }
.particles span:nth-child(6) { left: 73%; top: 45%; animation-delay: -7s; }
.particles span:nth-child(7) { left: 88%; top: 23%; animation-delay: -3s; }
.particles span:nth-child(8) { left: 13%; top: 75%; animation-delay: -8s; }
.particles span:nth-child(9) { left: 54%; top: 70%; animation-delay: -2.5s; }
.particles span:nth-child(10) { left: 83%; top: 72%; animation-delay: -6.5s; }
.particles span:nth-child(11) { left: 38%; top: 82%; animation-delay: -9s; }
.particles span:nth-child(12) { left: 67%; top: 84%; animation-delay: -1.5s; }

.hero__conteudo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.46rem;
  padding: 0 0.5rem;
}

.hero__logo {
  width: min(72vw, 320px);
  margin-top: 24svh;
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.76));
  translate: 0 8px;
  animation: logoIn 900ms ease 350ms forwards, floatLogo 4.8s ease-in-out 1.4s infinite;
}

.hero__eyebrow,
.secao-kicker {
  margin: 0;
  color: var(--amarelo);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.46em;
  text-align: center;
}

.hero__titulo {
  margin: 0 auto;
  max-width: 16ch;
  color: #f7f4e8;
  font-size: clamp(1.55rem, 7.4vw, 3.25rem);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0,0,0,0.76);
}

.hero__subtitulo {
  margin: 0;
  max-width: 24rem;
  color: rgba(250,244,255,0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__subtitulo--menor {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__acoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  width: 100%;
  margin-top: 0.65rem;
}

.hero-social {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0,255,93,0.42);
  border-radius: 999px;
  color: #f6fff8;
  background: rgba(9,6,14,0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
  transition: transform var(--transicao), border-color var(--transicao), box-shadow var(--transicao);
}

.hero-social:hover {
  transform: translateY(-2px);
  border-color: rgba(124,255,159,0.72);
  box-shadow: 0 18px 42px rgba(0,255,93,0.28);
}

.hero-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.86rem 1.05rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0,255,93,0.36);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao);
}

.btn:hover { transform: translateY(-2px); }
.btn--shine { color: #ffffff; background: linear-gradient(135deg, #0b2a1a 0%, #00b946 48%, #7cff9f 100%); box-shadow: 0 16px 34px rgba(0,255,93,0.38); }
.btn--shine::after,
.download-btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.76), transparent);
  animation: shine 3.2s ease-in-out infinite;
}
.btn--glass { color: var(--amarelo-vivo); background: rgba(9,6,14,0.58); backdrop-filter: blur(18px); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  color: rgba(124,255,159,0.78);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero__scroll svg { width: 1.35rem; }

.corpo { position: relative; padding-bottom: 0.5rem; }
.secao { padding: 1.42rem 1rem; text-align: center; }
.secao--compacta { padding-top: 1rem; }
.secao-titulo {
  margin: 0.42rem auto 1.05rem;
  color: #f7f4e8;
  font-size: clamp(1.28rem, 6vw, 2.16rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
}

.secao-titulo--documentos {
  font-size: clamp(1.08rem, 4.6vw, 1.56rem);
}

.glass {
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--sombra);
  backdrop-filter: blur(18px);
}

.video-destaque {
  padding-top: 1.15rem;
  padding-bottom: 1.45rem;
}

.video-player-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.video-player-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 520ms ease;
}

.video-player-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,255,93,0.24), transparent 34%),
    linear-gradient(180deg, rgba(3,3,3,0.04), rgba(3,3,3,0.5));
}

.video-player-card:hover img {
  transform: scale(1.04);
}

.video-player-card__play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,255,93,0.92);
  box-shadow: 0 18px 44px rgba(0,0,0,0.48), 0 0 34px rgba(124,255,159,0.42);
}

.video-player-card__play::before {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

.videos-oficiais {
  display: grid;
  gap: 0.72rem;
}

.kondzilla-selo {
  width: min(100%, 360px);
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-color: rgba(255,255,255,0.54);
  background: rgba(255,255,255,0.9);
  color: rgba(5,5,5,0.68);
}

.kondzilla-selo span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.kondzilla-selo img {
  width: min(34vw, 128px);
  max-height: 38px;
  object-fit: contain;
}

.spotify-frame {
  padding: 0.45rem;
  overflow: hidden;
}

.spotify-frame iframe {
  height: 172px;
}

.spotify-premium {
  padding-top: 0.9rem;
  padding-bottom: 1.65rem;
}

.spotify-premium__card {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0.55rem;
  overflow: hidden;
  border-radius: 22px;
  border-color: rgba(124,255,159,0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(29,185,84,0.2), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(0,255,93,0.2), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 24px 70px rgba(0,0,0,0.56), 0 0 44px rgba(0,255,93,0.12);
}

.spotify-premium__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 36%);
}

.spotify-premium__card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 16px;
}

.bio {
  position: relative;
  overflow: hidden;
  padding-top: 2.2rem;
  padding-bottom: 2.35rem;
}

.bio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-image: linear-gradient(rgba(5,5,5,0.58), rgba(5,5,5,0.94)), url('../assets/images/ivan-nunes-08.webp');
  background-position: center center;
  transform: scale(1.06);
}

.bio > * {
  position: relative;
  z-index: 1;
}

.bio__card {
  max-width: 620px;
  margin: 0 auto;
  padding: 0.5rem 0.95rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.bio__card p {
  margin: 0 0 1.1rem;
  color: rgba(250,244,255,0.69);
  font-size: 0.94rem;
  line-height: 1.82;
  text-align: left;
}
.bio__card p:last-child { margin-bottom: 0; }
.bio__frase { color: var(--texto) !important; font-weight: 800; }

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.48rem;
}

.galeria__item {
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid rgba(0,255,93,0.28);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 520ms ease, transform 520ms ease, border-color var(--transicao);
}
.galeria__item.entrou { opacity: 1; transform: translateY(0) scale(1); }
.galeria__item:hover { border-color: rgba(124,255,159,0.76); }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.galeria__item:hover img { transform: scale(1.06); }

.documentos {
  padding-top: 0.75rem;
  padding-bottom: 1.35rem;
}

.documentos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.documento-card {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 0.9rem 0.78rem;
  border-radius: 18px;
  color: rgba(250,244,255,0.84);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform var(--transicao), border-color var(--transicao), color var(--transicao);
}

.documento-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124,255,159,0.68);
  color: var(--amarelo-vivo);
}

.documento-card--premium {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-color: rgba(255,255,255,0.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
    linear-gradient(135deg, #0b2a1a 0%, #00b946 50%, #7cff9f 100%);
  box-shadow: 0 18px 50px rgba(0,255,93,0.34), inset 0 0 0 1px rgba(255,255,255,0.16);
}

.documento-card--premium::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 48%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  animation: shine 3.2s ease-in-out infinite;
}

.documento-card--premium:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.72);
}

.rider {
  padding-top: 0.95rem;
}

.rider__card {
  max-width: 680px;
  margin: 0 auto;
  padding: 0.45rem;
  overflow: hidden;
}

.rider__preview {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  cursor: pointer;
}

.rider__preview img {
  width: 100%;
  height: auto;
}

.rider__links {
  margin: 0.75rem 0 0.2rem;
}

.contato {
  position: relative;
  overflow: hidden;
  margin-top: 0.4rem;
  padding: 2rem 1rem 2.35rem;
}
.contato__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(5,5,5,0.42), rgba(5,5,5,0.84)),
    radial-gradient(circle at 50% 20%, rgba(0,255,93,0.34), transparent 42%),
    radial-gradient(circle at 50% 70%, rgba(0,65,110,0.36), transparent 36%);
  transform: scale(1.05);
  pointer-events: none;
}
.contato__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) contrast(1.05);
}
.contato__conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contato__titulo {
  margin: 0 auto 1.25rem;
  color: #f7f4e8;
  font-size: clamp(1.5rem, 7vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.social-grid--compacto {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  position: relative;
  min-height: 102px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.58rem;
  border: 1px solid rgba(0,255,93,0.42);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 18px 42px rgba(0,0,0,0.34);
  border-color: rgba(0,255,93,0.42);
  color: #f6fff8;
  font-size: 0.86rem;
  font-weight: 800;
  overflow: hidden;
  transition: transform var(--transicao), border-color var(--transicao), box-shadow var(--transicao);
}

.social-card::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), transparent);
  animation: shine 3.2s ease-in-out infinite;
}

.social-card svg,
.social-card span {
  position: relative;
  z-index: 1;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,255,159,0.74);
  box-shadow: 0 18px 48px rgba(0,255,93,0.28);
}

.social-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--amarelo);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contato-links {
  width: min(100%, 540px);
  margin: 1.55rem auto 0;
  display: grid;
  gap: 0.62rem;
  justify-items: center;
}

.email-copy {
  width: 100%;
  display: grid;
  gap: 0.18rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(0,255,93,0.38);
  border-radius: 18px;
  background: rgba(9,6,14,0.56);
  backdrop-filter: blur(14px);
  color: rgba(255,250,235,0.9);
  cursor: pointer;
  transition: transform var(--transicao), border-color var(--transicao), background var(--transicao);
}

.email-copy:hover,
.email-copy.copiado {
  transform: translateY(-2px);
  border-color: rgba(124,255,159,0.68);
  background: rgba(0,255,93,0.14);
}

.email-copy__label {
  color: var(--amarelo-vivo);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.email-copy__value {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.download-btn {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b2a1a 0%, #00b946 48%, #7cff9f 100%);
  box-shadow: 0 20px 48px rgba(0,255,93,0.38), 0 0 0 1px rgba(124,255,159,0.26);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.download-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contato-links .download-btn {
  color: #ffffff;
  border: 1px solid rgba(0,255,93,0.46);
  background: linear-gradient(135deg, #07110c 0%, #007a2d 48%, #00ff5d 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0,255,93,0.36), 0 0 0 1px rgba(124,255,159,0.24);
}

.contato-links .download-btn::after {
  display: block;
}

.mini-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.12rem;
}

.mini-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.54rem 0.9rem;
  border: 1px solid rgba(0,255,93,0.38);
  border-radius: 999px;
  background: rgba(8,9,5,0.5);
  backdrop-filter: blur(14px);
  color: rgba(250,244,255,0.74);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color var(--transicao), border-color var(--transicao), transform var(--transicao);
}

.mini-link:hover {
  color: var(--amarelo-vivo);
  border-color: rgba(124,255,159,0.68);
  transform: translateY(-2px);
}

.streaming-links {
  margin-top: 0.75rem;
}

.videos-curtos {
  padding-top: 0.85rem;
  padding-bottom: 1.7rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
  max-width: 560px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0,255,93,0.38);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,0.34);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 520ms ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,6,4,0.05), rgba(9,6,4,0.42));
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,255,93,0.94);
  box-shadow: 0 12px 34px rgba(0,0,0,0.44);
}

.video-card__play::before {
  content: "";
  margin-left: 3px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #fff;
}

.videos-grid--youtube {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.75rem;
}

.videos-grid--youtube .video-card {
  aspect-ratio: 16 / 9;
}

.rodape {
  padding: 1.2rem 1rem max(1.35rem, env(safe-area-inset-bottom));
  text-align: center;
  color: rgba(250,244,255,0.46);
  font-size: 0.72rem;
  background: #040503;
}
.rodape__logo {
  width: min(52vw, 150px);
  margin: 0 auto 0.7rem;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.46));
}
.rodape p { margin: 0 0 0.65rem; }
.rodape nav { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.rodape a:hover { color: var(--amarelo-vivo); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2,3,1,0.96);
}
.lightbox.aberto { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 88svh; border-radius: 18px; object-fit: contain; box-shadow: 0 0 80px rgba(0,255,93,0.26); }
.lightbox__fechar,
.lightbox__nav {
  position: absolute;
  border: 1px solid rgba(0,255,93,0.34);
  background: rgba(12,13,8,0.72);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: background var(--transicao), transform var(--transicao);
}
.lightbox__fechar { top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; }
.lightbox__nav { top: 50%; width: 42px; height: 42px; border-radius: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 0.7rem; }
.lightbox__nav--next { right: 0.7rem; }
.lightbox svg { width: 1.35rem; margin: auto; }

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(2,3,1,0.96);
}

.video-modal.aberto {
  display: flex;
}

.video-modal__player {
  width: min(92vw, 920px);
  max-height: 88svh;
  border-radius: 20px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 80px rgba(0,255,93,0.28);
}

.video-modal__player.is-vertical {
  width: auto;
  height: min(88svh, 760px);
  max-width: 92vw;
  aspect-ratio: 9 / 16;
}

.video-modal__player.is-horizontal {
  width: min(92vw, 920px);
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-modal__fechar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,255,93,0.34);
  border-radius: 50%;
  background: rgba(12,13,8,0.72);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.video-modal__fechar svg {
  width: 1.35rem;
}

.animar { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.975); transition: opacity 520ms ease, transform 580ms cubic-bezier(0.19, 1, 0.22, 1); }
.animar.visivel { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 160ms; }

@media (min-width: 520px) {
  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-grid--compacto { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 360px) {
  .documentos-grid { grid-template-columns: 1fr; }
  .videos-grid { gap: 0.45rem; }
  .video-card { border-radius: 14px; }
  .video-card__play { width: 34px; height: 34px; }
  .video-player-card__play { width: 48px; height: 48px; }
}

@media (min-width: 640px) {
  .pagina { margin-top: 1.25rem; margin-bottom: 1.25rem; border-radius: 30px; overflow: hidden; }
  .hero { min-height: 820px; padding: 3rem 2rem 1.95rem; align-items: start; }
  .hero__cover { background-size: cover; background-position: center top; }
  .hero__logo { width: min(42vw, 260px); margin-top: 0; margin-bottom: 1rem; }
  .secao { padding: 1.75rem 2rem; }
  .galeria { gap: 0.7rem; }
  .contato { padding: 2.55rem 2rem 2.85rem; }
}

@media (max-width: 640px) {
  .video-modal {
    padding: 0;
  }

  .video-modal__player {
    width: 100vw;
    height: 100svh;
    max-height: none;
    border-radius: 0;
  }

  .video-modal__fechar {
    top: max(0.8rem, env(safe-area-inset-top));
    right: 0.8rem;
  }
}

@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}
@keyframes logoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatLogo {
  0%, 100% { translate: 0 8px; }
  50% { translate: 0 2px; }
}
@keyframes shine {
  0%, 45% { left: -60%; }
  70%, 100% { left: 120%; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.46; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}
@keyframes particle {
  0% { opacity: 0; transform: translate3d(0, 12px, 0) scale(0.8); }
  18%, 72% { opacity: 0.72; }
  100% { opacity: 0; transform: translate3d(16px, -46px, 0) scale(1.15); }
}

/* Base visual adaptation */
:root {
  --fundo: #020303;
  --chumbo: #050707;
  --chumbo-2: #0b1712;
  --vidro: rgba(8, 3, 18, 0.74);
  --amarelo: #00ff5d;
  --amarelo-vivo: #7cff9f;
  --amarelo-suave: rgba(0, 255, 93, 0.22);
  --vermelho: #143026;
  --vermelho-vivo: #00ff5d;
  --texto: rgba(255, 250, 255, 0.94);
  --texto-suave: rgba(255, 250, 255, 0.66);
  --linha: rgba(0, 255, 93, 0.34);
  --sombra: 0 24px 70px rgba(0, 0, 0, 0.62);
}

body {
  background: #020303;
}

.fundo-fixo {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 93, 0.18), transparent 32%),
    radial-gradient(circle at 50% 42%, rgba(124, 255, 159, 0.12), transparent 38%),
    linear-gradient(180deg, #050707 0%, #030604 52%, #020303 100%);
}

.pagina {
  background: linear-gradient(180deg, rgba(3, 7, 5, 0.97), rgba(4, 7, 5, 0.99));
  box-shadow: 0 0 0 1px rgba(0,255,93,0.16), 0 30px 120px rgba(0,0,0,0.66);
}

.hero__cover {
  background-image: url('../assets/images/ivan-nunes-hero.webp');
  background-position: center top;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(2,4,3,0.08) 0%, rgba(2,4,3,0.2) 43%, rgba(2,4,3,0.9) 100%),
    radial-gradient(circle at 50% 90%, rgba(0,255,93,0.26), transparent 31%),
    radial-gradient(circle at 52% 75%, rgba(124,255,159,0.16), transparent 34%),
    linear-gradient(90deg, rgba(2,4,3,0.58), rgba(2,4,3,0.08) 50%, rgba(2,4,3,0.56));
}

.hero__logo,
.rodape__logo {
  filter: drop-shadow(0 16px 34px rgba(0, 255, 93, 0.24)) drop-shadow(0 0 22px rgba(124, 255, 159, 0.12));
}

.hero__logo {
  width: min(58vw, 248px);
}

.hero__titulo,
.secao-titulo,
.contato__titulo {
  font-family: "Orbitron", "Montserrat", system-ui, sans-serif;
  letter-spacing: 0;
}

.hero__eyebrow,
.secao-kicker,
.hero__subtitulo--menor,
.btn,
.download-btn,
.mini-link,
.documento-card {
  font-family: "Orbitron", "Montserrat", system-ui, sans-serif;
  letter-spacing: 0.08em;
}

.hero__titulo {
  font-family: "Audiowide", "Orbitron", "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.62rem, 7.6vw, 3.4rem);
  text-transform: none;
}

.hero__acoes {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  justify-content: center;
  align-items: center;
}

.hero__acoes .hero-social {
  justify-self: center;
}

.hero__acoes .btn {
  grid-column: 1 / -1;
  width: min(100%, 250px);
  justify-self: center;
  margin-bottom: 0.1rem;
}

.btn--shine,
.download-btn,
.contato-links .download-btn {
  background: linear-gradient(135deg, #111616 0%, #00ff5d 48%, #00ff5d 100%);
  box-shadow: 0 18px 42px rgba(0,255,93,0.28), 0 0 24px rgba(124,255,159,0.16);
}

.hero-social,
.social-card,
.galeria__item,
.video-card,
.mini-link,
.documento-card {
  border-color: rgba(0,255,93,0.36);
}

.hero-social:hover,
.social-card:hover,
.galeria__item:hover,
.video-card:hover,
.mini-link:hover,
.documento-card:hover {
  border-color: rgba(124,255,159,0.72);
  box-shadow: 0 18px 48px rgba(0,255,93,0.22), 0 0 24px rgba(124,255,159,0.12);
}

.bio::before {
  background-image: linear-gradient(rgba(2,4,3,0.54), rgba(2,4,3,0.94)), url('../assets/images/ivan-nunes-08.webp');
  background-position: center center;
}

.bio__card p {
  color: rgba(255,250,255,0.72);
}

.videos-grid--mp4 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020104;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 520ms ease;
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,166,61,0.96), rgba(0,255,93,0.96));
}

.documentos-grid--preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.documento-card--preview {
  min-height: 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.72rem;
  place-items: initial;
  align-items: center;
  padding: 0.62rem;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}

.documento-card--preview img {
  width: 74px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
}

.documento-card--preview strong {
  display: block;
  margin-bottom: 0.48rem;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.documento-card--preview .mini-link {
  min-height: 32px;
  padding: 0.45rem 0.72rem;
  font-size: 0.58rem;
  background: rgba(255,255,255,0.06);
}

.contato__bg {
  background:
    linear-gradient(rgba(2,4,3,0.5), rgba(2,4,3,0.86)),
    radial-gradient(circle at 50% 20%, rgba(0,255,93,0.22), transparent 42%),
    radial-gradient(circle at 50% 70%, rgba(124,255,159,0.16), transparent 36%);
}

.social-card svg {
  stroke: var(--amarelo-vivo);
}

.rodape {
  background: #020303;
}

@media (min-width: 640px) {
  .hero__logo {
    width: min(38vw, 280px);
  }
}

@media (max-width: 380px) {
  .videos-grid--mp4 {
    gap: 0.42rem;
  }

  .documentos-grid--preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero__acoes {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    justify-content: center;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__acoes .btn {
    grid-column: 1 / -1;
    width: 250px;
    max-width: 250px;
    justify-self: center;
    margin-bottom: 0.1rem;
  }
}

/* Ivan Nunes adaptation */
:root {
  --fundo: #030506;
  --chumbo: #070b14;
  --chumbo-2: #111a2b;
  --vidro: rgba(8, 12, 20, 0.8);
  --amarelo: #84a9ff;
  --amarelo-vivo: #ffffff;
  --amarelo-suave: rgba(0, 255, 93, 0.24);
  --vermelho: #352050;
  --vermelho-vivo: #ff4fb3;
  --texto: rgba(255, 255, 255, 0.94);
  --texto-suave: rgba(236, 242, 255, 0.68);
  --linha: rgba(0, 255, 93, 0.34);
}

.fundo-fixo {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 255, 93, 0.2), transparent 32%),
    radial-gradient(circle at 50% 45%, rgba(0, 255, 93, 0.13), transparent 38%),
    linear-gradient(180deg, #050814 0%, #05070b 52%, #020202 100%);
}

.pagina {
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.97), rgba(4, 5, 7, 0.99));
  box-shadow: 0 0 0 1px rgba(0, 255, 93, 0.16), 0 30px 120px rgba(0, 0, 0, 0.62);
}

.hero {
  min-height: auto;
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: none;
}

.hero__cover {
  background-image: url('../assets/images/ivan-nunes-hero.webp');
  background-position: center top;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(2, 4, 9, 0.02) 0%, rgba(2, 4, 9, 0.2) 38%, rgba(2, 4, 9, 0.92) 100%),
    radial-gradient(circle at 50% 86%, rgba(0, 255, 93, 0.34), transparent 31%),
    radial-gradient(circle at 50% 78%, rgba(0, 255, 93, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(2, 4, 9, 0.68), rgba(2, 4, 9, 0.08) 50%, rgba(2, 4, 9, 0.68));
}

.hero__logo {
  width: min(82vw, 400px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.86)) drop-shadow(0 0 22px rgba(0, 255, 93, 0.26));
}

.youtube-embed-card {
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.65rem;
}

.youtube-embed-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: #000;
}

.youtube-channel-link {
  margin-top: 0.9rem;
}

.youtube-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.youtube-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(174, 232, 255, 0.18);
  box-shadow: var(--sombra);
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.youtube-card iframe,
.youtube-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.youtube-card img {
  height: 100%;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 520ms ease;
}

.youtube-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 5, 8, 0.08), rgba(2, 5, 8, 0.42));
}

.youtube-card:hover img {
  transform: scale(1.05);
}

.youtube-card__play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #00ff5d;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}

.youtube-card__play::before {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent #fff;
}

.youtube-modal__player {
  width: min(92vw, 920px);
  aspect-ratio: 16 / 9;
  max-height: 82svh;
  border: 0;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 80px rgba(0,255,93,0.28);
}

.videos-grid--quatro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.videos-grid--cinco {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 700px;
}

.videos-grid--cinco .video-card {
  grid-column: span 2;
}

.videos-grid--cinco .video-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.videos-grid--cinco .video-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.spotify-card {
  overflow: hidden;
  padding: 0.7rem;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.58rem;
}

.numero-card {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  padding: 0.72rem 0.45rem;
  text-align: center;
  border-radius: 14px;
}

.numero-card strong {
  color: #ffffff;
  font-family: "Orbitron", "Montserrat", sans-serif;
  font-size: clamp(1.02rem, 4.4vw, 1.7rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(142, 223, 255, 0.34);
}

.numero-card span {
  color: var(--texto-suave);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contato__video {
  object-position: center center;
}

.contato__bg {
  inset: 0;
  background:
    linear-gradient(rgba(2, 4, 9, 0.56), rgba(2, 4, 9, 0.91)),
    radial-gradient(circle at 50% 20%, rgba(0, 255, 93, 0.25), transparent 42%),
    radial-gradient(circle at 50% 72%, rgba(0, 255, 93, 0.2), transparent 36%);
}

.rodape__logo {
  width: min(44vw, 154px);
}

.email-copy {
  cursor: pointer;
}

@media (min-width: 620px) {
  .youtube-card--hero {
    grid-column: 1 / -1;
  }

  .youtube-card:not(.youtube-card--hero):not(.youtube-card--small) {
    grid-column: span 3;
  }

  .youtube-card--small {
    grid-column: span 2;
  }
}

@media (max-width: 619px) {
  .youtube-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .youtube-card {
    border-radius: 10px;
  }

  .youtube-card__play {
    width: 34px;
    height: 34px;
  }

  .youtube-card__play::before {
    margin-left: 3px;
    border-width: 7px 0 7px 11px;
  }

  .youtube-card--small .youtube-card__play {
    width: 28px;
    height: 28px;
  }

  .youtube-card--small .youtube-card__play::before {
    border-width: 6px 0 6px 9px;
  }

  .youtube-card--hero {
    grid-column: 1 / -1;
  }

  .youtube-card:not(.youtube-card--hero):not(.youtube-card--small) {
    grid-column: span 3;
  }

  .youtube-card--small {
    grid-column: span 2;
  }

  .videos-grid--quatro {
    grid-template-columns: 1fr;
  }

  .videos-grid--cinco {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .videos-grid--cinco .video-card,
  .videos-grid--cinco .video-card:nth-child(4),
  .videos-grid--cinco .video-card:nth-child(5) {
    grid-column: auto;
  }

  .videos-grid--cinco .video-card:last-child {
    grid-column: 1 / -1;
  }

  .hero__logo {
    width: min(62vw, 252px);
    margin-top: 31svh;
  }

  .hero__subtitulo {
    max-width: 96%;
  }

  .numero-card {
    min-height: 76px;
    padding: 0.58rem 0.34rem;
    border-radius: 12px;
  }

  .numeros-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .numero-card strong {
    font-size: clamp(1.12rem, 7vw, 1.65rem);
  }

  .numero-card span {
    font-size: 0.55rem;
  }
}

@media (max-width: 640px) {
  .youtube-modal {
    padding: 1rem;
  }

  .youtube-modal__player {
    width: 100%;
    height: auto;
    max-height: 70svh;
    border-radius: 14px;
  }
}

.contato__bg {
  inset: 0 !important;
}

.videos-grid--mp4.videos-grid--quatro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}

.videos-grid--mp4 .video-card {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

.videos-grid--mp4 .video-card video,
.videos-grid--mp4 .video-card img {
  object-fit: cover;
}

@media (max-width: 619px) {
  .videos-grid--mp4.videos-grid--quatro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .videos-grid--mp4 .video-card {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

/* Ivan Nunes final theme */
:root {
  --fundo: #030504;
  --chumbo: #070909;
  --chumbo-2: #141819;
  --vidro: rgba(7, 9, 9, 0.82);
  --amarelo: #00ff5d;
  --amarelo-vivo: #7cff9f;
  --amarelo-suave: rgba(0, 255, 93, 0.22);
  --vermelho: #24302b;
  --vermelho-vivo: #00ff5d;
  --texto: rgba(255, 255, 255, 0.95);
  --texto-suave: rgba(232, 238, 236, 0.7);
  --linha: rgba(0, 255, 93, 0.34);
}

.fundo-fixo {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 255, 93, 0.18), transparent 32%),
    radial-gradient(circle at 50% 48%, rgba(91, 101, 101, 0.16), transparent 38%),
    linear-gradient(180deg, #060707 0%, #050605 52%, #010202 100%);
}

.pagina {
  background: linear-gradient(180deg, rgba(7, 9, 9, 0.98), rgba(3, 4, 4, 0.99));
  box-shadow: 0 0 0 1px rgba(0, 255, 93, 0.16), 0 30px 120px rgba(0, 0, 0, 0.68);
}

.loading-screen {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 255, 93, 0.2), transparent 34%),
    #030403;
}

.loading-screen.hidden {
  transition: opacity 850ms ease, visibility 850ms ease;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.06) 0%, rgba(2, 3, 3, 0.22) 40%, rgba(2, 3, 3, 0.94) 100%),
    radial-gradient(circle at 50% 82%, rgba(0, 255, 93, 0.28), transparent 31%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.72), rgba(2, 3, 3, 0.06) 50%, rgba(2, 3, 3, 0.72));
}

.hero__logo {
  width: min(76vw, 360px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 24px rgba(0, 255, 93, 0.3));
}

.hero-social:hover,
.video-card:hover,
.galeria__item:hover {
  border-color: rgba(0, 255, 93, 0.72);
}

.btn--shine,
.download-btn,
.contato-links .download-btn {
  background: linear-gradient(135deg, #111616 0%, #00b946 48%, #00ff5d 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 255, 93, 0.26);
}

.hero-social,
.video-card,
.galeria__item {
  border-color: rgba(0, 255, 93, 0.2);
}

.videos-grid--mp4.videos-grid--tres {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
}

.videos-grid--tres .video-card {
  aspect-ratio: 16 / 9;
}

.videos-grid--tres .video-card--destaque {
  grid-column: 1 / -1;
  max-width: 680px;
  justify-self: center;
  width: 100%;
}

.videos-grid--tres .video-card:not(.video-card--destaque) {
  max-width: 320px;
  width: 100%;
  justify-self: center;
}

.videos-grid--mp4 .video-card img {
  object-fit: cover;
}

.documentos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 640px;
  margin: 0 auto;
}

.contato__bg {
  background:
    linear-gradient(rgba(2, 3, 3, 0.58), rgba(2, 3, 3, 0.93)),
    radial-gradient(circle at 50% 20%, rgba(0, 255, 93, 0.22), transparent 42%),
    radial-gradient(circle at 50% 72%, rgba(86, 96, 96, 0.22), transparent 36%);
}

.contato__video {
  object-position: center center;
}

.rodape__logo {
  width: min(42vw, 142px);
}

@media (max-width: 619px) {
  .hero__logo {
    width: min(58vw, 232px);
    margin-top: 31svh;
  }

  .hero__acoes {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.52rem;
  }

  .hero__acoes .btn {
    min-height: 46px;
    padding: 0.86rem 1.18rem;
    white-space: nowrap;
  }

  .hero__acoes .hero-social {
    flex: 0 0 46px;
  }

  .videos-grid--mp4.videos-grid--tres {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
    max-width: 100%;
  }

  .videos-grid--tres .video-card--destaque {
    max-width: 100%;
  }

  .videos-grid--tres .video-card:not(.video-card--destaque) {
    max-width: 100%;
  }

  .documentos-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 620px) {
  .hero {
    align-items: end;
    align-content: end;
    padding-top: max(1rem, env(safe-area-inset-top));
  }

  .hero__conteudo {
    align-self: end;
  }

  .hero__logo {
    width: min(38vw, 320px);
    margin-top: 24svh;
  }

  .hero__acoes {
    display: inline-flex !important;
    width: auto;
    max-width: 100%;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 0.7rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__acoes .btn {
    grid-column: auto;
    width: auto !important;
    max-width: none !important;
    white-space: nowrap;
  }
}

@media (max-width: 619px) {
  .hero__acoes {
    display: inline-flex !important;
    width: auto;
    max-width: 100%;
    flex-wrap: nowrap !important;
    gap: 0.46rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__acoes .btn {
    grid-column: auto;
    width: auto !important;
    max-width: none !important;
    min-height: 44px;
    padding: 0.78rem 0.92rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero__acoes .hero-social {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
}

/* Ivan Nunes green-only cleanup */
.video-card {
  border-color: rgba(0, 255, 93, 0.3) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36) !important;
}

.video-card:hover {
  border-color: rgba(0, 255, 93, 0.78) !important;
  box-shadow: 0 20px 52px rgba(0, 255, 93, 0.18), 0 18px 42px rgba(0, 0, 0, 0.4) !important;
}

.video-card__play,
.youtube-card__play {
  background: linear-gradient(135deg, #00a63d 0%, #00ff5d 100%) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48), 0 0 28px rgba(0, 255, 93, 0.38) !important;
}

.lightbox__img,
.video-modal__player,
.youtube-modal__player {
  box-shadow: 0 0 80px rgba(0, 255, 93, 0.22) !important;
}

.lightbox__fechar,
.lightbox__nav,
.video-modal__fechar {
  border-color: rgba(0, 255, 93, 0.36) !important;
}

.documentos-grid .download-btn--rider {
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(124, 255, 159, 0.34);
  background: linear-gradient(135deg, rgba(9, 14, 12, 0.92) 0%, rgba(12, 36, 24, 0.9) 100%) !important;
  color: rgba(246, 255, 248, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(0, 255, 93, 0.08) !important;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.documentos-grid .download-btn--rider:hover {
  border-color: rgba(0, 255, 93, 0.62);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 255, 93, 0.16), 0 10px 24px rgba(0, 0, 0, 0.34) !important;
}

.documentos-grid .download-btn--rider svg {
  width: 16px;
  height: 16px;
}

.rodape {
  background: #020303 !important;
  box-shadow: none !important;
}

.rodape__logo {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.46)) !important;
}

.rodape::before,
.rodape::after {
  display: none !important;
}

/* Refactored loader */
.loading-screen {
  background: #000 !important;
  overflow: hidden;
}

.loading-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.loading-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(124, 255, 159, 0.76);
  box-shadow: 0 0 14px rgba(0, 255, 93, 0.46);
  animation: loaderParticle 5.8s ease-in-out infinite;
}

.loading-particles span:nth-child(1) { left: 24%; top: 34%; animation-delay: -0.4s; }
.loading-particles span:nth-child(2) { left: 72%; top: 38%; animation-delay: -1.6s; }
.loading-particles span:nth-child(3) { left: 33%; top: 61%; animation-delay: -2.8s; }
.loading-particles span:nth-child(4) { left: 66%; top: 66%; animation-delay: -3.7s; }
.loading-particles span:nth-child(5) { left: 48%; top: 29%; animation-delay: -4.4s; }
.loading-particles span:nth-child(6) { left: 55%; top: 56%; animation-delay: -5.1s; }

.loading-stage {
  position: relative;
  width: min(54vw, 280px);
  display: grid;
  justify-items: center;
  isolation: isolate;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.loading-stage::before,
.loading-stage::after,
.loading-screen::before,
.loading-screen::after {
  content: none !important;
  display: none !important;
}

.loading-glow {
  position: absolute;
  left: 50%;
  top: 41%;
  z-index: -1;
  width: 176%;
  height: 210%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(0, 255, 93, 0.4) 0%, rgba(0, 255, 93, 0.25) 22%, rgba(0, 255, 93, 0.11) 43%, rgba(0, 255, 93, 0.03) 58%, transparent 72%);
  pointer-events: none;
}

.loading-mark {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
}

.loading-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(246, 255, 248, 0.14) !important;
  box-shadow: none !important;
}

@media (max-width: 619px) {
  .loading-stage {
    width: min(70vw, 310px);
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .loading-mark {
    background: transparent !important;
    box-shadow: none !important;
  }
}

@keyframes loaderParticle {
  0%, 100% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.72);
  }
  25%, 72% {
    opacity: 0.82;
  }
  50% {
    transform: translate3d(10px, -14px, 0) scale(1);
  }
}

/* Ivan Nunes premium theme */
:root {
  --fundo: #020106;
  --chumbo: #07050f;
  --chumbo-2: #121023;
  --vidro: rgba(12, 9, 22, 0.82);
  --amarelo: #7867ff;
  --amarelo-vivo: #a99cff;
  --amarelo-suave: rgba(120, 103, 255, 0.22);
  --vermelho: #211636;
  --vermelho-vivo: #8d6dff;
  --texto: rgba(255, 255, 255, 0.95);
  --texto-suave: rgba(238, 234, 255, 0.7);
  --linha: rgba(145, 126, 255, 0.34);
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #020106;
}

.fundo-fixo {
  background:
    radial-gradient(circle at 50% 4%, rgba(120, 103, 255, 0.2), transparent 32%),
    radial-gradient(circle at 50% 48%, rgba(70, 54, 150, 0.18), transparent 38%),
    linear-gradient(180deg, #05030b 0%, #030207 54%, #000 100%) !important;
}

.pagina {
  background: linear-gradient(180deg, rgba(7, 5, 14, 0.98), rgba(3, 2, 7, 0.99)) !important;
  box-shadow: 0 0 0 1px rgba(145, 126, 255, 0.16), 0 30px 120px rgba(0, 0, 0, 0.72) !important;
}

.hero__cover {
  background-image: url('../assets/images/ivan-nunes-hero.webp') !important;
  background-position: center top !important;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(2, 1, 6, 0.04) 0%, rgba(2, 1, 6, 0.18) 38%, rgba(2, 1, 6, 0.94) 100%),
    radial-gradient(circle at 50% 82%, rgba(120, 103, 255, 0.27), transparent 31%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.11), transparent 31%),
    linear-gradient(90deg, rgba(2, 1, 6, 0.72), rgba(2, 1, 6, 0.08) 50%, rgba(2, 1, 6, 0.72)) !important;
}

.loading-screen {
  background:
    radial-gradient(circle at 50% 42%, rgba(120, 103, 255, 0.22), transparent 34%),
    #000 !important;
}

.loading-particles span {
  background: rgba(169, 156, 255, 0.76) !important;
  box-shadow: 0 0 14px rgba(120, 103, 255, 0.46) !important;
}

.loading-glow {
  background: radial-gradient(ellipse at center, rgba(120, 103, 255, 0.36) 0%, rgba(120, 103, 255, 0.22) 22%, rgba(120, 103, 255, 0.1) 43%, rgba(120, 103, 255, 0.03) 58%, transparent 72%) !important;
}

.loading-stage {
  width: min(58vw, 300px);
}

.hero__logo {
  width: min(76vw, 380px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 24px rgba(120, 103, 255, 0.3)) !important;
}

.secao-titulo,
.contato__titulo,
.legal-card h1,
.legal-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.secao-titulo {
  font-size: clamp(1.9rem, 8vw, 3.35rem);
}

.contato__titulo {
  font-size: clamp(2.15rem, 9vw, 3.6rem);
}

.hero__eyebrow,
.secao-kicker {
  color: #b8adff !important;
  letter-spacing: 0.26em;
}

.hero__subtitulo {
  color: rgba(255, 255, 255, 0.9);
}

.hero__subtitulo--menor {
  color: rgba(238, 234, 255, 0.78);
  letter-spacing: 0.08em;
}

.btn--shine,
.download-btn,
.contato-links .download-btn {
  background: linear-gradient(135deg, #141022 0%, #4e3cd5 48%, #8d7bff 100%) !important;
  border-color: rgba(169, 156, 255, 0.42) !important;
  box-shadow: 0 16px 34px rgba(120, 103, 255, 0.26) !important;
}

.hero-social,
.social-card,
.galeria__item,
.youtube-embed,
.spotify-premium__card {
  border-color: rgba(145, 126, 255, 0.28) !important;
}

.hero-social:hover,
.social-card:hover,
.galeria__item:hover {
  border-color: rgba(185, 176, 255, 0.72) !important;
  box-shadow: 0 18px 48px rgba(120, 103, 255, 0.2) !important;
}

.hero-social svg,
.social-card svg {
  stroke: #c8c1ff !important;
}

.youtube-layout--embed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid rgba(145, 126, 255, 0.28);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.youtube-fallback {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.youtube-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46) saturate(1.06);
}

.youtube-fallback__title {
  position: absolute;
  z-index: 2;
  left: 0.72rem;
  top: 0.58rem;
  max-width: calc(100% - 1.44rem);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  text-transform: none;
  letter-spacing: 0;
}

.youtube-fallback__play {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ff0033;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.youtube-fallback__play::before {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.youtube-fallback::after {
  content: "Assista no YouTube";
  position: absolute;
  right: 0.64rem;
  bottom: 0.56rem;
  z-index: 2;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.youtube-fallback:hover img {
  transform: scale(1.04);
}

.youtube-fallback img {
  transition: transform 520ms ease;
}

.youtube-embed--hero {
  grid-column: 1 / -1;
}

.youtube-channel-link {
  width: min(100%, 360px);
  margin: 0.95rem auto 0;
}

.spotify-premium__card {
  background:
    radial-gradient(circle at 18% 0%, rgba(120, 103, 255, 0.2), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(185, 176, 255, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), 0 0 44px rgba(120, 103, 255, 0.12) !important;
}

.bio::before {
  background-image: linear-gradient(rgba(2, 1, 6, 0.6), rgba(2, 1, 6, 0.94)), url('../assets/images/ivan-nunes-08.webp') !important;
}

.bio__frase {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem !important;
  font-weight: 700 !important;
}

.contato__foto {
  display: none !important;
}

.contato__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04);
}

.contato__bg {
  background:
    linear-gradient(rgba(2, 1, 6, 0.6), rgba(2, 1, 6, 0.94)),
    radial-gradient(circle at 50% 20%, rgba(120, 103, 255, 0.22), transparent 42%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.09), transparent 36%) !important;
}

.rodape {
  background: #020106 !important;
}

.rodape__logo {
  width: min(46vw, 168px);
}

.lightbox__img,
.video-modal__player,
.youtube-modal__player {
  box-shadow: 0 0 80px rgba(120, 103, 255, 0.22) !important;
}

.lightbox__fechar,
.lightbox__nav,
.video-modal__fechar {
  border-color: rgba(145, 126, 255, 0.36) !important;
}

@media (max-width: 619px) {
  .hero__logo {
    width: min(68vw, 270px);
    margin-top: 29svh;
  }

  .youtube-layout--embed {
    gap: 0.52rem;
  }

  .youtube-embed {
    border-radius: 12px;
  }

  .secao-titulo {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }
}

/* Subtle scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.975);
  transform-origin: 50% 62%;
  will-change: transform, opacity;
  transition:
    opacity 520ms ease,
    transform 580ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.reveal-visivel,
.animar.visivel,
.galeria__item.entrou {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.delay-1.scroll-reveal { --reveal-delay: 90ms; }
.delay-2.scroll-reveal { --reveal-delay: 150ms; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .animar,
  .galeria__item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
    will-change: auto !important;
  }
}






