:root {
  --brand: #3b82f6; /* link */
  --brand-600: #2563eb;
  --bg-tint: #f8fafc;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #ffffff;
}

/* Navbar */
.navbar.is-light {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.navbar .navbar-item .button.is-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Hero */
.hero.is-home {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-tint) 100%);
  position: relative;
  overflow: clip;
}
.hero .hero-media {
  max-width: 560px;
  margin: 0 auto;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Services */
.service-card {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* Gallery */
.gallery-embed blockquote {
  width: 100%;
}

/* Map */
.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: var(--bg-tint);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.floating-whatsapp:hover {
  filter: brightness(0.95);
}

/* Utilities */
.is-muted {
  color: #64748b;
}
.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;
}

/* Contact tweaks (no form) */
.contact-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact-cta .button {
  margin-right: 0.25rem;
}
