/* ============ Omnicine — landing ============ */
:root {
  --accent: #3f67f5;
  --accent-strong: #2851ec;
  --accent-soft: #6f8dff;
  --bg: #05070d;
  --bg-2: #090c15;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #eef1f8;
  --muted: #9aa3b8;
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--accent) var(--bg); scrollbar-width: thin; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- fundo ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(63, 103, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 103, 245, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}
.orb {
  position: fixed; z-index: -1; border-radius: 50%;
  pointer-events: none; will-change: transform;
}
.orb-1 { width: 720px; height: 720px; top: -240px; right: -180px; background: radial-gradient(circle, rgba(63,103,245,.26) 0%, rgba(63,103,245,.1) 42%, transparent 68%); }
.orb-2 { width: 640px; height: 640px; top: 40vh; left: -260px; background: radial-gradient(circle, rgba(40,81,236,.2) 0%, rgba(40,81,236,.08) 42%, transparent 68%); }
.orb-3 { width: 680px; height: 680px; top: 130vh; right: -220px; background: radial-gradient(circle, rgba(89,75,236,.17) 0%, rgba(89,75,236,.07) 42%, transparent 68%); }

/* ---------- tipografia ---------- */
h1 { font-size: clamp(2.3rem, 5.2vw, 4.1rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: 1.12rem; font-weight: 700; }
.grad {
  background: linear-gradient(100deg, var(--accent-soft), var(--accent) 45%, #8f7bff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kicker {
  display: inline-block; padding: 6px 14px; margin-bottom: 14px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-soft); border: 1px solid rgba(63,103,245,.35); border-radius: 999px;
  background: rgba(63,103,245,.08);
}
.section-sub { max-width: 560px; margin-top: 14px; color: var(--muted); font-size: 1.05rem; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer; border: 0;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff; background: linear-gradient(110deg, var(--accent), var(--accent-strong));
  box-shadow: 0 8px 28px rgba(63,103,245,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(63,103,245,.5); }
.btn-ghost {
  color: var(--text); border: 1px solid var(--panel-border); background: rgba(255,255,255,.05);
}
.btn-ghost:hover { border-color: rgba(63,103,245,.55); background: rgba(63,103,245,.1); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; border-radius: 10px; }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,7,13,.78); backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 600; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-actions { margin-left: auto; display: flex; gap: 10px; }
.nav-burger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 8px; padding: 12px 24px 22px;
  background: rgba(5,7,13,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a { padding: 12px 14px; border-radius: 10px; font-weight: 600; }
.nav-mobile a:not(.btn):hover { background: rgba(255,255,255,.05); }
.nav-mobile.open { display: flex; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 148px 24px 60px; min-height: 92vh; display: flex; align-items: center; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 7px 16px 7px 8px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--panel-border); background: rgba(12, 16, 26, 0.7);
}
.eyebrow-icon { width: 26px; height: 26px; border-radius: 7px; }
.hero-sub { margin-top: 20px; max-width: 520px; color: var(--muted); font-size: 1.1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px 12px 16px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(160deg, #10141f, #0a0d16);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-3px); border-color: rgba(63,103,245,.6); box-shadow: 0 14px 34px rgba(63,103,245,.25); }
.store-badge svg { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge small { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge strong { font-size: 1.05rem; font-weight: 800; }
.badge-web { color: var(--accent-soft); }
.badge-web strong { color: var(--text); }

.hero-stats {
  display: flex; gap: 34px; margin-top: 38px; list-style: none; flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.5rem; font-weight: 900;
  background: linear-gradient(120deg, #fff, var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats span { font-size: 0.82rem; color: var(--muted); }

/* cena 3D */
.hero-visual { perspective: 1200px; }
.scene { position: relative; transform-style: preserve-3d; }
.tilt-layer { will-change: transform; }
.tv-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 90px rgba(0,0,0,.6),
    0 0 0 1px rgba(63,103,245,.12),
    0 0 90px rgba(63,103,245,.22);
  transform: rotateY(-9deg) rotateX(4deg);
  transition: transform .25s ease-out;
  background: #000;
}
.tv-glare {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.14), transparent 38%);
}
.float-icon {
  position: absolute; width: clamp(84px, 9vw, 128px); bottom: -30px; left: -34px;
  border-radius: 24px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.55)) drop-shadow(0 0 34px rgba(63,103,245,.45));
  animation: float 5.5s ease-in-out infinite;
}
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,13,22,.9);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.chip-live { top: -18px; right: 8%; animation: float 6s .8s ease-in-out infinite; }
.chip-4k { bottom: 14%; right: -18px; color: var(--accent-soft); animation: float 6.4s .4s ease-in-out infinite; }
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff4e6b;
  box-shadow: 0 0 0 0 rgba(255,78,107,.6); animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,78,107,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,78,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,78,107,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 140px; pointer-events: none;
  background: linear-gradient(transparent, var(--bg));
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.015);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; color: rgba(238,241,248,.75);
  white-space: nowrap;
}
.marquee-track i { font-size: 0.5rem; color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */
.section { position: relative; padding: 110px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ---------- cards recursos ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px;
}
.card {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--panel-border); background: var(--panel);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(420px 200px at 20% 0%, rgba(63,103,245,.14), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(63,103,245,.45); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 50px; height: 50px; margin-bottom: 18px; display: grid; place-items: center;
  color: var(--accent-soft); border-radius: 14px;
  background: linear-gradient(150deg, rgba(63,103,245,.22), rgba(63,103,245,.06));
  border: 1px solid rgba(63,103,245,.3);
}
.card-icon svg { width: 26px; height: 26px; }
.card p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

/* ---------- showcase ---------- */
.section-showcase { padding-bottom: 40px; }
.showcase {
  max-width: 1260px; margin: 64px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  perspective: 1400px;
}
.shot {
  border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 60px rgba(63,103,245,.12);
  background: #000;
}
.shot img { width: 100%; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 42px 22px 16px;
  font-size: 0.92rem; font-weight: 600; color: #dfe5f2;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}
.shot-main { grid-column: 1 / -1; transform: rotateX(6deg) scale(.985); transform-origin: 50% 100%; }
.shot-left { transform: rotateY(5deg); }
.shot-right { transform: rotateY(-5deg); }
.shot { transition: transform .45s ease, box-shadow .45s ease; }
.shot:hover { transform: none; box-shadow: 0 34px 80px rgba(0,0,0,.6), 0 0 80px rgba(63,103,245,.22); }

/* ---------- mobile / phones ---------- */
.section-mobile { padding-top: 60px; }
.phones {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: center;
  align-items: end; gap: 40px; margin-top: 64px; perspective: 1400px;
}
.phone {
  position: relative; width: 240px; padding: 9px; border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(165deg, #1a1f2e, #0a0d15 60%);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 50px rgba(63,103,245,.1);
  transition: transform .45s ease, box-shadow .45s ease;
}
.phone::before {
  content: ""; position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 16px; border-radius: 999px; background: #05070d; z-index: 2;
}
.phone img { border-radius: 26px; }
.phone figcaption {
  position: absolute; left: 50%; bottom: -44px; transform: translateX(-50%);
  width: max-content; max-width: 240px; text-align: center;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
}
.phone-left { transform: rotateY(10deg) translateY(6px); }
.phone-right { transform: rotateY(-10deg) translateY(6px); }
.phone-center { width: 270px; z-index: 1; box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 70px rgba(63,103,245,.2); }
.phone:hover { transform: translateY(-10px); box-shadow: 0 44px 96px rgba(0,0,0,.6), 0 0 80px rgba(63,103,245,.28); }
.phones { padding-bottom: 54px; }
.phone-left.reveal.in { transform: rotateY(10deg) translateY(6px); }
.phone-right.reveal.in { transform: rotateY(-10deg) translateY(6px); }
.phone-left.reveal.in:hover, .phone-right.reveal.in:hover { transform: translateY(-10px); }

/* ---------- dispositivos ---------- */
.devices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.device {
  padding: 28px 24px; border-radius: var(--radius); text-align: left;
  border: 1px solid var(--panel-border); background: var(--panel);
  transition: transform .28s ease, border-color .28s ease;
}
.device:hover { transform: translateY(-6px); border-color: rgba(63,103,245,.45); }
.device-icon {
  width: 46px; height: 46px; margin-bottom: 16px; display: grid; place-items: center;
  color: var(--accent-soft); border-radius: 12px;
  background: rgba(63,103,245,.12); border: 1px solid rgba(63,103,245,.28);
}
.device-icon svg { width: 24px; height: 24px; }
.device p { margin-top: 6px; color: var(--muted); font-size: 0.92rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  color: var(--accent-soft); font-weight: 700; font-size: 0.92rem;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- planos ---------- */
.section-plans { background: linear-gradient(180deg, transparent, rgba(63,103,245,.045) 30%, transparent); }
.billing-toggle {
  display: inline-flex; gap: 4px; margin-top: 34px; padding: 5px;
  border-radius: 999px; border: 1px solid var(--panel-border); background: rgba(10,13,22,.7);
}
.bt-opt {
  padding: 9px 22px; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--font); font-size: 0.9rem; font-weight: 700; color: var(--muted);
  background: transparent; transition: background .25s, color .25s;
}
.bt-opt.active { color: #fff; background: linear-gradient(110deg, var(--accent), var(--accent-strong)); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 34px 28px 28px;
  border-radius: 20px; border: 1px solid var(--panel-border);
  background: linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-8px); }
.plan-basic:hover { border-color: rgba(150,110,255,.6); box-shadow: 0 24px 60px rgba(120,80,255,.16); }
.plan-plus:hover { border-color: rgba(255,80,90,.6); box-shadow: 0 24px 60px rgba(255,60,80,.14); }
.plan-premium { border-color: rgba(255,190,60,.35); background: linear-gradient(170deg, rgba(255,190,60,.07), rgba(255,255,255,.015)); }
.plan-premium:hover { border-color: rgba(255,190,60,.7); box-shadow: 0 24px 60px rgba(255,180,40,.16); }
.plan-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; border-radius: 999px; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: #1a1200;
  background: linear-gradient(110deg, #ffd452, #f0a818); white-space: nowrap;
}
.plan-badge { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.5)); }
.plan h3 { font-size: 1.35rem; font-weight: 800; }
.plan-basic h3 { color: #b9a0ff; }
.plan-plus h3 { color: #ff6a75; }
.plan-premium h3 { color: #ffcb45; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 18px; }
.plan-price small { font-size: 0.95rem; color: var(--muted); font-weight: 700; }
.plan-price strong { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.02em; }
.plan-price span { color: var(--muted); font-size: 0.95rem; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan li { position: relative; padding-left: 26px; color: #c6cddd; font-size: 0.94rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px;
  border-radius: 50%; background: rgba(63,103,245,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f8dff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.plan-plus li::before { background-color: rgba(255,80,90,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a75' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E"); }
.plan-premium li::before { background-color: rgba(255,190,60,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcb45' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E"); }
.plan-basic li::before { background-color: rgba(150,110,255,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9a0ff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E"); }
.plan .btn { margin-top: auto; }
.plans-note { margin-top: 26px; font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA final ---------- */
.section-cta { padding-top: 40px; }
.cta-box {
  position: relative; max-width: 900px; margin: 0 auto; padding: 70px 40px; text-align: center;
  border-radius: 28px; border: 1px solid rgba(63,103,245,.3); overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(63,103,245,.3), transparent 70%),
    linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
}
.cta-icon {
  width: 92px; margin: 0 auto 22px; border-radius: 22px;
  filter: drop-shadow(0 18px 40px rgba(63,103,245,.5));
  animation: float 5s ease-in-out infinite;
}
.cta-box p { margin: 12px auto 0; max-width: 460px; color: var(--muted); font-size: 1.05rem; }
.cta-box .hero-ctas { justify-content: center; margin-top: 30px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 60px 24px 30px; background: rgba(0,0,0,.25); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.footer-col a { color: #c6cddd; font-size: 0.94rem; width: fit-content; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-copy { max-width: 1200px; margin: 44px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); color: var(--muted); font-size: 0.84rem; }

/* ---------- reveal (scroll) ---------- */
.reveal, .reveal-scale {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1);
}
.reveal-scale { transform: translateY(30px) scale(.94); }
.reveal.in, .reveal-scale.in { opacity: 1; transform: none; }
.shot-main.reveal-scale.in { transform: rotateX(6deg) scale(.985); }
.shot-left.reveal.in { transform: rotateY(5deg); }
.shot-right.reveal.in { transform: rotateY(-5deg); }
.d-1 { transition-delay: .1s; }
.d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; }
.d-4 { transition-delay: .42s; }

html.static-shot { scroll-behavior: auto; }
html.static-shot .hero { min-height: 0; padding-top: 130px; }
html.static-shot .reveal, html.static-shot .reveal-scale { transition: none !important; }
html.static-shot *, html.static-shot *::before, html.static-shot *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .float-icon, .cta-icon, .chip, .marquee-track { animation: none; }
}

/* ---------- responsivo ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 120px; min-height: 0; }
  .hero-visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .devices { grid-template-columns: repeat(2, 1fr); }
  .phones { gap: 22px; }
  .phone { width: 176px; padding: 7px; border-radius: 26px; }
  .phone::before { width: 56px; height: 12px; top: 13px; }
  .phone img { border-radius: 20px; }
  .phone-center { width: 198px; }
  .phone figcaption { max-width: 190px; font-size: 0.8rem; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav { background: rgba(5,7,13,.78); backdrop-filter: blur(14px); }
}
@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .cards-grid, .devices { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .shot-left, .shot-right, .shot-left.reveal.in, .shot-right.reveal.in { transform: none; }
  .phones { grid-template-columns: 1fr; justify-items: center; gap: 76px; padding-bottom: 60px; }
  .phone, .phone-center { width: min(260px, 72vw); }
  .phone-left, .phone-right, .phone-left.reveal.in, .phone-right.reveal.in { transform: none; }
  .hero-stats { gap: 24px; }
  .float-icon { left: -8px; }
  .chip-live { right: 0; }
  .chip-4k { right: -6px; }
  .cta-box { padding: 54px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
