/* Tales e Toninho — deep automotive blue + red accent, asymmetric magazine layout */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blue-900: #0A2540;
  --blue-800: #123A5C;
  --blue-700: #1A4A73;
  --blue-600: #2A5F8F;
  --red: #C41E3A;
  --red-dark: #9E1830;
  --red-glow: rgba(196, 30, 58, 0.12);
  --cream: #F7F5F0;
  --white: #ffffff;
  --surface: #EEF2F6;
  --text: #0A2540;
  --text-muted: #4A5F73;
  --text-light: #E8EDF2;
  --border: rgba(10, 37, 64, 0.1);
  --whatsapp: #25d366;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 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: 4.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 16px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 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;
    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(--cream);
  -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(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--blue-900);
}

h1 { font-size: clamp(2.125rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.3125rem); font-family: var(--font-body); font-weight: 700; }

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--cream { background: var(--cream); }
.section--white { background: var(--white); }

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

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

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

.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(--blue-900) 0%, var(--blue-800) 45%, var(--red) 45%, var(--red) 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__mark svg { width: 28px; height: 28px; }

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

.logo__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.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: 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;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100dvh;
  z-index: 150;
  background: var(--blue-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(--red); }

.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.6rem;
    font-size: 0.6875rem;
    min-height: 40px;
    max-width: 8.5rem;
    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-sm);
    align-items: center;
    flex-wrap: wrap;
  }
  .site-nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: var(--space-xs) 0;
    border: none;
    min-height: auto;
  }
}

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

/* 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: 600;
  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(--red);
  color: var(--white);
  border-color: var(--red);
}

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

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

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

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

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

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

/* Hero — asymmetric magazine */
.hero {
  background: var(--blue-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, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.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(232, 237, 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(--red);
  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(--blue-900);
  margin: 0;
  line-height: 1.1;
}

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

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

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

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

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

.mag-grid--asymmetric {
  gap: var(--space-2xl);
  align-items: center;
}

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

.mag-offset-img {
  position: relative;
}

.mag-offset-img::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.mag-offset-img img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Cards */
.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), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.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(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

/* 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(--red);
  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(--red);
  line-height: 1;
  flex-shrink: 0;
}

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

.rating-banner__text strong { color: var(--blue-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(--red);
  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(--blue-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(--surface);
}

@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(10, 37, 64, 0.9));
  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(--surface);
}

.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(--blue-900);
  min-height: 48px;
  gap: var(--space-md);
}

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

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--red);
  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(--blue-900) 0%, var(--blue-800) 100%);
  color: var(--text-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-top: 4px solid var(--red);
}

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

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

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

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

.page-hero p {
  color: rgba(232, 237, 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(--red); }

/* 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(--blue-600);
}

/* 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(--blue-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(--red);
  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(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: var(--space-xs);
}

/* 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(--blue-900);
  color: rgba(232, 237, 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;
}

.footer__nap { line-height: 1.8; }

.footer__nap a { color: var(--red); 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(232, 237, 242, 0.8);
  text-decoration: none;
}

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

.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(--blue-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.2);
}

@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(--red); color: var(--white); }
.mobile-bar__btn--call:hover { background: var(--red-dark); color: var(--white); }
