/* ============================================
   DESENTUPIDORA BAURU - CSS PURO
   Reprodução fiel do design original
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 50%, 15%);
  --primary: hsl(215, 60%, 28%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(27, 92%, 54%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(215, 15%, 45%);
  --accent: hsl(207, 70%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(214, 25%, 88%);
  --whatsapp: hsl(142, 70%, 40%);
  --radius: 0.5rem;
  --shadow-card: 0 4px 24px -8px hsla(215, 60%, 28%, 0.12);
  --shadow-cta: 0 4px 20px -4px hsla(27, 92%, 54%, 0.5);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* === HEADER === */
.header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.header-logo img {
  height: 2.5rem;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--secondary-foreground);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-btn-phone {
  background-color: var(--secondary);
  animation: pulse-cta 2s ease-in-out infinite;
}

.header-btn-whatsapp {
  background-color: var(--whatsapp);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--primary-foreground);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 768px) {
  .header-btn-mobile {
    display: none;
  }
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  background-color: var(--primary);
  border-top: 1px solid hsla(207, 70%, 55%, 0.2);
  padding-bottom: 1rem;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-item {
  display: block;
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.mobile-nav .nav-item:hover {
  background-color: hsla(207, 70%, 55%, 0.2);
}

.bairros-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.bairros-toggle:hover {
  background-color: hsla(207, 70%, 55%, 0.2);
}

.bairros-toggle .arrow {
  transition: transform 0.3s;
}

.bairros-toggle.open .arrow {
  transform: rotate(180deg);
}

.bairros-list {
  display: none;
  padding-left: 1rem;
  max-height: 15rem;
  overflow-y: auto;
}

.bairros-list.active {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.bairros-list a {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}

.bairros-list a:hover {
  background-color: hsla(207, 70%, 55%, 0.2);
}

.nav-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary-foreground);
}

.nav-cta .cta-phone {
  background-color: var(--secondary);
  animation: pulse-cta 2s ease-in-out infinite;
}

.nav-cta .cta-whatsapp {
  background-color: var(--whatsapp);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

/* === HERO === */
.hero {
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 0;
  }
}

.hero h1 {
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero .subtitle {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .hero .subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: scale(1.02);
}

.btn-cta-phone {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  animation: pulse-cta 2s ease-in-out infinite;
}

.btn-cta-whatsapp {
  background-color: var(--whatsapp);
  color: var(--primary-foreground);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.btn-cta-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
}

.hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* === SVG ICONS (inline) === */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 1.75rem;
  height: 1.75rem;
}

/* === SECTIONS === */
.section {
  padding: 4rem 0;
}

.section-bg {
  background-color: var(--background);
}

.section-muted {
  background-color: var(--muted);
}

.section-primary {
  background-color: var(--primary);
}

.section-title {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title .highlight {
  color: var(--secondary);
}

.section-title-white {
  color: var(--primary-foreground);
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 32px -8px hsla(215, 60%, 28%, 0.2);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(27, 92%, 54%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
}

.service-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === IMAGES GRID === */
.images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .images-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.images-grid .img-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.images-grid .img-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

/* === REASONS / WHY CHOOSE === */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reason-item {
  display: flex;
  gap: 1rem;
}

.reason-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.reason-item h3 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.reason-item p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* === SEO CONTENT / ARTICLE === */
.seo-content {
  max-width: 56rem;
  margin: 0 auto;
}

.seo-content h2 {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.seo-content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.seo-content strong {
  color: var(--foreground);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-section p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* === BAIRROS GRID === */
.bairros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .bairros-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bairros-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bairro-link {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.bairro-link:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.bairro-link-sm {
  padding: 0.5rem;
  font-size: 0.75rem;
}

/* === FOOTER === */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-inner {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact a {
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bairros {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.footer-bairros h4 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-bairros-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-bairros-list a {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.6);
  transition: color 0.2s;
}

.footer-bairros-list a:hover {
  color: var(--secondary);
}

.footer-copy {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.5);
}

/* === FLOATING BUTTONS === */
.floating-phone {
  position: fixed;
  left: 1rem;
  bottom: 1.5rem;
  z-index: 50;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 50;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: var(--primary-foreground);
}

.floating-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-btn-phone {
  background-color: var(--primary);
  animation: pulse-phone 2s ease-in-out infinite;
}

.floating-btn-whatsapp {
  background-color: var(--whatsapp);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-btn-whatsapp svg {
  width: 2rem;
  height: 2rem;
}

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-grid img {
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  width: 100%;
}

.about-grid h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
  margin: 0 auto 0.5rem;
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--foreground);
}

.stat-card .stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 8px 32px -8px hsla(215, 60%, 28%, 0.2);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-icon-phone {
  background-color: hsla(27, 92%, 54%, 0.1);
}

.contact-icon-phone svg {
  color: var(--secondary);
}

.contact-icon-whatsapp {
  background-color: hsla(142, 70%, 40%, 0.1);
}

.contact-icon-whatsapp svg {
  color: var(--whatsapp);
}

.contact-icon-location {
  background-color: hsla(207, 70%, 55%, 0.2);
}

.contact-icon-location svg {
  color: var(--accent);
}

.contact-icon-clock {
  background-color: hsla(215, 60%, 28%, 0.1);
}

.contact-icon-clock svg {
  color: var(--primary);
}

.contact-card h3 {
  font-weight: 700;
  color: var(--foreground);
}

.contact-card .phone-number {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

.contact-card .whatsapp-text {
  color: var(--whatsapp);
  font-weight: 700;
  font-size: 1.25rem;
}

.contact-card p {
  color: var(--muted-foreground);
}

/* === FORM === */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--secondary);
}

.form-group textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  animation: pulse-cta 2s ease-in-out infinite;
}

/* === HISTORY SECTION === */
.history-content {
  max-width: 56rem;
  margin: 0 auto;
}

.history-content h2 {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.history-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === NOT FOUND === */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: 3rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.not-found p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.not-found a {
  color: var(--secondary);
  font-weight: 600;
}

/* === ANIMATIONS === */
@keyframes pulse-cta {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px -4px hsla(27, 92%, 54%, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 6px 30px -4px hsla(27, 92%, 54%, 0.7); }
}

@keyframes pulse-whatsapp {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px -4px hsla(142, 70%, 40%, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 6px 30px -4px hsla(142, 70%, 40%, 0.7); }
}

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px -4px hsla(215, 60%, 28%, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 6px 30px -4px hsla(215, 60%, 28%, 0.7); }
}

/* === PAGE HERO (internal pages) === */
.page-hero {
  padding: 4rem 0;
  background-color: var(--primary);
  text-align: center;
}

.page-hero h1 {
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero h1 .highlight {
  color: var(--secondary);
}

.page-hero p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* === BAIRRO PAGE (smaller grid) === */
.bairros-grid-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .bairros-grid-sm {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === UTILITY === */
.text-center { text-align: center; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

.img-h-48 {
  height: 12rem;
  object-fit: cover;
}
