/* =====================================================================
   VS Plus Internet: seções próprias da página de vendas (vsplusnet.com.br).
   O resto do visual vem de estilo.css, o mesmo sistema do site da IPTV.
   ===================================================================== */

/* Celular do topo: ilustração da conexão */
.phone {
  position: relative; width: min(300px, 78%); margin-inline: auto; aspect-ratio: 9 / 18.5;
  background: oklch(14% 0.05 305); border-radius: 38px; padding: 12px;
  box-shadow: 0 40px 70px -30px oklch(8% 0.08 305 / .85), inset 0 0 0 2px oklch(30% 0.06 305);
}
.phone-screen {
  position: relative; height: 100%; border-radius: 28px; overflow: hidden;
  background: radial-gradient(90% 60% at 50% 0%, var(--grape-2), var(--grape-deep) 70%);
  display: flex; flex-direction: column; align-items: center; padding: 18px 16px 16px; gap: 14px; color: var(--cream);
}
.phone-notch { width: 34%; height: 18px; border-radius: 0 0 12px 12px; background: oklch(14% 0.05 305); position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.phone-status { width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; font-weight: 700; color: var(--cream-2); margin-top: 6px; }
.phone-status .key { display: inline-flex; align-items: center; gap: .25rem; color: var(--gold); }
.sinal { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.sinal i { width: 3px; background: var(--cream-2); border-radius: 1px; animation: sinal 1.6s var(--ease) infinite; }
.sinal i:nth-child(1) { height: 4px; }
.sinal i:nth-child(2) { height: 7px; animation-delay: .15s; }
.sinal i:nth-child(3) { height: 10px; animation-delay: .3s; }
.sinal i:nth-child(4) { height: 12px; animation-delay: .45s; }
.orb {
  position: relative; margin-top: 10%; width: 62%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 40%, oklch(60% 0.16 150), var(--zap-deep));
  box-shadow: 0 0 0 10px oklch(54% 0.16 150 / .18), 0 0 0 22px oklch(54% 0.16 150 / .08), 0 20px 40px -12px oklch(10% 0.1 150 / .8);
}
.orb::before, .orb::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid oklch(70% 0.16 150 / .6); animation: onda 2.6s var(--ease) infinite; }
.orb::after { animation-delay: 1.3s; }
.orb b { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
.orb small { display: block; font-size: .72rem; opacity: .9; margin-top: .2rem; }
.medidor { width: 100%; background: oklch(96% 0.02 85 / .08); border-radius: 14px; padding: .8rem .9rem; display: grid; gap: .55rem; }
.medidor div { display: flex; justify-content: space-between; align-items: baseline; font-size: .78rem; color: var(--cream-2); }
.medidor strong { font-family: var(--font-display); font-weight: 800; color: var(--cream); font-size: 1.05rem; }
.medidor .inf { color: var(--gold); font-size: 1.5rem; line-height: .8; }
.barra { height: 6px; border-radius: 3px; background: oklch(96% 0.02 85 / .12); overflow: hidden; }
.barra i { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--zap)); animation: fluxo 2.4s linear infinite; }
.apps-mini { display: flex; gap: 8px; margin-top: auto; }
.apps-mini span { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: .72rem; font-weight: 800; color: #fff; animation: flutua 3s var(--ease) infinite; }
.apps-mini span:nth-child(2) { animation-delay: .3s; }
.apps-mini span:nth-child(3) { animation-delay: .6s; }
.apps-mini span:nth-child(4) { animation-delay: .9s; }
.apps-mini span:nth-child(5) { animation-delay: 1.2s; }
.phone-nota { text-align: center; font-size: .78rem; color: var(--cream-2); margin-top: .9rem; opacity: .8; }
@keyframes sinal { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes onda { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes fluxo { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }
@keyframes flutua { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Calculadora de economia */
.calc { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.calc-perg h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.3rem 0 1rem; }
.chips button {
  font: inherit; font-weight: 700; font-size: 1.05rem; cursor: pointer;
  min-height: 52px; padding: .6rem 1.1rem; border-radius: 12px;
  background: var(--paper); color: var(--ink); border: 2px solid var(--line);
  transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.chips button:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.chips button[aria-pressed="true"] { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.calc-resp {
  background: var(--grape); color: var(--cream); border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; gap: .9rem;
  box-shadow: 0 40px 70px -40px oklch(30% 0.16 305 / .9); position: relative;
}
.calc-resp .tag { position: absolute; top: -14px; right: 1.5rem; background: var(--gold); color: var(--ink); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 6px; }
.calc-linha { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid oklch(96% 0.02 85 / .14); color: var(--cream-2); }
.calc-linha strong { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--cream); font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc-linha s { color: oklch(75% 0.14 25); text-decoration-thickness: 3px; }
.calc-total span { color: var(--cream-2); font-weight: 600; }
.calc-total strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--gold); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; margin-top: .3rem; }
.calc-resp .btn { width: 100%; margin-top: .4rem; }
.calc-nota { font-size: .85rem; color: var(--ink-3); margin-top: .8rem; }

/* Como funciona */
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: passo; }
.passos li { counter-increment: passo; position: relative; padding: 1.6rem 1.4rem 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.passos li::before {
  content: counter(passo); display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--gold); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 1rem;
}
.passos b { display: block; font-size: 1.2rem; margin-bottom: .35rem; letter-spacing: -0.01em; }
.passos p { color: var(--ink-2); }

/* Onde funciona */
.compat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.compat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; }
.compat-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.compat-card li { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; border-top: 1px solid var(--line); font-weight: 600; }
.compat-card li:first-child { border-top: 0; }
.compat-card small { display: block; font-weight: 500; color: var(--ink-3); }
.selo-ok, .selo-talvez, .selo-nao { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .95rem; }
.selo-ok { background: var(--zap); color: #fff; }
.selo-talvez { background: var(--gold-soft); color: var(--gold-deep); border: 2px solid var(--gold); }
.selo-nao { background: oklch(94% 0.05 25); color: var(--live); }

/* Para quem é */
.usos { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: oklch(96% 0.02 85 / .12); border: 1px solid oklch(96% 0.02 85 / .12); border-radius: var(--radius); overflow: hidden; }
.usos li { background: var(--grape-deep); padding: 1.5rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.usos .emo { font-size: 1.8rem; line-height: 1; margin-bottom: .3rem; }
.usos b { color: var(--cream); font-size: 1.1rem; }
.usos span { color: var(--cream-2); }

.revenda-box { display: grid; gap: 1rem; }
.revenda-box li { display: flex; gap: .8rem; align-items: flex-start; color: var(--cream-2); font-weight: 600; }
.revenda-box li::before { content: "✦"; color: var(--gold); flex: none; }

@media (max-width: 1000px) {
  .calc { grid-template-columns: 1fr; }
  .calc-resp { margin-top: 1rem; }
}
@media (max-width: 760px) {
  .passos, .compat { grid-template-columns: 1fr; }
  .phone { width: min(260px, 72%); }
  .chips button { flex: 1 1 calc(33% - .6rem); }
}
@media (prefers-reduced-motion: reduce) {
  .sinal i, .orb::before, .orb::after, .barra i, .apps-mini span { animation: none; }
}

/* Ajustes do celular */
.brand span { white-space: nowrap; }
@media (max-width: 480px) {
  .brand { font-size: 1.08rem; gap: .45rem; }
  .brand img { width: 36px; height: 36px; }
  .hero-visual .sticker { top: -4%; bottom: auto; right: 2%; }
}
