@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fundo-a: #0a1826;
  --fundo-b: #1c3553;
  --azul: #247cff;
  --azul-claro: #6ea8ff;
  --azul-glow: rgba(36, 124, 255, 0.45);
  --verde: #25d366;
  --verde-claro: #3fe07f;
  --texto-suave: #aab4c4;
  --borda-suave: rgba(255, 255, 255, 0.09);
  --vidro: rgba(255, 255, 255, 0.045);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #24466e 0%, var(--fundo-a) 55%), linear-gradient(160deg, var(--fundo-a), var(--fundo-b));
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ─── Atmosfera (fundo decorativo) ─────────────────────────────────────── */

.atmosfera {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orbe {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: derivar 16s ease-in-out infinite alternate;
}

.orbe--1 {
  width: 42vw;
  height: 42vw;
  max-width: 640px;
  max-height: 640px;
  top: -14vw;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--azul) 0%, transparent 70%);
}

.orbe--2 {
  width: 30vw;
  height: 30vw;
  max-width: 460px;
  max-height: 460px;
  bottom: -10vw;
  right: -6vw;
  background: radial-gradient(circle, var(--verde) 0%, transparent 72%);
  opacity: 0.18;
  animation-duration: 20s;
  animation-delay: -6s;
}

@keyframes derivar {
  from { transform: translate(-50%, 0) scale(1); }
  to   { transform: translate(-46%, 3vw) scale(1.08); }
}

.orbe--2 {
  animation-name: derivar2;
}

@keyframes derivar2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-2vw, -2vw) scale(1.12); }
}

.grao {
  position: absolute;
  inset: -10%;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .orbe { animation: none; }
}

/* ─── Reveal (entrada escalonada) ──────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: subir 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--atraso, 0s);
}

@keyframes subir {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ─── Hero única ──────────────────────────────────────────────────────── */

.hero-unica {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
  position: relative;
}

.hero-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.logo {
  width: 148px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 24px rgba(36, 124, 255, 0.25));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--borda-suave);
  background: var(--vidro);
  color: var(--azul-claro);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker-ponto {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 8px 1px var(--verde-claro);
  animation: pulsar 1.8s ease-in-out infinite;
}

@keyframes pulsar {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.headline {
  font-size: clamp(1.85rem, 4.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 0 2rem;
  background: linear-gradient(180deg, #ffffff 45%, #c7d6ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline-destaque {
  background: linear-gradient(100deg, var(--azul-claro), var(--azul) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Vídeo ───────────────────────────────────────────────────────────── */

.video-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(110, 168, 255, 0.5), rgba(255, 255, 255, 0.04) 40%, rgba(37, 211, 102, 0.25));
  box-shadow: 0 20px 60px -20px rgba(36, 124, 255, 0.35);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(160deg, #16283e, #0e1c2d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--texto-suave);
  font-size: 0.9rem;
}

.video-vsl {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #0e1c2d;
  display: block;
  object-fit: cover;
}

.play-icone {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
  box-shadow: 0 8px 24px -6px var(--azul-glow);
}

.play-icone svg {
  margin-left: 2px;
  color: #ffffff;
}

.play-icone-anel {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(110, 168, 255, 0.5);
  animation: aneis 2.4s ease-out infinite;
}

@keyframes aneis {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .play-icone-anel { animation: none; }
}

/* ─── Botão WhatsApp ──────────────────────────────────────────────────── */

.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(100deg, var(--verde-claro), var(--verde) 65%);
  color: #062b13;
  border: none;
  padding: 1.05rem 1.9rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px -12px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp svg {
  transition: transform 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.7);
}

.btn-whatsapp:hover svg {
  transform: translateX(3px);
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: brilho 3.2s ease-in-out infinite;
}

@keyframes brilho {
  0%   { left: -60%; }
  35%  { left: 140%; }
  100% { left: 140%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp::before { animation: none; display: none; }
}

.btn-whatsapp--grande {
  width: 100%;
  max-width: 420px;
}

/* ─── Benefícios (3 blocos) ───────────────────────────────────────────── */

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

.beneficio {
  position: relative;
  background: var(--vidro);
  border: 1px solid var(--borda-suave);
  border-radius: 14px;
  padding: 1.4rem 1.15rem;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.beneficio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--verde));
  opacity: 0.7;
}

.beneficio:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 168, 255, 0.3);
  background: rgba(255, 255, 255, 0.065);
}

.beneficio-icone {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px -4px var(--azul-glow);
}

.beneficio-icone svg {
  width: 19px;
  height: 19px;
  color: #ffffff;
}

.beneficio h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.beneficio p {
  color: var(--texto-suave);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ─── Responsivo ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-unica {
    padding: 2.5rem 0;
  }

  .logo {
    width: 116px;
    margin-bottom: 1.25rem;
  }

  .headline {
    margin-bottom: 1.5rem;
  }

  .video-wrapper {
    margin-bottom: 1.5rem;
  }

  .beneficios {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.25rem;
  }

  .beneficio {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.9rem;
    padding: 0.95rem 1.1rem;
  }

  .beneficio::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
  }

  .beneficio-icone {
    grid-row: 1 / 3;
    align-self: start;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .beneficio h3 {
    font-size: 0.92rem;
    margin: 0 0 0.15rem;
  }

  .beneficio p {
    font-size: 0.8rem;
  }
}
