/* ==========================================================================
   FIBER KING TELECOM — DESIGN SYSTEM & MASTER STYLESHEET (V2 CORREÇÃO DE MARCA)
   Identidade Oficial Extraída da Logo:
   - 60% Azul-Marinho (#152235 / #0E1929)
   - 25% Branco / Superfícies Claras (#FFFFFF / #F5F7FA)
   - 10% Ciano / Azul Fibra Óptica (#16DCE5 / #27C8F4)
   - 5% Dourado Fiber King (#D6AD55 / #E8C97A)
   ========================================================================== */

/* --- 1. DESIGN TOKENS CENTRALIZADOS --- */
:root {
  /* Tons Principais da Logo */
  --fk-navy: #152235;
  --fk-navy-dark: #0e1929;
  --fk-navy-deep: #08101c;
  --fk-navy-surface: #1b2b42;
  --fk-navy-elevated: #233856;
  --fk-navy-card: rgba(27, 43, 66, 0.88);

  /* Dourado Fiber King (Juba do Leão & Tipografia FIBERKING) */
  --fk-gold: #d6ad55;
  --fk-gold-light: #e8c97a;
  --fk-gold-dark: #b88f38;
  --fk-gold-soft: rgba(214, 173, 85, 0.12);
  --fk-border-gold: rgba(214, 173, 85, 0.45);

  /* Ciano / Azul Fibra Óptica (Filamentos de Luz Acima da Cabeça) */
  --fk-cyan: #16dce5;
  --fk-cyan-light: #44e5ed;
  --fk-cyan-soft: rgba(22, 220, 229, 0.12);
  --fk-cyan-glow: rgba(22, 220, 229, 0.28);
  --fk-border-cyan: rgba(22, 220, 229, 0.4);

  /* Azul Tecnológico (Olhos do Leão) */
  --fk-blue: #27c8f4;
  --fk-blue-soft: rgba(39, 200, 244, 0.12);

  /* Branco & Superfícies Claras */
  --fk-white: #ffffff;
  --fk-surface: #f5f7fa;
  --fk-muted: #8fa0b5;
  --fk-muted-dark: #607289;
  --fk-silver: #a2b0c2;
  --fk-text-dark: #152235;

  /* WhatsApp Oficial */
  --fk-whatsapp: #25d366;
  --fk-whatsapp-hover: #2ee673;

  /* Bordas e Vidro */
  --fk-border-subtle: rgba(255, 255, 255, 0.08);
  --fk-border-glass: rgba(255, 255, 255, 0.14);

  /* Tipografia */
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Layout & Dimensões */
  --container-max: 1240px;
  --header-height: 88px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transições & Sombras */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s var(--ease-spring);
  --shadow-card: 0 16px 36px -10px rgba(8, 16, 28, 0.6);
  --shadow-gold: 0 6px 25px rgba(214, 173, 85, 0.35);
  --shadow-cyan: 0 6px 25px rgba(22, 220, 229, 0.3);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--fk-navy-dark);
  color: var(--fk-surface);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, #1a2c47 0%, var(--fk-navy-dark) 80%);
}

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

ul {
  list-style: none;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

/* Acessibilidade Skip Link */
.sr-skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--fk-gold);
  color: var(--fk-navy-dark);
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  z-index: 9999;
}
.sr-skip-link:focus {
  top: 1rem;
}

/* Container Global */
.fk-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utilitários de Texto & Cores */
.text-cyan { color: var(--fk-cyan); }
.text-gold { color: var(--fk-gold); }
.text-blue { color: var(--fk-blue); }
.text-whatsapp { color: var(--fk-whatsapp); }
.w-full { width: 100%; }
.text-center { text-align: center; }

.text-gradient-cyan-gold {
  background: linear-gradient(135deg, #ffffff 20%, var(--fk-cyan) 65%, var(--fk-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 20%, var(--fk-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 10%, var(--fk-gold) 75%, #ffdf94 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 3. BOTÕES HIERÁRQUICOS DA MARCA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

/* CTA PRIMÁRIO: Dourado Fiber King + Texto Azul-Marinho Escuro */
.btn-primary {
  background: linear-gradient(135deg, var(--fk-gold) 0%, #be943c 100%);
  color: var(--fk-navy-dark);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--fk-gold-light) 0%, var(--fk-gold) 100%);
  box-shadow: 0 8px 30px rgba(214, 173, 85, 0.55);
  transform: translateY(-2px);
}

/* CTA TECNOLÓGICO: Ciano/Azul Fibra + Texto Azul-Marinho Escuro */
.btn-tech {
  background: linear-gradient(135deg, var(--fk-cyan) 0%, #0fb8c0 100%);
  color: var(--fk-navy-dark);
  font-weight: 800;
  box-shadow: var(--shadow-cyan);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-tech:hover {
  background: linear-gradient(135deg, var(--fk-cyan-light) 0%, var(--fk-cyan) 100%);
  box-shadow: 0 8px 30px rgba(22, 220, 229, 0.5);
  transform: translateY(-2px);
}

/* CTA SECUNDÁRIO: Transparente com borda Dourada ou Ciano */
.btn-secondary {
  background: rgba(21, 34, 53, 0.6);
  color: var(--fk-white);
  border: 1px solid var(--fk-border-cyan);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(35, 56, 86, 0.85);
  border-color: var(--fk-cyan);
  color: var(--fk-cyan);
  box-shadow: 0 4px 20px rgba(22, 220, 229, 0.2);
  transform: translateY(-2px);
}

.btn-secondary-gold {
  background: rgba(21, 34, 53, 0.6);
  color: var(--fk-white);
  border: 1px solid var(--fk-border-gold);
  backdrop-filter: blur(8px);
}
.btn-secondary-gold:hover {
  background: rgba(35, 56, 86, 0.85);
  border-color: var(--fk-gold);
  color: var(--fk-gold);
  box-shadow: 0 4px 20px rgba(214, 173, 85, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee673 0%, #25d366 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

/* Badges de Seção */
.section-header {
  margin-bottom: 3.5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--fk-cyan-soft);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fk-cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fk-white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--fk-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- 4. HEADER STICKY & LOGO OFICIAL --- */
.fk-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-bottom var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.fk-header.scrolled {
  background-color: rgba(21, 34, 53, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--fk-border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Slot da Logo Oficial */
.fk-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(22, 220, 229, 0.3));
}

/* Navegação Desktop */
.fk-nav-desktop {
  display: flex;
  align-items: center;
}
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-item-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fk-muted);
  transition: color var(--transition-fast);
  padding: 0.35rem 0;
  position: relative;
}
.nav-item-link:hover,
.nav-item-link.active {
  color: var(--fk-white);
}
.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--fk-cyan);
  box-shadow: 0 0 8px var(--fk-cyan);
  transition: width var(--transition-normal);
}
.nav-item-link:hover::after,
.nav-item-link.active::after {
  width: 100%;
}

/* Ações do Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-client-portal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fk-surface);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fk-border-subtle);
  transition: all var(--transition-fast);
}
.btn-client-portal:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fk-cyan);
  color: var(--fk-cyan);
}

.btn-header-cta {
  padding: 0.7rem 1.4rem;
  font-size: 0.875rem;
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--fk-border-subtle);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.bar-line {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Gaveta Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--fk-navy);
  border-left: 1px solid var(--fk-border-glass);
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2000;
  transition: right var(--transition-normal);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
}
.mobile-drawer.open { right: 0; }
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fk-border-subtle);
  padding-bottom: 1.5rem;
}
.drawer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.btn-close-drawer {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--fk-muted);
  cursor: pointer;
}
.mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.mobile-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fk-surface);
  display: block;
}
.mobile-link:hover { color: var(--fk-cyan); }
.drawer-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* --- 5. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero-bg-network {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 75% 40%, rgba(22, 220, 229, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 60%, rgba(214, 173, 85, 0.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-watermark-lion {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 550px;
  height: 550px;
  opacity: 0.05;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  background: rgba(27, 43, 66, 0.8);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fk-cyan);
  box-shadow: 0 0 10px var(--fk-cyan);
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--fk-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fk-surface);
  margin-bottom: 0.85rem;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fk-muted);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

.hero-indicators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fk-border-subtle);
  width: 100%;
  max-width: 580px;
}
.indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fk-surface);
}
.ind-icon {
  width: 18px;
  height: 18px;
  color: var(--fk-cyan);
}

/* Card Visual de Velocidade no Hero */
.hero-visual-card {
  display: flex;
  justify-content: center;
}
.speed-tech-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, rgba(27, 43, 66, 0.95) 0%, rgba(14, 25, 41, 0.98) 100%);
  border: 1px solid var(--fk-border-glass);
  border-top: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card), 0 0 25px rgba(22, 220, 229, 0.15);
  backdrop-filter: blur(16px);
  position: relative;
}
.speed-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fk-cyan);
  box-shadow: 0 0 10px var(--fk-cyan);
}
.status-text {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--fk-surface);
}
.badge-tech-gold {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--fk-gold);
  padding: 0.25rem 0.65rem;
  background: var(--fk-gold-soft);
  border: 1px solid var(--fk-border-gold);
  border-radius: var(--radius-full);
}

/* Medidor Circular de Velocidade */
.speed-meter-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.speed-meter-ring {
  position: relative;
  width: 160px;
  height: 160px;
}
.speed-svg-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
}
.ring-fill {
  fill: none;
  stroke: var(--fk-cyan);
  stroke-width: 10;
  stroke-dasharray: 440;
  stroke-dashoffset: 80;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px var(--fk-cyan));
}
.speed-meter-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.speed-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
.speed-unit {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--fk-cyan);
  margin-top: 0.25rem;
}

.speed-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--fk-border-subtle);
  border-bottom: 1px solid var(--fk-border-subtle);
  margin-bottom: 1.5rem;
}
.metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.metric-label {
  font-size: 0.6875rem;
  color: var(--fk-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.metric-val {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
}

.tech-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}
.tech-lion-emblem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fk-surface);
  font-weight: 600;
}
.link-view-all {
  color: var(--fk-gold);
  font-weight: 700;
  transition: transform var(--transition-fast);
}
.link-view-all:hover {
  transform: translateX(4px);
  color: var(--fk-gold-light);
}

/* --- 6. BARRA DE CONFIANÇA (TRUST BAR) --- */
.trust-bar-section {
  padding: 2.5rem 0 4.5rem;
  position: relative;
  z-index: 10;
}
.trust-bar-inner {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.75) 0%, rgba(21, 34, 53, 0.9) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.trust-bar-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.trust-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--fk-cyan);
  display: block;
  margin-bottom: 0.5rem;
}
.trust-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(14, 25, 41, 0.6);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}
.trust-card:hover {
  border-color: var(--fk-cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(22, 220, 229, 0.12);
}
.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--fk-cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fk-cyan);
  margin-bottom: 1.25rem;
}
.trust-icon { width: 24px; height: 24px; }
.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.trust-card-desc {
  font-size: 0.875rem;
  color: var(--fk-muted);
  line-height: 1.5;
}

/* --- 7. SEÇÃO OFICIAL DE PLANOS (4 CARDS) --- */
.plans-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(27, 43, 66, 0.6) 0%, transparent 80%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.85) 0%, rgba(14, 25, 41, 0.95) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--fk-border-glass);
}

.plan-card-header {
  margin-bottom: 1.25rem;
}
.plan-category {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--fk-muted-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.plan-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.plan-speed-block {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.plan-speed-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
.plan-speed-unit {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fk-muted);
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--fk-border-subtle);
}
.currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fk-surface);
  margin-right: 0.25rem;
}
.price-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
.price-cents {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.price-period {
  font-size: 0.8125rem;
  color: var(--fk-muted-dark);
  margin-left: 0.35rem;
}

.plan-ideal-box {
  background: rgba(14, 25, 41, 0.6);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--fk-border-subtle);
}
.ideal-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fk-cyan);
  display: block;
  margin-bottom: 0.2rem;
}
.ideal-desc {
  font-size: 0.8125rem;
  color: var(--fk-surface);
  line-height: 1.45;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--fk-surface);
}
.chk-icon {
  width: 16px;
  height: 16px;
  color: var(--fk-cyan);
  flex-shrink: 0;
}

/* PLANO 2 (300 MEGA) — DETALHES EM AZUL */
.plan-card-blue .plan-speed-number {
  color: var(--fk-blue);
}

/* PLANO 3 (600 MEGA) — DESTAQUE CIANO / MAIS ESCOLHIDO */
.plan-card-featured {
  background: linear-gradient(180deg, rgba(27, 50, 78, 0.95) 0%, rgba(14, 25, 41, 0.98) 100%);
  border: 2px solid var(--fk-cyan);
  box-shadow: 0 20px 45px -10px rgba(22, 220, 229, 0.25);
  transform: scale(1.03);
  z-index: 2;
}
.plan-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fk-cyan);
  color: var(--fk-navy-dark);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(22, 220, 229, 0.5);
}

/* PLANO 4 (1 GIGA) — MÁXIMA VELOCIDADE COM ACABAMENTO DOURADO & LEÃO */
.plan-card-1giga {
  background: linear-gradient(180deg, rgba(38, 48, 62, 0.95) 0%, rgba(14, 25, 41, 0.98) 100%);
  border: 2px solid var(--fk-gold);
  box-shadow: 0 20px 45px -10px rgba(214, 173, 85, 0.3);
}
.plan-badge-gold {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fk-gold) 0%, #b88f38 100%);
  color: var(--fk-navy-dark);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 15px rgba(214, 173, 85, 0.5);
}
.lion-mini-seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.border-gold-subtle {
  border-color: var(--fk-border-gold);
}

.plans-legal-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: var(--fk-muted-dark);
}

/* --- 8. SELETOR INTERATIVO DE PLANOS --- */
.plan-finder-section {
  padding: 5rem 0;
}
.plan-finder-box {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.85) 0%, rgba(21, 34, 53, 0.95) 100%);
  border: 1px solid var(--fk-border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}
.finder-header {
  text-align: center;
  margin-bottom: 3rem;
}
.badge-finder {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--fk-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.finder-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.finder-subtitle {
  color: var(--fk-muted);
  font-size: 1rem;
}

.finder-form {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 3rem;
}
.finder-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fk-gold);
  color: var(--fk-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.options-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-pill {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(14, 25, 41, 0.7);
  border: 1px solid var(--fk-border-subtle);
  color: var(--fk-surface);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-pill:hover {
  border-color: var(--fk-cyan);
  color: #ffffff;
}
.btn-pill.active {
  background: var(--fk-navy-surface);
  border-color: var(--fk-gold);
  color: var(--fk-gold-light);
  box-shadow: 0 0 15px rgba(214, 173, 85, 0.35);
}

.finder-result-box {
  background: linear-gradient(135deg, rgba(22, 220, 229, 0.12) 0%, rgba(27, 43, 66, 0.95) 100%);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-cyan);
}
.result-tag {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--fk-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.result-plan-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}
.result-plan-reason {
  font-size: 0.9375rem;
  color: var(--fk-muted);
}
.result-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}
.result-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fk-gold);
}

/* --- 9. EXPERIÊNCIAS DE USO --- */
.experiences-section {
  padding: 6rem 0;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.experience-card {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.7) 0%, rgba(14, 25, 41, 0.9) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}
.experience-card:hover {
  border-color: var(--fk-cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(8, 16, 28, 0.6);
}
.exp-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--fk-cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fk-cyan);
  margin-bottom: 1.5rem;
}
.exp-icon { width: 26px; height: 26px; }
.exp-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.exp-desc {
  font-size: 0.875rem;
  color: var(--fk-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.exp-feature-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fk-cyan);
  padding: 0.35rem 0.85rem;
  background: var(--fk-cyan-soft);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* --- 10. TECNOLOGIA & INFRAESTRUTURA --- */
.technology-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(22, 220, 229, 0.08) 0%, transparent 80%);
}
.tech-grid-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.tech-left-content .section-title { text-align: left; }
.tech-left-content .section-subtitle { margin-left: 0; margin-bottom: 2.5rem; }

.tech-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.pillar-item {
  display: flex;
  gap: 1.25rem;
}
.pillar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fk-cyan);
  box-shadow: 0 0 10px var(--fk-cyan);
  margin-top: 6px;
  flex-shrink: 0;
}
.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.pillar-desc {
  font-size: 0.875rem;
  color: var(--fk-muted);
  line-height: 1.5;
}

.fiber-optic-box {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.9) 0%, rgba(14, 25, 41, 0.95) 100%);
  border: 1px solid var(--fk-border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.fiber-core-animation {
  position: relative;
  width: 100%;
  height: 80px;
  background: var(--fk-navy-deep);
  border-radius: var(--radius-md);
  border: 1px solid var(--fk-border-cyan);
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fiber-glow-core {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--fk-blue), var(--fk-cyan), #ffffff, var(--fk-cyan), var(--fk-blue));
  box-shadow: 0 0 20px var(--fk-cyan), 0 0 35px var(--fk-blue);
}

.tech-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.tstat-box {
  background: rgba(14, 25, 41, 0.6);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}
.tstat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}
.tstat-lbl {
  font-size: 0.75rem;
  color: var(--fk-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tech-card-bottom-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--fk-surface);
  border-top: 1px solid var(--fk-border-subtle);
  padding-top: 1.25rem;
}

/* --- 11. SEÇÃO WI-FI --- */
.wifi-section {
  padding: 5rem 0;
}
.wifi-card-wrapper {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.75) 0%, rgba(21, 34, 53, 0.9) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-card);
}
.wifi-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.factor-item {
  padding: 1.5rem;
  background: rgba(14, 25, 41, 0.6);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
}
.factor-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fk-cyan);
  margin-bottom: 0.75rem;
}
.factor-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}
.factor-text p {
  font-size: 0.8125rem;
  color: var(--fk-muted);
  line-height: 1.5;
}
.wifi-cta-row {
  display: flex;
  justify-content: center;
}

/* --- 12. COBERTURA --- */
.coverage-section {
  padding: 6rem 0;
  position: relative;
}
.coverage-card-box {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.92) 0%, rgba(14, 25, 41, 0.98) 100%);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-card), var(--shadow-cyan);
}
.coverage-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 1.5fr 2fr;
  gap: 1rem;
  align-items: flex-end;
  margin: 2.5rem 0 1.5rem;
}
.form-field-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.35rem;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fk-surface);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--fk-navy-deep);
  border: 1px solid var(--fk-border-glass);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-input:focus {
  border-color: var(--fk-cyan);
  box-shadow: 0 0 10px rgba(22, 220, 229, 0.3);
}
.btn-submit-coverage {
  width: 100%;
  padding: 0.85rem 1.25rem;
}
.coverage-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--fk-muted-dark);
}

/* --- 13. FIBER KING EMPRESAS --- */
.business-section {
  padding: 6rem 0;
}
.business-card-wrapper {
  background: linear-gradient(135deg, rgba(32, 44, 62, 0.92) 0%, rgba(18, 28, 44, 0.98) 100%);
  border: 1px solid var(--fk-border-gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-gold);
}
.badge-business {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--fk-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.business-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.business-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fk-gold);
  margin-bottom: 1rem;
}
.business-description {
  font-size: 1rem;
  color: var(--fk-muted);
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.business-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}
.b-feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--fk-surface);
}
.b-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* --- 14. POR QUE ESCOLHER A FIBER KING? --- */
.why-us-section {
  padding: 6rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(27, 43, 66, 0.6);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition-normal);
}
.why-card:hover {
  border-color: var(--fk-border-glass);
  transform: translateY(-4px);
}
.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon-box svg { width: 24px; height: 24px; }
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.why-card-desc {
  font-size: 0.875rem;
  color: var(--fk-muted);
  line-height: 1.55;
}

/* --- 15. DEPOIMENTOS & PROVA SOCIAL --- */
.testimonials-section {
  padding: 6rem 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(27, 43, 66, 0.5) 0%, transparent 80%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.8) 0%, rgba(14, 25, 41, 0.92) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.test-stars {
  color: var(--fk-gold);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.test-quote {
  font-size: 0.9375rem;
  color: var(--fk-surface);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  font-style: italic;
}
.test-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--fk-border-subtle);
  padding-top: 1.25rem;
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--fk-navy-surface);
  border: 1px solid var(--fk-border-gold);
  color: var(--fk-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}
.test-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: #ffffff;
}
.test-role {
  font-size: 0.75rem;
  color: var(--fk-muted);
}

/* --- 16. INDIQUE E GANHE --- */
.referral-section {
  padding: 4rem 0;
}
.referral-card-box {
  background: linear-gradient(135deg, #192c47 0%, #0e1a2c 100%);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-cyan);
}
.referral-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.badge-referral {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--fk-cyan);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.referral-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.referral-desc {
  font-size: 1rem;
  color: var(--fk-muted);
  max-width: 600px;
}
.btn-referral {
  flex-shrink: 0;
  padding: 1.1rem 2.25rem;
}

/* --- 17. CENTRAL DO ASSINANTE (PREPARADA PARA SGP) --- */
.client-portal-section {
  padding: 6rem 0;
}
.client-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.client-action-card {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.75) 0%, rgba(14, 25, 41, 0.9) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  cursor: pointer;
}
.client-action-card:hover {
  border-color: var(--fk-cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(8, 16, 28, 0.6);
}
.client-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.client-icon-circle svg { width: 26px; height: 26px; }
.client-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.client-card-desc {
  font-size: 0.875rem;
  color: var(--fk-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.client-link-action {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fk-cyan);
}

/* --- 18. SOBRE A FIBER KING --- */
.about-section {
  padding: 6rem 0;
}
.about-card-box {
  background: linear-gradient(180deg, rgba(27, 43, 66, 0.7) 0%, rgba(21, 34, 53, 0.88) 100%);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
}
.about-inner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text-content .section-title { text-align: left; }
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fk-surface);
  margin-bottom: 2rem;
}
.about-quote-box {
  padding: 1.25rem 1.5rem;
  background: var(--fk-cyan-soft);
  border-left: 3px solid var(--fk-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote-phrase {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fk-cyan);
}

.about-lion-visual {
  display: flex;
  justify-content: center;
}
.lion-brand-banner {
  background: var(--fk-navy-deep);
  border: 1px solid var(--fk-border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-cyan);
}
.about-logo-img {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.lion-caption-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.lion-caption-sub {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--fk-gold);
}

/* --- 19. FAQ ACCORDION --- */
.faq-section {
  padding: 6rem 0;
}
.faq-accordion-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: rgba(27, 43, 66, 0.65);
  border: 1px solid var(--fk-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.active {
  border-color: var(--fk-cyan);
  background: rgba(27, 43, 66, 0.9);
}
.faq-question-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--fk-cyan);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}
.faq-answer-pane p {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--fk-muted);
  line-height: 1.65;
}

/* --- 20. CTA FINAL --- */
.final-cta-section {
  padding: 6rem 0;
  position: relative;
}
.final-cta-box {
  background: linear-gradient(135deg, #152742 0%, #0c182a 100%);
  border: 1px solid var(--fk-border-cyan);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}
.badge-final-pulse {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--fk-cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}
.final-cta-subtitle {
  font-size: 1.15rem;
  color: var(--fk-surface);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.brand-signature-watermark {
  border-top: 1px solid var(--fk-border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.sig-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--fk-muted);
}
.sig-slogan {
  font-size: 0.8125rem;
  color: var(--fk-muted-dark);
}

/* --- 21. FOOTER --- */
.fk-footer {
  background-color: var(--fk-navy-deep);
  border-top: 1px solid var(--fk-border-subtle);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 10;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-slogan {
  font-weight: 700;
  color: var(--fk-gold);
  font-size: 0.9375rem;
  margin: 1rem 0 0.5rem;
}
.footer-about-mini {
  font-size: 0.875rem;
  color: var(--fk-muted-dark);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links-list a {
  font-size: 0.875rem;
  color: var(--fk-muted);
  transition: color var(--transition-fast);
}
.footer-links-list a:hover {
  color: var(--fk-cyan);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--fk-muted);
}
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom-bar {
  border-top: 1px solid var(--fk-border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--fk-muted-dark);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-legal-links a {
  color: var(--fk-muted);
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover {
  color: var(--fk-cyan);
}

/* --- 22. BOTÃO FLUTUANTE DE WHATSAPP & BARRA STICKY MOBILE --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-normal);
}
.floating-whatsapp-btn:hover {
  transform: translateY(-4px);
}
.whatsapp-tooltip {
  background: rgba(21, 34, 53, 0.95);
  border: 1px solid var(--fk-border-glass);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.whatsapp-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--fk-whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}
.whatsapp-icon-wrapper svg { width: 32px; height: 32px; }

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(21, 34, 53, 0.95);
  border-top: 1px solid var(--fk-border-subtle);
  padding: 0.75rem 1rem;
  z-index: 1500;
  backdrop-filter: blur(14px);
  gap: 0.75rem;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
}
.btn-bar-primary {
  background: var(--fk-gold);
  color: var(--fk-navy-dark);
}
.btn-bar-whatsapp {
  background: var(--fk-whatsapp);
  color: #ffffff;
}

/* --- 23. MODAIS (SGP & POLÍTICAS) --- */
.fk-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 28, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.fk-modal-backdrop.open { display: flex; }
.fk-modal-dialog {
  background: var(--fk-navy);
  border: 1px solid var(--fk-border-glass);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}
.fk-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--fk-border-subtle);
  padding-bottom: 1rem;
}
.fk-modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #ffffff;
}
.fk-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--fk-muted);
  cursor: pointer;
}
.fk-modal-body {
  font-size: 0.9375rem;
  color: var(--fk-surface);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}
.fk-modal-footer {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-end;
}

/* --- 24. RESPONSIVIDADE PRECISA --- */

/* Telas Médias / Notebooks (max-width: 1200px) */
@media (max-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card-featured {
    transform: none;
  }
  .experiences-grid,
  .trust-grid,
  .client-actions-grid,
  .wifi-factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-submit-coverage {
    grid-column: span 2;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 76px;
  }
  .fk-nav-desktop,
  .btn-client-portal {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .brand-logo-img {
    height: 50px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-card {
    order: -1;
  }
  .speed-tech-card {
    max-width: 100%;
  }
  .tech-grid-wrapper,
  .about-inner-grid,
  .referral-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .finder-result-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .result-right {
    align-items: flex-start;
    width: 100%;
  }
  .btn-rec-cta {
    width: 100%;
  }
}

/* Smartphones (max-width: 640px) */
@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }
  .brand-logo-img {
    height: 44px;
  }
  .plans-grid,
  .experiences-grid,
  .trust-grid,
  .why-grid,
  .testimonials-grid,
  .client-actions-grid,
  .wifi-factors-grid,
  .business-features-list,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .coverage-form-grid {
    grid-template-columns: 1fr;
  }
  .btn-submit-coverage {
    grid-column: span 1;
  }
  .hero-indicators-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero {
    width: 100%;
  }
  .plan-finder-box,
  .coverage-card-box,
  .business-card-wrapper,
  .about-card-box,
  .final-cta-box {
    padding: 2.25rem 1.25rem;
  }
  .floating-whatsapp-btn {
    display: none;
  }
  .mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ========================================================================== 
   V3 — CORREÇÕES DIRETAS: LOGO OFICIAL + HERO EM VÍDEO FULLSCREEN + SCROLL ÁGIL
   ========================================================================== */
:root {
  /* Cores extraídas da imagem oficial enviada */
  --fk-navy: #1a2435;
  --fk-navy-dark: #121b2a;
  --fk-navy-deep: #0b1320;
  --fk-gold: #d6ac54;
  --fk-gold-light: #edc967;
  --fk-gold-dark: #b48734;
  --fk-cyan: #36cbd8;
  --fk-cyan-light: #63e5ec;
  --fk-blue: #2bbbe6;
  --header-height: 92px;
}

.fk-header {
  background: linear-gradient(180deg, rgba(26,36,53,.82), rgba(26,36,53,.36));
}
.fk-header.scrolled {
  background-color: rgba(26,36,53,.96);
  border-bottom-color: rgba(214,172,84,.14);
}
.fk-brand { flex: 0 0 auto; }
.brand-logo-img {
  height: 78px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: none;
}
.drawer-logo-img,
.footer-logo-img,
.about-logo-img {
  object-fit: contain;
  filter: none;
}
.drawer-logo-img { height: 72px; width: auto; }
.footer-logo-img { height: 92px; width: auto; }

.hero-section {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--header-height) 0 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--fk-navy-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  background: var(--fk-navy-deep);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,18,30,.88) 0%, rgba(10,18,30,.72) 38%, rgba(10,18,30,.30) 65%, rgba(10,18,30,.15) 100%),
    linear-gradient(180deg, rgba(10,18,30,.28) 0%, rgba(10,18,30,.08) 50%, rgba(10,18,30,.50) 100%);
}
.hero-video-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 40px rgba(5,10,18,.55);
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  padding-top: 0;
  padding-bottom: 4vh;
}
.hero-content {
  width: min(720px, 62vw);
  max-width: 720px;
  padding: 2.2rem 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.hero-badge-pill {
  margin-bottom: 1.25rem;
  background: rgba(26,36,53,.66);
  border-color: rgba(54,203,216,.42);
}
.hero-title {
  font-size: clamp(2.75rem, 5.4vw, 5.2rem);
  max-width: 780px;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.text-gradient-cyan-gold {
  background: linear-gradient(90deg, var(--fk-cyan-light), #fff 45%, var(--fk-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  max-width: 660px;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  color: #fff;
  margin-bottom: .65rem;
}
.hero-description {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  margin-bottom: 1.7rem;
}
.hero-cta-wrapper { margin-bottom: 1.45rem; gap: .9rem; }
.hero-indicators-grid {
  max-width: 650px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .65rem 1.2rem;
  padding-top: 1rem;
  border-top-color: rgba(255,255,255,.14);
}
.indicator-item { color: rgba(255,255,255,.90); }
.indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 7px;
  background: var(--fk-cyan);
  box-shadow: 0 0 12px rgba(54,203,216,.8);
}
.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.70);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse span {
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--fk-cyan);
  animation: fkScrollCue 1.35s ease-in-out infinite;
}
@keyframes fkScrollCue {
  0% { transform: translateY(0); opacity: .3; }
  50% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* A próxima seção começa imediatamente após o hero, sem "buraco" de rolagem. */
.trust-bar-section {
  padding: 2rem 0 3.25rem;
  margin-top: 0;
}
.trust-bar-inner { padding: 2.25rem 2rem; }
.trust-bar-heading { margin-bottom: 1.7rem; }
.plans-section { padding: 4.5rem 0; }

@media (max-width: 992px) {
  :root { --header-height: 78px; }
  .brand-logo-img { height: 66px; max-width: 126px; }
  .hero-section { height: 100svh; min-height: 100svh; padding-top: var(--header-height); }
  .hero-container { min-height: calc(100svh - var(--header-height)); }
  .hero-content { width: min(720px, 86vw); max-width: 720px; }
  .hero-video-overlay {
    background: linear-gradient(90deg, rgba(10,18,30,.88) 0%, rgba(10,18,30,.64) 55%, rgba(10,18,30,.25) 100%);
  }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; }
  .brand-logo-img { height: 60px; max-width: 110px; }
  .hero-section { height: 100svh; min-height: 100svh; }
  .hero-video { object-position: 58% center; }
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(10,18,30,.40) 0%, rgba(10,18,30,.56) 34%, rgba(10,18,30,.86) 82%, rgba(10,18,30,.92) 100%);
  }
  .hero-container {
    align-items: flex-end;
    padding-bottom: 5.25rem;
  }
  .hero-content {
    width: 100%;
    max-width: none;
    padding: 1rem 0;
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1.03;
    margin-bottom: .9rem;
  }
  .hero-subtitle { font-size: 1.03rem; }
  .hero-description { font-size: .92rem; margin-bottom: 1.15rem; }
  .hero-cta-wrapper {
    flex-direction: row;
    gap: .55rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .btn-hero {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: .92rem .8rem;
    font-size: .78rem;
  }
  .hero-indicators-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .45rem .7rem;
    font-size: .78rem;
  }
  .hero-scroll-hint { display: none; }
  .trust-bar-section { padding-top: 1.25rem; }
  .trust-bar-inner { padding: 1.5rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-media { background: url('../assets/hero-poster.jpg') center/cover no-repeat; }
  .scroll-mouse span { animation: none; }
}

/* Correção V4 — links reais da Central e simulador */
.client-action-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.client-action-link:hover,
.client-action-link:focus {
  color: inherit;
  text-decoration: none;
}
.btn-pill {
  cursor: pointer;
  touch-action: manipulation;
}
.btn-pill.active {
  transform: translateY(-1px);
}
.finder-result-box {
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.finder-result-box.is-updating {
  opacity: .72;
  transform: translateY(3px);
}

/* --- CONSULTA DE COBERTURA EM TEMPO REAL --- */
.coverage-result {
  margin: 1rem auto 1.35rem;
  max-width: 980px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  text-align: left;
  border: 1px solid var(--fk-border-glass);
  background: rgba(9, 18, 30, 0.72);
}
.coverage-result[hidden] { display: none; }
.coverage-result strong { display: block; color: #fff; margin-bottom: .25rem; }
.coverage-result span { color: var(--fk-silver); font-size: .9rem; line-height: 1.45; }
.coverage-result--success { border-color: rgba(22, 220, 229, .55); box-shadow: 0 0 24px rgba(22, 220, 229, .12); }
.coverage-result--warning { border-color: rgba(217, 179, 92, .55); box-shadow: 0 0 24px rgba(217, 179, 92, .10); }
.coverage-result--error { border-color: rgba(255, 255, 255, .2); }
.coverage-result--loading { border-color: rgba(22, 220, 229, .25); }
.coverage-result-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: var(--fk-cyan);
  font-weight: 800;
  font-size: 1.1rem;
}
.coverage-result--warning .coverage-result-icon { color: var(--fk-gold); }
.coverage-result-copy { flex: 1; }
.coverage-result-actions { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: flex-end; }
.coverage-result .btn { white-space: nowrap; padding: .7rem 1rem; font-size: .78rem; }
.coverage-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.28);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: coverage-spin .75s linear infinite;
}
@keyframes coverage-spin { to { transform: rotate(360deg); } }
.btn-submit-coverage:disabled { opacity: .75; cursor: wait; }

@media (max-width: 760px) {
  .coverage-result { align-items: flex-start; flex-wrap: wrap; }
  .coverage-result-actions { width: 100%; justify-content: stretch; }
  .coverage-result-actions .btn, .coverage-result > .btn { width: 100%; text-align: center; justify-content: center; }
}
