/* ============================================================
   LINFORTEL — Pulse Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #F4F1E8;
  --bg-warm: #EFEADB;
  --paper: #FAF7EE;
  --ink: #0B1424;
  --ink-2: #1A2238;
  --ink-soft: #4A5468;
  --ink-mute: #8A8F9C;
  --line: rgba(11, 20, 36, 0.12);
  --line-strong: rgba(11, 20, 36, 0.22);

  --cyan: #00C2FF;
  --cyan-deep: #0072B5;
  --lime: #C7FF3E;
  --lime-deep: #9BD600;
  --signal: #FF4D2E;

  --dark-bg: #07101D;
  --dark-bg-2: #0E1A2E;
  --dark-fg: #F4F1E8;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Geist', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11", "tnum" 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 194, 255, 0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(199, 255, 62, 0.06), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.tnum { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.container-tight { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(0, 194, 255, 0.0); }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; line-height: 1.55; color: var(--ink-soft); margin: 0; }
a { color: inherit; text-decoration: none; }

/* Header */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 232, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 20px 32px;
  display: flex; align-items: center; gap: 32px;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.04em; color: var(--ink);
}
.brand-mark { width: 36px; height: 36px; position: relative; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.brand.brand-image-only { gap: 0; }
.brand.brand-image-only .brand-mark {
  width: auto; height: 64px;
  display: inline-flex; align-items: center;
}
.brand.brand-image-only .brand-mark img {
  width: auto; height: 100%;
  max-width: 300px; max-height: 100%;
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.22em;
  color: var(--ink-mute); font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: flex; align-items: center; gap: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav a {
  display: inline-block;
  background: none; border: 0;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  border-radius: 999px; letter-spacing: -0.01em;
  transition: all 0.15s ease;
  text-decoration: none;
}
.nav a:hover { background: rgba(11, 20, 36, 0.05); }
.nav a.active { background: var(--ink); color: var(--bg); }

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer; border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-lime {
  background: var(--lime); color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15) inset, 0 6px 0 -3px var(--lime-deep);
}
.btn-lime:hover { box-shadow: 0 1px 0 rgba(0,0,0,0.15) inset, 0 8px 0 -3px var(--lime-deep); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(11, 20, 36, 0.04); }

.client-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px; font-weight: 500;
  cursor: pointer; color: var(--ink);
  text-decoration: none;
}
.client-pill .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: grid; place-items: center;
  color: white; font-size: 10px; font-weight: 700;
}

/* Hero */
.hero { position: relative; padding: 56px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: stretch; }
.hero-title {
  font-size: clamp(56px, 7.6vw, 120px);
  font-weight: 600; line-height: 0.92;
  letter-spacing: -0.04em;
}
.hero-title em {
  font-style: normal;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-weight: 400;
  background: linear-gradient(105deg, var(--cyan) 0%, var(--cyan-deep) 60%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic;
}
.hero-sub { margin-top: 28px; font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; }

.hero-meta { margin-top: 36px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  padding-top: 24px; gap: 24px;
  max-width: 600px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 600; font-size: 36px;
  letter-spacing: -0.04em; line-height: 1;
}
.hero-stat .num sup {
  font-size: 14px; font-family: var(--font-mono);
  color: var(--cyan-deep); font-weight: 500;
  letter-spacing: 0; margin-left: 2px; top: -0.7em;
}
.hero-stat .label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

.hero-card {
  position: relative;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px; overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 110% -10%, rgba(0, 194, 255, 0.35), transparent 60%),
    radial-gradient(500px 300px at -10% 110%, rgba(199, 255, 62, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.hero-card-top .tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(244, 241, 232, 0.6);
  display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(199, 255, 62, 0.7);
  animation: pulse-live 1.8s infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(199, 255, 62, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(199, 255, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 255, 62, 0); }
}

.speed-display { position: relative; z-index: 1; text-align: left; margin: 22px 0; }
.speed-display .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244, 241, 232, 0.5);
}
.speed-display .value {
  font-family: var(--font-display);
  font-size: 96px; font-weight: 500;
  letter-spacing: -0.05em; line-height: 0.9;
  margin-top: 6px; color: var(--bg);
}
.speed-display .value span {
  font-size: 24px; color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 400; letter-spacing: 0;
  margin-left: 6px; vertical-align: top;
  position: relative; top: 18px;
}

.speed-meter {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; gap: 4px;
  height: 64px; margin: 24px 0;
}
.speed-meter span {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 194, 255, 0.2));
  border-radius: 2px;
  transform-origin: bottom;
  animation: bar 2.4s ease-in-out infinite;
}
@keyframes bar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-card-meta {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 241, 232, 0.15);
}
.hero-card-meta div .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244, 241, 232, 0.5);
}
.hero-card-meta div .v {
  font-family: var(--font-display);
  font-size: 22px; margin-top: 4px;
  font-weight: 500; letter-spacing: -0.02em;
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::after {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--cyan);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-tag { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.section-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); }
.section-title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.035em;
  font-weight: 600; max-width: 900px;
}
.section-lead { font-size: 18px; color: var(--ink-soft); margin-top: 18px; max-width: 620px; }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 540px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -24px rgba(11, 20, 36, 0.18);
}
.plan.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.plan.featured p, .plan.featured .plan-feat li { color: rgba(244, 241, 232, 0.72); }
.plan.featured .plan-feat li::before { background: var(--lime); }

.plan-flag {
  position: absolute; top: -12px; left: 28px;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

.plan-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.plan.featured .plan-head { color: rgba(244, 241, 232, 0.5); border-color: rgba(244, 241, 232, 0.2); }

.plan-speed {
  margin: 28px 0 8px;
  font-family: var(--font-display);
  font-size: 84px; letter-spacing: -0.055em;
  font-weight: 500; line-height: 0.85;
}
.plan-speed sup {
  font-family: var(--font-mono);
  font-size: 16px; letter-spacing: 0;
  font-weight: 500; vertical-align: super;
  margin-left: 4px; color: var(--cyan-deep);
}
.plan.featured .plan-speed sup { color: var(--cyan); }
.plan-unit { font-family: var(--font-body); font-size: 16px; color: var(--ink-mute); margin-bottom: 24px; }
.plan.featured .plan-unit { color: rgba(244, 241, 232, 0.5); }

.plan-feat {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.plan-feat li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.plan-feat li::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--cyan-deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}

.plan-price {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan.featured .plan-price { border-color: rgba(244, 241, 232, 0.2); }
.plan-price .currency { font-family: var(--font-mono); font-size: 14px; color: var(--ink-mute); }
.plan.featured .plan-price .currency { color: rgba(244, 241, 232, 0.5); }
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 1;
}
.plan-price .cents {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em;
  align-self: flex-start; margin-top: 4px;
}
.plan-price .per {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
  align-self: flex-end; padding-bottom: 6px;
}

.plan-cta {
  margin-top: 18px;
  display: block; text-align: center;
  padding: 16px; border-radius: 12px;
  background: var(--lime); color: var(--ink);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer; border: 0;
  font-family: var(--font-body);
  transition: transform 0.15s ease;
  text-decoration: none;
}
.plan-cta:hover { transform: translateY(-1px); }
.plan.featured .plan-cta { background: var(--lime); }

/* Coverage */
.coverage-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 32px; margin-top: 48px; }
.coverage-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.cep-input { display: flex; gap: 8px; margin-top: 18px; }
.cep-input input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 16px; color: var(--ink);
  letter-spacing: 0.04em; outline: none;
  transition: border-color 0.15s ease;
}
.cep-input input:focus { border-color: var(--ink); }
.cep-input button {
  padding: 14px 22px;
  border-radius: 12px;
  border: 0;
  background: var(--ink); color: var(--bg);
  font-weight: 600; cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
}

.coverage-result {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  border: 1px dashed var(--line-strong);
}
.coverage-result.ok { background: rgba(199, 255, 62, 0.25); border: 1px solid var(--lime-deep); }
.coverage-result:empty { display: none; }

.coverage-list { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.coverage-list h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  font-weight: 500;
}
.coverage-cities { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.coverage-cities span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg);
}
.coverage-cities span::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--cyan);
}

.coverage-map {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  color: var(--bg);
}
.coverage-map svg { display: block; width: 100%; height: 100%; }
.coverage-map .map-overlay {
  position: absolute; left: 24px; top: 24px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.coverage-map .map-overlay .row {
  display: flex; gap: 8px; align-items: center;
  color: rgba(244, 241, 232, 0.7);
}
.coverage-map .map-overlay .row::before {
  content: ""; width: 10px; height: 10px;
  border-radius: 50%; background: var(--cyan);
}
.coverage-map .map-overlay .row.lime::before { background: var(--lime); }
.coverage-map .map-overlay .row.mute::before { background: rgba(244, 241, 232, 0.3); }

.coverage-map .map-stats {
  position: absolute; right: 24px; bottom: 24px;
  background: rgba(244, 241, 232, 0.06);
  border: 1px solid rgba(244, 241, 232, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 18px;
  display: grid; grid-template-columns: repeat(3, auto); gap: 18px;
}
.coverage-map .map-stats .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244, 241, 232, 0.5);
}
.coverage-map .map-stats .v {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em; margin-top: 2px;
}

/* Why */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.why-cell {
  background: var(--paper);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.25s ease;
}
.why-cell:hover { background: var(--bg-warm); }
.why-cell .ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink); color: var(--cyan);
}
.why-cell h3 { font-size: 24px; letter-spacing: -0.025em; }
.why-cell p { font-size: 14px; }
.why-cell .meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* Mesh */
.mesh-hero {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
  margin-top: 48px;
}
.mesh-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 194, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.mesh-house {
  position: relative; z-index: 1;
  aspect-ratio: 4/3;
  background: var(--ink-2);
  border-radius: 18px;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.08);
}
.mesh-content { position: relative; z-index: 1; }
.mesh-content h2 { color: var(--bg); font-size: clamp(36px, 4vw, 60px); }
.mesh-content p { color: rgba(244, 241, 232, 0.7); margin-top: 18px; font-size: 17px; }

/* Help */
.help-hero {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, var(--paper), var(--bg));
  border-bottom: 1px solid var(--line);
}
.help-search {
  margin-top: 36px;
  display: flex; gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 8px;
  max-width: 720px;
  box-shadow: 0 24px 48px -28px rgba(11, 20, 36, 0.18);
}
.help-search input {
  flex: 1; border: 0; background: transparent;
  padding: 14px 16px;
  font-size: 17px;
  font-family: var(--font-body);
  outline: none; color: var(--ink);
}
.help-search input::placeholder { color: var(--ink-mute); }
.help-search button {
  background: var(--ink); color: var(--bg);
  border: 0;
  padding: 14px 24px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
}

.help-suggest {
  margin-top: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-mute); align-items: center;
}
.help-suggest a {
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: var(--paper);
  transition: all 0.15s ease;
}
.help-suggest a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.help-topics {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 48px;
}
.help-topic {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 20px 18px;
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 10px; min-height: 140px;
  transition: all 0.18s ease;
  text-align: left;
  font-family: var(--font-body);
  color: var(--ink);
}
.help-topic:hover, .help-topic.active { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.help-topic:hover .help-topic-count, .help-topic.active .help-topic-count { color: var(--cyan); }
.help-topic .ico { width: 28px; height: 28px; color: var(--cyan-deep); }
.help-topic:hover .ico, .help-topic.active .ico { color: var(--cyan); }
.help-topic h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0;
  color: inherit;
}
.help-topic .help-topic-count {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

.help-layout {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 40px; margin-top: 64px;
}
.help-side h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 12px; font-weight: 500;
}
.help-side ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column;
}
.help-side ul li button, .help-side ul li a {
  width: 100%; text-align: left;
  background: none; border: 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px; color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none;
}
.help-side ul li button:hover, .help-side ul li a:hover { background: var(--bg-warm); }
.help-side ul li button.active, .help-side ul li a.active { background: var(--ink); color: var(--bg); }
.help-side ul li button .count, .help-side ul li a .count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); }
.help-side ul li button.active .count, .help-side ul li a.active .count { color: rgba(244, 241, 232, 0.5); }

.faq-block { display: flex; flex-direction: column; gap: 8px; }
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color 0.18s ease;
}
.faq:hover { border-color: var(--ink); }
.faq.open { background: var(--bg); border-color: var(--ink); }
.faq .chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.18s ease;
}
.faq.open .chev { transform: rotate(45deg); background: var(--lime); }
.faq .a {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
  display: none;
}
.faq.open .a { display: block; }
.faq .a strong { color: var(--ink); }

.help-aside {
  position: sticky; top: 90px; align-self: start;
  display: flex; flex-direction: column; gap: 12px;
}
.help-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 20px;
}
.help-card.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.help-card.dark p { color: rgba(244, 241, 232, 0.7); }
.help-card h5 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 6px;
}
.help-card p { font-size: 14px; }
.help-card .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}
.help-card.dark .row { border-color: rgba(244, 241, 232, 0.1); }
.help-card .row:first-of-type { border-top: 0; padding-top: 16px; }
.help-card .row .ico {
  width: 32px; height: 32px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink); flex-shrink: 0;
}
.help-card.dark .row .ico { background: rgba(244, 241, 232, 0.08); color: var(--cyan); }
.help-card .row .v { font-weight: 600; color: inherit; }
a.row { text-decoration: none; transition: opacity 0.15s ease; }
a.row:hover { opacity: 0.7; }
a.row:hover .ico { background: var(--cyan); color: var(--ink); }
.help-card.dark a.row:hover .ico { background: var(--cyan); color: var(--ink); }

/* Tutoriais expansíveis */
.tutorial-item { border-top: 1px solid var(--line); }
.tutorial-item:first-of-type { border-top: 0; }
.help-card.dark .tutorial-item { border-color: rgba(244, 241, 232, 0.1); }
.tutorial-item button.row {
  width: 100%;
  background: none; border: 0; padding: 12px 0;
  text-align: left; cursor: pointer; color: inherit;
  font-family: inherit;
}
.tutorial-item:first-of-type button.row { padding-top: 16px; }
.tutorial-item button.row:hover .ico { background: var(--cyan); color: var(--ink); }
.tutorial-chev {
  margin-left: auto; display: grid; place-items: center;
  width: 24px; height: 24px;
  color: var(--ink-mute);
  transition: transform 0.2s ease;
}
.tutorial-item.open .tutorial-chev { transform: rotate(45deg); color: var(--ink); }
.tutorial-body {
  padding: 4px 0 14px 44px;
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.65;
  color: var(--ink-soft);
  white-space: pre-line;
}
.tutorial-body[hidden] { display: none; }
.help-card.dark .tutorial-body { color: rgba(244, 241, 232, 0.7); }
.help-card .row .k {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 2px;
}
.help-card.dark .row .k { color: rgba(244, 241, 232, 0.5); }

.status-card {
  background: rgba(199, 255, 62, 0.15);
  border: 1px solid var(--lime-deep);
  border-radius: 14px;
  padding: 16px 20px;
}
.status-card .status-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.status-card .status-head::before {
  content: ""; width: 8px; height: 8px;
  border-radius: 50%; background: #2BA64A;
  box-shadow: 0 0 0 0 #2BA64A;
  animation: pulse-live 2s infinite;
}
.status-card .status-sub { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }

/* Self-service */
.self-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 48px;
}
.self {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 220px;
  display: flex; flex-direction: column;
  gap: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.22s ease;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
}
.self:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(11, 20, 36, 0.2);
}
.self .ico {
  width: 44px; height: 44px;
  background: var(--ink); color: var(--cyan);
  border-radius: 12px;
  display: grid; place-items: center;
}
.self h4 { font-size: 22px; letter-spacing: -0.025em; }
.self p { font-size: 13.5px; }
.self::after {
  content: "→";
  position: absolute; right: 22px; top: 22px;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--ink-mute);
  transition: transform 0.2s ease, color 0.2s ease;
}
.self:hover::after { transform: translate(4px, -4px); color: var(--cyan-deep); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  margin-top: 80px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 90% 0%, rgba(0, 194, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.1);
  gap: 48px;
}
.footer-claim {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-weight: 500;
  color: var(--bg);
  max-width: 800px;
}
.footer-claim em { font-style: italic; color: var(--cyan); font-weight: 400; }
.footer-cta-row { display: flex; gap: 12px; margin-top: 8px; }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}
.footer-cols h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
  font-weight: 500; margin: 0 0 16px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { color: rgba(244, 241, 232, 0.7); font-size: 14px; transition: color 0.15s ease; cursor: pointer; }
.footer-cols a:hover { color: var(--bg); }

.footer-logo {
  margin-bottom: 20px;
  display: flex; align-items: center;
}
.footer-logo img {
  height: 56px; width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 241, 232, 0.1);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(244, 241, 232, 0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--bg); }

.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 232, 0.15);
  transition: all 0.15s ease;
}
.socials a:hover { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px;
  align-items: center;
}
.about-figure {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(11, 20, 36, 0.04) 12px 13px);
  background-size: cover;
  background-position: center;
}
.about-figure.about-figure-has-image {
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  border-color: transparent;
}
.about-figure.about-figure-has-image::after { display: none; }
.about-figure.about-figure-has-image .badge {
  background: var(--ink); color: var(--bg);
  border-color: transparent;
}
.about-figure::after {
  content: "PLACEHOLDER · EQUIPE / OFICINA / RUA";
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.about-figure .badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--ink); color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px; padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.14em;
}

.about-content h2 { font-size: clamp(40px, 4.6vw, 72px); letter-spacing: -0.035em; }
.about-content p { margin-top: 18px; font-size: 16px; }
.about-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 36px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.about-meta .num {
  font-family: var(--font-display);
  font-size: 40px; letter-spacing: -0.04em;
  font-weight: 500; line-height: 1;
}
.about-meta .label {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

.timeline {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.timeline-row .year {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.03em;
}
.timeline-row .title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em;
}

/* Page transitions */
.page-enter { animation: pageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mesh page */
.mesh-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.mesh-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.mesh-step .step-num {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 500;
  letter-spacing: -0.04em; line-height: 0.9;
  color: var(--cyan-deep);
}
.mesh-step h4 { margin-top: 16px; font-size: 22px; }
.mesh-step p { margin-top: 8px; font-size: 14px; }

.mesh-diagram {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0E1A2E, #07101D);
}
.mesh-room {
  position: absolute;
  border: 1px solid rgba(0, 194, 255, 0.3);
  background: rgba(0, 194, 255, 0.04);
  border-radius: 6px;
}
.mesh-router {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
.mesh-router::before, .mesh-router::after {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid rgba(0, 194, 255, 0.4);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}
.mesh-router::after { animation-delay: 1s; }
@keyframes ripple {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Plans tabs */
.tabs-pill {
  margin-top: 40px;
  display: flex; gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
}
.tabs-pill button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 0.18s ease;
}
.tabs-pill button .desc { font-family: var(--font-mono); font-size: 11px; opacity: 0.5; margin-left: 6px; }
.tabs-pill button.active { background: var(--ink); color: var(--bg); }

/* Help suggest as anchors */
.help-suggest a, .help-topic { font-family: var(--font-body); }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid, .coverage-wrap, .about-grid, .mesh-hero { grid-template-columns: 1fr; }
  .plans-grid, .why-grid, .self-grid { grid-template-columns: repeat(2, 1fr); }
  .help-layout { grid-template-columns: 1fr; }
  .help-topics { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .plans-grid, .why-grid, .self-grid, .help-topics, .mesh-grid-3 { grid-template-columns: 1fr; }
  .container, .container-tight { padding: 0 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .topbar-inner { gap: 8px; }
  .client-pill span { display: none; }
}

/* Documentos legais (privacidade, termos, segurança) */
.legal-doc {
  margin-top: 64px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
}
.legal-doc section + section {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 28px;
}
.legal-doc h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
}
.legal-doc p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-top: 22px;
}
.legal-doc p:first-of-type { margin-top: 0; }
.legal-doc ul {
  list-style: none; padding: 0;
  margin: 28px 0 0;
  display: flex; flex-direction: column;
  gap: 18px;
}
.legal-doc ul + p { margin-top: 28px; }
.legal-doc ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal-doc ul li::before {
  content: ""; position: absolute;
  left: 4px; top: 12px;
  width: 6px; height: 6px;
  background: var(--cyan-deep);
  border-radius: 50%;
}
.legal-doc ul li strong { display: inline; }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-doc a { color: var(--cyan-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover { color: var(--ink); }
.legal-doc code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--ink);
}
.legal-cta {
  margin-top: 72px;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--bg-warm), var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.legal-cta h3 { font-size: 24px; margin: 0 0 8px; }
.legal-cta p { margin-top: 0; }

/* Cards da página de segurança */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.security-card {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.security-card .ico {
  width: 40px; height: 40px;
  background: var(--ink); color: var(--cyan);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.security-card h3 {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.security-card p { font-size: 13px; line-height: 1.55; margin-top: 0; color: var(--ink-soft); }

@media (max-width: 720px) {
  .legal-doc { padding: 40px 24px; margin-top: 40px; }
  .legal-doc section + section { margin-top: 48px; padding-top: 40px; }
  .legal-doc h2 { margin-bottom: 20px; }
  .legal-doc p { line-height: 1.75; margin-top: 18px; }
  .legal-doc ul { margin-top: 22px; gap: 14px; }
  .legal-cta { padding: 28px 22px; margin-top: 48px; }
  .security-grid { grid-template-columns: 1fr; }
}

/* Hero slider */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 36, 0.82) 0%, rgba(11, 20, 36, 0.68) 50%, rgba(11, 20, 36, 0.45) 100%),
    linear-gradient(180deg, rgba(11, 20, 36, 0.3) 0%, rgba(11, 20, 36, 0.6) 100%);
}
.hero-slide-inner {
  position: relative; z-index: 1;
  max-width: 1360px; margin: 0 auto;
  padding: 120px 32px;
  min-height: 720px;
  display: flex; align-items: center;
}
.hero-slide-content {
  max-width: min(820px, 92%);
  color: var(--bg);
  padding-right: 16px;
}
.hero-slide-content .hero-title {
  color: var(--bg);
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.hero-slide-content .hero-title em {
  font-style: normal;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-weight: 400; font-style: italic;
  background: linear-gradient(105deg, var(--cyan) 0%, var(--cyan-deep) 60%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero-slide-content .hero-sub {
  margin-top: 24px;
  font-size: 18px; line-height: 1.55;
  color: rgba(244, 241, 232, 0.85);
  max-width: 560px;
}
.hero-slide-content .hero-meta { margin-top: 36px; }
.hero-slider-dots {
  position: absolute; left: 0; right: 0; bottom: 32px;
  z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero-slider-dots button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(244, 241, 232, 0.3);
  border: 0; cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.hero-slider-dots button:hover { background: rgba(244, 241, 232, 0.55); }
.hero-slider-dots button.active { background: var(--cyan); width: 44px; }
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(244, 241, 232, 0.08);
  border: 1px solid rgba(244, 241, 232, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bg);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-slider-arrow:hover { background: rgba(244, 241, 232, 0.18); border-color: var(--cyan); }
.hero-slider-arrow.prev { left: 24px; }
.hero-slider-arrow.next { right: 24px; }
@media (max-width: 800px) {
  .hero-slider, .hero-slide-inner { min-height: 560px; }
  .hero-slide-inner { padding: 90px 20px; }
  .hero-slider-arrow { display: none; }
  .hero-slide-content .hero-title { font-size: clamp(36px, 9vw, 56px); }
}

/* App store modal */
.app-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.app-modal[hidden] { display: none; }
.app-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 20, 36, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.app-modal-card {
  position: relative; z-index: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 440px; width: 100%;
  box-shadow: 0 30px 60px -20px rgba(11, 20, 36, 0.4);
  animation: app-modal-in 0.2s ease-out;
}
@keyframes app-modal-in {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.app-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0;
  font-size: 28px; line-height: 1;
  color: var(--ink-mute); cursor: pointer;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.app-modal-close:hover { background: var(--bg-warm); color: var(--ink); }
.app-modal-icon {
  width: 56px; height: 56px;
  background: var(--ink); color: var(--cyan);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.app-modal-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.025em; margin: 0;
  color: var(--ink);
}
.app-modal-card p { margin-top: 6px; font-size: 14px; }
.app-modal-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px;
}
.app-modal-actions .btn { justify-content: flex-start; padding: 14px 18px; }

/* ============================================================
   WhatsApp floating widget (visível em todo o site)
   ============================================================ */
.wa-widget {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  font-family: var(--font-body);
}
.wa-widget-fab {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: #fff;
  border: 0; padding: 0;
  cursor: pointer;
  box-shadow:
    0 14px 30px -8px rgba(37, 211, 102, 0.55),
    0 6px 14px -4px rgba(0, 0, 0, 0.2);
  display: grid; place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-widget-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 18px 36px -8px rgba(37, 211, 102, 0.7),
    0 8px 18px -4px rgba(0, 0, 0, 0.25);
}
.wa-widget-fab-icon { position: relative; z-index: 2; display: grid; place-items: center; line-height: 0; }
.wa-widget-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-widget-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: #ef4444;
  color: #fff;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-mono);
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid var(--bg);
  z-index: 3;
}
.wa-widget[data-open] .wa-widget-badge,
.wa-widget[data-open] .wa-widget-pulse { display: none; }
.wa-widget[data-open] .wa-widget-fab { transform: scale(0.92); }

/* Card */
.wa-widget-card {
  position: absolute;
  right: 0; bottom: calc(100% + 16px);
  width: 340px;
  background: #ECE5DD;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(11, 20, 36, 0.35),
    0 12px 24px -8px rgba(11, 20, 36, 0.18);
  animation: wa-card-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
.wa-widget-card[hidden] { display: none; }
@keyframes wa-card-in {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-widget-header {
  position: relative;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #fff;
  padding: 18px 20px 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.wa-widget-header::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80px 60px at 90% 30%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.wa-widget-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: 0;
  color: rgba(255,255,255,0.75);
  font-size: 22px; line-height: 1;
  width: 26px; height: 26px;
  border-radius: 6px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.15s ease;
}
.wa-widget-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.wa-widget-avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.25);
}
.wa-widget-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
/* Quando exibe o favicon (ícone pequeno) — fundo branco e padding pra respirar */
.wa-widget-avatar.wa-widget-avatar-icon {
  background: #fff;
  border-color: #fff;
  padding: 6px;
}
.wa-widget-avatar.wa-widget-avatar-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.wa-widget-avatar span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}
.wa-widget-avatar-dot {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: #25D366;
  border: 2px solid #128C7E;
  border-radius: 50%;
  z-index: 2;
}

.wa-widget-meta { flex: 1; min-width: 0; }
.wa-widget-name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.015em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-widget-status {
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  margin-top: 1px;
  display: flex; align-items: center; gap: 6px;
}
.wa-widget-status-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102, 0.6);
  animation: wa-dot-pulse 1.8s ease-out infinite;
}
@keyframes wa-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102, 0.65); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* Body — chat preview */
.wa-widget-body {
  padding: 24px 18px 18px;
  min-height: 130px;
  background-image:
    radial-gradient(rgba(11, 20, 36, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
}
.wa-widget-bubble {
  position: relative;
  background: #fff;
  padding: 12px 14px 18px;
  border-radius: 0 12px 12px 12px;
  max-width: 84%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  animation: wa-bubble-in 0.45s 0.15s ease-out both;
}
.wa-widget-bubble::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}
@keyframes wa-bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wa-widget-bubble p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #303030;
  margin: 0 0 6px;
}
.wa-widget-bubble p:last-of-type { margin-bottom: 0; }
.wa-widget-bubble strong { color: #128C7E; font-weight: 600; }
.wa-widget-time {
  display: block;
  font-size: 10.5px;
  color: #8696a0;
  text-align: right;
  margin-top: 6px;
  font-family: var(--font-mono);
}

/* CTA */
.wa-widget-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: #fff;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}
.wa-widget-cta:hover {
  background: linear-gradient(135deg, #1ebe57 0%, #19a04a 100%);
  letter-spacing: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-widget-fab { width: 58px; height: 58px; }
  .wa-widget-fab-icon svg { width: 26px !important; height: 26px !important; }
  .wa-widget-card {
    width: calc(100vw - 32px);
    max-width: 340px;
  }
}

/* ============================================================
   STATUS DA REDE — página /status-rede
   ============================================================ */
.sr-page {
  background: var(--bg);
  padding-bottom: 80px;
}

.sr-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.sr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 18px 0 14px;
  line-height: 1.02;
}
.sr-hero-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.55;
  margin: 0;
}

.sr-status-section {
  padding: 56px 0 0;
}

/* ===== Card principal ===== */
.sr-card {
  --sr-tint: var(--lime);
  --sr-tint-2: var(--lime-deep);
  --sr-tint-soft: rgba(199, 255, 62, 0.18);

  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px 44px 36px;
  box-shadow: 0 24px 60px -30px rgba(11, 20, 36, 0.18);
  overflow: hidden;
}
.sr-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--sr-tint), var(--sr-tint-2));
}
.sr-card.sr-ok   { --sr-tint: #6BE05B; --sr-tint-2: #2A9D8F; --sr-tint-soft: rgba(107, 224, 91, 0.14); }
.sr-card.sr-warn { --sr-tint: #FFB347; --sr-tint-2: #E07A1F; --sr-tint-soft: rgba(255, 179, 71, 0.16); }
.sr-card.sr-info { --sr-tint: var(--cyan); --sr-tint-2: var(--cyan-deep); --sr-tint-soft: rgba(0, 194, 255, 0.14); }
.sr-card.sr-crit { --sr-tint: #FF5E5E; --sr-tint-2: #C7361B; --sr-tint-soft: rgba(255, 94, 94, 0.16); }
.sr-card.sr-note { --sr-tint: #A78BFA; --sr-tint-2: #6D5BE7; --sr-tint-soft: rgba(167, 139, 250, 0.16); }

.sr-card-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.sr-card-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--sr-tint-soft);
  color: var(--sr-tint-2);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--sr-tint) 40%, transparent);
}
.sr-card-icon svg { width: 30px; height: 30px; }

.sr-card-icon.sr-pulse { animation: srPulseRing 2.4s ease-in-out infinite; }
@keyframes srPulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 94, 94, 0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(255, 94, 94, 0); }
}

.sr-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sr-tint-2);
  margin-bottom: 8px;
}
.sr-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.1;
}
.sr-card-desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

.sr-meta-grid {
  margin: 32px 0 0 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.sr-meta-item {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sr-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.sr-meta-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.sr-card-foot {
  margin: 32px 0 0 88px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sr-footer-note {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.sr-footer-note strong { color: var(--ink-soft); }

/* Mobile */
@media (max-width: 720px) {
  .sr-card { padding: 28px 22px; border-radius: 22px; }
  .sr-card-head { gap: 16px; }
  .sr-card-icon { width: 48px; height: 48px; border-radius: 14px; }
  .sr-card-icon svg { width: 22px; height: 22px; }
  .sr-meta-grid, .sr-card-foot { margin-left: 0; }
}

/* ============================================================
   BANNER GLOBAL DE INCIDENTE — visível em todas as páginas
   ============================================================ */
.sr-banner {
  position: relative;
  display: block;
  background: linear-gradient(90deg, #FF5E5E 0%, #E07A1F 100%);
  color: #fff;
  text-decoration: none;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  z-index: 51;
}
.sr-banner.sr-banner-warn { background: linear-gradient(90deg, #FFB347 0%, #E07A1F 100%); color: #2A1A06; }
.sr-banner.sr-banner-info { background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-deep) 100%); color: #0B1424; }
.sr-banner.sr-banner-note { background: linear-gradient(90deg, #A78BFA 0%, #6D5BE7 100%); color: #fff; }
.sr-banner strong { font-weight: 700; letter-spacing: -0.01em; }
.sr-banner-link {
  margin-left: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  opacity: 0.9;
  font-weight: 600;
}
.sr-banner-link:hover { opacity: 1; }
.sr-banner-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 8px;
  vertical-align: middle;
  animation: srBannerDot 1.4s ease-in-out infinite;
}
@keyframes srBannerDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}
@media (max-width: 640px) {
  .sr-banner { font-size: 12px; padding: 10px 14px; }
  .sr-banner-link { display: block; margin: 4px 0 0; }
}

/* ============================================================
   LANDING SEO — /internet-fibra (Internet fibra em {cidade})
   ============================================================ */
.if-page { background: var(--bg); }

/* ===== HERO ===== */
.if-hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.if-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.if-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.if-breadcrumb a:hover { border-color: var(--ink-soft); }

.if-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin: 20px 0 24px;
}
.if-h1 em {
  font-style: italic;
  color: var(--cyan-deep);
  background: linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--lime) 65%, transparent) 62%);
  padding: 0 4px;
  border-radius: 4px;
}

.if-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 32px;
}

.if-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Stats bar */
.if-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.if-stat { display: flex; flex-direction: column; gap: 4px; }
.if-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.if-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .if-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ===== SECTION SCAFFOLD ===== */
.if-section { padding: 88px 0; border-top: 1px solid var(--line); }
.if-section-tinted { background: var(--bg-warm); }

.if-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.if-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 18px;
}
.if-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 18px;
}
.if-h2 em { font-style: italic; color: var(--cyan-deep); }
.if-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== CARD GRID ===== */
.if-grid { display: grid; gap: 18px; }
.if-grid-2 { grid-template-columns: repeat(2, 1fr); }
.if-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 980px) { .if-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .if-grid-2, .if-grid-3 { grid-template-columns: 1fr; } }

.if-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.if-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -30px rgba(11, 20, 36, 0.25);
  border-color: var(--line-strong);
}
.if-card-quiet { background: var(--paper); }
.if-card-ico { font-size: 28px; margin-bottom: 14px; line-height: 1; }
.if-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.if-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ===== PLANS ===== */
.if-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .if-plans { grid-template-columns: 1fr; } }

.if-plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
}
.if-plan-featured { background: var(--ink); color: var(--dark-fg); border-color: var(--ink); }
.if-plan-flag {
  position: absolute;
  top: -12px; left: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px color-mix(in srgb, var(--lime-deep) 50%, transparent);
}
.if-plan-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}
.if-plan-featured .if-plan-name { color: rgba(244, 241, 232, 0.6); }
.if-plan-speed {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1;
}
.if-plan-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cyan-deep);
  margin: 0 0 18px;
}
.if-plan-featured .if-plan-price { color: var(--lime); }
.if-plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.if-plan-featured .if-plan-feats { color: rgba(244, 241, 232, 0.75); }
.if-plan-feats li { padding-left: 22px; position: relative; }
.if-plan-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-deep);
  font-weight: 700;
}
.if-plan-featured .if-plan-feats li::before { color: var(--lime); }
.if-plan-cta { margin-top: auto; }

/* ===== BAIRROS ===== */
.if-bairros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 20px;
  justify-content: center;
}
.if-bairro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.if-bairro:hover { border-color: var(--cyan); transform: translateY(-1px); }
.if-bairro-tick {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.if-bairros-note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 24px auto 0;
  max-width: 600px;
}
.if-bairros-note a { color: var(--cyan-deep); font-weight: 600; }

/* ===== COMPARATIVO ===== */
.if-compare {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
}
.if-compare table { width: 100%; border-collapse: collapse; min-width: 640px; }
.if-compare th, .if-compare td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.if-compare thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg-warm);
  font-weight: 600;
}
.if-compare tbody th {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.if-compare-best {
  color: var(--cyan-deep) !important;
  background: color-mix(in srgb, var(--cyan) 12%, var(--bg-warm)) !important;
  border-bottom: 1px solid var(--cyan) !important;
}
.if-compare-best span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.if-compare .if-yes {
  color: var(--ink);
  font-weight: 600;
  background: color-mix(in srgb, var(--lime) 18%, transparent);
}
.if-compare tr:last-child th, .if-compare tr:last-child td { border-bottom: none; }

/* ===== STEPS ===== */
.if-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .if-steps { grid-template-columns: 1fr; } }

.if-steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.if-step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.if-steps h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 8px;
}
.if-steps p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }
.if-steps a { color: var(--cyan-deep); font-weight: 600; }

/* ===== FAQ ===== */
.if-faqs { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.if-faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.if-faq[open] { border-color: var(--cyan); }
.if-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
}
.if-faq summary::-webkit-details-marker { display: none; }
.if-faq summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.if-faq[open] summary::after { content: "−"; }
.if-faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== CTA FINAL ===== */
.if-final { background: var(--ink); color: var(--dark-fg); padding: 88px 0; text-align: center; }
.if-final h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 auto 18px;
  max-width: 800px;
  color: var(--dark-fg);
}
.if-final h2 em { font-style: italic; color: var(--lime); }
.if-final p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 232, 0.75);
  max-width: 600px;
  margin: 0 auto 32px;
}
