/* ============================================================
       NORT TELECOM — DESIGN SYSTEM / TOKENS
       Paleta azul NORT sobre fundo escuro premium.
       (Confirmar os HEX exatos com o manual de marca do cliente.)
    ============================================================ */
:root {
  /* === Cores Principais (azul NORT) === */
  --azul: #1E90FF;
  --azul-profundo: #0A5FD6;
  --azul-escuro: #063E8F;
  --azul-ice: #E6F1FF;
  --azul-ice-2: #C8DEFF;

  /* === Grafite / Corporativo === */
  --grafite: #2B2D2F;
  --grafite-medio: #58595B;
  --grafite-claro: #8C8D8F;
  --cinza-borda: #D6D7D9;
  --cinza-fundo: #F2F3F4;

  /* === Neutros === */
  --branco: #FFFFFF;
  --off-white: #F7F9FA;
  --preto-tech: #0C1220;

  /* === Destaque / CTA === */
  --amarelo: #38D0FF;
  --amarelo-escuro: #14B6ED;
  --mint: #00D4C2;
  --mint-escuro: #00A896;

  /* === CTA Gradiente === */
  --cta-from: #1E90FF;
  --cta-to: #00D4C2;
  --cta-gradient: linear-gradient(90deg, #1E90FF 0%, #00D4C2 100%);

  /* === Tipografia === */
  --font-h: 'Exo 2', sans-serif;
  --font: 'Nunito Sans', sans-serif;

  /* === Layout === */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .18);
  --transition: all .25s cubic-bezier(.4, 0, .2, 1);

  /* === Tons derivados (Tarefa 3) — hex que estavam chumbados nos
     componentes, promovidos a tokens. brand-tokens.css pode sobrescrever. === */
  --azul-claro: #59d4ff;   /* fim de gradientes azuis (brand: #54B9EA) */
  --marinho-2: #003060;    /* fim do gradiente da seção suporte */
  --fundo-alt-1: #0a1a2e;  /* topo do gradiente da seção planos */
  --fundo-alt-2: #071220;  /* base dos gradientes escuros */
  --fundo-alt-3: #0a2540;  /* meio do gradiente do hero */
  --fundo-alt-4: #111315;  /* fundo do rodapé */
  --fundo-alt-5: #050d18;  /* fundo profundo (modal/overlay) */
  --fundo-alt-6: #040d1a;  /* gradiente profundo — início */
  --fundo-alt-7: #081a35;  /* gradiente profundo — meio */
  --fundo-alt-8: #041020;  /* gradiente profundo — fim */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--preto-tech);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
       TOP BAR
    ============================================================ */
.top-bar {
  position: relative;
  z-index: 201;
  background: var(--azul-escuro);
  font-size: .82rem;
  font-weight: 600;
  max-height: 120px;
  overflow: hidden;
  transition: max-height .3s ease, opacity .2s ease;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .55rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tb-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.tb-link {
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s;
}

.tb-link:hover {
  color: var(--azul);
}

.tb-link svg {
  color: var(--azul);
  flex-shrink: 0;
}

.tb-right {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.tb-cta {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: .28rem .85rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.tb-cta:hover {
  background: rgba(255, 255, 255, .22);
}

.social-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.social-ico:hover {
  transform: translateY(-2px) scale(1.1);
}

.social-ico svg {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}

/* ============================================================
       HEADER
    ============================================================ */
.header {
  position: relative;
  width: 100%;
  background: linear-gradient(280deg, rgba(17, 19, 21, 0.95) 0%, rgba(10, 37, 64, 0.95) 55%, rgba(0, 119, 182, 0.95) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.header.scrolled {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--cinza-borda);
}

.header.scrolled .nav-link {
  color: var(--grafite-medio);
}

.header.scrolled .nav-link:hover {
  color: var(--grafite);
}

.header.scrolled .logo-default {
  display: none;
}

.header.scrolled .logo-scrolled {
  display: block;
}

.header.scrolled .nav-cta {
  background: var(--cta-gradient);
}

.header.scrolled .hamburger span {
  background: var(--grafite);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.logo-scrolled {
  display: none;
}

/* === Wordmark de texto (placeholder até receber o logo oficial NORT) === */
.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-h);
  line-height: 1;
  user-select: none;
}
.logo-wordmark .lw-mark {
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  color: #fff;
  position: relative;
}
.logo-wordmark .lw-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azul);
  box-shadow: 0 0 10px var(--azul);
}
.logo-wordmark .lw-sub {
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.header.scrolled .logo-wordmark .lw-mark { color: var(--azul-profundo); }
.header.scrolled .logo-wordmark .lw-sub { color: var(--grafite-medio); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-cta {
  background: var(--cta-gradient);
  color: #fff !important;
  padding: .55rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(255, 61, 107, .32);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 61, 107, .5);
}

.nav-cta-blue {
  background: var(--azul);
  color: #fff !important;
  padding: .55rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(0, 174, 239, .32);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.nav-cta-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 174, 239, .5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* ============================================================
       HERO
    ============================================================ */
.hero {
  position: relative;
  padding: 12rem 2rem 4.5rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(155deg, var(--preto-tech) 0%, var(--fundo-alt-3) 55%, var(--azul-escuro) 100%);
}

/* Grid decorativo */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 40%, transparent 100%);
}

/* Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 174, 239, .18), transparent 70%);
}

.hero-glow-2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: 160px;
  background: radial-gradient(circle, rgba(0, 201, 167, .12), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0, 174, 239, .1);
  border: 1px solid rgba(0, 174, 239, .28);
  color: rgba(255, 255, 255, .85);
  padding: .42rem 1rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: var(--font-h);
  margin-bottom: 1rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--azul);
  box-shadow: 0 0 8px var(--azul);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 0.75rem;
}

.hero-title em {
  font-style: normal;
  color: var(--azul);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .6);
  max-width: 520px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Feature capsules — do design system */
.hero-caps {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.cap {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .72);
  padding: .4rem .9rem;
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 600;
  transition: var(--transition);
}

.cap svg {
  color: var(--amarelo);
}

.cap:hover {
  background: rgba(0, 174, 239, .1);
  border-color: rgba(0, 174, 239, .25);
  color: #fff;
}

/* Price block */
.hero-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.price-lbl {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  margin-bottom: .15rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}

.price-curr {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-h);
}

.price-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-h);
  line-height: 1;
  letter-spacing: -2px;
}

.price-mo {
  font-size: .95rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

/* Action row containing price and CTA button inline */
.hero-action-row {
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 2rem;
  border-radius: var(--radius);
  font-size: .97rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 61, 107, .35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 61, 107, .52);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0, 174, 239, .4);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(0, 174, 239, .1);
  border-color: var(--azul);
  transform: translateY(-2px);
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-avs {
  display: flex;
}

.trust-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--preto-tech);
  background: var(--azul-escuro) center/cover no-repeat;
  margin-right: -9px;
}

.av1 {
  background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=80&q=80');
}

.av2 {
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=80&q=80');
}

.av3 {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80');
}

.av4 {
  background-image: url('https://images.unsplash.com/photo-1539571696357-5a69c17a67c6?auto=format&fit=crop&w=80&q=80');
}

.trust-info {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
  margin-left: .5rem;
}

.trust-info strong {
  color: #fff;
  display: block;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: var(--amarelo);
  margin-top: .1rem;
  font-size: .85rem;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.vis-wrap {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vis-sphere {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, .45), rgba(0, 90, 142, .85) 55%, transparent 100%);
  filter: blur(8px);
  box-shadow: 0 0 70px rgba(0, 174, 239, .55), inset 0 0 40px rgba(255, 255, 255, .12);
}

.vis-ring {
  position: absolute;
  border-radius: 50%;
}

.vis-ring-1 {
  width: 340px;
  height: 340px;
  border: 1.5px dashed rgba(0, 174, 239, .3);
  animation: spin-cw 28s linear infinite;
}

.vis-ring-2 {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: 2px solid rgba(0, 174, 239, .4);
  animation: spin-ccw 38s linear infinite;
}

@keyframes spin-cw {
  to {
    transform: rotate(360deg)
  }
}

@keyframes spin-ccw {
  to {
    transform: rotate(-360deg)
  }
}

/* ── Hero People Slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.2) translateY(0);
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.15) translateY(0);
  pointer-events: auto;
}

.hero-slide.exiting {
  opacity: 0;
  transform: scale(1.1) translateY(0);
}

.hero-slide img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
  user-select: none;
  -webkit-user-drag: none;
}

/* Glass card hero — repositioned for slider */
.vis-card {
  position: absolute;
  width: 270px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(26, 28, 30, .82);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .15);
  z-index: 4;
  bottom: 15%;
  right: -12%;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

.vc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.vc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(0, 174, 239, .12);
  border: 1px solid rgba(0, 174, 239, .28);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(0, 174, 239, .18);
  animation: icon-pulse 2s ease-in-out infinite alternate;
}

@keyframes icon-pulse {
  0% {
    box-shadow: 0 0 14px rgba(0, 174, 239, .18)
  }

  100% {
    box-shadow: 0 0 28px rgba(0, 174, 239, .4)
  }
}

.vc-status {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mint);
  letter-spacing: .7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 6px var(--mint);
  animation: blink 1.5s infinite;
}

.vc-speed-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  text-align: center;
  display: block;
}

.vc-speed-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.vc-bar-wrap {
  margin: 7px 0;
}

.vc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 4px;
  font-weight: 600;
}

.vc-bar-track {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}

.vc-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
}

.vc-bar-fill.yellow {
  background: linear-gradient(90deg, var(--amarelo), var(--amarelo-escuro));
}

.vc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 12px;
  margin-top: 8px;
}

.vc-stat {
  text-align: center;
}

.vc-stat-val {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.vc-stat-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ============================================================
       TRUST BAR
    ============================================================ */
.trust-bar {
  background: var(--azul-escuro);
  padding: 1.5rem 2rem;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {}

.trust-num {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--amarelo);
  line-height: 1;
}

.trust-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  margin-top: .2rem;
}

/* ============================================================
       PLANS SECTION
    ============================================================ */
.plans {
  padding: 4.5rem 2rem 3.5rem;
  background: linear-gradient(180deg, var(--fundo-alt-1) 0%, var(--fundo-alt-2) 100%);
  position: relative;
}

.plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, .4), transparent);
}

.plans-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-flex;
  padding: .42rem .95rem;
  background: rgba(0, 174, 239, .1);
  border: 1px solid rgba(0, 174, 239, .25);
  color: rgba(255, 255, 255, .85);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-family: var(--font-h);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  font-family: var(--font-h);
}

.section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  max-width: 660px;
  margin: .8rem auto 0;
  line-height: 1.7;
}

.plans-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 14px 0; /* respiro para o scale do card em destaque */
}

/* Plan card */
.pcard {
  position: relative;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, .3);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .45);
}

/* Destaque central: levemente maior, cria hierarquia entre os 3 planos */
.plans-grid .pcard.featured {
  transform: scale(1.05);
  z-index: 2;
}

.plans-grid .pcard.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

/* Bottom glow accent */
.pcard::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, .1), transparent 70%);
  pointer-events: none;
}

/* Featured */
.pcard.featured {
  border-color: rgba(0, 174, 239, .5);
  background: linear-gradient(180deg, rgba(0, 174, 239, .07), rgba(0, 90, 142, .04)), rgba(255, 255, 255, .03);
  animation: card-pulse 2.8s ease-in-out infinite;
}

.pcard.featured:hover {
  border-color: rgba(0, 174, 239, .95);
  animation-play-state: paused;
}

.pcard.featured::after {
  background: radial-gradient(circle, rgba(0, 174, 239, .18), transparent 70%);
}

/* Pulse ring around featured card */
.pcard.featured::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  border: 2px solid rgba(0, 174, 239, .45);
  animation: ring-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes card-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0), 0 4px 24px rgba(0, 0, 0, .12);
    border-color: rgba(0, 174, 239, .35);
  }

  50% {
    box-shadow: 0 0 28px 6px rgba(0, 174, 239, .22), 0 4px 24px rgba(0, 0, 0, .12);
    border-color: rgba(0, 174, 239, .85);
  }
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: .6;
    transform: scale(1.015);
  }
}

/* Animated border beam */
.beam {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: inherit;
  z-index: 2;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff) border-box;
  mask-composite: exclude;
}

.beam::after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: calc(var(--size, 200)*1px);
  background: linear-gradient(to left, transparent, var(--from, var(--azul)), var(--to, var(--azul-claro)), transparent);
  offset-path: rect(0 auto auto 0 round 16px);
  animation: beam calc(var(--dur, 12)*1s) infinite linear;
  animation-delay: var(--delay, 0s);
}

@keyframes beam {
  to {
    offset-distance: 100%
  }
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: .38rem .85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-h);
}

.pcard.featured .plan-badge {
  color: var(--azul);
  background: rgba(0, 174, 239, .1);
  border-color: rgba(0, 174, 239, .25);
}

.plan-speed {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 14px;
}

.plan-speed strong {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -.06em;
  color: #fff;
  line-height: .9;
}

.plan-speed span {
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  font-weight: 600;
}

.plan-price-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: .3rem .7rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-h);
}

.pcard.featured .plan-price-tag {
  background: rgba(0, 174, 239, .1);
  color: rgba(255, 255, 255, .8);
}

.plan-price {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0;
}

.plan-price small {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  font-family: var(--font);
}

.plan-promo {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin: 6px 0 20px;
  line-height: 1.45;
}

.plan-promo strong {
  color: rgba(255, 255, 255, .75);
}

/* Features — ícones SVG consistentes */
.plan-features {
  list-style: none;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
}

.feat-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius);
  background: rgba(0, 174, 239, .1);
  border: 1px solid rgba(0, 174, 239, .2);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon.gold {
  background: rgba(255, 214, 0, .1);
  border-color: rgba(255, 214, 0, .22);
  color: var(--amarelo);
}

.feat-icon.mint {
  background: rgba(0, 201, 167, .1);
  border-color: rgba(0, 201, 167, .22);
  color: var(--mint);
}

/* GLink Play card */
.gplay {
  position: relative;
  margin: 0 0 20px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(0, 174, 239, .05);
  border: 1px solid rgba(0, 174, 239, .12);
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: var(--transition);
  z-index: 3;
}

.gplay:hover {
  border-color: rgba(0, 174, 239, .32);
  transform: translateY(-3px);
  background: rgba(0, 174, 239, .1);
}

.gplay-badge {
  display: inline-flex;
  padding: .28rem .65rem;
  border-radius: var(--radius);
  background: rgba(0, 174, 239, .15);
  color: var(--azul);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: var(--font-h);
}

.gplay-title {
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
}

.gplay-text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.45;
  margin-top: 4px;
}

.gplay-action {
  display: inline-flex;
  margin-top: 7px;
  color: var(--azul);
  font-weight: 700;
  font-size: .82rem;
}

/* Plan CTA button */
.plan-cta {
  margin-top: auto;
  width: 100%;
  min-height: 50px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(90deg, var(--azul-profundo), var(--azul));
  box-shadow: 0 8px 22px rgba(0, 174, 239, .22);
  z-index: 3;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  font-family: var(--font);
}

.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 174, 239, .38);
}

/* Featured plan gets CTA gradient */
.pcard.featured .plan-cta {
  background: var(--cta-gradient);
  box-shadow: 0 8px 22px rgba(255, 61, 107, .3);
}

.pcard.featured .plan-cta:hover {
  box-shadow: 0 14px 32px rgba(255, 61, 107, .5);
}

/* ============================================================
       BENEFITS SECTION
    ============================================================ */
.benefits {
  padding: 4.5rem 2rem;
  background: linear-gradient(180deg, var(--fundo-alt-2) 0%, var(--preto-tech) 100%);
}

.benefits-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.bcard {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bcard:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, .22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  background: rgba(0, 174, 239, .04);
}

/* Icon block */
.bcard-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcard-icon.blue {
  background: rgba(0, 174, 239, .12);
  border: 1px solid rgba(0, 174, 239, .22);
  color: var(--azul);
}

.bcard-icon.yellow {
  background: rgba(255, 214, 0, .1);
  border: 1px solid rgba(255, 214, 0, .2);
  color: var(--amarelo);
}

.bcard-icon.mint {
  background: rgba(0, 201, 167, .1);
  border: 1px solid rgba(0, 201, 167, .2);
  color: var(--mint);
}

.bcard h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.bcard p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

/* ============================================================
       SUPPORT SECTION
    ============================================================ */
.support {
  padding: 4.5rem 2rem;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--marinho-2) 100%);
}

.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Variante de 3 colunas (seção Suporte): canais | FAQ | infraestrutura */
.support-inner.support-inner--3col {
  grid-template-columns: 1.05fr 1.25fr 0.9fr;
  gap: 2.25rem;
}

.support-inner--3col .support-content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

@media (max-width: 900px) {
  .support-inner.support-inner--3col {
    grid-template-columns: 1fr;
  }
}

.support-label {
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--azul);
  font-family: var(--font-h);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.support-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--azul);
  border-radius: 2px;
  display: block;
}

.support-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.support-content p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.s-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: .9rem 1.1rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.s-channel:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateX(4px);
}

.s-ch-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-ch-icon.wa {
  background: rgba(0, 201, 167, .15);
  color: var(--mint);
}

.s-ch-icon.email {
  background: rgba(0, 174, 239, .15);
  color: var(--azul);
}

.s-ch-icon.phone {
  background: rgba(255, 214, 0, .12);
  color: var(--amarelo);
}

.s-ch-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.s-ch-text span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-section-label {
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--azul);
  font-family: var(--font-h);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.faq-section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--azul);
  border-radius: 2px;
  display: block;
}

.faq-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(0, 174, 239, .3);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: .85rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font-h);
  text-align: left;
}

.faq-q-icon {
  color: var(--azul);
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.1rem .9rem;
}

/* ============================================================
       FOOTER
    ============================================================ */
footer {
  background: var(--fundo-alt-4);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 3rem 2rem 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand-logo {
  margin-bottom: .65rem;
}

.footer-brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: .65rem;
  margin-top: 1.1rem;
}

.fsocial {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.fsocial:hover {
  background: rgba(0, 174, 239, .15);
  border-color: rgba(0, 174, 239, .3);
  color: var(--azul);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .9rem;
  font-family: var(--font-h);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: .55rem;
}

.footer-col ul a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--azul);
}

.nl-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .9rem;
  line-height: 1.55;
}

.nl-form {
  display: flex;
  gap: .45rem;
}

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  color: #fff;
  font-family: var(--font);
  font-size: .85rem;
  outline: none;
  transition: border-color .2s;
}

.nl-input:focus {
  border-color: var(--azul);
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.nl-btn {
  background: linear-gradient(90deg, var(--azul-profundo), var(--azul));
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 174, 239, .35);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--azul);
}

.footer-legal {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* ============================================================
       MODAL
    ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 15, 26, .85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--preto-tech);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .65);
  position: relative;
  transform: scale(.9) translateY(20px);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .3rem;
}

.modal-title em {
  font-style: normal;
  color: var(--azul);
}

.modal-sub {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-sub strong {
  color: rgba(255, 255, 255, .8);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .35rem;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: .72rem .9rem;
  color: #fff;
  font-family: var(--font);
  font-size: .93rem;
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-group input:focus {
  border-color: var(--azul);
  background: rgba(0, 174, 239, .05);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.plan-preview {
  background: rgba(0, 174, 239, .05);
  border: 1px solid rgba(0, 174, 239, .15);
  border-radius: var(--radius);
  padding: .9rem;
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.4rem;
}

.plan-preview h4 {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: .2rem;
  font-family: var(--font-h);
}

.form-submit {
  width: 100%;
  padding: .9rem;
  background: var(--cta-gradient);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  font-size: .97rem;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(255, 61, 107, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 61, 107, .5);
}

/* ============================================================
       GLINK PLAY SECTION
    ============================================================ */
.gplay-section {
  padding: 4.5rem 2rem;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  color: var(--grafite);
}

.gplay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 239, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Ambient glows */
.gplay-glow-l {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 174, 239, .12), transparent 70%);
}

.gplay-glow-r {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 214, 0, .1), transparent 70%);
}

.gplay-head {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.gplay-head .section-title {
  color: var(--grafite);
}

.gplay-head .section-sub {
  color: var(--grafite-medio);
}

.gplay-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem .95rem;
  background: rgba(0, 174, 239, .08);
  border: 1px solid rgba(0, 174, 239, .22);
  color: var(--azul-profundo);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-family: var(--font-h);
  margin-bottom: 1rem;
}

.gplay-eyebrow svg {
  flex-shrink: 0;
  color: var(--azul);
}

/* ── Hero layout: TV mockup + channel grid ── */
.gplay-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ── TV Mockup ── */
.gplay-tv-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  width: 100%;
}

.icon-carousel {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.icon-track {
  display: inline-block;
  animation: scroll-icons 20s linear infinite;
}

.icon-track img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 1.5rem;
  vertical-align: middle;
  border-radius: 12px;
  background: white;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-icons {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gplay-tv {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 174, 239, .2);
  background: var(--fundo-alt-5);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, .07), 0 28px 60px rgba(0, 0, 0, .6);
  position: relative;
}

/* Scanline overlay */
.gplay-tv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom,
      transparent 0px, transparent 3px,
      rgba(0, 0, 0, .08) 3px, rgba(0, 0, 0, .08) 4px);
}

.tv-topbar {
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.tv-logo {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -.3px;
  color: #fff;
}

.tv-logo span {
  color: var(--azul);
}

.tv-live-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(239, 68, 68, .15);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #f87171;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .22rem .6rem;
  border-radius: 4px;
  font-family: var(--font-h);
}

.tv-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: blink 1s infinite;
}

.tv-screen {
  position: relative;
  min-height: 220px;
  background: linear-gradient(160deg, var(--fundo-alt-6) 0%, var(--fundo-alt-7) 60%, var(--fundo-alt-8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Network grid on screen */
.tv-screen-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 174, 239, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, .04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Big channel name on screen */
.tv-now-playing {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.tv-channel-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0, 174, 239, .12);
  border: 1px solid rgba(0, 174, 239, .25);
  color: var(--azul);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 4px;
  font-family: var(--font-h);
  margin-bottom: .85rem;
}

.tv-channel-name {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .5rem;
}

.tv-channel-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.55;
}

/* Progress bar */
.tv-progress-wrap {
  padding: .7rem 1rem .65rem;
  background: rgba(0, 0, 0, .4);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.tv-prog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .45rem;
  font-weight: 600;
}

.tv-prog-track {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.tv-prog-fill {
  height: 100%;
  border-radius: 99px;
  width: 42%;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
}

/* Mini guide strip below TV */
.tv-guide-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}

.tv-guide-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: .7rem .8rem;
  cursor: pointer;
  transition: var(--transition);
}

.tv-guide-card:hover,
.tv-guide-card.active {
  background: rgba(0, 174, 239, .08);
  border-color: rgba(0, 174, 239, .25);
}

.tv-guide-cat {
  font-size: .65rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}

.tv-guide-name {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .82);
  line-height: 1.3;
}

.tv-guide-time {
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  margin-top: .2rem;
}

/* ── Right: categories + plan picker ── */
.gplay-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Stats row */
.gplay-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.gplay-stat {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.gplay-stat-num {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--azul);
  line-height: 1;
}

.gplay-stat-lbl {
  font-size: .72rem;
  color: var(--grafite-claro);
  font-weight: 600;
  margin-top: .2rem;
}

/* Category grid */
.gplay-cats-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grafite-claro);
  font-family: var(--font-h);
  margin-bottom: .85rem;
}

.gplay-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-bottom: 1.75rem;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 1.1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cat-glow, rgba(0, 174, 239, .08)), transparent 70%);
  pointer-events: none;
}

.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--azul-ice-2);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--grafite);
  line-height: 1.2;
}

.cat-count {
  font-size: .75rem;
  color: var(--grafite-claro);
  font-weight: 600;
}

/* Plan screens picker */
.gplay-plans-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grafite-claro);
  font-family: var(--font-h);
  margin-bottom: .85rem;
}

.gplay-plans-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
}

.gplay-plan-tile {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 1rem .75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  box-shadow: var(--shadow);
}

.gplay-plan-tile:hover {
  border-color: var(--azul);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gplay-plan-tile.highlighted {
  background: var(--azul-ice);
  border-color: var(--azul);
  box-shadow: 0 0 0 1px rgba(0, 174, 239, .2), var(--shadow-md);
}

.gplay-screens {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.gplay-screen-ico {
  width: 16px;
  height: 12px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 2px;
  position: relative;
}

.gplay-screen-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 6px;
  height: 3px;
  border-bottom: 1.5px solid var(--cinza-borda);
}

.gplay-screen-ico.on {
  border-color: var(--azul);
  background: rgba(0, 174, 239, .12);
}

.gplay-screen-ico.on::after {
  border-color: var(--azul);
}

.gplay-plan-speed {
  font-family: var(--font-h);
  font-size: .98rem;
  font-weight: 900;
  color: var(--azul-profundo);
}

.gplay-plan-screens {
  font-size: .72rem;
  color: var(--grafite-claro);
  font-weight: 600;
}

.gplay-plan-price {
  font-size: .7rem;
  color: var(--azul-profundo);
  font-weight: 700;
  margin-top: .1rem;
}

.gplay-cta-row {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.gplay-cta-note {
  font-size: .8rem;
  color: var(--grafite-medio);
  line-height: 1.5;
}

/* ── Scrolling channel ticker ── */
.gplay-ticker-wrap {
  max-width: 1200px;
  margin: 3rem auto 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.gplay-ticker-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grafite-claro);
  font-family: var(--font-h);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.gplay-ticker-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cinza-borda);
}

.gplay-ticker {
  display: flex;
  gap: .6rem;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.gplay-ticker:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gplay-ticker-wrap::before,
.gplay-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.gplay-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.gplay-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius);
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--grafite-medio);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ticker-chip:hover {
  border-color: var(--azul);
  color: var(--azul-profundo);
  box-shadow: var(--shadow-md);
}

.ticker-chip .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media(max-width:1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Em tablet, o plano em destaque vai para o topo em largura total */
  .plans-grid .pcard.featured {
    grid-column: 1 / -1;
    order: -1;
    transform: none;
  }

  .plans-grid .pcard.featured:hover {
    transform: translateY(-5px);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gplay-layout {
    grid-template-columns: 1fr;
  }

  .gplay-plans-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:768px) {
  .logo-img {
    width: 160px;
  }

  .tb-right .tb-cta,
  .tb-right .social-ico {
    display: none;
  }

  .nav .nav-link:not(.nav-cta):not(.nav-cta-blue) {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 9rem 1.5rem 5rem;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-caps {
    justify-content: center;
  }

  .hero-price {
    align-items: center;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
  }

  .hero-action-row .btn {
    width: 100%;
  }

  .vis-wrap {
    width: 300px;
    height: 340px;
  }

  .vis-ring-1 {
    width: 240px;
    height: 240px;
  }

  .vis-ring-2 {
    width: 300px;
    height: 300px;
  }

  .hero-slide img {
    max-height: 320px;
  }

  .hero-slide {
    transform: scale(1.05) translateY(5px);
  }

  .hero-slide.active {
    transform: scale(1) translateY(0);
  }

  .hero-slide.exiting {
    transform: scale(0.95) translateY(-5px);
  }

  .support-inner {
    grid-template-columns: 1fr;
  }

  .gplay-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gplay-plans-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gplay-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gplay-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .tv-guide-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media(max-width:480px) {
  .modal {
    padding: 1.5rem;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Active Micro-interactions */
button:active,
.btn:active,
.cta-button:active,
.plan-cta:active,
.form-submit-btn:active {
  transform: scale(0.97);
}