/* Auto Mecânica Fábio — graphite + hi-vis orange, card-grid workshop */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --graphite-900: #1C1F26;
  --graphite-800: #2A2E38;
  --graphite-700: #3A3F4B;
  --graphite-600: #4E5462;
  --orange: #FF6B00;
  --orange-dark: #E05E00;
  --orange-glow: rgba(255, 107, 0, 0.18);
  --white: #ffffff;
  --off-white: #F4F5F7;
  --slate: #E8EAEE;
  --surface: #DDE0E6;
  --text: #1C1F26;
  --text-muted: #5A6070;
  --text-light: #ECEEF2;
  --border: rgba(28, 31, 38, 0.12);
  --whatsapp: #25d366;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 16px rgba(28, 31, 38, 0.08);
  --shadow-md: 0 16px 48px rgba(28, 31, 38, 0.12);
  --shadow-lg: 0 28px 72px rgba(28, 31, 38, 0.16);
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --max-width: 720px;
  --max-width-wide: 1140px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

body.menu-open { overflow: hidden; }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

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

a {
  color: var(--orange-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--orange); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  color: var(--graphite-900);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.375rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.0625rem, 2vw, 1.3125rem); }

p { margin: 0 0 var(--space-md); }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, var(--max-width-wide));
  margin-inline: auto;
}

.section { padding: var(--space-3xl) 0; }
.section--white { background: var(--white); }
.section--slate { background: var(--slate); }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.section__label::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-xl { margin-bottom: var(--space-xl); }

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

.stripe-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--graphite-900) 0%, var(--orange) 50%, var(--graphite-900) 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--graphite-900);
  border-bottom: 2px solid var(--orange);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--header-h);
  padding: 0 var(--space-md);
  max-width: var(--max-width-wide);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.logo:hover { color: var(--white); }

.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo__mark svg { width: 44px; height: 44px; display: block; }

.logo__text { display: flex; flex-direction: column; line-height: 1.2; }

.logo__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100dvh;
  z-index: 150;
  background: var(--graphite-900);
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) calc(var(--mobile-bar-h) + var(--space-lg));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open { display: block; }

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 48px;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .header-cta .btn--outline { display: none; }
  .header-cta .btn--sm {
    padding: 0 0.65rem;
    font-size: 0.6875rem;
    min-height: 40px;
    max-width: 9rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    min-height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
  }
  .site-nav__list {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
  }
  .site-nav__link {
    font-size: 0.8125rem;
    padding: var(--space-xs) 0;
    border: none;
    min-height: auto;
  }
}

@media (min-width: 1100px) {
  .site-nav__list { gap: var(--space-lg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 48px;
  padding: 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--sm {
  min-height: 44px;
  padding: 0 var(--space-md);
  font-size: 0.8125rem;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--dark-outline {
  background: transparent;
  color: var(--graphite-900);
  border-color: var(--graphite-600);
}

.btn--dark-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* Hero */
.hero {
  background: var(--graphite-900);
  color: var(--text-light);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max-width-wide);
  margin-inline: auto;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1.1fr;
    min-height: clamp(480px, 82vh, 680px);
    align-items: stretch;
  }
}

.hero__content {
  padding: var(--space-2xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero__content {
    padding: var(--space-3xl) var(--space-xl) var(--space-3xl) var(--space-md);
  }
}

.hero__content h1 { color: var(--white); margin-bottom: var(--space-md); }

.hero__kicker {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 107, 0, 0.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.hero__badge-row { margin-bottom: var(--space-sm); }

.bosch-badge {
  display: inline-block;
  vertical-align: middle;
}

.hero__heritage {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--orange);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__heritage span {
  display: block;
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15em;
}

.hero__promise {
  font-size: 1.0625rem;
  color: rgba(236, 238, 242, 0.88);
  max-width: 48ch;
  margin-bottom: var(--space-xl);
}

.hero__visual {
  position: relative;
  min-height: 280px;
}

@media (min-width: 992px) {
  .hero__visual {
    margin-top: var(--space-xl);
    margin-right: calc(-1 * var(--space-xl));
    margin-bottom: var(--space-xl);
  }
}

.hero__visual-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  background: var(--orange);
  z-index: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (min-width: 992px) {
  .hero__visual img { min-height: 100%; }
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

.trust-bar__item { text-align: center; }

.trust-bar__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--graphite-900);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.trust-bar__value--accent { color: var(--orange); }

.trust-bar__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: var(--space-xs) 0 0;
}

/* Card grid */
.card-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); }

.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate);
}

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

.card__body { padding: var(--space-lg); }

.card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

/* Split grid */
.split-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
}

.split-grid__img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* Differenciais */
.diff-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

.diff-item {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}

.diff-item h3 { margin-bottom: var(--space-sm); }

.diff-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Rating banner */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.rating-banner__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.rating-banner__text strong { color: var(--graphite-900); }

/* Testimonials */
.testimonial {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-style: normal;
  font-weight: 700;
  color: var(--graphite-900);
}

.testimonial__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--slate);
}

@media (min-width: 768px) {
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, rgba(28, 31, 38, 0.92));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }
}

.location-info address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hours-list {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--slate);
}

.map-embed iframe,
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
}

/* FAQ */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--graphite-900);
  min-height: 48px;
  gap: var(--space-md);
}

.faq-item__question:hover { color: var(--orange); }

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item.is-open .faq-item__answer { display: block; }

.faq-item__answer p { color: var(--text-muted); margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--graphite-900) 0%, var(--graphite-800) 100%);
  color: var(--text-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-top: 4px solid var(--orange);
}

.cta-band h2 { color: var(--white); }

.cta-band p {
  color: rgba(236, 238, 242, 0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* Page hero */
.page-hero {
  background: var(--graphite-900);
  color: var(--text-light);
  padding: var(--space-2xl) 0;
}

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

.page-hero p {
  color: rgba(236, 238, 242, 0.85);
  max-width: 60ch;
  font-size: 1.0625rem;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--orange); }

/* Service search */
.service-search { margin-bottom: var(--space-xl); }

.service-search input {
  width: 100%;
  max-width: 480px;
  min-height: 48px;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
}

.service-search input:focus {
  outline: none;
  border-color: var(--orange);
}

/* Area tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.area-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite-700);
}

/* Quote steps */
.quote-steps {
  padding-left: var(--space-lg);
  max-width: 60ch;
  margin: 0 auto;
}

.quote-steps li {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  max-width: 640px;
  margin-inline: auto;
  border-left: 3px solid var(--orange);
  padding-left: var(--space-xl);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 7px);
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.03em;
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.team-card__body { padding: var(--space-lg); }

.team-card h3 { margin-bottom: var(--space-sm); }

.team-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Legal */
.legal-content h2 {
  margin-top: var(--space-2xl);
  font-size: 1.25rem;
}

.legal-content ul { padding-left: var(--space-lg); }

/* Footer */
.site-footer {
  background: var(--graphite-900);
  color: rgba(236, 238, 242, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

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

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.footer__bosch { margin-bottom: var(--space-md); }

.footer__nap { line-height: 1.8; }

.footer__nap a { color: var(--orange); text-decoration: none; }
.footer__nap a:hover { text-decoration: underline; }

.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: var(--space-sm); }

.footer__list a {
  color: rgba(236, 238, 242, 0.8);
  text-decoration: none;
}

.footer__list a:hover { color: var(--orange); }

.footer__map {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  height: var(--mobile-bar-h);
  background: var(--graphite-900);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 20px rgba(28, 31, 38, 0.25);
}

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

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #fff;
  min-height: 48px;
}

.mobile-bar__btn--wa { background: var(--whatsapp); }
.mobile-bar__btn--wa:hover { background: #1fb855; color: #fff; }
.mobile-bar__btn--call { background: var(--orange); color: var(--white); }
.mobile-bar__btn--call:hover { background: var(--orange-dark); color: var(--white); }
