/* =========================================================================
   Torque Garage — hoja de estilos (tema oscuro automotriz)
   ========================================================================= */

:root {
  /* Superficies */
  --bg:        #0b0f14;   /* negro carbón */
  --bg-2:      #0f151c;
  --surface:   #141b24;
  --surface-2: #1a222d;
  --graphite:  #1f2937;
  --line:      #26313f;
  --line-2:    #313d4d;

  /* Texto */
  --ink:       #f1f5f9;
  --ink-soft:  #cbd5e1;
  --muted:     #93a2b4;

  /* Acentos */
  --red:       #ef4444;
  --red-600:   #dc2626;
  --blue:      #38bdf8;
  --blue-600:  #0ea5e9;
  --wa:        #22c55e;
  --wa-600:    #16a34a;

  /* Tipografía */
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --display:   'Archivo', var(--font);
  --mono:      'JetBrains Mono', ui-monospace, monospace;

  /* Radios / sombras */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-full: 999px;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --shadow-sm: 0 6px 18px rgba(0,0,0,.35);
  --ring: 0 0 0 1px var(--line);

  /* z-index */
  --z-header: 50;
  --z-fab: 80;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.1; letter-spacing: -0.02em; }
::selection { background: var(--red); color: #fff; }

/* ---- Layout ------------------------------------------------------------ */
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.band { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 800;
  text-wrap: balance;
}
.section-head p { color: var(--muted); margin-top: .85rem; font-size: 1.05rem; }

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.note { color: var(--muted); font-size: .86rem; }
.note-center { text-align: center; max-width: 620px; margin: 1.8rem auto 0; }

/* ---- Botones ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.5rem;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .62rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-600) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(239,68,68,.32);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(239,68,68,.42); }

.btn-wa {
  background: linear-gradient(180deg, var(--wa) 0%, var(--wa-600) 100%);
  color: #052e16;
  box-shadow: 0 10px 26px rgba(34,197,94,.28);
}
.btn-wa:hover { box-shadow: 0 14px 34px rgba(34,197,94,.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(56,189,248,.08); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(11,15,20,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  color: var(--red);
  background: radial-gradient(120% 120% at 30% 20%, #1c2734, #10161e);
  border: 1px solid var(--line-2);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.brand-text em {
  font-style: normal;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop { display: none; margin-left: auto; gap: 1.6rem; }
.nav-desktop a {
  font-size: .94rem;
  color: var(--ink-soft);
  position: relative;
  padding: .2rem 0;
  transition: color .18s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--red); transition: width .22s ease;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta { display: none; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 10px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
}
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex; flex-direction: column; gap: .35rem;
  padding: .8rem 4vw 1.3rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a { padding: .7rem .3rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.nav-mobile a:last-child { border: 0; margin-top: .6rem; }
.nav-mobile .btn { color: #052e16; }
.nav-mobile[hidden] { display: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: hidden; display: flex; align-items: center; min-height: min(92vh, 760px); padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 60% at 88% 24%, rgba(239,68,68,.20), transparent 60%),
    radial-gradient(46% 60% at 6% 92%, rgba(56,189,248,.14), transparent 62%),
    linear-gradient(103deg, rgba(11,15,20,.97) 0%, rgba(11,15,20,.85) 32%, rgba(11,15,20,.40) 60%, rgba(11,15,20,.28) 100%),
    url("/img/hero-car.webp") center right / cover no-repeat,
    linear-gradient(180deg, #0d131a, var(--bg));
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 75%);
  opacity: .5;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: .4rem .8rem;
  border: 1px solid var(--line-2); border-radius: var(--r-full);
  background: rgba(20,27,36,.6);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.hero-copy h1 {
  font-size: clamp(2.3rem, 6.2vw, 4rem);
  font-weight: 900;
  margin: 1.1rem 0 1rem;
  text-wrap: balance;
}
.hero-copy .lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2.4vw, 1.18rem); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 1.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--muted); font-size: .88rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { width: 1em; height: 1em; color: var(--wa); }

/* Tarjetas del hero */
.hero-cards { display: flex; align-items: flex-end; }
.glass-card {
  background: linear-gradient(180deg, rgba(26,34,45,.92), rgba(18,24,32,.94));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-quote { position: relative; width: 100%; padding: 1.15rem 1.2rem 1.2rem; }
.hq-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.hq-title { font-family: var(--display); font-weight: 700; font-size: 1.08rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: var(--r-full);
  border: 1px solid var(--line-2); color: var(--ink-soft);
}
.chip-live { color: var(--wa); border-color: rgba(34,197,94,.4); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.hq-row { display: flex; align-items: baseline; justify-content: space-between; padding: .6rem 0; border-top: 1px solid var(--line); }
.hq-row:first-of-type { border-top: 0; }
.hq-row span { color: var(--muted); font-size: .9rem; }
.hq-row b { font-weight: 600; font-size: .98rem; }
.hq-price { font-family: var(--mono); font-size: 1.4rem !important; color: var(--blue); }
.hq-price small { font-family: var(--font); font-size: .62rem; color: var(--muted); margin-left: .35rem; font-weight: 500; }
.hero-quote .btn { margin-top: 1rem; }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini { padding: 1.1rem 1.05rem; display: flex; flex-direction: column; gap: .5rem; }
.mini b { font-family: var(--display); font-size: .98rem; font-weight: 700; }
.mini em { font-style: normal; color: var(--muted); font-size: .82rem; }
.mini-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; }
.mini-ico svg { width: 21px; height: 21px; }
.ico-blue { color: var(--blue); background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.28); }
.ico-red  { color: var(--red);  background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.28); }

/* =========================================================================
   BAND GRID (beneficios) + TRUST
   ========================================================================= */
.band-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.feature, .trust {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.feature:hover, .trust:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.feature-ico, .trust-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  color: var(--blue); background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.24);
  margin-bottom: 1rem;
}
.trust-ico { color: var(--red); background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.24); }
.feature-ico svg, .trust-ico svg { width: 23px; height: 23px; }
.feature h3, .trust h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.feature p, .trust p { color: var(--muted); font-size: .93rem; }

/* =========================================================================
   SERVICIOS (tabs)
   ========================================================================= */
.svc-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-bottom: 2rem;
}
.svc-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.15rem;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line-2); border-radius: var(--r-full);
  font-weight: 600; font-size: .92rem;
  transition: .2s;
}
.svc-tab svg { width: 1.05em; height: 1.05em; }
.svc-tab:hover { border-color: var(--blue); color: var(--ink); }
.svc-tab.is-active {
  background: linear-gradient(180deg, var(--red), var(--red-600));
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 22px rgba(239,68,68,.3);
}

.svc-panel { display: none; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.svc-panel.is-active { display: grid; }
.svc-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
  transition: transform .2s ease, border-color .2s ease;
}
.svc-item:hover { transform: translateY(-3px); border-color: var(--line-2); border-left-color: var(--red); }
.svc-main h3 { font-size: 1.06rem; font-weight: 700; display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.svc-main p { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.svc-meta { text-align: right; flex: none; }
.svc-time {
  display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .3rem;
}
.svc-price { font-family: var(--mono); font-weight: 700; font-size: 1.12rem; color: var(--blue); white-space: nowrap; }
.svc-quote { font-size: .82rem; color: var(--ink-soft); }

.tag {
  font-family: var(--font); font-weight: 700;
  font-size: .64rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: var(--r-full);
}
.tag-pop  { background: rgba(239,68,68,.16);  color: #fca5a5; }
.tag-rec  { background: rgba(56,189,248,.16); color: #7dd3fc; }
.tag-prev { background: rgba(34,197,94,.16);  color: #86efac; }

/* =========================================================================
   COTIZACIÓN
   ========================================================================= */
.quote-section { background: var(--bg-2); border-block: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.quote-intro h2 { font-size: clamp(1.8rem, 4.4vw, 2.7rem); font-weight: 800; }
.quote-intro > p { color: var(--muted); margin: .8rem 0 1.4rem; font-size: 1.03rem; }
.quote-points { list-style: none; padding: 0; display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.quote-points li { display: flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-size: .96rem; }
.quote-points svg { width: 1.1em; height: 1.1em; color: var(--wa); flex: none; }

.quote-form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: .9rem; margin-bottom: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field > span { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field-sm { grid-column: span 1; }
.field-lg { grid-column: 1 / -1; }
.field-full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  width: 100%; min-width: 0; max-width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: .72rem .85rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5f6f80; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,189,248,.18);
}
.form-hint { color: var(--muted); font-size: .78rem; text-align: center; margin-top: .8rem; }

.form-success {
  text-align: center; padding: 1.4rem .5rem;
}
.ok-ico {
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 1rem;
  border-radius: 50%; color: #052e16;
  background: linear-gradient(180deg, var(--wa), var(--wa-600));
  box-shadow: 0 10px 26px rgba(34,197,94,.32);
}
.ok-ico svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.35rem; font-weight: 800; }
.form-success p { color: var(--muted); margin-top: .5rem; }

/* =========================================================================
   PAQUETES
   ========================================================================= */
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; align-items: stretch; }
.pkg {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  transition: transform .22s ease, border-color .22s ease;
}
.pkg:hover { transform: translateY(-5px); border-color: var(--line-2); }
.pkg-featured {
  border-color: rgba(239,68,68,.5);
  background: linear-gradient(180deg, #1a222d, #131a23);
  box-shadow: 0 20px 50px rgba(239,68,68,.14);
}
.pkg-flag {
  position: absolute; top: -12px; left: 1.5rem;
  font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(180deg, var(--red), var(--red-600)); color: #fff;
  padding: .32rem .7rem; border-radius: var(--r-full);
  box-shadow: 0 6px 16px rgba(239,68,68,.4);
}
.pkg-head { margin-bottom: 1.1rem; }
.pkg-head h3 { font-size: 1.3rem; font-weight: 800; }
.pkg-price { font-family: var(--mono); font-weight: 700; font-size: 1.5rem; color: var(--blue); margin-top: .4rem; }
.pkg-list { list-style: none; padding: 0; display: grid; gap: .6rem; margin-bottom: 1.4rem; flex: 1; }
.pkg-list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: .94rem; }
.pkg-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,.18);
}
.pkg-featured .pkg-list li::before { background: var(--blue); box-shadow: 0 0 0 3px rgba(56,189,248,.2); }

/* =========================================================================
   GALERÍA
   ========================================================================= */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.shot {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  border: 1px solid var(--line); aspect-ratio: 1/1;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .7rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6,9,13,.9));
}

/* =========================================================================
   MARCAS / SHOWCASE
   ========================================================================= */
.brand-cars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.brand-car {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  aspect-ratio: 3 / 2; background: var(--surface);
}
.brand-car img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.brand-car:hover img { transform: scale(1.05); }
.brand-car figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1.7rem 1.1rem .95rem;
  background: linear-gradient(180deg, transparent, rgba(6,9,13,.92));
}
.bc-name { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: #fff; }
.bc-tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }

.brand-strip-label {
  text-align: center; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin: 2.6rem 0 1.3rem;
}
.brand-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.5rem 2.4rem;
}
.brand-logo {
  height: 32px; width: auto; max-width: 116px; object-fit: contain;
  opacity: .5; filter: brightness(0) invert(.85);
  transition: opacity .22s ease, filter .22s ease, transform .22s ease;
}
.brand-logo:hover { opacity: 1; filter: brightness(0) invert(1); transform: translateY(-2px); }

/* =========================================================================
   UBICACIÓN
   ========================================================================= */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.6rem); align-items: start; }
.loc-info h2 { font-size: clamp(1.8rem, 4.4vw, 2.6rem); font-weight: 800; }
.loc-list { list-style: none; padding: 0; display: grid; gap: 1rem; margin: 1.3rem 0 1.4rem; }
.loc-list li { display: flex; gap: .9rem; align-items: flex-start; }
.loc-ico {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: 11px; color: var(--blue);
  background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.24);
}
.loc-ico svg { width: 21px; height: 21px; }
.loc-list b { font-family: var(--display); font-size: 1rem; }
.loc-list p { color: var(--muted); font-size: .94rem; }
.loc-card {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem; margin-bottom: 1.3rem;
}
.loc-card svg { width: 22px; height: 22px; flex: none; color: var(--blue); margin-top: .1rem; }
.loc-card p { color: var(--ink-soft); font-size: .92rem; }

.loc-map {
  min-height: 320px; height: 100%;
  border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(56,189,248,.12), transparent 60%),
    var(--surface);
}
.loc-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-ph {
  height: 100%; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem;
  color: var(--muted);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-ph svg { width: 42px; height: 42px; color: var(--line-2); }
.map-ph span { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

/* =========================================================================
   RESEÑAS
   ========================================================================= */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.5rem 1.4rem;
}
.stars { color: #fbbf24; letter-spacing: .12em; font-size: .95rem; margin-bottom: .8rem; }
.review p { color: var(--ink-soft); font-size: 1rem; }
.review footer { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.rev-av {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  font-family: var(--mono); font-size: .78rem; font-weight: 700; color: var(--bg);
  background: linear-gradient(135deg, var(--blue), var(--blue-600));
}
.rev-name { font-size: .88rem; color: var(--muted); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-wrap { max-width: 780px; }
.faq-list { display: grid; gap: .7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; background: none; border: 0; color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 1.02rem; text-align: left;
}
.faq-q i { position: relative; width: 16px; height: 16px; flex: none; }
.faq-q i::before, .faq-q i::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.faq-q i::before { width: 16px; height: 2px; }
.faq-q i::after { width: 2px; height: 16px; transition: transform .25s ease; }
.faq-item.is-open .faq-q i::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-a { max-height: 220px; }
.faq-a p { padding: 0 1.3rem 1.15rem; color: var(--muted); font-size: .94rem; }

/* =========================================================================
   CTA FINAL
   ========================================================================= */
.cta-final {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(60% 100% at 80% 100%, rgba(56,189,248,.16), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-inner { text-align: center; max-width: 620px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 900; text-wrap: balance; }
.cta-inner p { color: var(--ink-soft); margin: 1rem auto 1.8rem; font-size: 1.08rem; max-width: 46ch; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: #080b0f; border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.foot-brand .brand-text { margin-bottom: .9rem; }
.foot-brand p { color: var(--muted); font-size: .9rem; max-width: 42ch; }
.foot-col h4 { font-family: var(--display); font-size: .95rem; margin-bottom: .8rem; letter-spacing: .02em; }
.foot-col p, .foot-col a { display: block; color: var(--muted); font-size: .9rem; margin-bottom: .5rem; }
.foot-col a:hover { color: var(--blue); }
.foot-wa { color: var(--wa) !important; font-weight: 600; }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
  margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .82rem;
}

/* =========================================================================
   FAB WHATSAPP
   ========================================================================= */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: var(--z-fab);
  display: inline-flex; align-items: center; gap: .55rem;
  height: 54px; padding: 0 1.15rem 0 1rem;
  background: linear-gradient(180deg, var(--wa), var(--wa-600)); color: #fff;
  border-radius: var(--r-full);
  box-shadow: 0 12px 30px rgba(34,197,94,.42);
  font-weight: 700; font-size: .96rem;
}
.fab-wa svg { width: 26px; height: 26px; flex: none; }
.fab-wa::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.fab-wa:hover { transform: translateY(-2px); }

/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 620px) {
  .hero-cards { justify-content: flex-end; }
  .hero-quote { max-width: 300px; }
}
@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; margin-left: 0; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .quote-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-panel.is-active { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr 1fr; }
  .field-lg, .field-full { grid-column: 1 / -1; }
  .fab-label { display: none; }
  .fab-wa { padding: 0; width: 54px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
