/* ================================================================
   FAQ + CTA DE FECHAMENTO — Preventiva (tokens em style.css)
================================================================ */

#faq {
  scroll-margin-top: calc(var(--navbar-height) + var(--space-4));
}

#cta-final {
  scroll-margin-top: calc(var(--navbar-height) + var(--space-4));
}

#area-bairros {
  scroll-margin-top: calc(var(--navbar-height) + var(--space-4));
}

.closing-cta-section {
  margin: 0;
  padding: 0;
}

/* CTA em seção própria: menos respiro que quando embutido no FAQ */
.closing-cta-section .closing-cta {
  margin-top: clamp(2rem, 6vw, 3.25rem);
}

.faq-final {
  position: relative;
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  /* Célula do grid: desktop/tablet dentro de 24–32px; mobile um pouco maior */
  --faq-grid-size: 28px;
}

@media (max-width: 639px) {
  .faq-final {
    --faq-grid-size: 32px;
  }
}

/* Textura blueprint: só na área da seção; não cobre header nem interfere nos cards */
.faq-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(0, 40, 80, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 40, 80, 0.06) 1px, transparent 1px);
  background-size: var(--faq-grid-size) var(--faq-grid-size);
  background-position: 0 0, 0 0;
  /* Fade nas bordas: grid some suavemente sem “corte seco” */
  -webkit-mask-image: radial-gradient(
    ellipse 92% 88% at 50% 48%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.45) 78%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 92% 88% at 50% 48%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.45) 78%,
    transparent 100%
  );
}

.faq-final__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(var(--space-12), 5.5vw, var(--space-20));
  padding-bottom: clamp(var(--space-10), 5vw, var(--space-16));
  /* Lateral: antes o shorthand zerava o padding de .container */
  padding-inline: clamp(var(--space-4), 4vw, var(--space-6));
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .faq-final__inner {
    padding-inline: clamp(1.25rem, 5.5vw, 1.75rem);
  }
}

.faq-final__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 3vw, var(--space-10));
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-final__title {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
}

@media (min-width: 768px) {
  .faq-final__title {
    font-size: var(--text-3xl);
  }
}

.faq-final__subtitle {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* Duas colunas: FAQ | conversão — mobile: título, bloco visual, FAQ */
.faq-final__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 2.75rem);
  align-items: stretch;
}

.faq-final__col--faq {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  order: 2;
}

.faq-final__col--conversion {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  order: 1;
}

@media (min-width: 1024px) {
  .faq-final__layout {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(280px, 1fr);
    gap: 64px;
    align-items: start;
  }

  .faq-final__col--faq,
  .faq-final__col--conversion {
    order: unset;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-final__col--faq {
    grid-column: 1;
  }

  .faq-final__col--conversion {
    grid-column: 2;
  }
}

/* —— Bloco de conversão (imagem + prova + CTA) —— */
.faq-conversion__visual {
  position: relative;
}

.faq-conversion__figure {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 42, 60, 0.1);
}

.faq-conversion__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transform-origin: center;
}

.faq-conversion__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 24, 38, 0.55) 38%,
    rgba(7, 30, 46, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-conversion__stat {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-conversion__meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.faq-conversion__btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #22c55e;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.faq-conversion__btn-main:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.faq-conversion__btn-main:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.faq-conversion__follow {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(11, 42, 60, 0.06);
}

.faq-conversion__follow-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.faq-conversion__follow-text {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.55;
}

.faq-conversion__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid rgba(11, 60, 93, 0.2);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.faq-conversion__btn-secondary:hover {
  background: rgba(11, 60, 93, 0.06);
  border-color: rgba(11, 60, 93, 0.35);
}

.faq-conversion__btn-secondary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .faq-conversion__btn-secondary {
    width: auto;
  }
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-accordion {
    gap: 1.125rem;
  }
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(11, 60, 93, 0.14);
}

.faq-item.is-open {
  border-color: #22c55e;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.12);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  margin: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.22s ease;
}

@media (min-width: 768px) {
  .faq-item__trigger {
    font-size: var(--text-base);
    padding: var(--space-5) var(--space-6);
  }
}

.faq-item__trigger:hover {
  background: rgba(11, 60, 93, 0.03);
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  transition: transform 0.3s ease;
}

.faq-item__chevron svg {
  width: 20px;
  height: 20px;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__outer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__outer {
  grid-template-rows: 1fr;
}

.faq-item__panel {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer {
  margin: 0;
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .faq-item__answer {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--text-base);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__outer {
    transition: none;
  }

  .faq-conversion__img {
    transform: none;
  }
}

/* —— Zona de fechamento (separada do FAQ) —— */
.closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 100px;
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(var(--space-3), 3.5vw, var(--space-6))
    clamp(3rem, 8vw, 5.25rem);
  background-color: #041018;
  /* Pontos + malha (rede) + textura SVG + gradiente base */
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 1.2px, transparent 1.65px),
    linear-gradient(rgba(45, 212, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 115, 0.06) 1px, transparent 1px),
    url("../img/banners/rede-textura.svg"),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(11, 60, 93, 0.45) 0%, transparent 58%),
    linear-gradient(
      162deg,
      #020d16 0%,
      #062536 36%,
      var(--color-primary) 52%,
      #071c2c 78%,
      #041018 100%
    );
  background-size:
    30px 30px,
    30px 30px,
    30px 30px,
    96px 96px,
    100% 100%,
    100% 100%;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat, no-repeat;
  background-position: center, center, center, center, center, center;
  background-blend-mode: normal, normal, normal, overlay, normal, normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 -1px 0 rgba(0, 0, 0, 0.22);
}

/* Linha divisória no espaço acima (faixa branca do FAQ) */
.closing-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 36rem);
  height: 1px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(250, 210, 90, 0.22) 45%,
    rgba(250, 204, 21, 0.38) 50%,
    rgba(250, 210, 90, 0.22) 55%,
    transparent 100%
  );
  opacity: 0.45;
}

/* Vinheta inferior leve (sem canvas / sem JS) */
.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 100% 70% at 50% 100%,
    rgba(0, 0, 0, 0.38) 0%,
    transparent 52%
  );
  opacity: 0.75;
}

@media (max-width: 639px) {
  .closing-cta {
    margin-top: clamp(3.5rem, 14vw, 100px);
    padding-inline: var(--space-3);
  }

  .closing-cta-section .closing-cta {
    margin-top: clamp(1.75rem, 10vw, 2.75rem);
  }

  .closing-cta::before {
    top: clamp(-2.75rem, -8vw, -2.5rem);
    width: min(94%, 100%);
    opacity: 0.38;
  }
}

.closing-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(var(--space-4), 4vw, var(--space-10));
}

/* CTA principal + foto — desktop em duas colunas */
.closing-cta__row {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .closing-cta__row {
    /* Imagem à esquerda, texto à direita */
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .closing-cta__visual {
    order: 1;
  }

  .closing-cta__copy {
    order: 2;
  }
}

.closing-cta__copy {
  min-width: 0;
}

.closing-cta__visual {
  min-width: 0;
}

.closing-cta__figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.closing-cta__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.closing-cta__lower {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(0.25rem, 1.5vw, 0.5rem);
}

.closing-cta__lower .closing-cta__divider {
  margin-top: 0;
}

.closing-cta__lower .closing-cta__bairros {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

@media (max-width: 479px) {
  .closing-cta__inner {
    padding-inline: var(--space-3);
  }
}

.closing-cta__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .closing-cta__copy .closing-cta__stack {
    align-items: flex-start;
    text-align: left;
  }

  .closing-cta__copy .closing-cta__title {
    margin-left: 0;
    margin-right: 0;
    max-width: 22ch;
  }

  .closing-cta__copy .closing-cta__sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 36rem;
  }

  .closing-cta__copy .closing-cta__bullets {
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .closing-cta__copy .closing-cta__cta-wrap {
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
  }
}

.closing-cta__title {
  font-size: clamp(1.2rem, 3.1vw, 1.75rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .closing-cta__title {
    letter-spacing: -0.022em;
    max-width: 28ch;
  }
}

.closing-cta__accent {
  font-style: normal;
  color: #fde68a;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 28px rgba(250, 204, 21, 0.35),
    0 0 48px rgba(250, 210, 100, 0.15);
}

.closing-cta__sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
  margin: clamp(0.75rem, 2vw, 1.1rem) auto 0;
  max-width: 26rem;
}

@media (min-width: 768px) {
  .closing-cta__sub {
    font-size: var(--text-base);
    max-width: 26rem;
  }
}

.closing-cta__bullets {
  list-style: none;
  margin: clamp(1.35rem, 3.5vw, 1.85rem) 0 clamp(1.35rem, 3.5vw, 1.75rem);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  max-width: 26rem;
}

@media (min-width: 520px) {
  .closing-cta__bullets {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-5);
    max-width: 36rem;
  }
}

.closing-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem 0.5rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.closing-cta__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  color: #fde047;
  text-shadow:
    0 0 10px rgba(250, 204, 21, 0.55),
    0 0 20px rgba(250, 230, 150, 0.25);
  filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.35));
}

.closing-cta__cta-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(0.65rem, 2vw, 1rem) 0 0.25rem;
}

/* Halo verde estático atrás do CTA (sem animação) */
.closing-cta__cta-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(28rem, 94vw);
  height: 6.5rem;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(34, 197, 94, 0.42) 0%,
    rgba(34, 197, 94, 0.12) 45%,
    transparent 72%
  );
  filter: blur(2px);
  opacity: 0.95;
}

.closing-cta__btn {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(24rem, 100%);
  margin: 0;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.9vw, 1.125rem);
  padding: 1.35rem 2.15rem;
  min-height: 3.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    155deg,
    #4ade80 0%,
    #22c55e 32%,
    #16a34a 68%,
    #15803d 100%
  ) !important;
  color: var(--color-white) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 10px 36px rgba(34, 197, 94, 0.55),
    0 20px 50px rgba(0, 0, 0, 0.42),
    0 0 64px rgba(34, 197, 94, 0.45),
    0 0 100px rgba(34, 197, 94, 0.28);
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.32, 1),
    box-shadow 0.32s ease,
    filter 0.32s ease;
}

.closing-cta .closing-cta__btn.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
  background: linear-gradient(
    155deg,
    #6ee7a0 0%,
    #34d399 35%,
    #22c55e 100%
  ) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 3px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 44px rgba(34, 197, 94, 0.65),
    0 26px 64px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(34, 197, 94, 0.52),
    0 0 120px rgba(34, 197, 94, 0.32);
}

.closing-cta .closing-cta__btn.btn--whatsapp:active {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(0.98);
}

.closing-cta__btn svg {
  width: 24px;
  height: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__outer,
  .faq-item__chevron {
    transition: none;
  }

  .closing-cta__cta-wrap::before {
    opacity: 0.88;
    transform: translate(-50%, -46%);
  }

  .closing-cta__btn {
    transition: none;
  }

  .closing-cta .closing-cta__btn.btn--whatsapp:hover,
  .closing-cta .closing-cta__btn.btn--whatsapp:active {
    transform: none;
    filter: none;
  }

  .closing-cta__loc-tag {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .closing-cta__loc-tag:hover {
    transform: none;
  }
}

/* Divisor CTA → bairros */
.closing-cta__divider {
  width: 120px;
  height: 2px;
  margin: clamp(1.75rem, 4.5vw, 2.5rem) auto 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(74, 222, 128, 0.2) 18%,
    rgba(34, 197, 94, 0.75) 50%,
    rgba(74, 222, 128, 0.2) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 14px rgba(34, 197, 94, 0.45),
    0 0 28px rgba(34, 197, 94, 0.2);
}

/* —— Bairros (CTA final + cobertura local) —— */
.closing-cta__bairros {
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(1.25rem, 3.5vw, 1.85rem);
  padding-top: clamp(0.25rem, 1.5vw, 0.5rem);
  text-align: center;
}

.closing-cta__bairros-eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.88);
  line-height: 1.4;
}

.closing-cta__bairros-title {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.99);
  margin: var(--space-4) auto 0;
  max-width: 40rem;
  text-wrap: balance;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.closing-cta__bairros-lead {
  margin: var(--space-3) auto 0;
  max-width: 32rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .closing-cta__bairros-lead {
    font-size: var(--text-base);
  }
}

.closing-cta__bairros-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: var(--space-4) auto 0;
  max-width: 30rem;
}

@media (min-width: 768px) {
  .closing-cta__bairros-sub {
    font-size: var(--text-base);
  }
}

.closing-cta__bairros-nav {
  width: 100%;
  margin-top: clamp(var(--space-8), 4vw, var(--space-10));
}

.closing-cta__loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-3) var(--space-4);
}

.closing-cta__loc-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem 0.55rem 0.8rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition:
    color 0.3s cubic-bezier(0.33, 1, 0.32, 1),
    background 0.3s cubic-bezier(0.33, 1, 0.32, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.33, 1, 0.32, 1);
}

.closing-cta__loc-tag:hover {
  color: var(--color-white);
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(74, 222, 128, 0.55);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.25),
    0 6px 20px rgba(0, 0, 0, 0.2),
    0 0 28px rgba(34, 197, 94, 0.35),
    0 0 48px rgba(34, 197, 94, 0.15);
  transform: translateY(-4px);
}

.closing-cta__loc-tag:focus-visible {
  outline: 2px solid var(--color-whatsapp);
  outline-offset: 3px;
}

.closing-cta__loc-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(167, 243, 208, 0.95);
  transition: color 0.3s ease;
}

.closing-cta__loc-tag:hover .closing-cta__loc-icon {
  color: rgba(255, 255, 255, 0.98);
}
