:root {
  --black: #080a0d;
  --navy: #101c32;
  --navy-2: #172843;
  --blue: #153ea5;
  --electric: #2468e8;
  --blue-light: #dceaff;
  --white: #fff;
  --soft: #f3f5f7;
  --steel: #98a2ae;
  --graphite: #252a31;
  --whatsapp: #25d366;
  --danger: #d52b2b;
  --shadow: 0 20px 55px rgba(16, 28, 50, .11);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; color: var(--graphite); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #76a7ff; outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 82px 0; }
.section--soft { background: linear-gradient(180deg, #f7f9fc, #f2f5f9); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; color: var(--navy); padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

h1, h2, h3 { margin: 0 0 14px; color: var(--navy); line-height: 1.08; letter-spacing: -.025em; }
h1, h2 { font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; font-weight: 800; }
h1 { font-size: clamp(3rem, 5.5vw, 5.35rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); }
h3 { font-size: 1.16rem; }
p { margin: 0 0 18px; }
.eyebrow { margin-bottom: 10px; color: #d8e5ff; text-transform: uppercase; font-weight: 800; letter-spacing: .13em; font-size: .75rem; }
.eyebrow--blue { color: var(--blue); }
.section-heading { margin-bottom: 34px; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading--row > div { max-width: 760px; }
.section-heading--side p { color: #657081; }
.section-note { max-width: 360px; color: #687386; font-size: .9rem; }
.note { margin-top: 18px; color: #6a7380; font-size: .9rem; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 23px; border: 1px solid var(--blue); border-radius: 7px; color: #fff; background: linear-gradient(135deg, #153ea5, #0b55d5); font-weight: 800; box-shadow: 0 10px 24px rgba(21, 62, 165, .22); transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px rgba(21, 62, 165, .32); }
.button--small { min-height: 34px; padding: 0 15px; font-size: .78rem; border-radius: 5px; }
.button--outline { border-color: rgba(255,255,255,.6); background: rgba(5, 14, 31, .28); box-shadow: none; backdrop-filter: blur(8px); }
.button--ghost { border-color: rgba(255,255,255,.3); background: transparent; box-shadow: none; }
.button--outline-blue { color: var(--blue); background: #fff; box-shadow: none; }
.button--full { width: 100%; }
.text-link { color: var(--blue); font-weight: 800; white-space: nowrap; }

.topbar { position: relative; z-index: 102; color: #dfe7f5; background: #0b1424; font-size: .75rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__item span { color: #8bb0ff; }
.topbar .button { margin-left: auto; }

.header { position: sticky; top: 0; z-index: 100; height: 82px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(16,28,50,.08); backdrop-filter: blur(14px); transition: box-shadow .25s, height .25s; }
.header.is-scrolled { box-shadow: 0 12px 30px rgba(9, 21, 41, .12); }
.header__inner { height: 100%; display: flex; align-items: center; }
.brand { width: 128px; align-self: stretch; display: grid; place-items: center; }
.brand img { width: 104px; height: 72px; object-fit: contain; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-size: .83rem; font-weight: 700; color: #303847; }
.nav a:not(.button) { padding: 30px 0; border-bottom: 3px solid transparent; }
.nav a:hover, .nav a.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.button--nav { min-height: 42px; padding-inline: 18px; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 8px; background: var(--navy); padding: 12px; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; }

.hero { position: relative; min-height: 690px; color: #fff; background: #0d1728; display: flex; align-items: center; padding: 70px 0 115px; }
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 52%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,31,.94) 0%, rgba(5,14,31,.77) 38%, rgba(5,14,31,.18) 70%, rgba(5,14,31,.05) 100%), linear-gradient(0deg, rgba(5,14,31,.35), transparent 45%); }
.hero__content { position: relative; z-index: 2; }
.hero__copy { max-width: 650px; }
.hero h1 { color: #fff; max-width: 700px; }
.hero h1 span { color: #2d73ef; }
.hero__lead { max-width: 590px; color: #eef4ff; font-size: 1.19rem; }
.hero__promise { max-width: 560px; display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; font-weight: 650; color: #dce7f8; }
.hero__promise span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; border: 1px solid #9ebeff; color: #9ebeff; flex: 0 0 auto; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-features { position: absolute; z-index: 4; left: 50%; bottom: 26px; transform: translateX(-50%); min-height: 66px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: rgba(255,255,255,.95); color: var(--graphite); border-radius: 12px; box-shadow: 0 18px 48px rgba(4,12,26,.22); overflow: hidden; }
.hero-feature { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 18px; font-size: .84rem; font-weight: 700; border-right: 1px solid #e4e8ef; }
.hero-feature:last-child { border-right: 0; }
.hero-feature img { width: 34px; height: 34px; object-fit: contain; }

.trust__layout { display: grid; grid-template-columns: 210px 1fr; gap: 42px; align-items: center; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { min-height: 190px; padding: 25px 20px; text-align: center; border: 1px solid #e2e7ef; border-radius: 13px; background: #fff; box-shadow: 0 12px 36px rgba(16,28,50,.06); }
.trust-card img { margin: 0 auto 8px; width: 62px; height: 62px; object-fit: contain; }
.trust-card h3 { margin-bottom: 7px; }
.trust-card p { margin: 0; font-size: .88rem; color: #657081; }

.services-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: repeat(2, 245px); gap: 16px; }
.service-card { position: relative; min-height: 0; overflow: hidden; border-radius: 14px; background: #fff; border: 1px solid #e3e8f1; box-shadow: 0 13px 35px rgba(16,28,50,.07); }
.service-card img { width: 100%; height: 58%; object-fit: cover; }
.service-card__text { padding: 18px 18px 13px; height: 42%; }
.service-card__text > span { color: var(--electric); font-size: .72rem; font-weight: 900; }
.service-card__text h3 { color: var(--blue); font-size: 1rem; margin: 3px 0 5px; }
.service-card__text p { margin: 0; font-size: .8rem; color: #6b7482; }
.service-card--featured { grid-row: 1 / 3; min-height: 506px; color: #fff; background: var(--navy); }
.service-card--featured img { height: 100%; }
.service-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,16,34,.96), rgba(6,16,34,.12) 75%); }
.service-card__content { position: absolute; inset: auto 0 0; padding: 32px; }
.service-card__number { display: inline-block; color: #7ba8ff; font-size: .76rem; font-weight: 900; margin-bottom: 10px; }
.service-card__content h3 { color: #fff; font-size: 1.7rem; }
.service-card__content p { color: #d5e0ef; }
.service-card__content a { color: #fff; font-weight: 800; }
.service-card--wide { grid-column: span 1; }

.diagnostic__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.diagnostic-panel { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 510px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.diagnostic-panel > div { position: relative; z-index: 2; max-width: 56%; padding: 44px 0 44px 42px; }
.diagnostic-panel h2 { color: #fff; font-size: 2.4rem; }
.diagnostic-panel p { color: #cbd8ea; }
.diagnostic-panel > img { position: absolute; right: 0; top: 0; width: 51%; height: 100%; object-fit: cover; mask-image: linear-gradient(90deg, transparent, #000 26%); }
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--electric); font-weight: 900; }
.check-list--light li::before { color: #8bb4ff; }
.systems { padding: 30px 34px; border: 1px solid #e2e8f0; border-radius: var(--radius); background: #fff; }
.systems h2 { font-size: 2.35rem; }
.systems__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-top: 28px; }
.systems__grid article { display: flex; gap: 15px; align-items: flex-start; }
.system-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid #c9d8f5; border-radius: 10px; color: var(--blue); background: #eff5ff; font-size: 1.3rem; }
.systems__grid h3 { color: var(--blue); margin: 0 0 5px; font-size: 1rem; }
.systems__grid p { margin: 0; font-size: .82rem; color: #697487; }

.paint__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 44px; align-items: center; }
.paint__copy h2 { font-size: 2.65rem; }
.before-after { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; border-radius: 16px; background: var(--navy); box-shadow: var(--shadow); touch-action: none; }
.before-after__image { position: absolute; inset: 0; overflow: hidden; }
.before-after__image img { width: 100%; height: 100%; object-fit: cover; }
.before-after__image span { position: absolute; bottom: 16px; padding: 7px 11px; border-radius: 5px; background: rgba(8,10,13,.8); color: #fff; font-size: .78rem; font-weight: 800; }
.before-after__image--after span { right: 16px; }
.before-after__image--before { width: 50%; border-right: 2px solid #fff; }
.before-after__image--before img { width: calc(100vw); max-width: none; }
.before-after__image--before span { left: 16px; }
.before-after input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; z-index: 3; cursor: ew-resize; }
.before-after__handle { position: absolute; top: 50%; left: 50%; z-index: 2; transform: translate(-50%,-50%); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--blue); background: #fff; box-shadow: 0 5px 18px rgba(0,0,0,.25); font-weight: 900; }

.assistance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.assistance-card { position: relative; min-height: 285px; display: grid; grid-template-columns: 86px 1fr; gap: 24px; align-items: start; padding: 35px; overflow: hidden; border: 1px solid #dfe5ee; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.assistance-card__icon { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 16px; color: var(--blue); background: #eef4ff; font-size: 2.4rem; }
.assistance-card h2 { font-size: 2rem; }
.assistance-card p { color: #697487; }
.assistance-card--tow > div:nth-child(2) { position: relative; z-index: 2; max-width: 72%; }
.assistance-card--tow > img { position: absolute; right: 0; bottom: 0; width: 42%; height: 100%; object-fit: cover; mask-image: linear-gradient(90deg, transparent, #000 35%); }

.blue-band { padding: 30px 0; color: #fff; background: linear-gradient(110deg, #07379d, #0d5adb); }
.blue-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.blue-band__grid > div { display: flex; gap: 16px; align-items: center; padding: 8px 38px; border-right: 1px solid rgba(255,255,255,.25); }
.blue-band__grid > div:last-child { border-right: 0; }
.blue-band__grid > div > span { font-size: 2.1rem; color: #dce9ff; }
.blue-band h3 { color: #fff; margin: 0 0 3px; }
.blue-band p { margin: 0; color: #dfeaff; font-size: .84rem; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter { border: 1px solid #dce2ec; border-radius: 999px; background: #f3f5f8; color: #596273; padding: 8px 15px; font-size: .78rem; font-weight: 800; }
.filter.is-active, .filter:hover { color: #fff; border-color: var(--blue); background: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery-item { position: relative; aspect-ratio: .95; padding: 0; border: 0; overflow: hidden; border-radius: 12px; background: #dde3eb; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item span { position: absolute; inset: auto 0 0; padding: 24px 10px 10px; color: #fff; font-size: .78rem; font-weight: 800; text-align: left; background: linear-gradient(transparent, rgba(5,14,31,.9)); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item[hidden] { display: none; }

.form-section__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: start; }
.form-intro { position: sticky; top: 120px; }
.form-intro h2 { font-size: 3rem; }
.process-list { margin-top: 32px; }
.process-list > div { display: flex; gap: 14px; margin: 20px 0; }
.process-list span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 900; }
.process-list p { margin: 0; color: #697487; }
.process-list strong { display: block; color: var(--navy); }
.vehicle-form { padding: 34px; border: 1px solid #dfe5ee; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.vehicle-form label, .vehicle-form legend { color: #293246; font-size: .84rem; font-weight: 800; }
.vehicle-form input, .vehicle-form select, .vehicle-form textarea { width: 100%; margin-top: 7px; border: 1px solid #cfd7e3; border-radius: 8px; background: #fbfcfe; padding: 12px 13px; color: var(--graphite); }
.vehicle-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.form-row--three { grid-template-columns: 1fr 1fr .65fr; }
.vehicle-form > label { display: block; margin-bottom: 16px; }
.vehicle-form fieldset { margin: 0 0 17px; padding: 0; border: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; border: 1px solid #ced7e3; border-radius: 999px; padding: 8px 13px; color: #536075; background: #f8fafc; }
.chips input:checked + span { color: #fff; border-color: var(--blue); background: var(--blue); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; color: #667184 !important; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 18px; }
.form-error { min-height: 22px; color: #b12020; font-size: .85rem; }

.faq__grid { display: grid; grid-template-columns: 280px 1fr; gap: 60px; }
.accordion { border-top: 1px solid #dfe4eb; }
.accordion-item { border-bottom: 1px solid #dfe4eb; }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 19px 6px; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 800; }
.accordion-item button span:last-child { font-size: 1.35rem; transition: transform .2s; }
.accordion-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s; }
.accordion-panel > p { overflow: hidden; margin: 0; color: #657083; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding: 0 6px 20px; }

.confirmation-tag { display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border-radius: 999px; color: #884400; background: #fff3d6; font-size: .76rem; font-weight: 800; }
.location__grid { display: grid; grid-template-columns: .8fr 1.15fr .8fr; gap: 16px; }
.location-card, .contact-card, .map-shell { min-height: 285px; border: 1px solid #dfe5ed; border-radius: var(--radius); background: #fff; overflow: hidden; }
.location-card, .contact-card { padding: 28px; }
.location-card > div { display: flex; gap: 14px; margin-bottom: 24px; }
.location-card h3 { margin: 0 0 4px; font-size: .95rem; }
.location-card p { margin: 0; color: #687386; font-size: .86rem; }
.location-icon { color: var(--blue); }
.map-shell { display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, #e8eef7, #d6dee9); }
.map-shell iframe { display: block; width: 100%; min-height: 285px; height: 100%; border: 0; }
.map-load { display: grid; place-items: center; gap: 8px; min-width: 210px; min-height: 90px; padding: 18px; border: 1px solid #bac8db; border-radius: 12px; color: var(--blue); background: rgba(255,255,255,.88); font-weight: 800; }
.map-load span { font-size: 1.7rem; }
.contact-card > a { display: flex; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid #e8ecf2; }
.contact-card > a:last-child { border-bottom: 0; }
.contact-card strong, .contact-card small { display: block; }
.contact-card small { color: #748093; font-size: .75rem; }
.contact-icon { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 9px; color: var(--blue); background: #eef4ff; }
.contact-icon svg { width: 21px; height: 21px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.contact-icon svg rect, .contact-icon svg circle { fill: none; }
.contact-icon--wa { color: #138b42; background: #e8fbee; }
.contact-icon--instagram { color: #b32678; background: #fff0f8; }
.contact-icon--facebook { color: #1877f2; background: #edf5ff; }
.contact-icon--threads { color: #111; background: #f1f2f4; }

.final-cta { position: relative; padding: 62px 0; color: #fff; background: var(--navy); overflow: hidden; }
.final-cta__bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,31,.95), rgba(5,14,31,.6)), url("https://images.pexels.com/photos/4116224/pexels-photo-4116224.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover; opacity: .86; }
.final-cta__content { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #d6e1f0; }
.final-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.footer { padding: 52px 0 18px; color: #d0d9e7; background: #091527; }
.footer__grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 32px; }
.footer h2 { color: #fff; font-family: inherit; font-size: .95rem; letter-spacing: 0; }
.footer p, .footer a { display: block; margin: 0 0 8px; color: #aebbd0; font-size: .8rem; }
.footer a:hover { color: #fff; }
.footer-social { display: grid; gap: 6px; margin-top: 12px; }
.footer-social a { display: flex; align-items: center; gap: 8px; margin: 0; }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; flex: 0 0 auto; }
.footer-social svg rect, .footer-social svg circle { fill: none; }
.footer__brand img { width: 160px; height: 120px; object-fit: contain; margin-bottom: 8px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.3)); }
.footer-map { display: inline-flex !important; border: 1px solid #53647e; border-radius: 5px; padding: 8px 10px; margin-top: 10px !important; }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 34px; padding-top: 18px; border-top: 1px solid #26364e; }
.footer__bottom p { font-size: .72rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: var(--whatsapp); box-shadow: 0 12px 28px rgba(15,112,51,.35); font-size: 1.7rem; }
.back-top { position: fixed; right: 28px; bottom: 90px; z-index: 89; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: var(--navy); opacity: 0; visibility: hidden; transition: .2s; }
.back-top.is-visible { opacity: 1; visibility: visible; }
.lightbox { max-width: min(980px, 92vw); padding: 0; border: 0; border-radius: 15px; background: #0b1525; color: #fff; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.8); }
.lightbox img { max-height: 78vh; width: 100%; object-fit: contain; }
.lightbox p { padding: 12px 20px 18px; margin: 0; }
.lightbox__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(8,10,13,.76); font-size: 1.5rem; }

@media (max-width: 1100px) {
  .topbar__item:nth-child(3) { display: none; }
  .nav { gap: 16px; }
  .nav a:nth-child(5), .nav a:nth-child(6) { display: none; }
  .trust__layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1.1fr 1fr; grid-template-rows: repeat(3, 225px); }
  .service-card--featured { grid-row: 1 / 3; }
  .diagnostic__grid { grid-template-columns: 1fr; }
  .diagnostic-panel { min-height: 450px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .section { padding: 64px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__item { display: none; }
  .topbar__link { display: inline-flex; }
  .topbar .button { margin-left: 0; }
  .header { height: 70px; }
  .brand { width: 90px; }
  .brand img { width: 82px; height: 60px; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 108px 14px auto; display: none; max-height: calc(100vh - 125px); overflow: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border-radius: 14px; color: #fff; background: #0d1b31; box-shadow: 0 24px 60px rgba(0,0,0,.32); }
  .nav.is-open { display: flex; }
  .nav a, .nav a:not(.button) { display: block !important; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav .button { margin-top: 10px; border-bottom: 0; }

  .hero { min-height: 790px; align-items: flex-end; padding: 170px 0 150px; }
  .hero__media img { object-position: center 55%; }
  .hero__overlay { background: linear-gradient(0deg, rgba(5,14,31,.98) 0%, rgba(5,14,31,.86) 44%, rgba(5,14,31,.15) 74%, rgba(5,14,31,.02) 100%); }
  .hero__copy { max-width: 100%; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4rem); max-width: 520px; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__actions .button--ghost { grid-column: 1 / -1; }
  .hero-features { bottom: 18px; grid-template-columns: 1fr 1fr; min-height: auto; }
  .hero-feature { padding: 9px 10px; font-size: .72rem; border-bottom: 1px solid #e4e8ef; }
  .hero-feature:nth-child(2) { border-right: 0; }
  .hero-feature:nth-child(3), .hero-feature:nth-child(4) { border-bottom: 0; }
  .hero-feature img { width: 26px; height: 26px; }

  .section-heading--row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service-card--featured { grid-column: 1 / -1; grid-row: auto; min-height: 440px; }
  .service-card { min-height: 250px; }
  .service-card--wide { grid-column: 1 / -1; }
  .paint__grid, .assistance__grid, .form-section__grid, .faq__grid, .location__grid { grid-template-columns: 1fr; }
  .paint__copy { max-width: 620px; }
  .assistance-card--tow > div:nth-child(2) { max-width: 66%; }
  .blue-band__grid { grid-template-columns: 1fr; }
  .blue-band__grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding: 18px 20px; }
  .blue-band__grid > div:last-child { border-bottom: 0; }
  .form-intro { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .map-shell { min-height: 300px; }
  .final-cta__content { flex-direction: column; align-items: flex-start; }
  .final-cta__actions { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); --radius: 14px; }
  .topbar__inner { gap: 10px; }
  .topbar__link { font-size: .68rem; }
  .button--small { padding-inline: 10px; }
  .nav { top: 108px; }
  h2 { font-size: 2.15rem; }
  .hero { min-height: 790px; padding: 220px 0 164px; }
  .hero__media img { object-position: center 54%; }
  .hero h1 { font-size: 2.7rem; line-height: 1.02; }
  .hero__lead { font-size: .93rem; }
  .hero__promise { font-size: .82rem; }
  .hero__actions { grid-template-columns: 1fr; }
  .hero__actions .button--ghost { grid-column: auto; }
  .hero-feature { justify-content: flex-start; gap: 7px; }
  .trust-grid { gap: 10px; }
  .trust-card { min-height: 170px; padding: 18px 10px; }
  .trust-card img { width: 52px; height: 52px; }
  .trust-card p { font-size: .75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured, .service-card--wide { grid-column: auto; }
  .service-card--featured { min-height: 420px; }
  .service-card { min-height: 265px; }
  .diagnostic-panel { min-height: 610px; }
  .diagnostic-panel > div { max-width: 100%; padding: 34px 26px 270px; }
  .diagnostic-panel > img { top: auto; bottom: 0; width: 100%; height: 270px; mask-image: linear-gradient(0deg, #000 68%, transparent); }
  .systems { padding: 28px 22px; }
  .systems__grid { grid-template-columns: 1fr; }
  .paint__copy h2 { font-size: 2.25rem; }
  .before-after { aspect-ratio: 4 / 3; }
  .assistance-card { grid-template-columns: 1fr; padding: 26px; }
  .assistance-card--tow { padding-bottom: 180px; }
  .assistance-card--tow > div:nth-child(2) { max-width: 100%; }
  .assistance-card--tow > img { width: 100%; height: 185px; mask-image: linear-gradient(0deg, #000 75%, transparent); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-form { padding: 22px 16px; }
  .form-row, .form-row--three { grid-template-columns: 1fr; }
  .faq__grid { gap: 20px; }
  .location-card, .contact-card { padding: 22px; }
  .final-cta__actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 5px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .back-top { right: 21px; bottom: 82px; }
}

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

/* Icono de WhatsApp generado para C&R Taller Automotriz */
.whatsapp-icon,
.button__icon,
.contact-icon--wa img,
.whatsapp-float img {
  display: block;
  object-fit: contain;
}
.whatsapp-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.whatsapp-icon--small { width: 17px; height: 17px; }
.button__icon { width: 22px; height: 22px; margin-right: 9px; flex: 0 0 auto; }
.contact-icon--wa { padding: 3px; background: #e8fbee; }
.contact-icon--wa img { width: 32px; height: 32px; }
.footer-whatsapp { display: flex !important; align-items: center; gap: 8px; width: fit-content; }
.footer-whatsapp .whatsapp-icon { width: 18px; height: 18px; }
.whatsapp-float {
  width: 64px;
  height: 64px;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: transform .2s ease;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 18px rgba(15,112,51,.38));
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
@media (max-width: 720px) {
  .whatsapp-float { width: 58px; height: 58px; }
}
