﻿:root {
  --ink:        #0e1a2b;
  --ink-2:      #12233b;
  --steel:      #33475e;
  --slate:      #5b6b7d;
  --line:       #e2e6ec;
  --paper:      #ffffff;
  --paper-2:    #f4f6f9;
  --amber:      #f5a623;
  --amber-600:  #e0900f;
  --wa:         #25d366;
  --wa-600:     #1ebe5a;
  --text:       #1f2a37;
  --muted:      #64707d;
  --maxw: 1140px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(14, 26, 43, .10);
  --shadow-sm: 0 4px 14px rgba(14, 26, 43, .08);
  --ff-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 {
  font-family: var(--ff-head);
  line-height: 1.1;
  letter-spacing: .3px;
  margin: 0 0 .4em;
  color: var(--ink);
}
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: 1.3rem; }
.eyebrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber-600);
  font-weight: 700;
  font-size: .95rem;
  margin: 0 0 .3em;
}
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--ff-head);
  font-weight: 700; font-size: 1.15rem; letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 10px; border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 22px; height: 22px; fill: currentColor; }
.btn:active { transform: translateY(1px); }
.btn--wa { background: var(--wa); color: #04371c; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--wa-600); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.topbar { background: var(--ink); color: #cdd6e0; font-size: .88rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 36px; padding: 4px 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #cdd6e0; }
.topbar__item svg { width: 14px; height: 14px; fill: var(--amber); flex: none; }
.topbar__item:hover { color: #fff; }
.topbar__loc { margin-left: auto; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.brand { display: inline-flex; align-items: center; gap: 12px; max-width: calc(100% - 54px); }
.brand__text strong {
  display: block; font-family: var(--ff-head); font-size: clamp(.95rem, 3.5vw, 1.2rem); color: var(--ink);
  line-height: 1.1; text-transform: uppercase; letter-spacing: .5px;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 600; color: var(--steel); font-size: .98rem; transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav__cta { background: var(--wa); color: #04371c !important; padding: 10px 18px; border-radius: 8px; font-weight: 700; }
.nav__cta:hover { background: var(--wa-600); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hero {
  position: relative;
  color: #fff;
  min-height: calc(100svh - 94px);
  min-height: calc(100dvh - 94px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10,18,30,.78), rgba(10,18,30,.92)),
    radial-gradient(1200px 500px at 80% -10%, rgba(245,166,35,.18), transparent 60%),
    url("../imagenes/foto8.jpeg") center 30% / cover no-repeat,
    var(--ink);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  padding: clamp(48px, 8vw, 100px) 20px clamp(48px, 8vw, 100px) clamp(28px, 6vw, 72px);
}
.hero__title { font-size: clamp(2rem, 6vw, 4.2rem); text-transform: uppercase; margin-bottom: .4em; color: #fff; line-height: 1.05; }
.hero__title span { color: var(--amber); }
.hero__desc { font-size: clamp(1rem, 2vw, 1.15rem); color: #c9d3de; max-width: 540px; margin: 0 0 28px; }
.hero__gold { color: var(--amber); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.section { padding: clamp(36px, 5vw, 60px) 0; }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 760px; margin: 0 auto clamp(24px, 4vw, 38px); text-align: center; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin: 0; }
.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--steps { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfd6df; }
.card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 22px 24px 26px; }
.card h3 { color: var(--ink); margin-bottom: .3em; }
.card p { color: var(--muted); margin: 0; }
.stats {
  color: #fff; padding: clamp(48px, 7vw, 76px) 0;
  background:
    linear-gradient(180deg, rgba(10,18,30,.92), rgba(10,18,30,.97)),
    radial-gradient(900px 380px at 85% -20%, rgba(245,166,35,.16), transparent 60%),
    var(--ink);
}
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 10px; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 12%; height: 76%;
  width: 1px; background: rgba(255,255,255,.12);
}
.stat__ico { width: 52px; height: 52px; fill: var(--amber); margin-bottom: 4px; }
.stat__num { font-family: var(--ff-head); font-size: clamp(2.6rem, 5.5vw, 3.6rem); color: var(--amber); line-height: 1; margin-bottom: 4px; }
.stat__title { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.4rem); color: #fff; line-height: 1.1; }
.stat__sub { color: #9fb0c2; font-size: .92rem; line-height: 1.25; }
.shot {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--paper-2); box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .5px;
  font-size: .82rem; font-weight: 700; color: #fff;
  background: rgba(14,26,43,.82); padding: 4px 11px; border-radius: 6px;
}
.compare { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 800px; margin: 0 auto 64px; }
.compare__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.compare__pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.compare__pair .shot { aspect-ratio: 4 / 3; box-shadow: none; }
.compare__arrow { font-size: 2.2rem; color: var(--amber-600); font-weight: 700; }
.compare__caption { margin: 16px 4px 4px; text-align: center; color: var(--steel); font-weight: 600; font-size: 1.02rem; }
.shot[data-cat] figcaption { pointer-events: none; }
.compare__ph figcaption { top: auto; bottom: 10px; left: 10px; font-size: .95rem; padding: 5px 13px; }
.compare__ph[data-cat="danadas"] figcaption { background: rgba(190,60,40,.95); }
.compare__ph[data-cat="reparadas"] figcaption { background: rgba(30,190,90,.95); color: #04371c; }
.gallery__title { text-align: center; color: var(--ink); font-size: 1.8rem; margin: 0 0 6px; }
.gallery__hint { text-align: center; color: var(--muted); margin: 0 0 28px; font-size: .98rem; }
.galleries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.minicar { position: relative; }
.minicar__tag {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .5px;
  font-weight: 700; font-size: .9rem; color: #fff;
  padding: 5px 14px; border-radius: 40px; box-shadow: var(--shadow-sm);
}
.minicar__tag--danadas { background: rgba(190,60,40,.97); }
.minicar__tag--proceso { background: rgba(224,144,15,.98); color: #241500; }
.minicar__tag--reparadas { background: rgba(30,190,90,.98); color: #04371c; }
.minicar__viewport { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper-2); }
.minicar__track { display: flex; transition: transform .4s ease; }
.minicar__track .shot { min-width: 100%; aspect-ratio: 4 / 3; border-radius: 0; box-shadow: none; }
.minicar .shot figcaption { display: none; }
.minicar__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; cursor: pointer;
  background: rgba(14,26,43,.6); color: #fff; font-size: 1.7rem; line-height: 1;
  border-radius: 50%; display: grid; place-items: center; z-index: 2;
  transition: background .15s ease;
}
.minicar__btn:hover { background: rgba(14,26,43,.9); }
.minicar__btn--prev { left: 10px; }
.minicar__btn--next { right: 10px; }
.minicar__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.minicar__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #c6cedb; cursor: pointer; padding: 0; transition: all .15s ease; }
.minicar__dots button.is-active { background: var(--amber); }
.brands { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px 24px; align-items: center; }
.brand-card {
  background: none; border: none; box-shadow: none; padding: 0; min-height: 0;
  display: grid; place-items: center;
  transition: transform .15s ease;
}
.brand-card:hover { transform: translateY(-4px); }
.brand-card img { max-height: 78px; max-width: 100%; width: auto; object-fit: contain; }
.brand-card--text { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--ink); text-align: center; line-height: 1; }
.brands__note { text-align: center; color: var(--muted); margin: 26px 0 0; font-size: 1rem; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.step__num { display: grid; place-items: center; width: 46px; height: 46px; background: var(--amber); color: var(--ink); font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; border-radius: 10px; margin-bottom: 16px; }
.step h3 { color: var(--ink); margin-bottom: .25em; }
.step p { color: var(--muted); margin: 0; }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why__lead { color: var(--muted); font-size: 1.08rem; margin: 0 0 22px; }
.why__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 16px; }
.why__list li { display: flex; gap: 14px; align-items: flex-start; }
.why__list svg { width: 24px; height: 24px; fill: var(--wa-600); flex: none; margin-top: 2px; }
.why__list strong { display: block; color: var(--ink); font-size: 1.05rem; }
.why__list span { color: var(--muted); font-size: .97rem; }
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); }
.carousel__track { display: flex; transition: transform .5s ease; }
.carousel__slide { min-width: 100%; }
.carousel__slide img { width: 100%; height: clamp(280px, 42vw, 460px); object-fit: cover; display: block; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: none; cursor: pointer;
  background: rgba(14,26,43,.55); color: #fff; font-size: 1.8rem; line-height: 1;
  border-radius: 50%; display: grid; place-items: center;
  transition: background .15s ease;
}
.carousel__btn:hover { background: rgba(14,26,43,.85); }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 8px; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: all 0.3s ease; }
.carousel__dots button.is-active { background: var(--amber); }
.contact-cta {
  background:
    linear-gradient(180deg, rgba(10,18,30,.88), rgba(10,18,30,.96)),
    radial-gradient(700px 300px at 20% 120%, rgba(245,166,35,.25), transparent 60%),
    url("../imagenes/foto5.jpeg") center / cover no-repeat, var(--ink);
  color: #fff; text-align: center; padding: clamp(56px, 8vw, 96px) 0;
}
.eyebrow--light { color: var(--amber); }
.contact-cta h2 { color: #fff; }
.contact-cta__lead { color: #d3dbe4; font-size: 1.15rem; margin: 0 auto 28px; max-width: 620px; }
.contact-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.contact-cta__facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.contact-cta__facts li { display: inline-flex; align-items: center; gap: 9px; color: #dfe5ec; font-weight: 500; }
.contact-cta__facts svg { width: 20px; height: 20px; fill: var(--amber); flex: none; }
.contact-cta__facts a:hover { color: #fff; }
.footer { background: var(--ink); color: #b9c3ce; padding: 56px 0 0; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; }
.footer__brand { max-width: 460px; }
.footer__brand strong { font-family: var(--ff-head); font-size: 1.4rem; color: #fff; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 10px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a:hover { color: var(--amber); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .9rem; }
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 60px; height: 60px; background: var(--wa); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
.wa-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.wa-float svg { width: 34px; height: 34px; fill: #fff; position: relative; z-index: 2; }
.wa-float:hover { background: var(--wa-600); }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); animation: waPulse 2.2s ease-out infinite; z-index: 1; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.9); opacity: 0; } 100% { opacity: 0; } }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 12, 20, .93);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.1rem; }
.lightbox__close { position: absolute; top: 16px; right: 20px; width: 48px; height: 48px; font-size: 2.2rem; line-height: 1; color: #fff; background: rgba(255,255,255,.12); border: none; border-radius: 50%; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.4rem; line-height: 1; color: #fff; background: rgba(255,255,255,.12); border: none; border-radius: 50%; cursor: pointer; }
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--steps { grid-template-columns: repeat(2, 1fr); }
  .galleries { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 28px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .stat:not(:last-child)::after { display: none; }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .why__media { order: -1; }
  .compare { max-width: 620px; }
  .brands { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 721px) {
  .hero__inner { padding-left: clamp(48px, 8vw, 100px); }
}
@media (max-width: 720px) {
  .topbar__hours { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 90px 28px 28px; gap: 4px;
    box-shadow: -12px 0 40px rgba(0,0,0,.2);
    transform: translateX(100%); transition: transform .28s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav__cta { border-bottom: none !important; text-align: center; margin-top: 14px; }
  .nav-toggle { display: flex; z-index: 55; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 460px) {
  .grid--services { grid-template-columns: 1fr; }
  .grid--steps { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float__pulse { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .shot:hover img { transform: none; }
  html { scroll-behavior: auto; }
}
.topbar__item { 
  white-space: nowrap; 
}
@media (max-width: 720px) {
  .topbar__loc { 
    display: none; 
  }
  .topbar__inner { 
    justify-content: center; 
    gap: 20px;
  }
}
