/* Estação IPTV — identidade própria, paleta extraída do logotipo */
:root {
  --ink: #070b14;
  --ink-2: #0c1424;
  --ink-3: #142038;
  --panel: #101a2e;
  --panel-2: #182744;
  --red: #e31b23;
  --red-hot: #ff2d36;
  --gold: #f5c400;
  --gold-2: #ffe36a;
  --blue: #0b63c6;
  --blue-2: #3b8ef0;
  --cream: #f4ead4;
  --paper: #f7f8fc;
  --muted: #93a2bb;
  --text: #eef3fb;
  --dim: #b7c3d8;
  --line: rgba(245, 196, 0, .18);
  --line-2: rgba(255, 255, 255, .08);
  --ok: #3ddc84;
  --shadow: 0 28px 70px rgba(0, 0, 0, .42);
  --r: 20px;
  --r-sm: 12px;
  --max: 1180px;
  --nav-h: 84px;
  --font-d: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-b: "Onest", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
button, input, select, textarea { font: inherit; }
p { margin: 0 0 1rem; color: var(--dim); }
ul { margin: 0; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: .6rem 1rem;
  z-index: 10000;
  border-radius: 8px;
  font-weight: 700;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-d);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 .8rem;
}

h1 { font-size: clamp(2.15rem, 5.4vw, 4.35rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(227, 27, 35, .7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(227, 27, 35, 0); }
}

.lead { font-size: 1.12rem; max-width: 42rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 11, 20, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold) 42%, var(--blue));
}

.header-inner {
  width: min(calc(100% - 28px), 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}
.logo-link img {
  width: auto;
  height: 64px;
}
.logo-word {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--dim);
  font-size: .92rem;
  font-weight: 600;
  padding: .55rem .7rem;
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.header-cta { display: flex; gap: .55rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1200;
  box-shadow: 0 10px 28px rgba(245, 196, 0, .28);
}
.btn-gold:hover { color: #1a1200; }
.btn-red {
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  color: #fff;
  box-shadow: 0 10px 28px rgba(227, 27, 35, .32);
}
.btn-red:hover { color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { color: #fff; border-color: var(--gold); }
.btn-wide { width: 100%; }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  margin: 0 auto;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(11, 99, 198, .28), transparent 60%),
    radial-gradient(700px 380px at 5% 90%, rgba(227, 27, 35, .16), transparent 55%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.hero h1 span {
  color: var(--gold);
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.4rem 0 1.2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.2rem;
  align-items: center;
  color: var(--dim);
  font-size: .92rem;
  font-weight: 600;
}
.stars { color: var(--gold); letter-spacing: .08em; }

.screen {
  position: relative;
  background: linear-gradient(160deg, #1a2748, #0b1220);
  border: 3px solid #d31820;
  border-radius: 28px 28px 18px 18px;
  padding: 18px 18px 28px;
  box-shadow: var(--shadow), 0 0 0 8px rgba(227, 27, 35, .12);
}
.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.screen-stage {
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #05070d;
}
.screen-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,.08) 48%, transparent 62%);
  animation: sweep 4.5s infinite;
}
@keyframes sweep {
  from { transform: translateX(-40%); }
  to { transform: translateX(40%); }
}
.channels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1.3fr 1fr;
  gap: 6px;
  padding: 8px;
}
.ch {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.ch:nth-child(1) { background: linear-gradient(160deg, #0b63c6, #071018); grid-row: span 2; }
.ch:nth-child(2) { background: linear-gradient(160deg, #e31b23, #3a0a0c); }
.ch:nth-child(3) { background: linear-gradient(160deg, #f5c400, #8a6200); }
.ch-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.play-fab {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  z-index: 2;
}
.play-fab i {
  width: 0;
  height: 0;
  border-left: 16px solid var(--red);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.antenna {
  position: absolute;
  top: -28px;
  right: 18%;
  width: 70px;
  height: 28px;
}
.antenna span {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 28px;
  background: var(--blue);
  transform-origin: bottom;
}
.antenna span:first-child { transform: rotate(-28deg); left: 18px; }
.antenna span:last-child { transform: rotate(28deg); right: 18px; }
.antenna span::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.float-badges {
  position: absolute;
  right: -12px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}
.chip {
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .45rem .7rem;
  border-radius: 999px;
}

/* Sections */
.section { padding: 84px 0; position: relative; }
.section-muted { background: var(--ink-2); }
.section-cream {
  background: var(--paper);
  color: #1a1f2c;
}
.section-cream h2,
.section-cream h3 { color: #121826; }
.section-cream p { color: #445066; }
.section-head { max-width: 680px; margin-bottom: 2.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.hud {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1.35rem;
}
.hud::before,
.hud::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
}
.hud::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.hud::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento .hud:first-child { grid-row: span 2; }
.bento h3 { margin-bottom: .4rem; }
.ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(245, 196, 0, .1);
  color: var(--gold);
  margin-bottom: .9rem;
  font-size: 1.15rem;
}
.ico-red { background: rgba(227, 27, 35, .12); color: #ff6a70; }
.ico-blue { background: rgba(11, 99, 198, .16); color: #7db6ff; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  padding-top: .4rem;
}
.step-num {
  font-family: var(--font-d);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .6rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feature-list { display: grid; gap: 14px; }
.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  border: 1px solid var(--line-2);
}

/* Devices */
.devices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.device {
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 1.1rem 1rem 1.2rem;
  min-height: 168px;
  transition: border-color .2s, transform .25s var(--ease);
}
.device:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.device svg { width: 36px; height: 36px; margin-bottom: .7rem; color: var(--gold); }
.device h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.device p { font-size: .9rem; margin: 0; }

/* Rating + quotes */
.rating-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.score-card {
  background: linear-gradient(180deg, #1b2744, #10182b);
  border: 1px solid var(--gold);
  border-radius: 24px;
  text-align: center;
  padding: 1.6rem 1rem;
}
.score-card strong {
  display: block;
  font-family: var(--font-d);
  font-size: 5rem;
  line-height: .9;
  color: var(--gold);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1rem;
  border: 1px solid var(--line-2);
}
.quote p {
  color: var(--text);
  font-size: .95rem;
  margin-bottom: .9rem;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1a1200;
  background: var(--gold);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  background:
    linear-gradient(180deg, rgba(245,196,0,.08), transparent 40%),
    var(--panel-2);
  box-shadow: var(--shadow);
}
.plan-tag {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--gold);
  color: #1a1200;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 999px;
}
.price {
  font-family: var(--font-d);
  font-size: 2.7rem;
  color: #fff;
  letter-spacing: -.04em;
  margin: .3rem 0 .8rem;
}
.price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  flex: 1;
}
.plan li {
  padding: .42rem 0 .42rem 1.4rem;
  position: relative;
  color: var(--dim);
}
.plan li::before {
  content: "●";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: .65rem;
  top: .7rem;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(110deg, var(--red) 0%, #9d1218 38%, #0b63c6 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border: 18px solid rgba(245,196,0,.35);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { max-width: 540px; }

/* Page hero */
.page-hero {
  padding: 54px 0 36px;
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(245,196,0,.12), transparent),
    var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.crumbs a { color: var(--dim); }
.crumbs span { color: #fff; }
.crumbs span:last-child {
  max-width: min(100%, 42ch);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; }
.prose a { text-decoration: underline; }
.prose ul, .prose ol { color: var(--dim); padding-left: 1.2rem; margin-bottom: 1rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

.sticky-cta {
  position: sticky;
  top: 108px;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 22px;
  padding: 1.3rem;
}

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .ans { padding: 0 1.2rem 1.1rem; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-post {
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform .25s var(--ease);
}
.card-post:hover { transform: translateY(-5px); color: inherit; }
.card-post img { width: 100%; height: 180px; object-fit: cover; }
.card-post .pad { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.card-post h2 { font-size: 1.15rem; }
.meta { color: var(--muted); font-size: .82rem; font-weight: 600; margin-bottom: .5rem; }

.quick-answer {
  background: linear-gradient(180deg, rgba(245,196,0,.12), rgba(245,196,0,.04));
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  margin: 1.2rem 0 1.6rem;
}
.quick-answer strong {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.quick-answer p { color: var(--text); margin: 0; }

.byline {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--panel);
  border-radius: 18px;
  padding: 1rem;
  margin: 2rem 0;
  border: 1px solid var(--line-2);
}
.byline img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }

.article-dates {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  color: var(--muted);
  font-size: .88rem;
  margin: .6rem 0 1rem;
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
}
.form label { font-weight: 700; font-size: .9rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-2);
  color: #fff;
  border-radius: 12px;
  padding: .85rem 1rem;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}

/* Footer */
.site-footer {
  background: #05070d;
  padding: 48px 0 20px;
  border-top: 2px solid var(--gold);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  gap: 24px;
  margin-bottom: 28px;
}
.site-footer h2 {
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-footer .logo-link img { height: 72px; width: auto; }
.site-footer a, .site-footer p { color: var(--muted); font-size: .92rem; }
.site-footer a { display: block; padding: .22rem 0; }
.site-footer a:hover { color: #fff; }
.legal {
  border-top: 1px solid var(--line-2);
  padding-top: 14px;
  color: var(--muted);
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* LGPD */
.lgpd {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: #10182b;
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: none;
  max-width: 920px;
  margin: 0 auto;
}
.lgpd.show { display: block; }
.lgpd-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.lgpd p { margin: 0; font-size: .9rem; color: var(--text); }
.lgpd-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* Author */
.author-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}
.author-hero img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid var(--gold);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1.4rem;
}
.stat {
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: .9rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: var(--gold);
}

/* Utility */
.mt-2 { margin-top: 2rem; }
.center-text { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split,
  .contact-grid,
  .rating-hero,
  .cta-inner,
  .author-hero { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .hud:first-child { grid-row: auto; }
  .steps, .plans, .blog-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .devices { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #0b1220;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--gold);
    z-index: 90;
  }
  .nav.open a { padding: .8rem .6rem; }
  .logo-link img { height: 52px; width: auto; }
  .float-badges { position: static; margin-top: 12px; display: flex; flex-wrap: wrap; }
  .lgpd-inner { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .devices, .bento, .stats, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 0 48px; }
  .section { padding: 56px 0; }
  main .btn { width: 100%; }
  .hero-actions .btn,
  .cta-inner .btn,
  .header-cta .btn,
  .lgpd .btn { width: auto; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
