/* Maicar Auto Peças — Design System */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Quicksand:wght@500;600;700&display=swap');

:root {
  --color-bg: #f4f4f2;
  --color-white: #ffffff;
  --color-black: #0d0d0d;
  --color-graphite: #2b2f36;
  --color-graphite-light: #4a5059;
  --color-yellow: #ffd100;
  --color-yellow-dark: #e6bc00;
  --color-yellow-glow: rgba(255, 209, 0, 0.18);
  --color-text: #1a1a1a;
  --color-text-muted: #5a5f66;
  --color-border: #e0e0dc;
  --font-heading: 'Quicksand', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --header-h: 68px;
  --mobile-bar-h: 56px;
  --max-width: 720px;
  --max-wide: 1140px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  padding-bottom: var(--mobile-bar-h);
}

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

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

a {
  color: var(--color-graphite);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover { color: var(--color-yellow-dark); }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-top: 0;
}

h1 { font-size: clamp(1.875rem, 5vw, 2.85rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.05rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.125rem; margin-bottom: var(--space-xs); }

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

address { font-style: normal; line-height: 1.7; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.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;
}

.text-center { text-align: center; }
.mx-auto { max-width: 42rem; margin-left: auto; margin-right: auto; }
.mb-xl { margin-bottom: var(--space-xl); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 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: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

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

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

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

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

.btn--primary:hover {
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  color: var(--color-black);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

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

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

.btn--dark-outline:hover {
  background: var(--color-black);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-yellow);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
}

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

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

.logo__mark svg { width: 100%; height: 100%; }

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

.logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-black);
}

.logo__tag {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.logo__heritage {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-toggle:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: transform var(--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;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    flex: 1;
  }

  .site-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs) var(--space-md);
  }

  .site-nav__link {
    display: flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    min-height: 44px;
  }

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

  .site-nav__link:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 2px;
  }
}

.header-cta {
  display: none;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .header-cta { display: flex; }
}

/* Mobile nav overlay */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(100dvh - var(--header-h));
  z-index: 101;
  background: var(--color-white);
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

.site-nav.is-open .site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.site-nav.is-open .site-nav__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.site-nav.is-open .site-nav__link:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

body.nav-open {
  overflow: hidden;
}

/* Hero — asymmetric magazine */
.hero {
  background: var(--color-graphite);
  color: #fff;
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(255, 209, 0, 0.08) 100%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--space-2xl);
    align-items: center;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-black);
  background: var(--color-yellow);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero__kicker {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-yellow);
  background: var(--color-yellow-glow);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.hero h1 { color: #fff; margin-bottom: var(--space-md); }

.hero__promise {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 38rem;
  margin-bottom: 0;
}

.hero .btn--dark-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn--dark-outline:hover {
  background: #fff;
  color: var(--color-black);
  border-color: #fff;
}

.hero__visual {
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .hero__visual { margin-top: 0; }
}

.hero__visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-yellow);
}

@media (min-width: 900px) {
  .hero__visual-frame {
    margin-left: var(--space-xl);
    margin-top: var(--space-lg);
  }
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--color-black);
  color: #fff;
  padding: var(--space-xl) var(--space-lg);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-wide);
  margin: 0 auto;
  text-align: center;
}

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

.trust-bar__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
}

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

.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-graphite-light);
  margin-bottom: var(--space-sm);
}

.section__label::before {
  content: '■ ';
  color: var(--color-yellow);
}

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

/* Magazine grid */
.magazine-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .magazine-grid--2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .magazine-grid--offset .magazine-grid__media {
    margin-top: var(--space-2xl);
  }
}

.magazine-grid__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-yellow);
}

/* Heritage strip */
.heritage-strip {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--color-yellow);
  color: var(--color-black);
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  font-size: 1rem;
}

.heritage-strip__year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

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

.page-hero h1 { color: #fff; margin-bottom: var(--space-md); }

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 0;
}

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

.breadcrumb a {
  color: var(--color-yellow);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }

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

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

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

@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-yellow);
    transform: translateY(-2px);
  }
}

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

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

.card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: var(--space-xs);
}

.card__price::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 2px;
  margin-right: var(--space-xs);
  vertical-align: middle;
}

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

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

.card__body .btn { width: 100%; }

/* Differentials */
.diff-list {
  display: grid;
  gap: var(--space-lg);
}

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

.diff-list--magazine {
  margin-top: var(--space-xl);
}

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

.diff-item {
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-yellow);
}

.section--gray .diff-item { background: var(--color-white); }

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

/* Testimonials */
.rating-banner {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-graphite);
  color: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border-bottom: 4px solid var(--color-yellow);
}

.rating-banner__score {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-yellow);
  margin: 0;
  line-height: 1;
}

.rating-banner__meta {
  margin: var(--space-sm) 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: 0;
}

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

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

.testimonial__author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
}

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

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

@media (min-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-mosaic .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-mosaic .gallery-item:nth-child(4) {
    grid-column: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-item:hover img { transform: scale(1.05); }
}

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

/* Location */
.location-block {
  display: grid;
  gap: var(--space-xl);
}

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

.location-info address {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

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

.map-embed iframe,
.footer__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .map-embed iframe { height: 360px; }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 40rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}

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

.faq-item__question:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: -3px;
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--color-yellow-dark);
  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 {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Catalog */
.catalog-search-wrap { margin-bottom: var(--space-xl); }

.catalog-search {
  width: 100%;
  min-height: 52px;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.catalog-search:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px var(--color-yellow-glow);
}

.catalog-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-xl);
}

.catalog-card.is-hidden { display: none; }

/* 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);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text);
}

/* Quote steps */
.quote-steps {
  counter-reset: step;
  max-width: 36rem;
}

.quote-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.quote-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA band */
.cta-band {
  background: var(--color-black);
  color: #fff;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  border-top: 5px solid var(--color-yellow);
}

.cta-band h2 { color: #fff; margin-bottom: var(--space-md); }

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin: 0 auto var(--space-lg);
}

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

.legal-content h2:first-child { margin-top: 0; }

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  background: var(--color-graphite);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.footer__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-md);
  font-size: 1rem;
}

.footer__nap {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.footer__list li { margin-bottom: var(--space-sm); }

.footer__list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  height: var(--mobile-bar-h);
  background: var(--color-white);
  border-top: 3px solid var(--color-yellow);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-bar__btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: -3px;
}

.mobile-bar__btn--wa {
  background: #25d366;
  color: #fff;
}

.mobile-bar__btn--wa:hover { background: #1fb855; color: #fff; }

.mobile-bar__btn--call {
  background: var(--color-black);
  color: #fff;
}

.mobile-bar__btn--call:hover { background: #222; color: #fff; }
