:root {
  --blue: #0050a4;
  --blue-deep: #0a2c66;
  --blue-light: #4a90cc;
  --blue-pale: #e9f2fd;
  --blue-surface: #dce6f8;
  --orange: #ec6c04;
  --orange-soft: #f18a4c;
  --band-bg: #edf3fb;
  --section-pad: 60px;
  --section-title: clamp(29px, 3vw, 36px);
  --text: #333333;
  --text-soft: #535b65;
  --muted: #737b84;
  --white: #ffffff;
  --line: rgba(10, 44, 102, 0.13);
  --shadow: 0 18px 48px rgba(10, 44, 102, 0.13);
  --footer: #082a5a;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fafcff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a,
button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.74), transparent 42%),
    var(--blue-pale);
  border-bottom: 1px solid rgba(0, 80, 164, 0.12);
  box-shadow: 0 8px 28px rgba(10, 44, 102, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 13px;
  color: var(--blue-deep);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: rgba(0, 80, 164, 0.08);
}

.main-nav .mobile-subscriber {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscriber-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--blue-deep);
  border: 1px solid rgba(0, 80, 164, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.subscriber-link i {
  color: var(--blue);
  font-size: 19px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-orange {
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  box-shadow: 0 9px 22px rgba(236, 108, 4, 0.24);
}

.button-orange:hover {
  box-shadow: 0 13px 28px rgba(236, 108, 4, 0.3);
}

.button-blue {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  box-shadow: 0 9px 20px rgba(0, 80, 164, 0.2);
}

.button-glass {
  color: var(--white);
  background: rgba(220, 230, 248, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-slides,
.hero-slide,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(10, 44, 102, 0.06);
}

.hero-slide-soft-blue .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 37, 79, 0.68) 0%, rgba(7, 45, 91, 0.48) 34%, rgba(0, 80, 164, 0.22) 62%, rgba(0, 80, 164, 0.06) 80%, transparent 92%),
    linear-gradient(0deg, rgba(10, 44, 102, 0.14), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 640px;
  margin-left: 0;
  padding: 50px 0 86px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero.is-copy-changing .hero-copy {
  opacity: 0;
  transform: translateY(8px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -80px;
  bottom: 60px;
  width: 320px;
  height: 170px;
  background: radial-gradient(circle, rgba(236, 108, 4, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--orange);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.3vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(234, 240, 249, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.26);
}

.carousel-previous {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--orange);
  border-radius: 6px;
}

.carousel-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(4, 24, 58, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.proof-wrap {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(10, 44, 102, 0.16);
  backdrop-filter: blur(16px);
}

.numbers-solid {
  background: var(--white);
  backdrop-filter: none;
}

.number {
  padding: 2px 24px;
  border-right: 1px solid rgba(74, 74, 74, 0.15);
}

.number:first-child {
  padding-left: 0;
}

.number:nth-child(4) {
  border-right: 0;
}

.number strong {
  display: block;
  color: var(--blue);
  font-size: 31px;
  letter-spacing: -0.03em;
}

.number span {
  color: var(--text-soft);
  font-size: 14px;
}

.numbers-caption {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 20px;
  color: var(--text-soft);
  border-top: 1px solid rgba(74, 74, 74, 0.15);
  font-size: 14px;
}

.section-space {
  margin-top: 60px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  display: block;
  margin-bottom: 26px;
}

.section-heading.compact {
  align-items: start;
  display: block;
}

.section-heading .text-link,
.section-heading.compact .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.section-kicker {
  display: block;
  width: fit-content;
  margin: 0 0 9px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-heading h2,
.coverage-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: var(--section-title);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p:not(.section-kicker),
.coverage-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Intro dos combos cabe em uma linha no desktop; quebra so no responsivo. */
#combos .section-heading p:not(.section-kicker) {
  max-width: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding-bottom: 2px;
  color: var(--blue);
  border-bottom: 1px solid rgba(236, 108, 4, 0.55);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link i {
  color: var(--blue);
  font-size: 1em;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.combo-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(74, 144, 204, 0.15);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(10, 44, 102, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(10, 44, 102, 0.18);
}

.combo-card.is-featured {
  border-color: rgba(0, 80, 164, 0.45);
}

.combo-card.is-featured::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.combo-media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--blue-surface);
}

.combo-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.combo-card:hover .combo-media img {
  transform: scale(1.025);
}

.use-chip,
.speed-chip {
  position: absolute;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.use-chip {
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: rgba(4, 24, 58, 0.82);
}

.speed-chip {
  right: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid var(--orange);
  text-transform: uppercase;
}

.combo-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.combo-body h3 {
  margin: 0;
  color: var(--blue);
  font-size: 18px;
}

.combo-speed {
  margin: 8px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.combo-speed strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.combo-speed-unit {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.combo-promise {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
}

.detail-label {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  text-transform: none;
}

.detail-label-accent {
  color: var(--orange);
}

.combo-includes {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.price {
  margin: 14px 0 0;
}

.price strong {
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.combo-divider {
  margin: 16px 0 0;
  border-top: 1px solid rgba(74, 74, 74, 0.15);
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 17px;
}

.benefit-list span {
  padding: 6px 8px;
  color: var(--blue-deep);
  background: rgba(220, 230, 248, 0.72);
  border: 1px solid rgba(74, 144, 204, 0.22);
  border-radius: 999px;
  font-size: 11px;
}

/* Separador "ou" entre chips que são alternativas (não um chip). */
.benefit-list span.benefit-or {
  padding: 0 2px;
  background: none;
  border: none;
  align-self: center;
  color: var(--text-soft);
}

/* Cinema: os dois grupos são ALTERNATIVAS — empilhados à esquerda (chip menor em
   cima), com o "ou" recuado pra cair sob o centro do chip de cima. */
.benefit-list-choice {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.benefit-list-choice span.benefit-or {
  align-self: flex-start;
  padding-left: 2rem;
}

.personalize {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 17px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

.personalize i {
  margin-top: 1px;
  color: var(--orange);
}

.button-card {
  min-height: 43px;
  margin-top: auto;
}

.section-band {
  padding: var(--section-pad) 0;
  background: var(--band-bg);
}

.coverage-band-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.coverage-copy {
  min-width: 0;
}

.coverage-map {
  height: 286px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.18);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 44, 102, 0.09);
}

.coverage-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map-link {
  display: block;
  height: 100%;
  cursor: pointer;
}

.home-map-context {
  fill: #e8edf2;
  stroke: #d4dce4;
  stroke-width: 1.1;
}

.home-map-city {
  fill: #c5dcf1;
  stroke: #558dc4;
  stroke-width: 2.2;
}

/* Fundo do retângulo do mapa: claro, igual ao card (o azul fica nos municípios) */
.home-map-bg {
  fill: #eef4fa;
}

.coverage-cta {
  margin-top: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: block;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 144, 204, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 44, 102, 0.09);
  color: inherit;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(74, 144, 204, 0.34);
  box-shadow: 0 16px 36px rgba(10, 44, 102, 0.14);
  outline: none;
}

.feature-card > i {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: linear-gradient(145deg, var(--white), var(--blue-surface));
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 80, 164, 0.12);
  font-size: 25px;
}

.feature-card h3 {
  margin: 12px 0 5px;
  color: var(--blue);
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.updates-section {
  padding-bottom: 82px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.updates-grid article {
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(220, 230, 248, 0.62));
  border: 1px solid rgba(74, 144, 204, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(10, 44, 102, 0.08);
}

.updates-grid time {
  display: block;
  padding-left: 8px;
  color: var(--text-soft);
  border-left: 3px solid var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.updates-grid h3 {
  margin: 9px 0 5px;
  color: var(--blue);
  font-size: 16px;
}

.updates-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.site-footer {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  padding: 52px 0 28px;
  color: #dbeaf8;
  background:
    radial-gradient(circle at 13% 18%, rgba(74, 144, 204, 0.32), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(0, 80, 164, 0.3), transparent 28rem),
    radial-gradient(circle at 62% 115%, rgba(236, 108, 4, 0.09), transparent 22rem),
    linear-gradient(135deg, #061b3d 0%, var(--footer) 48%, #07366f 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(112deg, transparent 0 31%, rgba(126, 183, 226, 0.2) 31.2%, transparent 31.7% 100%),
    linear-gradient(122deg, transparent 0 58%, rgba(126, 183, 226, 0.13) 58.2%, transparent 58.8% 100%),
    radial-gradient(circle, rgba(154, 210, 255, 0.5) 0 1px, transparent 1.7px);
  background-position: 0 0, 80px 18px, 0 0;
  background-size: 360px 160px, 520px 220px, 48px 48px;
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.92), transparent 82%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 35%, rgba(142, 209, 255, 0.78) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 41% 48%, rgba(142, 209, 255, 0.48) 0 1.2px, transparent 2px),
    radial-gradient(circle at 76% 28%, rgba(142, 209, 255, 0.58) 0 1.3px, transparent 2.2px),
    linear-gradient(101deg, transparent 12%, rgba(142, 209, 255, 0.2) 12.3%, transparent 37%),
    linear-gradient(101deg, transparent 52%, rgba(142, 209, 255, 0.15) 52.3%, transparent 79%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.25fr 0.8fr;
  gap: 34px;
}

.footer-brand img {
  display: block;
  width: 165px;
}

.footer-brand p {
  margin: 14px 0 18px;
  color: #b9cde1;
  font-size: 14px;
}

.footer-subscriber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-subscriber i {
  color: #8ed1ff;
  font-size: 19px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 14px;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0;
  color: #bdd0e3;
  font-size: 14px;
  line-height: 1.9;
  text-decoration: none;
}

.footer-column a:hover,
.footer-subscriber:hover {
  color: #f2a066;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(142, 209, 255, 0.1);
  border: 1px solid rgba(142, 209, 255, 0.14);
  border-radius: 10px;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-right: 76px;
  padding-top: 19px;
  color: #9bb3ca;
  border-top: 1px solid rgba(142, 209, 255, 0.12);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #21b765;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 91, 51, 0.32);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 91, 51, 0.38);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

.whatsapp-label {
  position: absolute;
  right: 68px;
  width: max-content;
  padding: 8px 11px;
  color: var(--white);
  background: #27323c;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5px);
  transition: 0.18s ease;
}

.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-visible .whatsapp-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* NOSSA HISTÓRIA */
.main-nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(0, 80, 164, 0.08);
}

.story-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--blue-deep);
}

.story-hero-media,
.story-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-hero-media {
  object-fit: cover;
  object-position: center;
}

.story-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 37, 79, 0.94) 0%, rgba(7, 45, 91, 0.76) 43%, rgba(7, 45, 91, 0.16) 76%),
    linear-gradient(0deg, rgba(10, 44, 102, 0.22), transparent 55%);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.story-hero-copy {
  max-width: 670px;
  padding: 56px 0;
}

.story-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.story-hero-copy > p:last-child {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(234, 240, 249, 0.85);
  font-size: 18px;
  line-height: 1.6;
}

.story-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 56px;
  margin-top: -45px;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.story-intro-year {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.story-intro-year strong {
  display: block;
  color: var(--blue);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.story-intro-year span {
  display: block;
  max-width: 190px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.story-lead {
  max-width: 720px;
}

.story-lead p {
  margin: 0 0 17px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.story-lead p:last-child {
  margin-bottom: 0;
}

.story-chapter {
  padding: var(--section-pad) 0;
}

.story-chapter-light {
  margin-top: var(--section-pad);
  background: var(--band-bg);
}

.story-chapter-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
}

.story-chapter-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-chapter-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: var(--section-title);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.story-chapter-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.story-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(10, 44, 102, 0.18);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 80, 164, 0.12), transparent 55%);
  pointer-events: none;
}

.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-closing {
  padding: var(--section-pad) 0;
  background: var(--band-bg);
}

.story-closing blockquote {
  position: relative;
  margin: 20px 0 28px;
  padding: 12px 0 12px 34px;
  border-left: 4px solid var(--orange);
}

.story-closing blockquote::before {
  content: "“";
  position: absolute;
  top: -34px;
  left: 22px;
  color: rgba(0, 80, 164, 0.1);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.story-closing blockquote p {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.story-closing-copy p {
  margin: 0 0 17px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.story-closing-copy .button {
  margin-top: 10px;
}

/* COBERTURA */
.coverage-hero {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  color: var(--white);
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(142, 209, 255, 0.14);
}

.coverage-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.coverage-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Mesmo gradiente dos slides soft-blue da home, p/ consistencia entre heroes. */
  background:
    linear-gradient(90deg, rgba(7, 37, 79, 0.68) 0%, rgba(7, 45, 91, 0.48) 34%, rgba(0, 80, 164, 0.22) 62%, rgba(0, 80, 164, 0.06) 80%, transparent 92%),
    linear-gradient(0deg, rgba(10, 44, 102, 0.14), transparent 58%);
}

.coverage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(112deg, transparent 0 34%, rgba(142, 209, 255, 0.18) 34.2%, transparent 34.7% 100%),
    linear-gradient(122deg, transparent 0 62%, rgba(142, 209, 255, 0.11) 62.2%, transparent 62.8% 100%),
    radial-gradient(circle, rgba(142, 209, 255, 0.46) 0 1px, transparent 1.7px);
  background-position: 0 0, 70px 10px, 0 0;
  background-size: 360px 160px, 520px 220px, 50px 50px;
  mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.88), transparent 82%);
}

.coverage-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.coverage-hero-copy {
  max-width: 660px;
}

.coverage-hero-copy h1,
.coverage-explorer-heading h2,
.coverage-rural h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.coverage-hero-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 20px 0 28px;
  color: rgba(221, 234, 247, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.coverage-hero .section-kicker {
  color: var(--orange);
}

.coverage-hero-copy h1 {
  color: var(--white);
}

.coverage-explorer {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.coverage-explorer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.coverage-explorer-heading h2,
.coverage-rural h2 {
  font-size: var(--section-title);
  line-height: 1.12;
}

.coverage-explorer-heading > div > p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.coverage-search {
  position: relative;
  width: min(430px, 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 80, 164, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(10, 44, 102, 0.08);
}

.coverage-search > i {
  margin-left: 15px;
  color: var(--blue);
  font-size: 19px;
}

.coverage-search input {
  min-width: 0;
  min-height: 50px;
  flex: 1;
  padding: 0 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: none;
}

.coverage-search input[aria-invalid="true"] {
  color: #8b4919;
}

.coverage-search button {
  align-self: stretch;
  padding: 0 19px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.state-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 22px;
}

.state-filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 80, 164, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.state-filter span {
  min-width: 23px;
  padding: 3px 6px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 999px;
  font-size: 11px;
}

.state-filter.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 80, 164, 0.18);
}

.state-filter.is-active span {
  color: var(--blue-deep);
  background: var(--white);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.real-map-card {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  height: clamp(540px, 47vw, 610px);
  min-width: 0;
  padding: 8px 12px 10px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* Nota fixa no canto do mapa (substitui a legenda): indica a cidade-sede. */
.map-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
}

.municipal-map {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  overflow: hidden;
}

.map-context {
  fill: transparent;
  stroke: rgba(124, 146, 166, 0.26);
  stroke-width: 1.1;
  pointer-events: none;
}

.map-city {
  fill: #f3f7fb;
  stroke: #558dc4;
  stroke-width: 2.3;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.16s ease, opacity 0.16s ease, filter 0.16s ease, transform 0.16s ease;
}

.map-city:hover,
.map-city:focus-visible {
  fill: #d8e8f7;
  stroke: var(--blue);
  filter: drop-shadow(0 4px 5px rgba(10, 44, 102, 0.18));
  outline: none;
  transform: scale(1.015);
}

/* Remove o retângulo de foco (bounding box) ao clicar numa cidade */
.map-city:focus {
  outline: none;
}

/* Sede: pino de localização (combina com o leve 3D do mapa; não bloqueia o clique) */
.map-headquarters-marker {
  pointer-events: none;
  filter: drop-shadow(0 1.5px 1.5px rgba(10, 44, 102, 0.4));
}

.hq-pin {
  fill: var(--orange);
  stroke: #ffffff;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.hq-pin-dot {
  fill: #ffffff;
}

/* Seleção sutil: o pino é o indicador principal; o polígono só ganha um leve realce. */
.map-city.is-selected {
  fill: #e2eefb;
  stroke: var(--blue);
  stroke-width: 2.5;
}

.map-city.is-filtered-out {
  opacity: 0.14;
  pointer-events: none;
}

.map-source {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 18px;
  max-width: 315px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
}

.coverage-sidebar {
  height: clamp(540px, 47vw, 610px);
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 8px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(10, 44, 102, 0.09);
}

.selected-city-card {
  min-height: 224px;
  padding: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(236, 108, 4, 0.1), transparent 13rem),
    var(--white);
  border: 1px solid rgba(74, 144, 204, 0.17);
  border-radius: 18px;
  box-shadow: 0 13px 34px rgba(10, 44, 102, 0.1);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.map-selection-card {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 20px;
  width: min(318px, calc(100% - 36px));
  min-height: 0;
  padding: 14px 16px 15px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.map-selection-card h2 {
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.08;
}

.map-selection-card p {
  margin-top: 7px;
  font-size: 11.5px;
  line-height: 1.45;
}

.map-selection-card .selected-city-actions {
  margin-top: 12px;
}

.map-selection-card .selected-city-actions .button {
  max-width: 100%;
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
  line-height: 1.2;
}

.map-selection-card .selected-state {
  font-size: 9.5px;
}

.selected-state {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.selected-city-card h2 {
  margin: 7px 0 0;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.selected-city-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.selected-city-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.selected-city-actions .button {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 13px;
}

.city-list-heading {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  margin: 0 0 7px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 144, 204, 0.12);
  border-radius: 12px;
}

.city-list-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
}

.city-list-heading span {
  color: var(--muted);
  font-size: 12px;
}

.city-list {
  min-height: 0;
  max-height: none;
  flex: 1;
  display: grid;
  align-content: start;
  gap: 6px;
  overflow: auto;
  padding: 0 2px 2px 0;
  scrollbar-width: thin;
  scrollbar-color: #a8bdd6 transparent;
}

.city-list-button {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 144, 204, 0.12);
  border-radius: 9px;
  text-align: left;
  cursor: pointer;
}

.city-list-button:hover,
.city-list-button:focus-visible,
.city-list-button.is-selected {
  color: var(--blue);
  background: var(--blue-pale);
  border-color: rgba(0, 80, 164, 0.24);
  outline: none;
}

.city-list-button span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}

.city-list-button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.coverage-rural {
  padding: var(--section-pad) 0;
  color: var(--blue-deep);
  background: var(--band-bg);
}

.coverage-rural-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.coverage-rural-inner .button {
  flex: 0 0 auto;
}

.coverage-rural .section-kicker {
  color: var(--orange);
}

.coverage-rural h2 {
  color: var(--blue);
}

.coverage-rural p:not(.section-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px 28px 20px;
    background: rgba(233, 242, 253, 0.98);
    border-bottom: 1px solid rgba(0, 80, 164, 0.12);
    box-shadow: 0 16px 28px rgba(10, 44, 102, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .header-actions {
    justify-self: end;
  }

  .combo-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-chapter-grid,
  .story-chapter-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(285px, 0.8fr);
  }
}

@media (max-width: 1300px) and (min-width: 761px) {
  .hero-copy {
    max-width: 590px;
    margin-left: 54px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 40px, 1180px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand-link {
    width: 145px;
  }

  .menu-toggle {
    order: initial;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    flex-direction: column;
    padding-inline: 20px;
  }

  .main-nav .mobile-subscriber {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .hero,
  .hero-inner {
    min-height: 600px;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 44, 102, 0.06) 0%, rgba(10, 44, 102, 0.17) 45%, rgba(10, 44, 102, 0.72) 100%);
  }

  .hero-slide-soft-blue .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 44, 102, 0.05) 0%, rgba(10, 44, 102, 0.18) 45%, rgba(10, 44, 102, 0.72) 100%),
      linear-gradient(90deg, rgba(7, 37, 79, 0.6) 0%, rgba(0, 80, 164, 0.26) 60%, transparent 88%);
  }

  .hero-inner {
    align-items: end;
  }

  .hero-copy {
    margin-left: 0;
    padding: 30px 0 86px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .carousel-arrow {
    display: none;
  }

  .proof-wrap {
    margin-top: -28px;
  }

  .numbers {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 22px;
  }

  .number,
  .number:first-child {
    padding: 0;
    border: 0;
  }

  .number strong {
    font-size: 26px;
  }

  .numbers-caption {
    margin-top: 0;
  }

  .section-space {
    margin-top: 64px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .combo-grid,
  .feature-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 40px 0;
  }

  .coverage-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coverage-cta {
    margin-top: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    padding-right: 0;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .story-hero,
  .story-hero-inner {
    min-height: 600px;
  }

  .story-hero-media {
    object-position: 63% center;
  }

  .story-hero-overlay {
    background: linear-gradient(180deg, rgba(7, 45, 91, 0.12) 0%, rgba(7, 45, 91, 0.45) 42%, rgba(7, 37, 79, 0.95) 100%);
  }

  .story-hero-inner {
    align-items: end;
  }

  .story-hero-copy {
    padding: 42px 0 72px;
  }

  .story-hero-copy h1 {
    font-size: 39px;
  }

  .story-hero-copy > p:last-child {
    font-size: 16px;
  }

  .story-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: -28px;
    padding: 22px;
  }

  .story-intro-year {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-intro-year strong {
    font-size: 52px;
  }

  .story-intro-year span {
    max-width: none;
  }

  .story-lead p {
    font-size: 14px;
  }

  .story-chapter {
    padding: 68px 0;
  }

  .story-chapter-light {
    margin-top: 64px;
  }

  .story-chapter-grid,
  .story-chapter-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-chapter-reverse .story-photo {
    order: 2;
  }

  .story-photo {
    min-height: 300px;
  }

  .story-closing {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .coverage-hero {
    padding: 58px 0 64px;
  }

  .coverage-hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 44, 102, 0.05) 0%, rgba(10, 44, 102, 0.18) 45%, rgba(10, 44, 102, 0.72) 100%),
      linear-gradient(90deg, rgba(7, 37, 79, 0.6) 0%, rgba(0, 80, 164, 0.26) 60%, transparent 88%);
  }

  .coverage-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .coverage-explorer {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .coverage-explorer-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .coverage-search {
    width: 100%;
  }

  .state-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .state-filter {
    flex: 0 0 auto;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .real-map-card {
    position: relative;
    top: auto;
    height: auto;
    padding: 12px 8px 10px;
  }

  .coverage-sidebar {
    height: auto;
    min-height: 420px;
    padding: 8px;
  }

  .selected-city-card {
    order: initial;
  }

  .city-list-heading {
    order: initial;
    margin-top: 0;
  }

  .city-list {
    order: initial;
    max-height: 360px;
  }

  .map-selection-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 4px 4px 8px;
  }

  /* No mobile a nota flui à esquerda no rodapé do mapa (evita o corte do overflow do card). */
  .map-note {
    position: static;
    margin: 2px 0 74px;
    padding: 0;
    text-align: left;
    color: var(--muted);
    background: transparent;
    backdrop-filter: none;
  }

  .map-source {
    position: static;
    max-width: none;
    margin-bottom: 4px;
    background: transparent;
    backdrop-filter: none;
  }

  .coverage-rural {
    padding: 58px 0;
  }

  .coverage-rural-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .numbers {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== CTA por horário: painel off-hours ===== */
body.cta-panel-open {
  overflow: hidden;
}
.cta-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 44, 102, 0.55);
}
.cta-panel-overlay[hidden] {
  display: none;
}
.cta-panel {
  position: relative;
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.cta-panel-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.cta-panel-eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange);
}
.cta-panel h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--blue-deep);
}
.cta-panel-sub {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.cta-form label span {
  font-weight: 400;
  color: var(--muted);
}
.cta-form input,
.cta-form textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale);
}
.cta-form .button {
  margin-top: 4px;
}
.cta-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cta-consent {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.cta-consent a {
  color: var(--blue);
}
.cta-form-msg {
  margin: 6px 0 0;
  min-height: 1em;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
}

/* ===== Página de conteúdo legal (política de privacidade) ===== */
.legal-page {
  padding: var(--section-pad) 0;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  margin: 28px 0 8px;
  font-size: 19px;
  color: var(--blue-deep);
}
.legal-content p,
.legal-content li {
  color: var(--text-soft);
  line-height: 1.7;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--blue);
}
.legal-meta {
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* --- Aviso de cookies (LGPD) --- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(10, 44, 102, 0.35);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.5;
  color: #eaf1ff;
}
.cookie-banner-text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-acoes {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-btn {
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border-radius: 9px;
  padding: 9px 18px;
  border: 1px solid transparent;
}
.cookie-btn-recusar {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.cookie-btn-aceitar {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
@media (max-width: 520px) {
  .cookie-banner-acoes {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}
