/* Enzo Internet — layout 2026
   Cores, logo e fonte (Inter) herdadas do site anterior. */
:root {
  --primary: #0a3d7a;
  --primary-strong: #062a56;
  --primary-deep: #041c3b;
  --primary-soft: #1a5fb5;
  --sky: #2ea3e0;
  --secondary: #f4a11b;
  --secondary-strong: #d98d00;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #edf4ff;
  --text: #102033;
  --muted: #5f7083;
  --border: rgba(16, 32, 51, 0.08);
  --shadow: 0 20px 45px rgba(10, 61, 122, 0.12);
  --shadow-lg: 0 30px 70px rgba(6, 42, 86, 0.22);
  --radius: 24px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.035em; margin: 0; }
p { margin: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--secondary); color: #1d1d1d; font-weight: 700;
  padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; border-radius: 6px; }

/* ---------- Botões ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 1rem; padding: 0.95rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; flex: none; }
.button-primary {
  background: linear-gradient(135deg, var(--secondary), #ffb347);
  color: #1d1d1d;
  box-shadow: 0 14px 28px rgba(244, 161, 27, 0.3);
}
.button-primary:hover { box-shadow: 0 18px 34px rgba(244, 161, 27, 0.42); }
.button-ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(6px);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.button-outline { background: transparent; color: var(--primary); border-color: rgba(10, 61, 122, 0.2); }
.button-outline:hover { border-color: var(--primary); }
.button.sm { padding: 0.7rem 1.15rem; font-size: 0.92rem; }
.full { width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--secondary), #ffb347);
}
.eyebrow.light { color: #bfe0ff; }

/* ---------- Header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand-logo { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 0.95rem; color: var(--muted); }
.main-nav a { position: relative; padding: 6px 0; transition: color .2s; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--secondary); transform: scaleX(0); transition: transform .25s; border-radius: 2px;
}
.main-nav a:hover { color: var(--primary-strong); }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--primary-strong); font-size: 0.95rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--primary); }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; color: var(--primary-strong);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--primary-deep);
  padding: clamp(64px, 9vw, 120px) 0 clamp(90px, 10vw, 140px);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(4, 28, 59, 0.97) 0%, rgba(6, 42, 86, 0.9) 42%, rgba(10, 61, 122, 0.55) 72%, rgba(10, 61, 122, 0.35) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
/* ---------- Faixa de confiança ---------- */
.trust { position: relative; z-index: 2; margin-top: -54px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--border); overflow: hidden;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-item .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--surface-alt); color: var(--primary); }
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--primary-strong); font-size: 0.98rem; }
.trust-item span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Seções ---------- */
.section { padding: clamp(72px, 9vw, 112px) 0; }
.section-alt { background: var(--surface-alt); }
.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header h2 { margin-top: 14px; font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 800; color: var(--primary-strong); }
.section-header p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Planos ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 30px rgba(8, 30, 58, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.plan-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plan-card:hover .plan-media img { transform: scale(1.05); }
.plan-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,28,59,.55)); }
.plan-tag {
  position: absolute; left: 16px; top: 16px; z-index: 1;
  background: rgba(255,255,255,.94); color: var(--primary);
  border-radius: 999px; padding: 6px 12px; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.plan-body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }
.plan-card h3 { font-size: 1.55rem; color: var(--primary-strong); }
.plan-sub { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.price { margin: 18px 0 20px; color: var(--muted); font-size: 0.92rem; }
.price strong { color: var(--primary-strong); font-size: 2.6rem; font-weight: 800; letter-spacing: -0.05em; margin: 0 2px; }
.price small { font-size: 0.9rem; }
.check-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; color: var(--text); font-size: 0.97rem; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { flex: none; width: 20px; height: 20px; color: var(--secondary-strong); margin-top: 2px; }
.plan-body .button { margin-top: auto; }
.plan-card.featured { border: 2px solid var(--secondary); box-shadow: var(--shadow); }
.plan-card.featured .plan-tag { background: var(--secondary); color: #1d1d1d; }
.plans-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: 0.9rem; }

/* ---------- Usos (galeria) ---------- */
.uses-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.use-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 3 / 4; color: #fff; isolation: isolate; }
.use-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.use-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,28,59,0) 35%, rgba(4,28,59,.92)); }
.use-card:hover img { transform: scale(1.06); }
.use-card .use-copy { position: absolute; left: 22px; right: 22px; bottom: 22px; }
.use-card h3 { font-size: 1.3rem; }
.use-card p { font-size: 0.92rem; color: #d6e6f8; margin-top: 6px; }

/* ---------- Vantagens ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(10,61,122,.18); }
.icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 16px; margin-bottom: 20px; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 10px 22px rgba(10, 61, 122, 0.25);
}
.icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.15rem; color: var(--primary-strong); margin-bottom: 10px; letter-spacing: -0.02em; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Split (infra / watch) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media .main-img { border-radius: 28px; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split-media .float-img {
  position: absolute; width: 44%; right: -24px; bottom: -34px;
  border-radius: 20px; border: 6px solid var(--surface); box-shadow: var(--shadow-lg);
  aspect-ratio: 1; object-fit: cover;
}
.float-stat {
  position: absolute; left: -22px; top: 28px;
  background: var(--surface); border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.float-stat .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(244,161,27,.15); color: var(--secondary-strong); }
.float-stat .ico svg { width: 22px; height: 22px; }
.float-stat strong { display: block; color: var(--primary-strong); font-size: 1.1rem; line-height: 1.2; }
.float-stat span { font-size: 0.8rem; color: var(--muted); }
.split-copy h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--primary-strong); margin: 14px 0 18px; }
.split-copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 26px; }
.split-copy .check-list { margin-bottom: 32px; }

.watch-section { background: linear-gradient(160deg, var(--primary-deep) 0%, var(--primary-strong) 55%, var(--primary) 100%); color: #fff; position: relative; overflow: hidden; }
.watch-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -200px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(46,163,224,.25), transparent 65%); }
.watch-section .split-copy h2 { color: #fff; }
.watch-section .split-copy > p { color: #cfe2f7; }
.watch-section .check-list { color: #e6f1ff; }
.watch-section .check-list svg { color: var(--secondary); }
.watch-section .split-media .main-img { border: 1px solid rgba(255,255,255,.15); }
.watch-chips { position: absolute; left: 20px; bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.watch-chips span { background: rgba(4,28,59,.72); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); padding: 6px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 30px 26px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(244,161,27,.14); color: var(--secondary-strong); font-weight: 800; margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; color: var(--primary-strong); margin-bottom: 8px; letter-spacing: -0.02em; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-aside .section-header { margin-bottom: 26px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; transition: box-shadow .2s, border-color .2s; }
.faq-list details[open] { box-shadow: var(--shadow); border-color: rgba(10,61,122,.16); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; color: var(--primary-strong);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--surface-alt); color: var(--primary);
  font-size: 1.2rem; font-weight: 600; transition: transform .25s, background .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--secondary); color: #1d1d1d; }
.faq-list details p { padding: 0 22px 22px; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta-band { padding-bottom: clamp(72px, 9vw, 112px); }
.cta-box {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 32px; padding: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: 1.3fr auto; gap: 28px; align-items: center;
  color: #fff; box-shadow: var(--shadow-lg);
  background: linear-gradient(120deg, var(--primary-deep), var(--primary) 70%, var(--primary-soft));
}
.cta-box::after { content: ""; position: absolute; z-index: -1; width: 420px; height: 420px; right: -120px; bottom: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(244,161,27,.35), transparent 65%); }
.cta-box h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; margin: 12px 0 10px; }
.cta-box p { color: #cfe2f7; font-size: 1.05rem; }
.cta-actions { display: grid; gap: 12px; justify-items: stretch; }
.cta-phone { text-align: center; font-size: 0.9rem; color: #cfe2f7; }
.cta-phone a { color: #fff; font-weight: 700; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-deep); color: rgba(255,255,255,.75); padding: 64px 0 28px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-logo { background: #fff; display: inline-block; padding: 10px 16px; border-radius: 14px; }
.footer-logo img { height: 34px; width: auto; }
.footer-about { margin-top: 18px; max-width: 320px; }
.footer h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--secondary); }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--secondary); }
.footer-bottom { margin-top: 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,.55); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ring 2.4s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Página interna (privacidade) ---------- */
.page-hero { background: linear-gradient(120deg, var(--primary-deep), var(--primary)); color: #fff; padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-top: 12px; }
.prose { max-width: 820px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); margin-top: -32px; box-shadow: var(--shadow); position: relative; }
.prose h2 { font-size: 1.4rem; color: var(--primary-strong); margin: 32px 0 12px; }
.prose p, .prose li { color: #33475c; }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 20px; display: grid; gap: 8px; margin: 16px 0; }
.prose a { color: var(--primary); text-decoration: underline; }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .nav-phone { display: none; }
  .uses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .use-card { aspect-ratio: 4 / 3; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    padding: 8px 20px 16px; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .hero-grid, .split, .faq-wrap { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .plans-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .cta-box { grid-template-columns: 1fr; }
  .split-media { margin: 0 24px 34px 22px; }
  .watch-section .split-media { order: -1; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .nav-actions .button { display: none; }
  .brand-logo { height: 36px; }
  .trust { margin-top: -40px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--border); }
  .uses-grid, .features-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-row .button { width: 100%; }
  .split-media .float-img { right: -12px; width: 40%; }
  .float-stat { left: -10px; top: 14px; padding: 10px 14px; }
  .watch-chips { display: none; }
}
.nowrap { white-space: nowrap; }

/* ---------- Watch: canais ---------- */
.watch-section .container + .container { position: relative; margin-top: clamp(56px, 7vw, 88px); }
.watch-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  background: rgba(255,255,255,.05); overflow: hidden;
}
.watch-stats div { padding: 26px 20px; text-align: center; }
.watch-stats div + div { border-left: 1px solid rgba(255,255,255,.12); }
.watch-stats strong { display: block; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; color: var(--secondary); line-height: 1.1; }
.watch-stats span { color: #cfe2f7; font-size: 0.95rem; }
.watch-subtitle { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; margin: clamp(48px, 6vw, 72px) 0 26px; }
.channels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.channel-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; padding: 26px 24px;
  transition: transform .25s ease, background .25s ease, border-color .25s;
}
.channel-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(244,161,27,.45); }
.ch-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(244,161,27,.16); color: var(--secondary); margin-bottom: 16px; }
.ch-ico svg { width: 24px; height: 24px; }
.channel-card h4 { margin: 0 0 8px; font-size: 1.2rem; letter-spacing: -0.02em; }
.channel-card p { color: #cfe2f7; font-size: 0.95rem; }
.ch-tags { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.ch-tags li { background: rgba(4,28,59,.55); border: 1px solid rgba(255,255,255,.14); color: #e6f1ff; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.watch-note { margin-top: 20px; font-size: 0.85rem; color: #9fbcdc; text-align: center; }
.watch-apps {
  margin-top: clamp(40px, 5vw, 60px); display: grid; grid-template-columns: 1fr auto; gap: 18px 32px; align-items: center;
  background: linear-gradient(120deg, rgba(244,161,27,.16), rgba(46,163,224,.12));
  border: 1px solid rgba(255,255,255,.16); border-radius: 26px; padding: clamp(24px, 4vw, 36px);
}
.watch-apps h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.watch-apps p { color: #cfe2f7; }
.app-links { display: flex; flex-wrap: wrap; gap: 10px; }
.app-btn {
  display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 9px 16px 9px 12px;
  transition: transform .2s, border-color .2s;
}
.app-btn:hover { transform: translateY(-2px); border-color: var(--secondary); }
.app-btn svg { width: 26px; height: 26px; flex: none; }
.app-btn span { display: flex; flex-direction: column; font-weight: 700; font-size: 1rem; line-height: 1.15; }
.app-btn small { font-weight: 500; font-size: 0.68rem; color: #cfd8e3; }
.app-activate { grid-column: 1 / -1; font-size: 0.92rem; }
.app-activate a { color: var(--secondary); font-weight: 700; text-decoration: underline; }
@media (max-width: 940px) {
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .watch-apps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .channels-grid { grid-template-columns: 1fr; }
  .watch-stats { grid-template-columns: 1fr; }
  .watch-stats div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .app-btn { flex: 1 1 100%; }
}

/* ---------- Footer: dados da empresa ---------- */
.footer-company {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 4px 18px; font-size: 0.85rem; color: rgba(255,255,255,.6);
}
.footer-company strong { color: rgba(255,255,255,.85); font-weight: 600; flex-basis: 100%; }
.footer-company + .footer-bottom { margin-top: 18px; }
.footer-bottom a { color: rgba(255,255,255,.8); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--secondary); }

/* ---------- Watch: pacote Power Esporte Clube ---------- */
.package-head { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center; }
.package-badge {
  display: inline-block; background: var(--secondary); color: #1d1d1d;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.package-head h3 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; margin: 12px 0 10px; text-transform: uppercase; letter-spacing: -0.03em; }
.package-head p { color: #cfe2f7; max-width: 460px; }
.watch-stats strong { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.ch-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 40px 0 18px; font-size: 0.85rem; color: #cfe2f7; }
.ch-legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #3ddc84; display: inline-block; }
.dot.vod { background: linear-gradient(90deg, #3ddc84 50%, var(--secondary) 50%); }
.dot.vod-only { background: var(--secondary); }
.channels-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.channels-grid .channel-card { padding: 20px; }
@media (min-width: 1081px) {
  .channels-grid .channel-card:nth-child(2),
  .channels-grid .channel-card:nth-child(5),
  .channels-grid .channel-card:nth-child(7),
  .channels-grid .channel-card:nth-child(8) { grid-column: span 2; }
}
.ch-head { display: flex; align-items: center; gap: 12px; }
.ch-head .ch-ico { margin: 0; width: 40px; height: 40px; border-radius: 12px; flex: none; }
.ch-head .ch-ico svg { width: 20px; height: 20px; }
.ch-head h4 { margin: 0; font-size: 1.1rem; flex: 1; }
.ch-count { font-size: 0.78rem; font-weight: 800; color: #1d1d1d; background: #fff; border-radius: 999px; padding: 2px 9px; }
.ch-tags li { position: relative; padding-left: 20px; }
.ch-tags li::before { content: ""; position: absolute; left: 8px; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: #3ddc84; }
.ch-tags li.vod::before { background: linear-gradient(90deg, #3ddc84 50%, var(--secondary) 50%); }
.ch-tags li.vod-only::before { background: var(--secondary); }
.ch-tags li.vod-only { border-style: dashed; }

/* ---------- Passo a passo HBO Max ---------- */
.max-guide {
  margin-top: clamp(40px, 5vw, 60px); border-radius: 28px; padding: clamp(24px, 4vw, 44px);
  background: rgba(4,28,59,.45); border: 1px solid rgba(255,255,255,.14);
}
.max-intro { max-width: 720px; }
.max-intro h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin: 12px 0 10px; }
.max-intro p { color: #cfe2f7; }
.max-intro a, .max-source a { color: var(--secondary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.max-steps { list-style: none; counter-reset: mx; padding: 0; margin: 30px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.max-steps li { counter-increment: mx; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.max-steps li::before {
  content: counter(mx); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--secondary); color: #1d1d1d; font-weight: 800; margin-bottom: 6px;
}
.max-steps strong { font-size: 1.02rem; }
.max-steps span { color: #cfe2f7; font-size: 0.92rem; }
.max-steps b { color: #fff; }
.max-devices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: start; }
.max-devices details { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.max-devices summary {
  list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.max-devices summary::-webkit-details-marker { display: none; }
.max-devices summary svg { width: 20px; height: 20px; color: var(--secondary); }
.max-devices summary::after { content: "+"; margin-left: auto; font-size: 1.2rem; color: #cfe2f7; transition: transform .2s; }
.max-devices details[open] summary::after { transform: rotate(45deg); }
.max-devices ol { margin: 0; padding: 0 18px 18px 38px; display: grid; gap: 8px; color: #cfe2f7; font-size: 0.92rem; }
.max-source { margin-top: 22px; font-size: 0.85rem; color: #9fbcdc; }
.faq-list details p a { color: var(--primary); font-weight: 600; text-decoration: underline; }

@media (max-width: 1080px) {
  .channels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .max-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .package-head { grid-template-columns: 1fr; }
  .max-devices { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .channels-grid { grid-template-columns: 1fr; }
  .max-steps { grid-template-columns: 1fr; }
}

/* ---------- Hero (v2) ---------- */
.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.hero-kicker {
  display: inline-block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #bcd4ee; padding-bottom: 10px;
  border-bottom: 3px solid var(--secondary);
}
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.9rem); font-weight: 800; margin: 26px 0 22px; letter-spacing: -0.045em; max-width: 17ch; }
.hero h1 mark {
  background: none; color: inherit; white-space: nowrap;
  box-shadow: inset 0 -0.22em 0 var(--secondary);
}
.hero-lead { color: #d3e3f5; max-width: 560px; font-size: clamp(1.02rem, 1.4vw, 1.15rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 36px; }
.hero-points {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start; list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,.18); max-width: 620px;
}
.hero-points li {
  display: flex; flex-direction: column; gap: 2px; padding: 18px 22px 0 0;
  color: #bcd4ee; font-size: 0.85rem; font-weight: 500;
}
.hero-points li + li { border-left: 1px solid rgba(255,255,255,.18); padding-left: 22px; }
.hero-points strong { color: #fff; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }

.coverage-card {
  background: var(--surface); color: var(--text); border-radius: 22px;
  padding: clamp(24px, 3vw, 34px); box-shadow: 0 30px 60px rgba(2, 14, 32, 0.45);
  border-top: 6px solid var(--secondary);
}
.coverage-card h2 { font-size: 1.6rem; font-weight: 800; color: var(--primary-strong); letter-spacing: -0.03em; }
.coverage-card > p { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.coverage-form { display: grid; grid-template-columns: 1fr 88px; gap: 10px; margin-top: 20px; }
.coverage-form input {
  font: inherit; font-size: 1.05rem; font-weight: 600; color: var(--primary-strong);
  border: 1.5px solid #cfd9e6; border-radius: 12px; padding: 0.85rem 1rem; width: 100%; min-width: 0;
  background: #f7f9fc; transition: border-color .2s, background .2s;
}
.coverage-form input:focus { outline: none; border-color: var(--primary); background: #fff; }
.coverage-form input.invalid { border-color: #d64545; }
.coverage-form .button { grid-column: 1 / -1; width: 100%; }
.coverage-error { color: #c23b3b; font-size: 0.85rem; margin-top: 8px; font-weight: 600; }
.mini-plans { margin-top: 24px; border-top: 1px solid var(--border); }
.mini-plans a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 10px;
  padding: 13px 4px; border-bottom: 1px solid var(--border); transition: background .2s;
}
.mini-plans a:hover { background: var(--surface-alt); }
.mini-plans span { font-weight: 800; color: var(--primary-strong); }
.mini-plans em { font-style: normal; color: var(--muted); font-size: 0.85rem; }
.mini-plans strong { color: var(--primary-strong); font-size: 1.1rem; }
.mini-plans strong::after { content: "/mês"; font-size: 0.75rem; font-weight: 500; color: var(--muted); margin-left: 2px; }
.mini-plans a.is-featured span::after {
  content: "popular"; margin-left: 8px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; background: var(--secondary); color: #1d1d1d; padding: 2px 7px; border-radius: 6px; vertical-align: 2px;
}
.coverage-call { margin-top: 16px; font-size: 0.9rem; color: var(--muted); text-align: center; }
.coverage-call a { color: var(--primary); font-weight: 800; }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .coverage-card { max-width: 520px; }
}
@media (max-width: 600px) {
  .hero-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-points li { padding-right: 10px; font-size: 0.78rem; }
  .hero-points li + li { padding-left: 10px; }
  .hero-points strong { font-size: 1.1rem; }
  .hero h1 mark { white-space: normal; }
}

/* ---------- Planos (v2: velocidades) ---------- */
.plans-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.plan-card { padding: 26px 20px 22px; overflow: visible; }
.plan-card .plan-tag {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); white-space: nowrap;
  background: var(--primary); color: #fff; box-shadow: 0 6px 14px rgba(10,61,122,.25);
}
.plan-card.featured { background: linear-gradient(170deg, var(--primary-strong), var(--primary)); color: #fff; border: 2px solid var(--secondary); }
.plan-card.featured .plan-tag { background: var(--secondary); color: #1d1d1d; }
.plan-speed { display: flex; align-items: baseline; gap: 6px; color: var(--primary-strong); margin-top: 6px; }
.plan-speed strong { font-size: 3rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.plan-speed span { font-weight: 800; font-size: 1rem; letter-spacing: .04em; color: var(--secondary-strong); }
.plan-card .plan-sub { font-size: 0.9rem; margin-top: 10px; min-height: 3.1em; }
.plan-card .price { display: flex; align-items: flex-start; gap: 2px; margin: 18px 0 0; color: var(--primary-strong); }
.plan-card .price > small { font-size: 0.95rem; font-weight: 700; margin-top: 8px; }
.plan-card .price strong { font-size: 2.6rem; line-height: 1; margin: 0; }
.plan-card .price .cents { display: flex; flex-direction: column; font-weight: 800; font-size: 1.05rem; line-height: 1.1; margin-top: 4px; }
.plan-card .price .cents small { font-weight: 500; font-size: 0.78rem; color: var(--muted); }
.price-promo { font-size: 0.78rem; color: var(--muted); min-height: 2.4em; margin: 6px 0 16px; line-height: 1.35; }
.plan-card .check-list { font-size: 0.9rem; gap: 9px; margin-bottom: 22px; }
.plan-card .check-list svg { width: 18px; height: 18px; }
.plan-card.featured .plan-speed, .plan-card.featured .price, .plan-card.featured .plan-speed span { color: #fff; }
.plan-card.featured .plan-speed span { color: var(--secondary); }
.plan-card.featured .plan-sub, .plan-card.featured .price .cents small { color: #cfe2f7; }
.plan-card.featured .price-promo { color: #ffd489; font-weight: 600; }
.plan-card.featured .check-list { color: #fff; }
.plan-card.featured .check-list svg { color: var(--secondary); }
.plan-card .button { font-size: 0.95rem; padding: 0.85rem 1rem; }

.plan-benefits {
  list-style: none; padding: 0; margin: 34px 0 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.plan-benefits li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface-alt); border-radius: 16px; padding: 16px 18px; font-size: 0.88rem; color: var(--muted);
}
.plan-benefits svg { flex: none; width: 22px; height: 22px; color: var(--primary); margin-top: 1px; }
.plan-benefits strong { display: block; color: var(--primary-strong); font-size: 0.95rem; }

.business-band {
  margin-top: 34px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.business-band img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.business-band > div { padding: clamp(24px, 4vw, 40px); }
.business-band h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--primary-strong); margin: 12px 0 10px; }
.business-band p { color: var(--muted); margin-bottom: 22px; }

/* Hero: lista de planos */
.mini-plans a { grid-template-columns: auto 1fr auto; padding: 11px 4px; }
.mini-plans em { font-size: 0.8rem; }
.mini-plans a.is-featured span::after { content: none; }
.mini-plans a.is-featured { background: #fff7e8; border-radius: 10px; padding-inline: 10px; }
.mini-note { font-size: 0.75rem; color: var(--muted); margin-top: 8px; }

@media (max-width: 1180px) {
  .plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .plan-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
  .business-band { grid-template-columns: 1fr; }
  .business-band img { max-height: 240px; }
}
@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-benefits { grid-template-columns: 1fr; }
  .plan-card .plan-sub, .price-promo { min-height: 0; }
  .mini-plans em { display: none; }
}

.plan-card.featured .price strong, .plan-card.featured .price > small, .plan-card.featured .price .cents { color: #fff; }
.plan-card .plan-sub { min-height: 4.4em; }
.plan-card .button { margin-top: auto; }
@media (max-width: 600px) { .plan-card .plan-sub { min-height: 0; } }

/* ---------- Gamers & Streamers ---------- */
.gamer-section {
  position: relative; overflow: hidden; color: #fff;
  background: #06142b;
  background-image:
    linear-gradient(115deg, rgba(10,61,122,.55) 0%, transparent 45%),
    linear-gradient(295deg, rgba(244,161,27,.12) 0%, transparent 40%);
}
.gamer-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.gamer-head > div { max-width: 680px; }
.gamer-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; margin: 14px 0 14px; }
.gamer-head p { color: #c3d6ec; font-size: 1.06rem; }
.gamer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gamer-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; overflow: hidden; transition: border-color .25s, transform .25s;
}
.gamer-card:hover { border-color: rgba(244,161,27,.55); transform: translateY(-4px); }
.gamer-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.gamer-card-body { padding: 24px 26px 26px; }
.gamer-tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em; color: var(--secondary);
}
.gamer-tag svg { width: 18px; height: 18px; }
.gamer-card h3 { font-size: 1.5rem; font-weight: 800; margin: 8px 0 14px; }
.gamer-card .check-list { color: #dbe8f7; margin: 0; }
.gamer-card .check-list svg { color: var(--secondary); }

.gamer-bottom { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; margin-top: 22px; }
.dl-card, .tips-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: clamp(22px, 3vw, 32px);
}
.dl-card h3, .tips-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 22px; letter-spacing: -0.02em; }
.dl-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.dl-list li { display: grid; grid-template-columns: 92px 1fr 80px; align-items: center; gap: 14px; }
.dl-plan { font-weight: 800; font-size: 0.95rem; }
.dl-bar { height: 12px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.dl-bar i { display: block; height: 100%; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, var(--primary-soft), var(--sky)); }
.dl-list li:last-child .dl-bar i { background: linear-gradient(90deg, var(--secondary-strong), var(--secondary)); }
.dl-time { text-align: right; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.dl-list li:last-child .dl-time { color: var(--secondary); }
.dl-note { margin-top: 20px; font-size: 0.8rem; color: #8fa9c8; }
.tips-list { margin: 0; padding-left: 20px; display: grid; gap: 10px; color: #c3d6ec; font-size: 0.93rem; }
.tips-list strong { color: #fff; }
.tips-list li::marker { color: var(--secondary); font-weight: 800; }
.tips-plan {
  margin-top: 22px; padding: 18px; border-radius: 18px;
  background: rgba(244,161,27,.1); border: 1px solid rgba(244,161,27,.35);
  display: grid; gap: 4px;
}
.tips-plan span { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--secondary); }
.tips-plan strong { font-size: 1.4rem; font-weight: 800; }
.tips-plan em { font-style: normal; font-size: 0.85rem; color: #ffd489; margin-bottom: 10px; }
.use-card p a { color: var(--secondary); font-weight: 700; text-decoration: underline; }

@media (max-width: 940px) {
  .gamer-grid, .gamer-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dl-list li { grid-template-columns: 78px 1fr 64px; gap: 10px; }
  .dl-plan, .dl-time { font-size: 0.85rem; }
}
.ping-box { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 8px; }
.ping-box h4 { margin: 0 0 4px; font-size: 1.02rem; }
.ping-box p { color: #c3d6ec; font-size: 0.9rem; }
.ping-box strong { color: #fff; }

/* ---------- Avaliação Google + redes ---------- */
.review-section { padding-bottom: 0; }
.review-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 22px; }
.review-card, .social-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
.review-stars { display: flex; gap: 4px; color: #fbbc05; }
.review-stars svg { width: 26px; height: 26px; }
.review-card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--primary-strong); margin: 14px 0 10px; }
.review-card p { color: var(--muted); max-width: 540px; margin-bottom: 24px; }
.button-review { background: #fff; color: #1f1f1f; border: 1.5px solid #dadce0; box-shadow: 0 6px 16px rgba(16,32,51,.08); }
.button-review:hover { border-color: #4285f4; }
.social-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary-strong); }
.social-card > p { color: var(--muted); font-size: 0.92rem; margin: 6px 0 18px; }
.social-row {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px;
  border: 1px solid var(--border); transition: border-color .2s, transform .2s;
}
.social-row + .social-row { margin-top: 10px; }
.social-row:hover { border-color: var(--primary); transform: translateX(3px); }
.social-row strong { display: block; color: var(--primary-strong); }
.social-row span:last-child { font-size: 0.88rem; color: var(--muted); }
.social-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.social-ico svg { width: 22px; height: 22px; }
.social-ico.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-ico.fb { background: #1877f2; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; transition: background .2s;
}
.social-links a:hover { background: rgba(255,255,255,.18); }
.social-links svg { width: 20px; height: 20px; }
.cta-phone a + a { margin-left: 2px; }
@media (max-width: 940px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- Watch: combo + abas de pacotes ---------- */
.package-intro {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px; padding: clamp(22px, 3.5vw, 36px);
}
.package-intro h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin-bottom: 20px; }
.combo-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; }
.combo-step { background: rgba(4,28,59,.5); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 20px; }
.combo-step strong { display: block; font-size: 1.1rem; margin: 10px 0 6px; }
.combo-step p { color: #c3d6ec; font-size: 0.92rem; }
.combo-step b { color: #fff; }
.combo-step--addon { border-color: rgba(244,161,27,.5); background: rgba(244,161,27,.1); }
.combo-step--addon b { color: var(--secondary); }
.combo-n { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--secondary); color: #1d1d1d; font-weight: 800; }
.combo-plus { align-self: center; font-size: 1.8rem; font-weight: 800; color: var(--secondary); }

.pkg-tabs { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.pkg-tab {
  font: inherit; cursor: pointer; text-align: left; color: #fff;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 16px; padding: 14px 20px; display: grid; gap: 2px; min-width: 220px;
  transition: background .2s, border-color .2s;
}
.pkg-tab span { font-weight: 800; font-size: 1.1rem; }
.pkg-tab small { color: #9fbcdc; font-size: 0.82rem; }
.pkg-tab:hover { background: rgba(255,255,255,.1); }
.pkg-tab.is-active { background: #fff; border-color: #fff; color: var(--primary-strong); }
.pkg-tab.is-active small { color: var(--secondary-strong); font-weight: 700; }
.no-js .pkg-tabs { display: none; }
.pkg-panel + .pkg-panel { margin-top: 32px; }
.pkg-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }
.pkg-title span { font-size: 0.9rem; vertical-align: middle; background: var(--secondary); color: #1d1d1d; padding: 4px 10px; border-radius: 999px; margin-left: 8px; letter-spacing: 0; }
.pkg-desc { color: #c3d6ec; margin: 8px 0 20px; max-width: 760px; }
.pkg-panel .channel-card { opacity: 1; transform: none; }
.ch-legend { margin: 22px 0 16px; }
.channels-grid--hub .channel-card:nth-child(n) { grid-column: auto; }
@media (min-width: 1081px) {
  .channels-grid--hub { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .channels-grid--hub .channel-card:nth-child(1), .channels-grid--hub .channel-card:nth-child(3) { grid-column: span 2; }
}
.plan-card .check-list li.addon { color: var(--secondary-strong); font-weight: 700; }
.plan-card.featured .check-list li.addon { color: #ffd489; }
@media (max-width: 940px) {
  .combo-steps { grid-template-columns: 1fr; }
  .combo-plus { justify-self: center; line-height: 1; }
}
@media (max-width: 600px) { .pkg-tab { min-width: 0; flex: 1 1 100%; } }

/* ---------- Card de cobertura (v3) ---------- */
.coverage-card { padding: 0; overflow: hidden; border-top: 0; border-radius: 24px; }
.cc-head {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff; padding: 22px 26px 20px; position: relative;
}
.cc-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--secondary); }
.cc-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--secondary);
}
.cc-badge svg { width: 14px; height: 14px; }
.coverage-card .cc-head h2 { color: #fff; font-size: 1.5rem; margin-top: 6px; }
.coverage-card .cc-head p { color: #cfe2f7; font-size: 0.9rem; margin-top: 4px; }
.coverage-form { display: block; padding: 18px 26px 6px; margin: 0; }
.cc-step {
  display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--primary-strong); margin: 0 0 10px; padding: 0;
}
.cc-step span {
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-size: 0.72rem; letter-spacing: 0;
}
.pp-list { border: 0; padding: 0; margin: 0 0 16px; display: grid; gap: 6px; min-width: 0; }
.pp-row {
  position: relative; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 12px;
  padding: 9px 12px; border: 1.5px solid #e3e9f1; border-radius: 12px; cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.pp-row:hover { border-color: #b9c7d8; }
.pp-row input { position: absolute; opacity: 0; pointer-events: none; }
.pp-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #b9c7d8; transition: border-color .15s, box-shadow .15s; }
.pp-row:has(input:checked) { border-color: var(--secondary); background: #fff8ec; box-shadow: 0 4px 12px rgba(244,161,27,.15); }
.pp-row input:checked + .pp-radio { border-color: var(--secondary); box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 10px var(--secondary); }
.pp-row input:focus-visible + .pp-radio { outline: 3px solid var(--secondary); outline-offset: 2px; }
.pp-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pp-main strong { font-size: 1.05rem; font-weight: 800; color: var(--primary-strong); line-height: 1.1; }
.pp-main strong small { font-size: 0.7rem; color: var(--secondary-strong); letter-spacing: .04em; }
.pp-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.pp-tag { font-size: 0.68rem; font-weight: 700; padding: 1px 7px; border-radius: 6px; background: var(--surface-alt); color: var(--primary); }
.pp-tag--hl { background: rgba(244,161,27,.18); color: #8a5600; }
.pp-tag--plain { background: transparent; color: var(--muted); padding-left: 0; font-weight: 500; }
.pp-price { text-align: right; display: flex; flex-direction: column; line-height: 1.15; }
.pp-price strong { font-size: 1rem; font-weight: 800; color: var(--primary-strong); white-space: nowrap; }
.pp-price small { font-size: 0.68rem; color: var(--muted); white-space: nowrap; }
.pp-row--featured::before {
  content: "Mais completo"; position: absolute; right: 10px; top: -9px;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: var(--secondary); color: #1d1d1d; padding: 2px 7px; border-radius: 5px;
}
.pp-row--featured { margin-top: 6px; }
.cc-address { display: grid; grid-template-columns: 1fr 84px; gap: 8px; }
.cc-address input {
  font: inherit; font-size: 1rem; font-weight: 600; color: var(--primary-strong);
  border: 1.5px solid #cfd9e6; border-radius: 12px; padding: 0.8rem 0.95rem; width: 100%; min-width: 0;
  background: #f7f9fc; transition: border-color .2s, background .2s;
}
.cc-address input:focus { outline: none; border-color: var(--primary); background: #fff; }
.cc-address input.invalid { border-color: #d64545; }
.cc-submit { width: 100%; margin-top: 12px; }
.coverage-card .coverage-error { margin: 6px 0 0; }
.coverage-card .coverage-call { margin: 0; padding: 12px 26px 18px; font-size: 0.85rem; }
@media (max-width: 600px) {
  .coverage-form { padding: 16px 16px 4px; }
  .cc-head { padding: 20px 18px 18px; }
  .coverage-card .coverage-call { padding: 12px 16px 16px; }
  .pp-row { gap: 10px; padding: 9px 10px; }
}

button { font-family: inherit; }
.pp-price small.pp-promo { white-space: normal; }
