/* V8 Soluções — Landing Campaign (Premium B2B) */

:root {
  --bg: #f6f8fb;
  --bg-white: #ffffff;
  --ink: #071b33;
  --ink-muted: #4a5d73;
  --blue: #005baa;
  --blue-dark: #003d75;
  --navy: #071b33;
  --line: #dce5f0;
  --line-soft: #e8eef6;
  --amber: #f9a313;
  --amber-hover: #e8940f;
  --green: #16a34a;
  --red-soft: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(7, 27, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 27, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(7, 27, 51, 0.1);
  --radius: 16px;
  --radius-lg: 20px;
  --max: 1160px;
  --nav-h: 72px;
  --section-y: clamp(4rem, 8vw, 6rem);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 163, 19, 0.35);
}

.btn-primary:hover {
  background: var(--amber-hover);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-nav {
  background: var(--blue);
  color: #fff !important;
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
  background: var(--blue-dark);
}

.btn-block {
  width: 100%;
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-bar {
  width: 4px;
  height: 26px;
  background: var(--amber);
  border-radius: 2px;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.logo-text strong {
  font-weight: 800;
  color: var(--navy);
}

.logo-footer .logo-text,
.logo-footer .logo-text strong {
  color: #fff;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  background: var(--line-soft);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
}

.nav-mobile a:hover {
  background: var(--line-soft);
  color: var(--blue);
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section-light {
  background: var(--bg-white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(7, 27, 51, 0.97) 0%, rgba(0, 61, 117, 0.92) 55%, rgba(0, 91, 170, 0.85) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80") center / cover no-repeat;
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 85% 40%, rgba(0, 91, 170, 0.25), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(0, 91, 170, 0.35);
  border: 1px solid rgba(147, 197, 253, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 16em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-actions--center {
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.hero-trust li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1rem;
  position: relative;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* NOC Panel (hero) */
.noc-panel {
  background: rgba(10, 18, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.1rem 1.15rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.noc-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.noc-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.noc-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.noc-dots i:nth-child(1) { background: #ef4444; }
.noc-dots i:nth-child(2) { background: #eab308; }
.noc-dots i:nth-child(3) { background: #22c55e; }

.noc-title {
  flex: 1;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.noc-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #4ade80;
  flex-shrink: 0;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: noc-pulse 2s ease-in-out infinite;
}

@keyframes noc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.noc-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.38);
}

.noc-tabs .active {
  color: #60a5fa;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 4px;
  margin-bottom: -2px;
}

.noc-client {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.noc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.noc-client strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.noc-client > div > span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.noc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.noc-metrics > div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.noc-metrics strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.noc-metrics span {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.noc-links li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.link-icon--fiber {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.link-icon--starlink {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.link-icon--firewall {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.link-info {
  flex: 1;
  min-width: 0;
}

.link-info strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.link-info span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.42);
}

.status {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.status--active {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.status--standby {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.status--ok {
  background: rgba(45, 212, 191, 0.1);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.35);
}

/* Pain section */
.pain-section {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-white) 40%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 91, 170, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(249, 163, 19, 0.05) 0%, transparent 38%);
  pointer-events: none;
}

.pain-section .container {
  position: relative;
  z-index: 1;
}

.pain-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 91, 170, 0.08);
  border: 1px solid rgba(0, 91, 170, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid rgba(220, 38, 38, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 91, 170, 0.2);
  box-shadow: var(--shadow-md);
  border-top-color: var(--amber);
}

.pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-dark);
  background: linear-gradient(145deg, rgba(0, 91, 170, 0.12) 0%, rgba(0, 91, 170, 0.04) 100%);
  border: 1px solid rgba(0, 91, 170, 0.12);
}

.pain-card__icon--outage {
  color: #b91c1c;
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.04) 100%);
  border-color: rgba(220, 38, 38, 0.15);
}

.pain-card__icon--backup {
  color: #c2410c;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.14) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-color: rgba(249, 115, 22, 0.18);
}

.pain-card__icon--slow {
  color: #a16207;
  background: linear-gradient(145deg, rgba(234, 179, 8, 0.14) 0%, rgba(234, 179, 8, 0.04) 100%);
  border-color: rgba(234, 179, 8, 0.2);
}

.pain-card__icon--remote,
.pain-card__icon--support,
.pain-card__icon--monitor {
  color: var(--blue-dark);
}

.pain-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.pain-card__body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

.pain-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2d52 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pain-cta p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.pain-cta .btn-outline {
  flex-shrink: 0;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.pain-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.compare-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.compare-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.compare-card ul {
  padding: 0;
}

.compare-card li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.compare-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ink-muted);
}

.compare-grid .compare-card:first-child {
  background: #fafbfc;
}

.compare-card--highlight {
  border-color: rgba(0, 91, 170, 0.35);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  box-shadow: var(--shadow-md);
}

.compare-card--highlight h3 {
  color: var(--blue);
  border-bottom-color: rgba(0, 91, 170, 0.2);
}

.compare-card--highlight li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}

/* Solution package */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.solution-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.solution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.solution-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Apps */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.apps-grid article {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 2.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: border-color 0.2s;
}

.apps-grid article::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.apps-grid article:hover {
  border-color: rgba(0, 91, 170, 0.3);
}

/* Segments */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.segment-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 91, 170, 0.22);
}

.segment-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--line-soft);
}

.segment-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(7, 27, 51, 0.35), transparent);
  pointer-events: none;
}

.segment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.segment-card:hover .segment-card__media img {
  transform: scale(1.04);
}

.segment-card__body {
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 3px solid var(--blue);
}

.segment-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.segment-card__body p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* Authority */
.authority {
  padding: var(--section-y) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2d52 100%);
}

.authority .section-head h2 {
  color: #fff;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.authority-grid > div {
  text-align: center;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.authority-grid strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.authority-grid span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

/* Coverage */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.coverage-content h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.875rem);
  margin-bottom: 1rem;
}

.coverage-content > p {
  margin-bottom: 1.25rem;
}

.coverage-content ul {
  margin-bottom: 1.5rem;
}

.coverage-content li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.coverage-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.timeline li {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
}

.timeline li strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.timeline li p {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0;
}

/* Form */
.form-section {
  background: var(--bg-white);
  border-top: 1px solid var(--line);
}

.form-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.form-info h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.875rem);
  margin-bottom: 1rem;
}

.form-info > p {
  margin-bottom: 1.25rem;
}

.form-info ul {
  margin-bottom: 1.5rem;
}

.form-info li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
}

.form-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.form-info a {
  color: var(--blue);
}

.form-info a:hover {
  text-decoration: underline;
}

.lead-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.crm-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: normal;
  padding: 20px 16px 28px;
}

#crm-form-container {
  width: 100%;
  overflow: hidden;
  background: var(--bg-white);
}

#crm-form-container iframe {
  display: block;
  width: 100%;
  border: none;
  overflow: hidden;
}

.crm-form-fallback {
  background: linear-gradient(160deg, var(--navy), #0a2d52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  display: grid;
  gap: 0.85rem;
}

.crm-form-fallback h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}

.crm-form-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.crm-form-fallback .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.crm-form-fallback .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.crm-form-fallback .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.lead-form input,
.lead-form textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 170, 0.12);
}

.lead-form textarea {
  resize: vertical;
  min-height: 88px;
}

.form-feedback {
  font-size: 0.8125rem;
  color: var(--blue);
  margin: 0;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #f6f8fb 0%, #f2f5fa 100%);
}

.faq-section .section-head {
  margin-bottom: 2rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* 5ª pergunta (ímpar): centralizada na linha de baixo */
.faq-list details:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(7, 27, 51, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-list details:hover {
  border-color: #c6d6e8;
  box-shadow: 0 6px 18px rgba(7, 27, 51, 0.08);
}

.faq-list summary {
  padding: 1.05rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #d7e3f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
  background: #f6f9fd;
}

.faq-list details[open] summary::after {
  content: "−";
  background: #ebf3fb;
  border-color: #c9ddf2;
}

.faq-list details p {
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid #e7eef7;
  padding-top: 0.9rem;
  margin-top: 0;
  color: #5a6d84;
}

/* Final CTA */
.final-cta {
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, var(--navy), #0a2d52);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: #fff;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.final-cta > .container > p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

/* Footer */
.site-footer {
  background: #0a1220;
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-grid > div > p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.site-footer ul li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 150;
  background: #25d366;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet e mobile */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
    --section-y: clamp(2.75rem, 6vw, 4rem);
  }

  body {
    padding-bottom: 5.5rem;
  }

  .hero,
  .section,
  .final-cta,
  .form-section {
    scroll-margin-top: calc(var(--nav-h) + 0.75rem);
  }

  .container {
    padding-left: clamp(1.125rem, 4vw, 1.5rem);
    padding-right: clamp(1.125rem, 4vw, 1.5rem);
  }

  .nav-desktop,
  .header-inner > .btn-nav:not(.btn-full) {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    padding: 0.75rem clamp(1.125rem, 4vw, 1.5rem) 1rem;
  }

  .nav-mobile a {
    padding: 0.75rem 0.85rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .hero {
    padding: calc(var(--nav-h) + 2rem) 0 2.75rem;
  }

  .hero-grid,
  .compare-grid,
  .coverage-grid,
  .form-grid-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    max-width: none;
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.9rem 1.25rem;
  }

  .noc-panel {
    padding: 0.9rem 1rem 1rem;
  }

  .noc-chrome {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .noc-title {
    font-size: 0.5625rem;
    letter-spacing: 0.04em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .noc-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 0.85rem;
    padding-bottom: 2px;
  }

  .noc-tabs::-webkit-scrollbar {
    display: none;
  }

  .noc-tabs span {
    flex-shrink: 0;
  }

  .noc-metrics strong {
    font-size: 1.1rem;
  }

  .noc-links li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem 0.65rem;
    padding: 0.65rem 0;
  }

  .link-info span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pain-grid,
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pain-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.15rem;
  }

  .pain-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .pain-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .solution-grid {
    gap: 0.85rem;
  }

  .compare-grid {
    gap: 1rem;
  }

  .compare-card {
    padding: 1.5rem 1.25rem;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .authority-grid > div {
    padding: 1.15rem 0.65rem;
  }

  .segment-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .coverage-grid {
    gap: 1.75rem;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .timeline {
    gap: 0.75rem;
  }

  .timeline li {
    padding: 1.25rem 1.15rem;
  }

  .form-grid-wrap {
    gap: 1.75rem;
  }

  .lead-form {
    padding: 1.35rem 1.15rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 0.65rem;
  }

  .faq-list details:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
  }

  .faq-list summary {
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    align-items: flex-start;
    line-height: 1.4;
  }

  .faq-list details p {
    padding: 0 1rem 0.95rem;
    font-size: 0.875rem;
  }

  .pain-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.35rem 1.25rem;
    margin-top: 2rem;
    gap: 1rem;
  }

  .pain-cta .btn-outline {
    width: 100%;
  }

  .final-cta .hero-actions {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 2.5rem;
  }

  .solution-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-grid strong {
    font-size: 1.65rem;
  }

  .section-head h2 {
    font-size: 1.35rem;
  }

  .section-head p {
    font-size: 0.9375rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-trust li {
    font-size: 0.8125rem;
  }

  .noc-metrics {
    gap: 0.4rem;
  }

  .noc-metrics > div {
    padding: 0.6rem 0.35rem;
  }

  .noc-metrics strong {
    font-size: 1rem;
  }

  .noc-links li {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .noc-links .status {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 0.15rem;
  }

  .pain-card {
    flex-direction: column;
    gap: 0.85rem;
  }

  .apps-grid article {
    padding: 0.9rem 1rem 0.9rem 2.5rem;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-bottom: 1.25rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197-.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
  }
}

@media (max-width: 380px) {
  .logo-text {
    font-size: 0.9rem;
  }

  .noc-live {
    font-size: 0.5625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .solution-card:hover,
  .pain-card:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .pulse {
    animation: none;
  }
}
