@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --red: #ff002f;
  --dark: #050505;
  --dark-soft: #0b0b0b;
  --gray: #b5b5b5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--dark);
  color: #ffffff;
}

/* =========================
   HERO — BASE REALMENTE MENOR
========================= */

.hero {
  position: relative;
  min-height: clamp(420px, 65vh, 600px);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding: 0 20px 64px; /* 👈 aumente aqui (antes era 40px) */
  padding-bottom: 24px;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("./img/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;

  opacity: 0.5; /* 👈 50% de opacidade */

  z-index: 0;
  animation: bgZoom 1.8s ease-out forwards;

}

@keyframes bgZoom {
  from {
    transform: scale(1.04);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.5;
  }
}

.tech-logo,
.tech-logo span {
  font-family: 'Orbitron', 'Rajdhani', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 14vw, 9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  animation: logoReveal 1.1s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes logoReveal {
  from {
    transform: translateY(16px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.tech-logo {
  position: relative;
  margin-bottom: clamp(0.25rem, 0.8vw, 0.6rem);
}

.logo-white {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.35),
    0 0 14px rgba(255,255,255,0.15);
}

.logo-red {
  color: #ff002f;
  text-shadow:
    0 0 8px rgba(255, 0, 47, 0.75),
    0 0 18px rgba(255, 0, 47, 0.45),
    0 0 32px rgba(255, 0, 47, 0.25);
}




.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 920px;
  text-align: center;
  z-index: 2;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 12px 26px;
  margin-bottom: 32px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04); /* neutro */
  color: var(--red);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
}


/* TITULO */
.hero h1 {
  font-size: 0.98rem; /* levemente menor que 1.05rem */
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase; /* 👈 minúsculas */

  margin-bottom: 16px;
  animation: titleReveal 1.1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes titleReveal {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero h1 span {
  color: #ff002f;

  text-shadow:
    0 0 4px rgba(255, 0, 47, 0.85),
    0 0 10px rgba(255, 0, 47, 0.7),
    0 0 20px rgba(255, 0, 47, 0.55);
}




/* SUBTÍTULO */
.hero p {
  font-size: 0.6rem;
  font-weight: 500; /* negrito leve, elegante */
  letter-spacing: 0.32px;
  text-transform: lowercase;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.9;
}


.hero p strong {
  color: #ff002f;
  font-weight: 700; /* destaque real */
  text-shadow:
    0 0 6px rgba(255, 0, 47, 0.6),
    0 0 14px rgba(255, 0, 47, 0.35);
}

/* ================================
   FEATURES SECTION
================================ */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;          /* antes 18px */
  padding: 28px 6% 56px; 
  background: #000000;
}

/* CARD */
.feature-card {
  background: #000; /* preto absoluto */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  padding: 8px 18px 20px; /* 🔥 topo menor */
  text-align: center;
  z-index: 1;

  border: 1px solid rgba(255, 0, 0, 0.12);

  /* brilho interno branco CONTROLADO */
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.85),
    inset 0 0 6px rgba(255, 255, 255, 0.45),
    inset 0 0 14px rgba(255, 255, 255, 0.18),
    0 0 20px rgba(0, 0, 0, 1);

  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.2,.8,.2,1),
    filter 0.8s ease;
}

.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
  filter: blur(10px);
}

.feature-card:hover::after {
  box-shadow:
    0 0 10px rgba(255, 0, 47, 1),
    0 0 26px rgba(255, 0, 47, 0.75),
    0 0 48px rgba(255, 0, 47, 0.4);
}


@keyframes glowBreath {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.65;
  }
}

.feature-card::before {
  animation: glowBreath 4.5s ease-in-out infinite;
}






/* ÍCONE COM BRILHO */
.icon-glow {
  width: 72px;
  height: 72px;
  margin-bottom: 4px; /* 👈 controle REAL */
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.45) 0%,
    rgba(255, 0, 0, 0.18) 35%,
    transparent 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}



.icon-glow img {
  width: 34px;  /* 👈 menor */
  height: 34px;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.6));
}

/* TEXTO */
.feature-card h1 {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.3px;
  text-transform: lowercase;

  margin: 0 0 12px;

  color: #ff002f;

  text-shadow:
    0 0 4px rgba(255, 0, 47, 0.85),
    0 0 10px rgba(255, 0, 47, 0.7),
    0 0 20px rgba(255, 0, 47, 0.55);

}

/* 👇 PRIMEIRA LETRA EM MAIÚSCULO */
.feature-card h1::first-letter {
  text-transform: uppercase;
}



.feature-card p {
  font-size: 0.65rem;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.3px;
  text-transform: lowercase;

  margin: 0; /* 👈 sem conflito */
  padding-bottom: 26px; /* espaço exclusivo da linha */

  color: #ffffff;
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px; /* 👈 grudada no final do retângulo */
  transform: translateX(-50%);

  width: 180px;
  height: 2px;

  background: #ff002f;
  border-radius: 999px;

  z-index: 5;

  box-shadow:
  0 0 14px rgba(255, 0, 47, 1),      /* núcleo forte */
  0 0 32px rgba(255, 0, 47, 0.85),   /* glow médio */
  0 0 64px rgba(255, 0, 47, 0.55),   /* halo externo */
  0 0 96px rgba(255, 0, 47, 0.25);   /* aura distante */


  pointer-events: none;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);

  width: 200px;   /* 🔽 antes 260px */
  height: 16px;   /* 🔽 antes 24px */

  background: radial-gradient(
    ellipse at center,
    rgba(255, 0, 47, 0.32), /* 🔽 antes 0.45 */
    transparent 70%
  );

  filter: blur(8px); /* 🔽 antes 12px */
  z-index: 4;
  pointer-events: none;
}






/* RESPONSIVO */
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}



/* =========================
   SECTION 2 — CONTINUA COLADA
========================= */

/* SECTION 2 — TÍTULO */
/* SECTION 2 — H1 (TEXTO DO PARÁGRAFO) */
.arsenal-section .arsenal-h1 {
  font-size: 0.88rem;   /* 👈 um pouco menor que 0.98rem */
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin-top: 35px;
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
  animation: titleReveal 1.1s ease-out forwards;
  animation-delay: 0.9s;
  opacity: 0;
}


.value-item {
  position: relative;
  text-align: center;

  padding: 52px 34px 48px;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.95),
    rgba(10, 10, 10, 0.95)
  );

  overflow: hidden;
  isolation: isolate;
}


.value-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.55),
      transparent 35%
    ),
    linear-gradient(315deg,
      rgba(255,255,255,0.35),
      transparent 40%
    );

  opacity: 0.25;
  pointer-events: none;
}


.value-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(18px - 1px);

  background: radial-gradient(
    120% 80% at 50% 0%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );

  pointer-events: none;
}


.value-item:hover::after {
  opacity: 1;
}

.value-item {
  transition: transform 0.4s ease;
}

.value-item:hover {
  transform: translateY(-6px);
}



/* DESTAQUES IGUAIS AO HERO */
.arsenal-section .arsenal-h1 span {
  color: #ff002f;

  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.75),
    0 0 8px rgba(255, 0, 47, 0.6),
    0 0 16px rgba(255, 0, 47, 0.45);
}




.arsenal-section {
  position: relative;

  padding-top: 8px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 32px;

  margin-top: 0;

}

.arsenal-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* IMAGEM */
.arsenal-image {
  margin-bottom: -20px;
  transform: translateY(8px);
  display: flex;
  justify-content: center;
}


.arsenal-image img {
  max-width: 520px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

/* TITULO */
.arsenal-section h1 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  margin-top: 48px;   /* empurra pra baixo */
  margin-bottom: 16px;
}

.arsenal-section h1 span {
  display: inline;
  color: var(--red);
  text-shadow: 0 0 25px rgba(255, 0, 47, 0.75);
}

.arsenal-section p {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 0;              /* REMOVE QUALQUER SOBRA */
  line-height: 2.2;
}

.arsenal-section p strong {
  color: #ff0000;
  font-weight: 600;
}

/* ANIMAÇÃO */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* =========================
   SECTION — PROVAS SOCIAIS
========================= */

.social-proof-section {
  background: #000;
  padding: 48px 20px 64px;
}

.social-proof-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.social-proof-title,
.social-proof-images img {
  opacity: 0;
  transform: translateY(18px);
}

.social-proof-section.is-visible .social-proof-title {
  animation: socialTitleReveal 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

.social-proof-section.is-visible .social-proof-images img {
  animation: socialImageReveal 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

.social-proof-section.is-visible .social-proof-images img:nth-child(1) {
  animation-delay: 0.2s;
}
.social-proof-section.is-visible .social-proof-images img:nth-child(2) {
  animation-delay: 0.4s;
}
.social-proof-section.is-visible .social-proof-images img:nth-child(3) {
  animation-delay: 0.6s;
}


.social-proof-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin-bottom: 24px;
  color: #ffffff;
}

.social-proof-title span {
  color: #ff002f;
  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);
  display: inline-block;

  transform: translateZ(0);
  backface-visibility: hidden;
}

.social-proof-title span::first-letter {
  text-transform: uppercase;
}



.social-proof-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-proof-images img {
  width: 68%;
  max-width: 260px;
  margin: 0 auto;
  display: block;

  border-radius: 10px;
  transform: translateY(18px) scale(1.04);
}

@keyframes socialTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes socialImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* =========================
   IMAGE SECTION
========================= */

/* SECTION BASE */
.image-section {
  background: #000;
  padding: 64px 20px;
  overflow: hidden;
}

.image-section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ESTADO INICIAL (ANTES DE APARECER) */
.image-section-title,
.image-section-image img {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
}

/* ATIVO (QUANDO ENTRA NA TELA) */
.image-section.is-visible .image-section-title {
  animation: titleReveal 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}

.image-section.is-visible .image-section-image img {
  animation: imageReveal 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 0.25s;
}

/* H1 */
.image-section-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin-bottom: 28px;
  color: #ffffff;
}

/* PRIMEIRA LETRA */
.image-section-title::first-letter {
  text-transform: uppercase;
}

/* TEXTO VERMELHO — BRILHO CONTROLADO */
.image-section-title span {
  color: #ff002f;

  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);

  will-change: text-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
}


/* IMAGEM */
.image-section-image {
  display: flex;
  justify-content: center;
}

.image-section-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  transform: scale(1.04);
}

/* KEYFRAMES */
@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes imageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(255, 0, 47, 0.6),
      0 0 12px rgba(255, 0, 47, 0.35);
  }
  50% {
    text-shadow:
      0 0 6px rgba(255, 0, 47, 0.9),
      0 0 18px rgba(255, 0, 47, 0.6);
  }
}


/* =========================
   SECTION — SHOWCASE
========================= */

.showcase-section {
  background: #000;
  padding: 24px 20px 40px;
}

.showcase-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.showcase-title,
.showcase-image img {
  opacity: 0;
  transform: translateY(20px);
}


/* H1 — MESMO PADRÃO DO HERO */
.showcase-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin-bottom: 16px;
  color: #ffffff;
}

.showcase-title::first-letter {
  text-transform: uppercase;
}

/* vermelho limpo, sem retângulo */
.showcase-title span {
  color: #ff002f;
  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);

  transform: translateZ(0);
  backface-visibility: hidden;
}

.showcase-section.is-visible .showcase-title {
  animation: showcaseTitleReveal 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

.showcase-section.is-visible .showcase-image img {
  animation: showcaseImageReveal 1.1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 0.25s;
}

/* IMAGEM */
.showcase-image {
  display: flex;
  justify-content: center;
}

.showcase-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;

  transform: translateY(20px) scale(1.04);
  border-radius: 10px;
}

@keyframes showcaseTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showcaseImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.feature-section {
  background: #000;
  padding: 48px 20px 40px;
  text-align: center;
}

.feature-title,
.feature-image {
  opacity: 0;
  transform: translateY(18px);
}

.feature-section.is-visible .feature-title {
  animation: featureTitleReveal 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

.feature-section.is-visible .feature-image {
  animation: featureImageReveal 1.1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 0.25s;
}


.feature-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  color: #ffffff;
}

.feature-title::first-letter {
  text-transform: uppercase;
}

.feature-title span {
  text-transform: lowercase;
  color: #ff002f;
  display: inline-block;

  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);

  transform: translateZ(0);
  backface-visibility: hidden;
}


.feature-title::first-letter {
  text-transform: uppercase;
}

.feature-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;

  border-radius: 10px;
  transform: translateY(18px) scale(1.04);
}

@keyframes featureTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featureImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.edicao-viral-section {
  background: #000;
  padding: 32px 20px 48px;
  text-align: center;
}

.edicao-viral-title,
.edicao-viral-images img {
  opacity: 0;
  transform: translateY(18px);
}

.edicao-viral-section.is-visible .edicao-viral-title {
  animation: edicaoTitleReveal 1s cubic-bezier(.2,.7,.2,1) forwards;
}

.edicao-viral-section.is-visible .edicao-viral-images img {
  animation: edicaoImageReveal 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}

.edicao-viral-section.is-visible .edicao-viral-images img:nth-child(1) {
  animation-delay: 0.25s;
}

.edicao-viral-section.is-visible .edicao-viral-images img:nth-child(2) {
  animation-delay: 0.45s;
}


.edicao-viral-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  color: #ffffff;
  margin-bottom: 0;
}

.edicao-viral-title::first-letter {
  text-transform: uppercase;
}

.edicao-viral-title span {
  color: #ff002f;
  display: inline-block;

  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);

  transform: translateZ(0);
  backface-visibility: hidden;
}

/* CONTAINER DAS IMAGENS */
.edicao-viral-images {
  display: flex;
  justify-content: center;
  gap: 0;
}

.edicao-viral-images img {
  max-width: 48%;
  margin: 12px;
  padding: 18px;
  border-radius: 12px;

  transform: translateY(18px) scale(1.04);

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0) 70%
  );
}


.edicao-viral-title::first-letter {
  text-transform: uppercase;
}

@keyframes edicaoTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes edicaoImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.catalogo-section {
  background: #000;
  padding: 48px 16px 20px;
  margin-top: 0;
  padding-top: 0;
}

.catalogo-title,
.catalogo-grid img {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.catalogo-section.is-visible .catalogo-title {
  animation: catalogoTitleReveal 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

.catalogo-section.is-visible .catalogo-grid img {
  animation: catalogoItemReveal 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}

.catalogo-section.is-visible .catalogo-grid img:nth-child(3n + 1) {
  animation-delay: 0.15s;
}
.catalogo-section.is-visible .catalogo-grid img:nth-child(3n + 2) {
  animation-delay: 0.25s;
}
.catalogo-section.is-visible .catalogo-grid img:nth-child(3n + 3) {
  animation-delay: 0.35s;
}


.catalogo-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  text-align: center;
  color: #ffffff;
}

.catalogo-title span {
  text-transform: uppercase;
  color: #ff002f;

  text-shadow:
    0 0 3px rgba(255, 0, 47, 0.55),
    0 0 8px rgba(255, 0, 47, 0.35);

  transform: translateZ(0);
  backface-visibility: hidden;
}


/* GRID DO CATÁLOGO */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalogo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;

  padding: 6px;
  background: #000;
  box-sizing: border-box;
  border-radius: 8px;
}

@keyframes catalogoTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes catalogoItemReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.neon-offer-box {
  background: #000;
  padding-top: 48px;     /* mantém em cima */
  padding-right: 20px;
  padding-bottom: 0;    /* zera embaixo */
  padding-left: 20px;
  display: flex;
  justify-content: center;
}


.neon-frame {
  max-width: 1100px;
  width: 100%;
  padding: 36px 24px;
  border-radius: 18px;
  border: 2px solid #ff002f;

  /* SOMENTE BORDA NEON, SEM AURA INTERNA */
  box-shadow:
    0 0 6px rgba(255,0,47,0.9),
    0 0 14px rgba(255,0,47,0.6);

  background: #000; /* fundo sólido, sem brilho */
  text-align: center;
}


/* TÍTULO PADRÃO */
.section-title {
  font-size: 1.50rem;       /* mesmo tamanho do h1 */
  font-weight: 800;          /* mesma espessura */
  line-height: 1.55;         /* mesma altura */
  letter-spacing: 0.3px;     /* mesmo espaçamento entre letras */
  text-transform: uppercase; /* minúsculas */
  color: #ffffff;

  margin-bottom: 0px;       /* igual ao h1 */
  
  animation: titleReveal 1.1s ease-out forwards; /* mesma animação */
  animation-delay: 0.6s;                         /* mesma delay */
  opacity: 0;                                    /* inicia invisível */
}

.section-title span {
  text-transform: uppercase;
  color: #ff002f;

  text-shadow:
    0 0 4px rgba(255, 0, 47, 0.85),
    0 0 10px rgba(255, 0, 47, 0.7),
    0 0 20px rgba(255, 0, 47, 0.55);
}

.section-title::first-letter {
  text-transform: uppercase;
}

/* PARÁGRAFO */
.section-text {
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  color: #ffffff;
}

/* GRID 3x3 */
.grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.grid-9 img {
  width: 100%;
  aspect-ratio: 1080 / 1350;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* PREÇO ANTIGO */
.price-old {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* PREÇO NOVO */
.price-new {
  font-size: 2.30rem;
  font-weight: 800;
  color: #ff002f;
  text-shadow:
    0 0 8px rgba(255,0,47,0.8),
    0 0 18px rgba(255,0,47,0.6),
    0 0 36px rgba(255,0,47,0.4);
}

/* ============================= */
/* ANIMAÇÕES – NEON OFFER BOX */
/* ============================= */

.neon-frame,
.neon-offer-box .section-title,
.neon-offer-box .section-text,
.neon-offer-box .grid-9 img,
.neon-offer-box .price-old,
.neon-offer-box .price-new {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* FRAME */
.neon-offer-box.is-visible .neon-frame {
  opacity: 1;
  transform: translateY(0);
}

/* TÍTULO */
.neon-offer-box.is-visible .section-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* TEXTO */
.neon-offer-box.is-visible .section-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* GRID – CASCATA */
.neon-offer-box.is-visible .grid-9 img {
  opacity: 1;
  transform: translateY(0);
}

.neon-offer-box .grid-9 img:nth-child(1)  { transition-delay: 0.35s; }
.neon-offer-box .grid-9 img:nth-child(2)  { transition-delay: 0.40s; }
.neon-offer-box .grid-9 img:nth-child(3)  { transition-delay: 0.45s; }
.neon-offer-box .grid-9 img:nth-child(4)  { transition-delay: 0.50s; }
.neon-offer-box .grid-9 img:nth-child(5)  { transition-delay: 0.55s; }
.neon-offer-box .grid-9 img:nth-child(6)  { transition-delay: 0.60s; }
.neon-offer-box .grid-9 img:nth-child(7)  { transition-delay: 0.65s; }
.neon-offer-box .grid-9 img:nth-child(8)  { transition-delay: 0.70s; }
.neon-offer-box .grid-9 img:nth-child(9)  { transition-delay: 0.75s; }

/* PREÇO ANTIGO */
.neon-offer-box.is-visible .price-old {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* PREÇO NOVO – ENTRADA MAIS FORTE */
.neon-offer-box.is-visible .price-new {
  opacity: 1;
  transform: translateY(0) scale(1.05);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1.05s;
}


/* MOBILE */
@media (max-width: 520px) {
  .grid-9 {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =========================
   SECTION 3 — PRETA / PREMIUM
========================= */

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.show .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.35s;
}

.neon-title {
  color: #ff002f;
  text-shadow:
    0 0 6px rgba(255, 0, 47, 0.6),
    0 0 14px rgba(255, 0, 47, 0.4),
    0 0 32px rgba(255, 0, 47, 0.3);
  animation: neonPulse 2.4s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255, 0, 47, 0.6),
      0 0 14px rgba(255, 0, 47, 0.4),
      0 0 32px rgba(255, 0, 47, 0.3);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 0, 47, 0.9),
      0 0 24px rgba(255, 0, 47, 0.6),
      0 0 48px rgba(255, 0, 47, 0.5);
  }
}

.neon-paragraph {
  color: #dcdcdc;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  line-height: 1.6;
}

.neon-paragraph span {
  color: #ff002f;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255, 0, 47, 0.55);
}


.proof-section {
  padding-top: 0px;   /* quase colado */
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 0px;
  margin-bottom: 0;
  background: linear-gradient(
    180deg,
    #020202 0%,
    #000000 100%
  );
  overflow: hidden;
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* TITULO */
.proof-section h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

/* destaque opcional */
.proof-section h1 span {
  color: var(--red); /* pode remover se quiser 100% branco */
}

.proof-section h1 span::first-letter {
  text-transform: uppercase;
}

/* IMAGEM */
.proof-image {
  display: flex;
  justify-content: center;
}

.proof-image img {
  max-width: 720px;
  width: 100%;
  border-radius: 14px;
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.85));
}

/* H1 NEON — SECTION 3 */
.neon-title {
  width: 100%;
  text-align: center;
  margin-top: 28px; /* distância da imagem */
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff002f;

  text-shadow:
    0 0 8px rgba(255, 0, 47, 0.7),
    0 0 22px rgba(255, 0, 47, 0.6),
    0 0 42px rgba(255, 0, 47, 0.4);
}

/* PARÁGRAFO — SECTION 3 */
.neon-paragraph {
  margin-top: 0;              /* alinhado com o h1 */
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

  font-size: 0.98rem;         /* 👈 mesmo tamanho do h1 */
  font-weight: 800;           /* 👈 mesmo peso */
  line-height: 1.55;          /* 👈 mesma altura */
  letter-spacing: 0.3px;      /* 👈 mesmo tracking */
  text-transform: lowercase;  /* 👈 mesmo casing */

  animation: titleReveal 1.1s ease-out forwards;
  animation-delay: 0.8s;      /* leve delay após o h1 */
  opacity: 0;

  color: #ffffff;
}

.neon-paragraph span {
  color: #ff002f;
  font-weight: 800; /* acompanha o título */
  text-shadow:
    0 0 4px rgba(255, 0, 47, 0.85),
    0 0 10px rgba(255, 0, 47, 0.7),
    0 0 20px rgba(255, 0, 47, 0.55);
}

/* mantém a primeira letra elegante como o h1 */
.neon-paragraph::first-letter {
  text-transform: uppercase;
}


/* =========================
   CARROSSEL — ESTILO NETFLIX
========================= */

.netflix-carousel {
  position: relative;
  margin-top: 48px;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 40px;

  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex: 0 0 auto;
  width: 140px;
  height: 250px; /* formato story */
  object-fit: cover;
  border-radius: 14px;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.carousel-track img:hover {
  transform: scale(1.08);
  z-index: 2;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.9);
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.netflix-carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn.left {
  left: 8px;
}

.carousel-btn.right {
  right: 8px;
}

/* PARÁGRAFO FINAL — SECTION 3 */
.final-paragraph {
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;

  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 2.1;
  text-transform: uppercase;

  color: #ffffff;
}

.final-paragraph strong {
  font-weight: 600;
}

/* SELO DE GARANTIA */
.guarantee-badge {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.guarantee-badge img {
  width: 84px;          /* pequeno e discreto */
  max-width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.8));
}

/* =========================
   SECTION 4 — OFERTA FINAL
========================= */

.offer-section {
  margin-top: 0;
  padding-top: 24px;     /* colada na section 3 */
  padding-bottom: 80px; /* só espaço embaixo */
  padding-left: 20px;
  padding-right: 20px;

  background: linear-gradient(
    180deg,
    #000000 0%,
    #020202 100%
  );
}


.offer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.offer-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.25;

  margin-bottom: 24px; /* ✅ encaixe premium */
}


.offer-title span {
  color: var(--red);
  text-shadow: 0 0 30px rgba(255, 0, 47, 0.7);
}

/* CARD */
.offer-card {
  position: relative;
  overflow: hidden;

  background: url("img/bg-card.png") center / cover no-repeat;

  border-radius: 18px;
  padding: 48px 32px;
  max-width: 520px;
  margin: 0 auto;

   animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 0 1px rgba(255, 0, 47, 0.25),
      0 0 30px rgba(255, 0, 47, 0.35),
      0 30px 80px rgba(0, 0, 0, 0.9);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 0, 47, 0.45),
      0 0 60px rgba(255, 0, 47, 0.55),
      0 40px 100px rgba(0, 0, 0, 0.95);
  }
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 0, 47, 0.25),
      0 0 30px rgba(255, 0, 47, 0.35),
      0 30px 80px rgba(0, 0, 0, 0.9);
}
}

/* OVERLAY CONTROLÁVEL */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.45)
  );

  z-index: 1;
}

/* CONTEÚDO SEMPRE NA FRENTE */
.offer-card > * {
  position: relative;
  z-index: 2;
}


/* NOME DO PRODUTO */
.product-name {
  font-size: 1.8rem;          /* cresce o texto */
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  color: #ffffff;
  text-transform: uppercase;
}

.product-name span {
  color: var(--red);

  text-shadow:
    0 0 10px rgba(255, 0, 47, 0.8),
    0 0 22px rgba(255, 0, 47, 0.7),
    0 0 44px rgba(255, 0, 47, 0.5);
}


/* LISTA */
/* LISTA — ALINHADA À ESQUERDA */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;

  max-width: 360px;        /* mantém compacto */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.product-features li {
  position: relative;
  padding-left: 22px;

  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 2.2;
  opacity: 0.95;
}

/* BOLINHA */
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;

  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: var(--red);
  box-shadow:
    0 0 8px rgba(255, 0, 47, 0.8),
    0 0 18px rgba(255, 0, 47, 0.6);
}


/* PREÇO */
.price-box {
  margin-bottom: 32px;
}

.price-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1px;
  opacity: 0.7;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 35px rgba(255, 0, 47, 0.8);
}

/* BOTÃO */

/* ============================= */
/* ANIMAÇÕES – CTA SECTION */
/* ============================= */

.cta-warning,
.cta-image img,
.cta-frame,
.cta-product,
.cta-list li,
.cta-price,
.cta-installments,
.cta-button {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* WARNING */
.cta-section.is-visible .cta-warning {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGEM */
.cta-section.is-visible .cta-image img {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.15s;
}

/* FRAME */
.cta-section.is-visible .cta-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* PRODUTO */
.cta-section.is-visible .cta-product {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* LISTA – CASCATA */
.cta-section.is-visible .cta-list li {
  opacity: 1;
  transform: translateY(0);
}

.cta-list li:nth-child(1)  { transition-delay: 0.45s; }
.cta-list li:nth-child(2)  { transition-delay: 0.48s; }
.cta-list li:nth-child(3)  { transition-delay: 0.51s; }
.cta-list li:nth-child(4)  { transition-delay: 0.54s; }
.cta-list li:nth-child(5)  { transition-delay: 0.60s; }
.cta-list li:nth-child(6)  { transition-delay: 0.63s; }
.cta-list li:nth-child(7)  { transition-delay: 0.66s; }
.cta-list li:nth-child(8)  { transition-delay: 0.69s; }
.cta-list li:nth-child(9)  { transition-delay: 0.72s; }
.cta-list li:nth-child(10) { transition-delay: 0.75s; }
.cta-list li:nth-child(11) { transition-delay: 0.78s; }
.cta-list li:nth-child(12) { transition-delay: 0.81s; }
.cta-list li:nth-child(13) { transition-delay: 0.84s; }
.cta-list li:nth-child(14) { transition-delay: 0.87s; }

/* PREÇO */
.cta-section.is-visible .cta-price {
  opacity: 1;
  transform: translateY(0) scale(1.06);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1s;
}

/* PARCELAS */
.cta-section.is-visible .cta-installments {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

/* BOTÃO */
.cta-section.is-visible .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}


.cta-section {
  background: #000;
  padding: 0px;
  text-align: center;
}

.cta-warning {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 40px;
  font-family: inherit;
}

.cta-image img {
  max-width: 115px;
  margin-bottom: 30px;
  filter:
  drop-shadow(0 0 8px rgba(255, 0, 47, 0.8))
  drop-shadow(0 0 18px rgba(255, 0, 47, 0.6))
  drop-shadow(0 0 32px rgba(255, 0, 47, 0.4));

}

.cta-frame {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 10px 43px 22px; /* aumentei apenas o padding inferior */
  font-family: inherit;
}

/* borda interna com laterais puxadas pra dentro e base mais afastada */
.cta-frame::before {
  content: "";
  position: absolute;
  top: 0;               /* topo igual */
  bottom: 0px;        /* cria espaço na parte de baixo da borda */
  left: 18px;
  right: 18px;
  border: 0.1px solid #3a3a3a;
  border-radius: 18px;
  pointer-events: none;
}



.cta-product {
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 15px;      /* espaço em cima do texto */
  margin-bottom: 15px;

  color: #ff002f;

  text-shadow:
    0 0 8px rgba(255, 0, 47, 0.8),
    0 0 18px rgba(255, 0, 47, 0.5),
    0 0 30px rgba(255, 0, 47, 0.3);
}


.cta-list {
  list-style: none;
  padding: 0;
  margin: 0;          /* remove todos os espaços externos */
  text-align: left;
  padding-left: 15px;
}

.cta-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-family: inherit; /* usa a mesma fonte do h1 da section */
}


.cta-list li:last-child {
  margin-bottom: 0;
}


.cta-list li::before {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.cta-list li.no {
  color: rgba(119, 119, 119, 0.45); /* cinza elegante */
}


.cta-list li.ok::before {
  background-image: url("img/check.png");
}

.cta-list li.no::before {
  background-image: url("img/x.png");
}

.cta-price {
  font-size: 2.30rem;
  font-weight: 900;
  color: #ff002f;
  margin: 6px 0 4px;

  text-shadow:
    0 0 6px rgba(255, 0, 47, 0.8),
    0 0 14px rgba(255, 0, 47, 0.5),
    0 0 24px rgba(255, 0, 47, 0.3);
}


.cta-installments {
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-family: inherit;
}

.cta-button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 1.0rem;
  font-weight: 800;
  text-decoration: none;
  color: #000000;
  background: linear-gradient(to bottom, #d60028, #af001d);
  font-family: inherit;
}

/* ============================= */
/* ANIMAÇÕES – CTA GLOW SECTION */
/* ============================= */

.cta-glow-frame,
.cta-glow-product,
.cta-glow-list li,
.cta-glow-price,
.cta-glow-installments,
.cta-glow-button {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* FRAME */
.cta-glow-section.is-visible .cta-glow-frame {
  opacity: 1;
  transform: translateY(0);
}

/* PRODUTO */
.cta-glow-section.is-visible .cta-glow-product {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* LISTA – CASCATA */
.cta-glow-section.is-visible .cta-glow-list li {
  opacity: 1;
  transform: translateY(0);
}

.cta-glow-list li:nth-child(1)  { transition-delay: 0.30s; }
.cta-glow-list li:nth-child(2)  { transition-delay: 0.33s; }
.cta-glow-list li:nth-child(3)  { transition-delay: 0.36s; }
.cta-glow-list li:nth-child(4)  { transition-delay: 0.39s; }
.cta-glow-list li:nth-child(5)  { transition-delay: 0.45s; }
.cta-glow-list li:nth-child(6)  { transition-delay: 0.48s; }
.cta-glow-list li:nth-child(7)  { transition-delay: 0.51s; }
.cta-glow-list li:nth-child(8)  { transition-delay: 0.54s; }
.cta-glow-list li:nth-child(9)  { transition-delay: 0.57s; }
.cta-glow-list li:nth-child(10) { transition-delay: 0.60s; }
.cta-glow-list li:nth-child(11) { transition-delay: 0.63s; }
.cta-glow-list li:nth-child(12) { transition-delay: 0.66s; }
.cta-glow-list li:nth-child(13) { transition-delay: 0.69s; }
.cta-glow-list li:nth-child(14) { transition-delay: 0.72s; }

/* PREÇO */
.cta-glow-section.is-visible .cta-glow-price {
  opacity: 1;
  transform: translateY(0) scale(1.06);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.85s;
}

/* PARCELAS */
.cta-glow-section.is-visible .cta-glow-installments {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

/* BOTÃO */
.cta-glow-section.is-visible .cta-glow-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}


.cta-glow-section {
  background: #000;
  padding-top: 30px;      /* 👈 remove o espaço de cima */
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* TEXTO DE ALERTA */
.cta-glow-warning {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* IMAGEM */
.cta-glow-image img {
  max-width: 115px;
  margin-bottom: 30px;
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 47, 0.8))
    drop-shadow(0 0 18px rgba(255, 0, 47, 0.6))
    drop-shadow(0 0 32px rgba(255, 0, 47, 0.4));
}

/* FRAME PRINCIPAL */
.cta-glow-frame {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 42px 26px;
  border-radius: 18px;
  isolation: isolate;
}

/* BORDA VERMELHA COM GLOW */
.cta-glow-frame::before {
  content: "";
  position: absolute;

  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;

  border-radius: 12px; /* 👈 MENOR que o recuo */

  border: 1px solid #ff002f;

  box-shadow:
    0 0 6px rgba(255, 0, 47, 0.9),
    0 0 14px rgba(255, 0, 47, 0.6),
    0 0 28px rgba(255, 0, 47, 0.35);

  pointer-events: none;
}


/* GLOW DIFUSO EXTERNO */
.cta-glow-frame::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;


  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

/* PRODUTO */
.cta-glow-product {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 16px 0;
  color: #ff002f;

  text-shadow:
    0 0 8px rgba(255, 0, 47, 0.8),
    0 0 18px rgba(255, 0, 47, 0.5),
    0 0 30px rgba(255, 0, 47, 0.3);
}

/* LISTA */
.cta-glow-list {
  list-style: none;
  padding: 0 0 0 12px;
  margin: 0;
  text-align: left;
}

.cta-glow-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.cta-glow-list li::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-glow-list li.ok::before {
  background-image: url("img/check.png");
}

.cta-glow-list li.no {
  color: rgba(119, 119, 119, 0.45);
}

.cta-glow-list li.no::before {
  background-image: url("img/x.png");
}

/* PREÇO */
.cta-glow-price {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ff002f;
  margin: 8px 0 4px;

  text-shadow:
    0 0 6px rgba(255, 0, 47, 0.8),
    0 0 14px rgba(255, 0, 47, 0.5),
    0 0 24px rgba(255, 0, 47, 0.3);
}

.cta-glow-installments {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* BOTÃO */
.cta-glow-button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 1.0rem;
  font-weight: 800;
  text-decoration: none;
  color: #000;
  background: linear-gradient(to bottom, #d60028, #af001d);
}

/* =========================
   SECTION DUPLICADA (ALT)
========================= */

/* ================================ */
/* ANIMAÇÕES – CTA GLOW ALT (PREMIUM) */
/* ================================ */

.cta-glow-frame-alt,
.cta-glow-product-alt,
.cta-glow-list-alt li,
.cta-glow-price-alt,
.cta-glow-installments-alt,
.cta-glow-button-alt {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

/* FRAME */
.cta-glow-section-alt.is-visible .cta-glow-frame-alt {
  opacity: 1;
  transform: translateY(0);
}

/* PRODUTO */
.cta-glow-section-alt.is-visible .cta-glow-product-alt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* LISTA */
.cta-glow-section-alt.is-visible .cta-glow-list-alt li {
  opacity: 1;
  transform: translateY(0);
}

.cta-glow-list-alt li:nth-child(1) { transition-delay: 0.35s; }
.cta-glow-list-alt li:nth-child(2) { transition-delay: 0.45s; }
.cta-glow-list-alt li:nth-child(3) { transition-delay: 0.55s; }

/* PREÇO */
.cta-glow-section-alt.is-visible .cta-glow-price-alt {
  opacity: 1;
  transform: translateY(0) scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.7s;
}

/* PARCELAS */
.cta-glow-section-alt.is-visible .cta-glow-installments-alt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}

/* BOTÃO */
.cta-glow-section-alt.is-visible .cta-glow-button-alt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}


.cta-glow-section-alt {
  background: #000;
  padding-top: 0px;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* FRAME */
.cta-glow-frame-alt {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 42px 26px;
  border-radius: 18px;
  isolation: isolate;
}

/* BORDA VERMELHA */
.cta-glow-frame-alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;

  border-radius: 12px;
  border: 1px solid #ff002f;

  box-shadow:
    0 0 6px rgba(255, 0, 47, 0.9),
    0 0 14px rgba(255, 0, 47, 0.6),
    0 0 28px rgba(255, 0, 47, 0.35);

  pointer-events: none;
}

/* PRODUTO */
.cta-glow-product-alt {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 16px 0;
  color: #ff002f;
  text-shadow:
    0 0 8px rgba(255, 0, 47, 0.8),
    0 0 18px rgba(255, 0, 47, 0.5),
    0 0 30px rgba(255, 0, 47, 0.3);
}

/* LISTA */
.cta-glow-list-alt {
  list-style: none;
  padding: 0 0 0 12px;
  margin: 0;
  text-align: left;
}

.cta-glow-list-alt li {
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.cta-glow-list-alt li::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-glow-list-alt li.ok::before {
  background-image: url("img/check.png");
}

.cta-glow-list-alt li.no {
  color: rgba(119, 119, 119, 0.45);
}

.cta-glow-list-alt li.no::before {
  background-image: url("img/x.png");
}

/* PREÇO */
.cta-glow-price-alt {
  font-size: 2.3rem;
  font-weight: 900;
  margin: 8px 0 4px;
}

/* R$ — branco LIMPO, sem brilho */
.price-currency {
  color: #ffffff;
  text-shadow: none;
  margin-right: 6px;
  font-weight: 200;
  font-size: 1.0rem;
}

/* Valor — vermelho COM glow */
.price-value {
  color: #ff002f;
  text-shadow:
    0 0 6px rgba(255, 0, 47, 0.8),
    0 0 14px rgba(255, 0, 47, 0.5),
    0 0 24px rgba(255, 0, 47, 0.3);
}


.cta-glow-installments-alt {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* BOTÃO */
.cta-glow-button-alt {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  color: #000;
  background: linear-gradient(to bottom, #d60028, #af001d);
}
/* SECTION DO AVISO FINAL */
.cta-warning-section {
  background: #000;
  padding: 14px 0 24px; /* controle fino de espaçamento */
  text-align: center;
    margin-top: -60px; /* 👈 cola na section de cima */

}

/* TEXTO */
.cta-warning-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin: 0;
}

/* PRIMEIRA LETRA MAIÚSCULA */
.cta-warning-text::first-letter {
  text-transform: uppercase;
}


/* =========================
   AJUSTES MOBILE — HERO
========================= */

@media (max-width: 768px) {
  .hero {
    min-height: 380px;
    background-size: 120%;
    background-position: center top;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero p {
    font-size: 0.58rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 0px;
  }
}

@media (min-width: 1024px) {
  .tech-logo {
    font-size: clamp(36rem, 80vw, 114rem);
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

