/* Site público — fundo #000, minimalista, fluído */

:root {
  /* Altura aproximada do header público (navbar) — usada no hero e scroll-margin */
  --site-header-offset: 4.5rem;
  --site-bg: #000000;
  --site-surface: #0d0d0d;
  --site-card: #141414;
  /* Rodapé: quase preto — bem mais escuro que #333; o site usa #000 (não há tom mais escuro que o preto) */
  --site-footer-bg: #080808;
  --site-border: rgba(255, 255, 255, 0.08);
  --site-text: #1f1515;
  --site-muted: #b4b4b4;
  --site-accent: #25d366;
  --site-glow: rgba(37, 211, 102, 0.25);
  /* Selo “parcelamento no boleto” (tom amarelo do projeto) */
  --badge-boleto-from: #d4bc28;
  --badge-boleto-to: #ebd331;
  --badge-boleto-text: #141414;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  background: var(--site-bg);
  color: var(--site-text);
  min-height: 100vh;
}

/* Cinza de apoio: o .text-secondary padrão do Bootstrap fica escuro demais no fundo #000 */
.site-body .text-secondary {
  color: #c8c8c8 !important;
}

.site-body .link-secondary {
  color: #b8b8b8 !important;
}

.site-body .link-secondary:hover,
.site-body .link-secondary:focus-visible {
  color: #e8e8e8 !important;
}

/* Nome do site no topo — cursiva elegante, tom amarelo do selo “boleto” */
.navbar.site-nav .navbar-brand.site-brand-mark {
  font-family: "Dancing Script", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.7rem, 4.2vw, 2.25rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  color: var(--badge-boleto-to) !important;
  background-image: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar.site-nav .navbar-brand.site-brand-mark:hover,
.navbar.site-nav .navbar-brand.site-brand-mark:focus-visible {
  filter: brightness(1.12);
}

.site-nav {
  --bs-navbar-padding-y: 0.75rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--site-border);
}

.site-nav .nav-link {
  color: #cfcfcf !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav .nav-link:hover {
  color: #fff !important;
}

.nav-link-wa {
  color: #5ee88a !important;
}

.site-main {
  padding-top: 0;
}

/* Hero: altura = arte (sem “vácuo” no mobile); no máximo 1 viewport abaixo do menu */
.hero-section {
  position: relative;
  background-color: #050505;
}

.hero-banner-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - var(--site-header-offset));
  max-height: calc(100dvh - var(--site-header-offset));
  max-height: calc(100svh - var(--site-header-offset));
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
}

/* Faixa inferior do banner (arte) — hit area para rolar até os loteamentos */
.hero-scroll-hit {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: clamp(2.75rem, 12vmin, 4.75rem);
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
}

.hero-scroll-hit:focus-visible {
  outline: 2px solid var(--badge-boleto-to);
  outline-offset: -2px;
}

/* Cards terrenos */
#terrenos {
  scroll-margin-top: calc(var(--site-header-offset) + 0.75rem);
}

.section-terrenos {
  padding: 4rem 0 5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.home-grupo-cidade:last-child {
  margin-bottom: 0 !important;
}

.home-cidade-titulo {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

.home-cidade-cabecalho__linha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--site-border);
}

.home-cidade-cabecalho .home-cidade-titulo {
  flex: 1 1 auto;
  min-width: min(12rem, 100%);
  border-bottom: none;
  padding-bottom: 0;
}

.btn-home-ver-mais {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: center;
  max-width: min(100%, 17rem);
  line-height: 1.25;
  color: var(--badge-boleto-text);
  background: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(235, 211, 49, 0.1);
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-home-ver-mais:hover {
  color: var(--badge-boleto-text);
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(235, 211, 49, 0.14);
}

.btn-home-ver-mais:focus-visible {
  outline: 2px solid var(--badge-boleto-to);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-home-ver-mais:hover {
    transform: none;
  }
}

.card-imovel {
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-imovel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.card-imovel .card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.badge-boleto {
  background: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  color: var(--badge-boleto-text);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-imovel .preco {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-imovel .local {
  color: var(--site-muted);
  font-size: 0.9rem;
}

.card-imovel .card-area {
  line-height: 1.35;
}

/* Área da foto + selo flutuante (selo fora do .swiper para não quebrar o layout) */
.card-imovel-media {
  position: relative;
}

/* Selo sobre a foto do card (canto superior direito) */
.card-imovel .badge-boleto--card-overlay {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  left: auto;
  margin: 0;
  display: inline-block;
  z-index: 6;
  max-width: calc(100% - 5rem);
  text-align: right;
  line-height: 1.25;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Swiper dentro do card */
.card-swiper {
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
}

.card-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  color: #fff;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
}

.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
  font-size: 0.85rem;
  font-weight: 700;
}

.card-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.35;
}

.card-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--badge-boleto-to);
}

/* Detalhe */
.detalhe-hero {
  padding-top: 2rem;
}

.gallery-main .swiper {
  --swiper-navigation-color: #1a1a1a;
  --swiper-theme-color: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--site-border);
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  color: #1a1a1a;
}

.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
  font-weight: 700;
}

.gallery-main .swiper-pagination-bullet {
  background: #1a1a1a;
  opacity: 0.35;
}

.gallery-main .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1a1a1a;
}

.gallery-main .swiper-slide img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}

.gallery-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.gallery-zoom-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.gallery-zoom-trigger:hover::after,
.gallery-zoom-trigger:focus-visible::after {
  opacity: 1;
}

.gallery-zoom-trigger:focus-visible {
  outline: 2px solid var(--badge-boleto-to);
  outline-offset: -2px;
}

.gallery-zoom-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-zoom-trigger:hover .gallery-zoom-icon,
.gallery-zoom-trigger:focus-visible .gallery-zoom-icon {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-frame {
  width: min(100%, 1180px);
  margin: 0;
  text-align: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 5rem);
  border-radius: 1rem;
  object-fit: contain;
  background: #080808;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: fixed;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 1.25rem;
}

.gallery-lightbox-next {
  right: 1.25rem;
}

.broker-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 38rem;
  padding: 1rem 1.25rem 1rem 1rem;
  overflow: hidden;
  background: #1c1c1c;
  border-left: 4px solid var(--badge-boleto-to);
  border-radius: 0 0.95rem 0.95rem 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.broker-logo-box {
  flex: 0 0 auto;
  width: 5.8rem;
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.broker-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.broker-card-info {
  min-width: 0;
}

.broker-creci {
  color: #f8f8f8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.broker-name {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.broker-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.broker-phone:hover,
.broker-phone:focus-visible {
  color: var(--badge-boleto-to);
}

.broker-card--aside {
  max-width: none;
  padding: 0.85rem 0.9rem;
  gap: 0.85rem;
  background: #1c1c1c;
  border-radius: 0 0.85rem 0.85rem 0;
  box-shadow: none;
}

.broker-card--aside .broker-logo-box {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 0.85rem;
}

.broker-card--aside .broker-name {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.broker-card--aside .broker-phone {
  font-size: 0.9rem;
}

.spec-box {
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--site-border);
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.wa-fixed-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 50;
}

@media (max-width: 575.98px) {
  .broker-card {
    align-items: flex-start;
    max-width: none;
    padding: 0.9rem 1rem 0.9rem 0.85rem;
  }

  .broker-logo-box {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 0.85rem;
  }
}

/* Footer — largura total; cinza mínimo (~3% acima do #000), bem mais escuro que #333 */
.site-footer {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--site-footer-bg);
  background-image: none;
  border-top: 1px solid var(--site-border);
  box-shadow: none;
}

.footer-brand {
  font-family: "Dancing Script", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem) !important;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--badge-boleto-to) !important;
  background-image: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-cidades .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #e6e6e6;
}

.footer-cidades .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8e8e8;
  font-size: 1.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--badge-boleto-to);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(235, 211, 49, 0.45);
  transform: translateY(-2px);
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--site-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #fff;
}

.footer-contact-list i {
  color: var(--badge-boleto-to);
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e8e8e8;
  font-size: 0.875rem;
  font-weight: 500;
  font: inherit;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-back-top:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.footer-back-top:focus-visible {
  outline: 2px solid var(--badge-boleto-to);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .footer-contact-list {
    justify-content: flex-end;
  }
}

/* Barra de consentimento de cookies */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1055;
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.cookie-consent.cookie-consent--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__panel {
  pointer-events: auto;
}

.cookie-consent__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  padding: 1.1rem 1.25rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(155deg, rgba(22, 22, 22, 0.97) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(235, 211, 49, 0.06) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .cookie-consent__row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.15rem 1.5rem 1.2rem;
  }
}

.cookie-consent__text {
  flex: 1;
  color: #b8b8b8;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 52rem;
}

.cookie-consent__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 188, 40, 0.2) 0%, rgba(235, 211, 49, 0.12) 100%);
  color: var(--badge-boleto-to);
  font-size: 0.95rem;
}

.cookie-consent__link {
  color: #e8e0a8;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(235, 211, 49, 0.45);
}

.cookie-consent__link:hover {
  color: var(--badge-boleto-to);
  text-decoration-color: var(--badge-boleto-to);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions .btn {
    flex: 1;
    min-width: 0;
  }
}

.cookie-consent__btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--badge-boleto-text);
  background: linear-gradient(135deg, var(--badge-boleto-from) 0%, var(--badge-boleto-to) 100%);
  box-shadow: 0 4px 18px rgba(235, 211, 49, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cookie-consent__btn-primary:hover {
  filter: brightness(1.08);
  color: var(--badge-boleto-text);
  transform: translateY(-1px);
}

.cookie-consent__btn-primary:focus-visible {
  outline: 2px solid var(--badge-boleto-to);
  outline-offset: 3px;
}

.cookie-consent__btn-secondary {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #d0d0d0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent__btn-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.cookie-consent__btn-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

body.has-cookie-banner .wa-float {
  bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body.has-cookie-banner .wa-float {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

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

  .cookie-consent__btn-primary:hover {
    transform: none;
  }
}

/* Botão WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: var(--site-accent);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 30px var(--site-glow);
  z-index: 1040;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff !important;
}

/* Página Cidades — menu lateral: leitura confortável na coluna estreita */
.page-cidades-menu .list-cidade .list-cidade-link {
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 1200px) {
  .page-cidades-menu .list-cidade .list-cidade-link {
    padding: 0.7rem 0.8rem;
    font-size: 0.9375rem;
  }
}

/* Menu lateral: permanece visível ao rolar (desktop / duas colunas) */
@media (min-width: 992px) {
  .page-cidades-menu {
    position: sticky;
    top: calc(var(--site-header-offset) + 0.75rem);
    z-index: 1018;
    align-self: flex-start;
  }

  .page-cidades-menu .list-cidade {
    max-height: calc(100svh - var(--site-header-offset) - 2.25rem);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* Cidades */
.list-cidade .list-group-item {
  background: var(--site-card);
  border-color: var(--site-border);
  color: #f1f1f1;
}

.list-cidade .list-group-item a,
.list-cidade .list-cidade-link {
  color: #f1f1f1;
  text-decoration: none;
}

/* Área clicável = linha inteira (Bootstrap stretched-link + âncora em bloco) */
.list-cidade .list-cidade-item {
  padding: 0;
}

.list-cidade .list-cidade-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
}

.list-cidade .list-group-item:hover {
  background: #1a1a1a;
  color: #fff;
}

.list-cidade .list-group-item:hover .list-cidade-link,
.list-cidade .list-cidade-link:hover,
.list-cidade .list-cidade-link:focus-visible {
  color: #fff;
}

/* "Todas" ativo: manter separador igual aos demais itens (evita border-0 / cor de borda do .active) */
.list-cidade .list-group-item.active {
  background: #1a1a1a;
  color: #fff;
  border-color: var(--site-border);
}
