/* ═══════════════════════════════════════
   LZ4 Digital — Style v7 Full Visual
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ─── Tokens ─────────────────────────── */
:root {
  --navy:    #0a1628;
  --navy-2:  #0c1840;
  --blue:    #1d4ed8;
  --blue-m:  #2563eb;
  --blue-l:  #3b82f6;
  --blue-3:  #60a5fa;
  --blue-4:  #93c5fd;
  --blue-5:  #bfdbfe;
  --blue-6:  #dbeafe;
  --blue-bg: #eff6ff;
  --white:   #ffffff;
  --gray-t:  #475569;
  --amber:   #f59e0b;
  --amber-l: #fbbf24;
  --radius:  20px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --font-h:  'Space Grotesk', sans-serif;
  --font-b:  'Nunito', sans-serif;
}

/* ─── Reset ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─── Container ──────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { padding: 0 28px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ─── Tipografia ─────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.text-gd-light {
  background: linear-gradient(130deg, var(--blue-3) 0%, var(--blue-5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gd-dark {
  background: linear-gradient(130deg, var(--blue) 0%, var(--blue-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--blue-4); }

/* ─── Wave Dividers ──────────────────── */
.wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 5;
}
.wave-bottom svg { display: block; width: 100%; height: 48px; }
@media (min-width: 640px)  { .wave-bottom svg { height: 60px; } }
@media (min-width: 1024px) { .wave-bottom svg { height: 72px; } }

/* ─── Shared keyframes ───────────────── */
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-5deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes ringRotateReverse {
  from { transform: translate(-50%, -54%) rotate(0deg); }
  to   { transform: translate(-50%, -54%) rotate(-360deg); }
}
@keyframes avatarFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes bgGlow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(22px,-14px) scale(1.07); }
}
@keyframes recBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.6; }
}
@keyframes orbitRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes aboutOrbit {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.90rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
@media (min-width: 640px) { .btn { padding: 14px 28px; font-size: 0.95rem; } }
.btn--solid {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(255,255,255,0.85);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,255,255,0.22); }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.32);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.btn--blue {
  background: var(--blue-m);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.btn--blue:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,99,235,0.48); }
.btn--cta {
  background: var(--white);
  color: var(--blue);
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 800;
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
@media (min-width: 768px) { .btn--cta { padding: 16px 36px; font-size: 0.98rem; } }
.btn--cta:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}
@media (min-width: 768px) { .nav { padding: 20px 0; } }
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-img   { height: 36px; width: auto; }
@media (min-width: 768px) { .logo-img { height: 40px; } }
.nav-links  { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; gap: 36px; }
}
.nav-links a {
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  padding: 10px 22px !important;
  background: var(--blue-m) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border: 2px solid rgba(255,255,255,0.18) !important;
  transition: all 0.25s !important;
}
.btn-nav:hover { box-shadow: 0 8px 28px rgba(37,99,235,0.45) !important; transform: translateY(-2px) !important; }
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.28s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 2px solid rgba(147,197,253,0.35);
  color: var(--white);
  font-size: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.mobile-close:hover { border-color: var(--blue-4); background: rgba(37,99,235,0.12); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 4px 0; }
.mobile-link {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
  display: block;
  padding: 8px 0;
  letter-spacing: -0.04em;
}
.mobile-link:hover { color: var(--white); }
.mobile-link--cta { color: var(--blue-4); font-size: 1.5rem; margin-top: 14px; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  background:
    radial-gradient(circle at 52% 18%, rgba(255,255,255,0.10) 0%, transparent 46%),
    radial-gradient(ellipse 90% 70% at 50% 80%, rgba(147,197,253,0.30) 0%, rgba(96,165,250,0.12) 50%, transparent 72%),
    linear-gradient(175deg, #0c1a38 0%, #152e72 30%, #2350c0 62%, #4080e8 100%);
  padding-top: 82px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    background:
      radial-gradient(ellipse 52% 72% at 82% 58%, rgba(255,255,255,0.30) 0%, rgba(186,230,253,0.22) 24%, rgba(147,197,253,0.10) 48%, transparent 66%),
      radial-gradient(ellipse 80% 95% at 84% 62%, rgba(147,197,253,0.48) 0%, rgba(96,165,250,0.22) 42%, transparent 64%),
      radial-gradient(ellipse 45% 55% at 4% 10%, rgba(255,255,255,0.07) 0%, transparent 58%),
      linear-gradient(148deg, #0d1f4a 0%, #152e72 18%, #1c3e9a 34%, #2350c0 50%, #3067d8 66%, #4882e8 82%, #62a0f5 100%);
    padding-top: 110px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-atm { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-atm-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 60%, black 0%, transparent 70%);
}
.hero-atm-glow {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(59,130,246,0.16) 0%, transparent 65%);
  filter: blur(55px);
  animation: bgGlow 14s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero-atm-dots { background-size: 36px 36px; mask-image: radial-gradient(ellipse 50% 55% at 20% 42%, black 0%, transparent 70%); }
  .hero-atm-glow { width: 500px; height: 500px; bottom: -100px; left: -80px; }
}
.hero-rays { display: none; }
@media (min-width: 1024px) {
  .hero-rays { display: block; position: absolute; inset: 0; pointer-events: none; z-index: 0; }
}
.hero-ray { position: absolute; top: 0; pointer-events: none; transform-origin: top center; }
.hero-ray--1 {
  right: 20%; width: 280px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.08) 55%, transparent 100%);
  transform: rotate(-12deg) skewX(-4deg);
}
.hero-ray--2 {
  right: 36%; width: 130px; height: 90%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.05) 62%, transparent 100%);
  transform: rotate(-6deg);
}

.hero-art {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-art { justify-content: flex-start; } }

/* ─── Layout hero ─────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-layout { grid-template-columns: 5fr 7fr; align-items: center; gap: 24px; }
}
.hero-copy { position: relative; z-index: 2; text-align: center; padding-bottom: 8px; }
@media (min-width: 1024px) { .hero-copy { text-align: left; padding-bottom: 0; } }
.hero-title {
  font-size: clamp(2.5rem, 8.5vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-em {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.0em;
  background: linear-gradient(128deg, #fde68a 0%, #fbbf24 52%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.05rem; margin-bottom: 36px; } }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; gap: 14px; } }

/* ─── Palco do avatar ─────────────────── */
.hero-stage {
  position: relative;
  height: 390px;
  z-index: 2;
  margin-top: 4px;
}
@media (min-width: 480px)  { .hero-stage { height: 430px; } }
@media (min-width: 640px)  { .hero-stage { height: 460px; margin-top: 8px; } }
@media (min-width: 1024px) { .hero-stage { height: 580px; margin-top: 0; } }

/* ─── Objetos de cena ─────────────────── */
.scene-obj {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}
.scene-obj--star-lg  { top: 5%;  left: 12%; animation: floatB 5s ease-in-out infinite; }
.scene-obj--claquete { top: 4%;  right: 4%; animation: floatA 7s ease-in-out infinite; opacity: 0.88; }
.scene-obj--play     { bottom: 26%; right: -1%; animation: floatB 8s ease-in-out infinite 0.5s; }
.scene-obj--star-s1  { top: 52%; right: 5%;  animation: floatA 6s ease-in-out infinite 1.8s; }
.scene-obj--sparkle1 { top: 28%; left: 5%;  animation: floatA 5.5s ease-in-out infinite 1s; }
.scene-obj--star-s2  { display: none; }
.scene-obj--ring     { display: none; }
@media (min-width: 640px) {
  .scene-obj--ring {
    display: block;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%);
    animation: ringRotate 40s linear infinite;
    z-index: 0;
  }
}
@media (min-width: 1024px) {
  .scene-obj--star-lg  { top: 8%;  left: 16%; }
  .scene-obj--claquete { top: 3%;  right: 3%; }
  .scene-obj--play     { bottom: 22%; right: -2%; }
  .scene-obj--star-s1  { top: 56%; right: 4%; }
  .scene-obj--sparkle1 { top: 32%; left: 4%; }
  .scene-obj--star-s2  { display: block; bottom: 28%; right: 36%; animation: floatB 4.5s ease-in-out infinite 2.2s; }
}

/* Atmosfera do palco */
.stage-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.20) 0%, rgba(186,230,253,0.12) 32%, rgba(147,197,253,0.04) 58%, transparent 74%);
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1024px) { .stage-glow { width: 530px; height: 530px; filter: blur(32px); } }
.stage-rim {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 340px;
  background: radial-gradient(ellipse at 50% 54%, rgba(224,242,254,0.45) 0%, rgba(186,230,253,0.18) 42%, transparent 66%);
  filter: blur(22px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1024px) { .stage-rim { width: 320px; height: 430px; bottom: 68px; filter: blur(26px); } }
.stage-floor {
  position: absolute;
  bottom: 42px; left: 50%;
  transform: translateX(-50%);
  width: 220px;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 640px)  { .stage-floor { width: 250px; bottom: 50px; } }
@media (min-width: 1024px) { .stage-floor { width: 280px; bottom: 58px; } }
.stage-shadow {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 16px;
  background: radial-gradient(ellipse, rgba(10,22,40,0.42) 0%, transparent 72%);
  filter: blur(9px);
  pointer-events: none;
  z-index: 3;
}
@media (min-width: 640px)  { .stage-shadow { width: 170px; bottom: 50px; } }
@media (min-width: 1024px) { .stage-shadow { width: 190px; bottom: 60px; filter: blur(11px); } }

/* Carrossel */
.hero-carousel {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 44px;
  z-index: 1;
}
@media (min-width: 640px)  { .hero-carousel { bottom: 50px; } }
@media (min-width: 1024px) { .hero-carousel { bottom: 60px; } }
.carousel-slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.70s ease;
  pointer-events: none;
}
.carousel-slide.is-active { opacity: 1; pointer-events: auto; }
.carousel-img {
  height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 -14px 28px rgba(224,242,254,0.42))
    drop-shadow(0 36px 72px rgba(10,22,40,0.50));
  animation: avatarFloat 9s ease-in-out infinite;
}
@media (min-width: 480px)  { .carousel-img { height: 360px; } }
@media (min-width: 640px)  { .carousel-img { height: 390px; } }
@media (min-width: 1024px) {
  .carousel-img {
    height: 490px;
    filter: drop-shadow(0 -18px 36px rgba(224,242,254,0.48)) drop-shadow(0 44px 88px rgba(10,22,40,0.50));
  }
}
.carousel-nav {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 6;
}
.carousel-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carousel-dot::after {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  transition: all 0.28s ease;
}
.carousel-dot.is-active::after {
  width: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.95);
}
.carousel-dot:hover:not(.is-active)::after { background: rgba(255,255,255,0.58); }

/* ═══════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════ */
.services {
  background: #eef5ff;
  padding: 72px 0 120px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px)  { .services { padding: 88px 0 140px; } }
@media (min-width: 1024px) { .services { padding: 100px 0 160px; } }

.services-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Grande rótulo de fundo */
.svc-bg-label {
  position: absolute;
  top: -2%; right: -3%;
  font-family: var(--font-h);
  font-size: clamp(70px, 14vw, 200px);
  font-weight: 800;
  color: rgba(37,99,235,0.035);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

/* Elementos ambientes flutuantes da seção */
.svc-ambient {
  display: none;
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) { .svc-ambient { display: block; } }
.sva { position: absolute; }
.sva--cam   { top: 12%; left: 1%;   animation: floatA 9s ease-in-out infinite 0.5s; opacity: 0.6; }
.sva--lens  { bottom: 18%; right: 1%; animation: floatB 12s ease-in-out infinite 1.5s; opacity: 0.5; }
.sva--spark { top: 52%; left: 6%;   animation: floatC 6s ease-in-out infinite 2s; }
.sva--film  { bottom: 30%; left: -1%; animation: floatB 10s ease-in-out infinite 3s; opacity: 0.45; }

.services .container { position: relative; z-index: 2; }

.services-header { text-align: center; margin-bottom: 40px; }
@media (min-width: 640px) { .services-header { margin-bottom: 52px; } }
.services-header h2 { font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--navy-2); }

/* ─── Feature: Avatares ───────────────── */
.svc-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(37,99,235,0.09);
  box-shadow: 0 4px 32px rgba(15,30,74,0.07), 0 1px 4px rgba(15,30,74,0.04);
  margin-bottom: 16px;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
@media (min-width: 640px) { .svc-feature { grid-template-columns: 5fr 7fr; margin-bottom: 18px; } }
.svc-feature:hover { box-shadow: 0 24px 72px rgba(15,30,74,0.14); transform: translateY(-3px); }

.svc-feature-stage {
  position: relative;
  background: linear-gradient(148deg, #b8d0ff 0%, #a5c2fe 40%, #c8dbff 70%, #dbeafe 100%);
  min-height: 240px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
@media (min-width: 480px) { .svc-feature-stage { min-height: 280px; } }
@media (min-width: 640px) { .svc-feature-stage { min-height: 300px; } }
@media (min-width: 1024px) { .svc-feature-stage { min-height: 340px; } }

/* Badge ● REC */
.sf-rec {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  display: flex; align-items: center; gap: 6px;
  background: rgba(10,22,40,0.32);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 4px 10px;
  font-family: var(--font-h);
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.sf-rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: recBlink 2s ease-in-out infinite;
}

/* Anel de órbita atrás do avatar */
.sf-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  animation: ringRotateReverse 28s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.sf-glow {
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(37,99,235,0.24) 0%, rgba(147,197,253,0.10) 55%, transparent 74%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
}
@media (min-width: 1024px) { .sf-glow { width: 290px; height: 290px; filter: blur(44px); } }
.sf-shadow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 14px;
  background: radial-gradient(ellipse, rgba(15,30,74,0.20) 0%, transparent 70%);
  filter: blur(9px);
  z-index: 2;
}
.sf-star { position: absolute; z-index: 4; pointer-events: none; }
.sf-star--1 { top: 16px; right: 18px; animation: floatB 4.5s ease-in-out infinite; }
.sf-star--2 { top: 32px; left: 14px; animation: floatA 5s ease-in-out infinite 1s; }
.sf-sparkle { position: absolute; bottom: 48px; left: 14%; z-index: 4; animation: floatB 4s ease-in-out infinite 2s; pointer-events: none; }
.sf-avatar {
  position: relative; z-index: 1;
  height: 210px; width: auto; object-fit: contain;
  filter: drop-shadow(0 -8px 20px rgba(37,99,235,0.24)) drop-shadow(0 18px 36px rgba(15,30,74,0.24));
  animation: avatarFloat 9s ease-in-out infinite 1s;
}
@media (min-width: 480px) { .sf-avatar { height: 248px; } }
@media (min-width: 640px) { .sf-avatar { height: 268px; } }
@media (min-width: 1024px) { .sf-avatar { height: 316px; } }

.svc-feature-info {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 640px) { .svc-feature-info { padding: 40px 36px; } }
@media (min-width: 1024px) { .svc-feature-info { padding: 52px 48px; } }

.svc-num {
  font-family: var(--font-h);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue-3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-feature-info h3 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--navy-2);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.svc-feature-info p {
  font-size: 0.96rem;
  color: var(--gray-t);
  line-height: 1.72;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 1024px) { .svc-feature-info p { max-width: 320px; } }

.svc-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 22px;
}
.svc-marks svg { margin-right: 8px; flex-shrink: 0; }
.svc-marks span {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-m);
  letter-spacing: 0.02em;
}
.svc-marks span + span::before {
  content: '·';
  color: var(--blue-4);
  margin: 0 7px;
  font-size: 0.85em;
}

/* ─── Painéis de serviços ─────────────── */
.svc-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-panel--lp { grid-column: span 2; }
@media (min-width: 640px) { .svc-panels { gap: 14px; } }
@media (min-width: 1024px) {
  .svc-panels { grid-template-columns: repeat(3, 1fr); }
  .svc-panel--lp { grid-column: auto; }
}
.svc-panel {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 230px;
  border: 1.5px solid transparent;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  cursor: default;
}
@media (min-width: 640px) { .svc-panel { min-height: 260px; border-radius: 22px; } }
@media (min-width: 1024px) { .svc-panel { min-height: 280px; } }
.svc-panel:hover { transform: translateY(-6px); }

/* Barra colorida no topo de cada painel */
.svc-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  z-index: 4;
}
.svc-panel--video::before { background: linear-gradient(90deg, var(--blue-3), var(--blue-4)); }
.svc-panel--posts::before { background: linear-gradient(90deg, var(--amber-l), var(--amber)); }
.svc-panel--lp::before    { background: linear-gradient(90deg, var(--blue-m), var(--blue-3)); }

.panel-scene {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.panel-info {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 16px 16px 20px;
}
@media (min-width: 640px)  { .panel-info { padding: 20px 22px 24px; } }
@media (min-width: 1024px) { .panel-info { padding: 22px 24px 26px; } }
.panel-info h3 { font-size: 0.96rem; font-weight: 800; margin-bottom: 4px; }
@media (min-width: 640px) { .panel-info h3 { font-size: 1.05rem; margin-bottom: 6px; } }
.panel-info p  { font-size: 0.78rem; line-height: 1.6; font-weight: 500; opacity: 0.88; }
@media (min-width: 640px) { .panel-info p { font-size: 0.84rem; } }

/* ─── Painel: Vídeos ──────────────────── */
.svc-panel--video {
  background: linear-gradient(145deg, #0f1a2e 0%, #1a2d52 50%, #142040 100%);
  border-color: rgba(147,197,253,0.15);
  box-shadow: 0 4px 24px rgba(10,22,40,0.20);
}
.svc-panel--video:hover { box-shadow: 0 20px 56px rgba(10,22,40,0.44); }
.svc-panel--video .panel-info  { border-top: 1px solid rgba(255,255,255,0.08); }
.svc-panel--video .panel-info h3 { color: var(--white); }
.svc-panel--video .panel-info p  { color: rgba(255,255,255,0.70); }
.svc-panel--video .svc-num       { color: rgba(147,197,253,0.80); }

/* "TAKE 01" texto da cena */
.ps-take {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-h);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  z-index: 2;
}

.svc-panel--video .ps-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-52%, -64%);
}
.svc-panel--video .ps-claquete {
  position: absolute;
  top: 8px; right: -6px;
  transform: rotate(10deg);
  animation: floatA 7s ease-in-out infinite;
}
.svc-panel--video .ps-filmstrip {
  position: absolute;
  bottom: 78px; left: -8px; right: -8px;
}
.svc-panel--video .ps-star {
  position: absolute;
  top: 20px; left: 14px;
  animation: floatB 5s ease-in-out infinite;
}

/* ─── Painel: Posts ───────────────────── */
.svc-panel--posts {
  background: linear-gradient(145deg, #f0f7ff 0%, #e4f0ff 60%, #dbeafe 100%);
  border-color: rgba(37,99,235,0.12);
  box-shadow: 0 4px 24px rgba(15,30,74,0.06);
}
.svc-panel--posts:hover { box-shadow: 0 20px 56px rgba(15,30,74,0.13); border-color: rgba(37,99,235,0.22); }
.svc-panel--posts .panel-info  { border-top: 1px solid rgba(37,99,235,0.10); }
.svc-panel--posts .panel-info h3 { color: var(--navy-2); }
.svc-panel--posts .panel-info p  { color: var(--gray-t); }
.svc-panel--posts .svc-num       { color: var(--blue-3); }

.svc-panel--posts .ps-phone {
  position: absolute;
  top: 6px; right: 10px;
  animation: floatA 8s ease-in-out infinite 0.5s;
}
.svc-panel--posts .ps-badge {
  position: absolute;
  top: 2px; right: 2px;
  animation: floatB 4.5s ease-in-out infinite;
}
/* Badge de engajamento */
.ps-engage {
  position: absolute;
  bottom: 90px; left: 8px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(251,191,36,0.14);
  border: 1px solid rgba(251,191,36,0.30);
  border-radius: 50px;
  padding: 3px 9px;
  font-family: var(--font-h);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--amber);
  animation: floatC 5.5s ease-in-out infinite 1s;
}
.svc-panel--posts .ps-star {
  position: absolute;
  bottom: 86px; right: 10px;
  animation: floatA 5s ease-in-out infinite 1.5s;
}

/* ─── Painel: Landing Pages ───────────── */
.svc-panel--lp {
  background: linear-gradient(145deg, #f8fbff 0%, #f0f6ff 60%, #eef4ff 100%);
  border-color: rgba(37,99,235,0.10);
  box-shadow: 0 4px 24px rgba(15,30,74,0.05);
}
.svc-panel--lp:hover { box-shadow: 0 20px 56px rgba(15,30,74,0.11); border-color: rgba(37,99,235,0.20); }
.svc-panel--lp .panel-info  { border-top: 1px solid rgba(37,99,235,0.09); }
.svc-panel--lp .panel-info h3 { color: var(--navy-2); }
.svc-panel--lp .panel-info p  { color: var(--gray-t); }
.svc-panel--lp .svc-num       { color: var(--blue-3); }

.svc-panel--lp .ps-browser {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
}
.svc-panel--lp .ps-cursor {
  position: absolute;
  bottom: 82px; right: 18%;
  animation: floatB 3.5s ease-in-out infinite 0.8s;
}
.svc-panel--lp .ps-star {
  position: absolute;
  top: 14px; right: 14px;
  animation: floatA 4.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   PORTFÓLIO
   ═══════════════════════════════════════ */
.portfolio {
  background: var(--navy);
  padding: 72px 0 120px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px)  { .portfolio { padding: 88px 0 140px; } }
@media (min-width: 1024px) { .portfolio { padding: 110px 0 150px; } }

.portfolio-super {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: clamp(64px, 13vw, 170px);
  font-weight: 800;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 480px) { .portfolio-super { display: none; } }

/* Elementos ambientes do portfólio */
.pf-ambient {
  display: none;
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) { .pf-ambient { display: block; } }
.pfa { position: absolute; }
.pfa--reel  { top: 8%;    left: 2%;   animation: floatA 12s ease-in-out infinite; opacity: 0.7; }
.pfa--star  { bottom: 14%; right: 3%;  animation: floatB 7s ease-in-out infinite 1s; }
.pfa--spark { top: 55%;   right: 6%;  animation: floatC 5s ease-in-out infinite 2s; }

.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) { .portfolio-header { margin-bottom: 52px; } }
.portfolio-header h2 { font-size: clamp(1.8rem, 5vw, 2.9rem); }

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.pf-card--wide { grid-column: auto; }
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; gap: 14px; }
}
@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; }
  .pf-card--wide { grid-column: span 2; }
}

/* Cards */
.pf-card {
  display: block;
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid rgba(255,255,255,0.06);
  background: #0e1d3a;
}
@media (min-width: 640px) { .pf-card { border-radius: 18px; min-height: auto; } }
.pf-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 90px rgba(0,0,0,0.60);
  border-color: rgba(147,197,253,0.18);
}
.pf-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.pf-card:hover .pf-bg { transform: scale(1.06); }
.pf-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.80;
  transition: opacity 0.35s;
}
.pf-img--top { object-position: center top; }
.pf-card:hover .pf-img { opacity: 1; }
.pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.35) 38%, transparent 100%);
  z-index: 1;
  transition: background 0.35s;
}
.pf-card:hover .pf-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.50) 45%, rgba(10,22,40,0.10) 100%);
}

/* Marcações de frame de câmera nos cantos */
.pf-corners {
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.30s var(--ease);
  border-radius: 6px;
}
.pf-corners::before, .pf-corners::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(255,255,255,0.75);
  border-style: solid;
}
.pf-corners::before { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.pf-corners::after  { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }
.pf-corner-b {
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.30s var(--ease);
}
.pf-corner-b::before, .pf-corner-b::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(255,255,255,0.75);
  border-style: solid;
}
.pf-corner-b::before { top: 0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.pf-corner-b::after  { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.pf-card:hover .pf-corners,
.pf-card:hover .pf-corner-b { opacity: 1; }

.pf-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 18px 16px;
  z-index: 2;
}
@media (min-width: 640px) { .pf-info { padding: 20px 20px 18px; } }
.pf-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(147,197,253,0.68);
  font-family: var(--font-h);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pf-tag::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background: var(--blue-4);
  opacity: 0.55;
  flex-shrink: 0;
}
.pf-info h4 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
@media (min-width: 640px) { .pf-info h4 { font-size: 0.98rem; } }
.pf-arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  z-index: 3;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: all 0.28s var(--ease);
}
.pf-card:hover .pf-arrow { opacity: 1; transform: scale(1) rotate(0deg); }

/* ═══════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════ */
.about {
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 38%, #dbeafe 68%, #bfdbfe 100%);
  padding: 72px 0 180px;
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(96,165,250,0.30) 22%,
    rgba(37,99,235,0.72) 52%,
    rgba(29,78,216,0.94) 78%,
    #1d4ed8 100%
  );
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 640px) {
  .about { padding: 88px 0 200px; }
  .about::after { height: 220px; }
}
@media (min-width: 1024px) { .about { padding: 100px 0 200px; } }

.about-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 30px,
    rgba(147,197,253,0.055) 30px, rgba(147,197,253,0.055) 31px
  );
  pointer-events: none;
  z-index: 0;
}

/* Elementos ambientes da seção About */
.about-ambient {
  display: none;
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) { .about-ambient { display: block; } }
.aba { position: absolute; }
.aba--cam   { top: 12%; right: 4%;   animation: floatA 10s ease-in-out infinite; opacity: 0.55; }
.aba--star  { bottom: 20%; left: 3%;  animation: floatB 7s ease-in-out infinite 1.5s; }
.aba--spark { top: 52%; right: 8%;   animation: floatC 6s ease-in-out infinite 0.5s; }

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-inner { flex-direction: row; align-items: center; gap: 72px; text-align: left; }
}

.about-visual {
  flex-shrink: 0;
  position: relative;
  width: 220px;
  display: flex; justify-content: center; align-items: flex-end;
}
@media (min-width: 480px)  { .about-visual { width: 250px; } }
@media (min-width: 1024px) { .about-visual { width: 300px; } }

.about-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle at 50% 60%, rgba(37,99,235,0.14) 0%, rgba(147,197,253,0.06) 55%, transparent 74%);
  filter: blur(28px);
  border-radius: 50%;
  z-index: 0;
}
@media (min-width: 1024px) { .about-glow { width: 270px; height: 270px; filter: blur(32px); } }

.about-blob {
  position: absolute;
  width: 200px; height: 200px;
  background: linear-gradient(148deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.12);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (min-width: 480px)  { .about-blob { width: 228px; height: 228px; } }
@media (min-width: 1024px) { .about-blob { width: 260px; height: 260px; } }

/* Anel de órbita animado */
.about-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: aboutOrbit 22s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
@media (max-width: 639px) { .about-orbit svg { width: 220px; height: 220px; } }

.about-star {
  position: absolute;
  top: 2px; right: 8px;
  z-index: 3;
  pointer-events: none;
  animation: floatB 4.5s ease-in-out infinite;
}


.about-avatar {
  position: relative; z-index: 1;
  width: 200px; height: auto; display: block;
  filter: drop-shadow(0 -6px 16px rgba(37,99,235,0.18)) drop-shadow(0 18px 36px rgba(15,30,74,0.16));
  animation: avatarFloat 9s ease-in-out infinite 0.8s;
}
@media (min-width: 480px)  { .about-avatar { width: 228px; } }
@media (min-width: 1024px) { .about-avatar { width: 272px; } }

.about-content { flex: 1; }
.about-content .section-eyebrow { color: var(--blue); }
.about-content h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  color: var(--navy-2);
  margin-bottom: 16px;
}
.about-content p {
  color: var(--gray-t);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (min-width: 640px)  { .about-content p { font-size: 1rem; margin-bottom: 30px; } }
@media (min-width: 1024px) { .about-content p { max-width: 480px; } }

/* Stats */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid rgba(37,99,235,0.10);
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 640px)  { .about-stats { gap: 28px; } }
@media (min-width: 1024px) { .about-stats { gap: 36px; margin-top: 36px; padding-top: 28px; justify-content: flex-start; } }
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
@media (min-width: 1024px) { .stat { align-items: flex-start; } }

.stat-icon {
  color: var(--blue-3);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.stat-label {
  font-size: 0.74rem;
  color: var(--gray-t);
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 640px) { .stat-label { font-size: 0.78rem; } }

.about-bridge {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
@media (min-width: 1024px) { .about-bridge { display: none; } }

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta {
  background:
    radial-gradient(ellipse 120% 35% at 50% 0%, rgba(255,255,255,0.10) 0%, transparent 48%),
    radial-gradient(ellipse 80% 50% at 15% 55%, rgba(59,130,246,0.18) 0%, transparent 52%),
    linear-gradient(180deg, #1d4ed8 0%, #1e40af 22%, #152e72 46%, #0c1a38 72%, #060d1a 100%);
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
@media (min-width: 768px)  { .cta { padding: 100px 0 90px; } }
@media (min-width: 1024px) { .cta { padding: 130px 0 120px; } }

/* Raios de luz estilo estúdio */
.cta-beam {
  position: absolute;
  top: 0;
  pointer-events: none;
  transform-origin: top center;
  z-index: 0;
}
.cta-beam--1 {
  left: 24%;
  width: 220px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.07) 58%, transparent 100%);
  transform: rotate(-10deg) skewX(-3deg);
}
.cta-beam--2 {
  left: 42%;
  width: 110px; height: 88%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.03) 32%, rgba(255,255,255,0.05) 64%, transparent 100%);
  transform: rotate(-4deg);
}
.cta-beam--3 {
  left: 56%;
  width: 70px; height: 70%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.025) 40%, rgba(255,255,255,0.035) 70%, transparent 100%);
  transform: rotate(2deg);
}

/* Grain cinematográfico */
.cta-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 360px; height: 360px;
  pointer-events: none;
  z-index: 0;
  animation: ringRotate 90s linear infinite;
}
@media (min-width: 640px)  { .cta-ring { width: 500px; height: 500px; } }
@media (min-width: 1024px) { .cta-ring { width: 700px; height: 700px; } }
.cta-ring svg { width: 100%; height: 100%; }

/* Layout CTA: 2 colunas no mobile (texto esq + avatar dir) */
.cta-body {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) { .cta-body { display: block; } }

/* Avatar CTA com glow */
.cta-avatar {
  position: relative;
  bottom: auto; right: auto;
  width: 158px;
  flex-shrink: 0;
  align-self: flex-end;
  pointer-events: none;
  animation: avatarFloat 9s ease-in-out infinite 0.5s;
  z-index: 1;
}
@media (min-width: 768px)  { .cta-avatar { position: absolute; bottom: 0; right: 4%; width: 220px; z-index: 2; } }
@media (min-width: 1024px) { .cta-avatar { width: 290px; right: 6%; } }
.cta-avatar-glow {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 220%; height: 300px;
  background: radial-gradient(ellipse at 50% 75%, rgba(59,130,246,0.55) 0%, rgba(147,197,253,0.24) 46%, transparent 68%);
  filter: blur(32px);
  z-index: 0;
}
.cta-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 12px;
  background: radial-gradient(ellipse, rgba(10,22,40,0.55) 0%, transparent 72%);
  filter: blur(7px);
  z-index: 3;
}
.cta-avatar img {
  position: relative; z-index: 1;
  width: 100%;
  filter: drop-shadow(0 -10px 28px rgba(147,197,253,0.30)) drop-shadow(0 28px 56px rgba(10,22,40,0.60));
}

.cta-spark { position: absolute; pointer-events: none; z-index: 1; }
.cta-spark--1 { top: 12%; left: 6%;     animation: floatA 6s ease-in-out infinite; }
.cta-spark--2 { bottom: 20%; right: 28%; animation: floatB 5s ease-in-out infinite 1.5s; }
.cta-spark--3 { top: 46%; left: 20%;   animation: floatA 7s ease-in-out infinite 2.5s; }
.cta-spark--4 { bottom: 32%; left: 36%; animation: floatC 5.5s ease-in-out infinite 1s; }

.cta-art {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .cta-art { justify-content: center; margin-bottom: 24px; } }

.cta-content { flex: 1; min-width: 0; text-align: left; position: relative; z-index: 3; padding-bottom: 20px; }
@media (min-width: 768px) { .cta-content { flex: initial; min-width: auto; padding-bottom: 0; text-align: center; z-index: 2; } }
.cta-content h2 {
  font-size: clamp(1.62rem, 5.8vw, 2.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (min-width: 768px)  { .cta-content h2 { font-size: clamp(2.2rem, 7vw, 5.5rem); margin-bottom: 36px; } }
@media (min-width: 1024px) { .cta-content h2 { margin-bottom: 48px; } }
.cta-em {
  display: block;
  background: linear-gradient(128deg, #fde68a 0%, #fbbf24 52%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Metrics */
.cta-metrics {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
@media (min-width: 768px) { .cta-metrics { flex-direction: row; justify-content: center; gap: 16px; margin-bottom: 40px; } }
@media (min-width: 1024px) { .cta-metrics { gap: 20px; margin-bottom: 48px; } }

.cta-metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 768px) {
  .cta-metric { flex-direction: column; align-items: center; padding: 14px 22px; gap: 4px; min-width: 96px; }
}

.cm-num {
  font-family: var(--font-h);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 42px;
}
@media (min-width: 768px) { .cm-num { font-size: 1.5rem; min-width: auto; } }

.cm-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) { .cm-label { font-size: 0.72rem; } }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 0;
  background: #060d1a;
  border-top: none;
}
@media (min-width: 640px) { .footer { padding: 40px 0; background: #060d1a; border-top: 1px solid rgba(255,255,255,0.05); } }

.footer-deco {
  display: flex;
  justify-content: center;
  padding: 30px 0 16px;
}
@media (min-width: 640px) { .footer-deco { display: none; } }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-bottom: 30px;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
    padding-bottom: 0;
  }
}

.footer-inner .logo    { order: 1; }
.footer-links          { order: 2; }
.footer-copy           { order: 3; }
@media (min-width: 640px) {
  .footer-inner .logo,
  .footer-links,
  .footer-copy { order: 0; }
}

.footer-stars { display: none; }

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.26);
  margin-top: 2px;
}
.footer-links { display: flex; gap: 24px; }
@media (min-width: 640px) { .footer-links { gap: 28px; } }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  font-weight: 700;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
[data-reveal], [data-reveal-right] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
[data-reveal-right] { transform: translateY(32px); }
@media (min-width: 1024px) { [data-reveal-right] { transform: translateX(32px); } }
[data-reveal].visible,
[data-reveal-right].visible { opacity: 1; transform: translate(0); }

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
