/* ==========================================================================
   LAVADO DE AUTOS LOS HIMALAYAS - Detailing, Quilicura
   Tema: negro profundo / amarillo senal / rojo / azul / blanco
   ========================================================================== */

:root {
  --ink:        #050608;
  --ink-2:      #0a0d12;
  --ink-3:      #11161d;
  --ink-4:      #161d26;
  --yellow:     #ffd400;
  --yellow-hi:  #ffe86b;
  --yellow-dk:  #c9a600;
  --red:        #ee1c24;
  --red-hi:     #ff3b30;
  --aqua:       #29abe2;
  --aqua-hi:    #6fd6ff;
  --aqua-dk:    #0d6fa8;
  --blue:       #1746e0;
  --blue-hi:    #5b86ff;
  --blue-dk:    #0a2a94;
  --navy:       #071233;
  --navy-2:     #040a1d;
  --white:      #ffffff;
  --paper:      #f4f7fb;
  --paper-2:    #e4eaf3;
  --on-paper:   #0b1119;
  --mute:       #9aa6b2;
  --mute-2:     #6b7885;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.14);

  --f-display: 'Anton', 'Arial Black', sans-serif;
  --f-tech:    'Rajdhani', sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;

  --container: 1200px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
img[width][height] { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--yellow-dk), var(--yellow)); border-radius: 10px; }

/* ==========================================================================
   BARRA DE PROGRESO
   ========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--white) 34%, var(--red) 66%, var(--yellow));
  z-index: 1100;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--f-tech); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  overflow: hidden; white-space: nowrap;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.3s, color 0.3s;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.4) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn > * { position: relative; z-index: 1; }

.btn--yellow {
  background: linear-gradient(135deg, var(--yellow-hi), var(--yellow) 45%, var(--yellow-dk));
  color: #100d00;
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.28);
}
.btn--yellow:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(255, 212, 0, 0.45); }

.btn--wsp {
  background: linear-gradient(135deg, #2ee36a, #12a84d);
  color: #04200f;
  box-shadow: 0 10px 30px rgba(24, 196, 92, 0.3);
}
.btn--wsp:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(24, 196, 92, 0.48); }

.btn--ghost {
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--line-2);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--yellow); transform: translateY(-3px); color: var(--yellow); }

.btn--white {
  background: linear-gradient(135deg, #ffffff, #dde4ef);
  color: #0b1119;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.16);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(255, 255, 255, 0.28); }

.btn--blue {
  background: linear-gradient(135deg, var(--blue-hi), var(--blue) 48%, var(--blue-dk));
  color: #f2f6ff;
  box-shadow: 0 10px 30px rgba(23, 70, 224, 0.38);
}
.btn--blue:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(23, 70, 224, 0.52); }

.btn--red {
  background: linear-gradient(135deg, var(--red-hi), #a8101a);
  color: #fff;
  box-shadow: 0 10px 30px rgba(238, 28, 36, 0.32);
}
.btn--red:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(238, 28, 36, 0.46); }

.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn--sm { padding: 0.62rem 1.3rem; font-size: 0.84rem; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.9rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}
.nav.is-scrolled {
  background: rgba(5, 6, 8, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55), inset 0 -1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo {
  width: 54px; height: 54px; border-radius: 50%;
  transition: transform 0.5s var(--ease-back), filter 0.4s, width 0.35s var(--ease), height 0.35s var(--ease);
  filter: drop-shadow(0 0 12px rgba(255, 212, 0, 0.35));
}
.nav.is-scrolled .nav__logo { width: 44px; height: 44px; }
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.06); filter: drop-shadow(0 0 18px rgba(255, 212, 0, 0.6)); }
.nav__name {
  font-family: var(--f-display); font-size: 1.12rem; line-height: 1.05;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.nav__name span {
  display: block; font-size: 0.62rem; letter-spacing: 0.3em; color: var(--yellow);
  font-family: var(--f-tech); font-weight: 600;
}

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a {
  position: relative;
  font-family: var(--f-tech); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: #dfe6ee;
  transition: color 0.25s;
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--white) 50%, var(--blue));
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--white); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__burger { display: none; width: 44px; height: 40px; position: relative; z-index: 1002; }
.nav__burger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--yellow); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--yellow); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(1000px 640px at 78% 26%, rgba(23, 70, 224, 0.26), transparent 62%),
    radial-gradient(720px 520px at 14% 76%, rgba(238, 28, 36, 0.16), transparent 62%),
    radial-gradient(620px 460px at 52% 96%, rgba(255, 212, 0, 0.12), transparent 64%),
    linear-gradient(180deg, #05070a, #070b16 58%, var(--ink));
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 82% 62% at 50% 42%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 82% 62% at 50% 42%, #000 35%, transparent 78%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift { to { background-position: 64px 64px, 64px 64px; } }

.hero__glow {
  position: absolute; width: 640px; height: 640px; right: -120px; top: 12%;
  background: radial-gradient(circle, rgba(23, 70, 224, 0.42), transparent 66%);
  filter: blur(46px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.1); }
}

/* Burbujas */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; bottom: -12%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85), rgba(111, 214, 255, 0.28) 42%, rgba(41,171,226,0.06) 70%);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.35), 0 0 18px rgba(41,171,226,0.25);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate3d(28px, -52vh, 0) scale(1); }
  90%  { opacity: 0.55; }
  100% { transform: translate3d(-18px, -112vh, 0) scale(1.14); opacity: 0; }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3rem; align-items: center;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-tech); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero__kicker .dash { width: 44px; height: 2px; background: linear-gradient(90deg, var(--red), var(--yellow) 60%, transparent); }

/* Titulo principal tipo afiche: los tres renglones miden lo mismo de ancho.
   El tamano sale del ancho de la columna (cqi), asi cuadra en cualquier pantalla.
   Proporciones medidas con Anton: "EL MEJOR DETAILING" = 7,47 em, "DE QUILICURA" = 4,87 em */
.hero__copy { container-type: inline-size; }
.hero__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.2rem, 9vw, 6.6rem);
  line-height: 0.93; text-transform: uppercase;
}
@supports (font-size: 1cqi) {
  .hero__title { font-size: min(19.6cqi, 7.4rem); }
}
.hero__line { display: block; }
.hero__line--a { font-size: 0.6515em; line-height: 1.02; }
.hero__line--c { display: flex; align-items: baseline; gap: 0.16em; }

/* Los tres colores de la marca, en el orden que pidio el cliente: rojo, amarillo, azul */
.c-rojo, .c-amarillo, .c-azul {
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-image: var(--tinta);
}
.c-rojo     { --tinta: linear-gradient(180deg, #ff6a5e, var(--red) 62%, #b3121a); }
.c-amarillo { --tinta: linear-gradient(180deg, #fff3a8, var(--yellow) 42%, var(--yellow-dk)); }
.c-azul     { --tinta: linear-gradient(180deg, #a9c1ff, var(--blue-hi) 55%, #3f6df0); }

/* Brillo de pulido: una franja de luz cruza la letra cada tantos segundos,
   como el reflejo sobre una pintura recien trabajada */
.brillo {
  background-image:
    linear-gradient(100deg, transparent 43%, rgba(255, 255, 255, 0.92) 50%, transparent 57%),
    var(--tinta);
  background-size: 260% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 100% 0, 0 0;
  animation: brillo 6s var(--ease) infinite;
}
@keyframes brillo {
  0%, 48%   { background-position: 100% 0, 0 0; }
  78%, 100% { background-position: 0% 0, 0 0; }
}

/* Relieve: sombra dura del mismo color (efecto letrero en 3D) y un halo de luz */
.hero__title .c-rojo {
  filter: drop-shadow(0 0.05em 0 #6d0910) drop-shadow(0 0.14em 0.3em rgba(238, 28, 36, 0.45));
}
.hero__title .c-amarillo {
  filter: drop-shadow(0 0.05em 0 #6b5400) drop-shadow(0 0.14em 0.3em rgba(255, 212, 0, 0.38));
  animation-delay: 0.35s;
}
.hero__title .c-azul {
  filter: drop-shadow(0 0.05em 0 #0c2474) drop-shadow(0 0.14em 0.3em rgba(23, 70, 224, 0.6));
  animation-delay: 0.7s;
}

/* Sello 24/7 con punto "en vivo" */
.hero__247 {
  display: inline-flex; align-items: center; gap: 0.14em;
  font-size: 0.8em; line-height: 1; color: var(--white);
  padding: 0.1em 0.22em 0.08em; border-radius: 0.14em;
  background: linear-gradient(135deg, var(--red-hi), var(--red) 50%, #a8101a);
  box-shadow:
    0 0 0 0.045em rgba(255, 255, 255, 0.9),
    0 0.08em 0 0.045em #5e0a0f,
    0 0.2em 0.55em rgba(238, 28, 36, 0.55);
  transform: translateY(-0.07em) rotate(-4deg);
  animation: latido 2.6s ease-in-out infinite;
}
.hero__247 i {
  width: 0.2em; height: 0.2em; border-radius: 50%; flex: none;
  background: var(--white);
  animation: envivo 1.3s ease-out infinite;
}
@keyframes latido {
  0%, 100% { transform: translateY(-0.07em) rotate(-4deg) scale(1); }
  50%      { transform: translateY(-0.07em) rotate(-4deg) scale(1.06); }
}
@keyframes envivo {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.85); opacity: 1; }
  70%  { box-shadow: 0 0 0 0.16em rgba(255, 255, 255, 0); opacity: 0.55; }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); opacity: 1; }
}

.hero__line--y {
  background: linear-gradient(180deg, var(--yellow-hi), var(--yellow) 42%, var(--yellow-dk));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 22px rgba(255, 212, 0, 0.3));
}
.hero__line--out { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.55); }

.hero__text { margin: 1.5rem 0 2.2rem; max-width: 52ch; color: #c6d0da; font-size: 1.08rem; }
.hero__text b { color: var(--white); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line);
}
.fact__n { font-family: var(--f-display); font-size: 2rem; line-height: 1; color: var(--yellow); }
.fact__n--red { color: var(--red-hi); }
.fact__n--blue { color: var(--blue-hi); }
.fact__l {
  font-family: var(--f-tech); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mute);
}

/* Emblema */
.hero__art { position: relative; display: grid; place-items: center; }
.emblem { position: relative; width: min(100%, 460px); aspect-ratio: 1; display: grid; place-items: center; }
.emblem__ring {
  position: absolute; inset: -6%; border-radius: 50%;
  border: 1px dashed rgba(238, 28, 36, 0.42);
  animation: spin 34s linear infinite;
}
.emblem__ring--2 {
  inset: 3%; border-style: solid; border-color: rgba(91, 134, 255, 0.34);
  animation-duration: 24s; animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.emblem__logo {
  width: 96%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,0.75)) drop-shadow(0 0 30px rgba(255, 212, 0, 0.22));
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(1.2deg); }
}

.emblem__badge {
  position: absolute; right: 2%; bottom: 4%;
  background: linear-gradient(135deg, var(--red-hi), #a8101a);
  color: var(--white); text-align: center;
  padding: 0.48rem 0.85rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 12px 30px rgba(238, 28, 36, 0.36);
  animation: badgePop 4.5s ease-in-out infinite;
}
.emblem__badge b { display: block; font-family: var(--f-display); font-size: 1.05rem; line-height: 1; }
.emblem__badge span {
  font-family: var(--f-tech); font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.92;
}
@keyframes badgePop {
  0%, 100% { transform: rotate(-7deg) scale(1); }
  50%      { transform: rotate(-4deg) scale(1.05); }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 0.4rem; z-index: 3;
  font-family: var(--f-tech); font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mute-2);
}
.hero__scroll i { width: 22px; height: 34px; border-radius: 12px; border: 1px solid var(--line-2); position: relative; }
.hero__scroll i::after {
  content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 2px; background: var(--yellow);
  animation: scrollDot 1.9s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(11px); opacity: 0.2; }
}

/* ==========================================================================
   OLA
   ========================================================================== */
.wave { position: relative; line-height: 0; }
.wave svg { width: 100%; height: 90px; }
.wave--flip svg { transform: rotate(180deg); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: linear-gradient(90deg, #e8edf5, var(--white) 24%, var(--white) 76%, #e8edf5);
  color: var(--on-paper); overflow: hidden; padding: 0.8rem 0;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.12);
  border-block: 1px solid rgba(0,0,0,0.08);
}
.marquee__track {
  display: flex; gap: 2.6rem; width: max-content;
  font-family: var(--f-display); font-size: 1.15rem; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track i { font-style: normal; opacity: 0.85; }
.marquee__track i:nth-of-type(3n+1) { color: var(--red); }
.marquee__track i:nth-of-type(3n+2) { color: var(--blue); }
.marquee__track i:nth-of-type(3n+3) { color: var(--yellow-dk); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECCIONES
   ========================================================================== */
.section { padding: 6.5rem 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.section--deep { background: var(--ink-2); }

.shead { max-width: 720px; margin-bottom: 3.2rem; }
.shead--center { margin-inline: auto; text-align: center; }
.shead__kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-tech); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--aqua-hi);
  margin-bottom: 0.9rem;
}
.shead__kicker::before { content: ''; width: 26px; height: 2px; background: var(--aqua); }
.shead--center .shead__kicker::after { content: ''; width: 26px; height: 2px; background: var(--aqua); }
.shead h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.9rem, 7.8vw, 4.3rem); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.005em;
  text-shadow: 0 0.05em 0 rgba(0, 0, 0, 0.6), 0 0.18em 0.5em rgba(0, 0, 0, 0.45);
}
/* Firma tricolor bajo cada titulo */
.shead h2::after {
  content: ''; display: block; width: 7.4rem; height: 6px; margin-top: 1rem; border-radius: 6px;
  background: linear-gradient(90deg, var(--red) 0 33.3%, var(--yellow) 33.3% 66.6%, var(--blue-hi) 66.6%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
.shead--center h2::after { margin-inline: auto; }
.shead__kicker--red { color: #ff8a8f; }
.shead__kicker--red::before, .shead--center .shead__kicker--red::after { background: var(--red); }
/* La palabra destacada va en amarillo con relieve y el mismo brillo de pulido del hero */
.shead h2 em, .cta h2 em {
  --tinta: linear-gradient(180deg, #fff3a8, var(--yellow) 42%, var(--yellow-dk));
  font-style: normal; color: transparent; text-shadow: none;
  -webkit-background-clip: text; background-clip: text;
  background-image:
    linear-gradient(100deg, transparent 43%, rgba(255, 255, 255, 0.9) 50%, transparent 57%),
    var(--tinta);
  background-size: 260% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 100% 0, 0 0;
  animation: brillo 7s var(--ease) infinite;
  filter: drop-shadow(0 0.05em 0 #6b5400) drop-shadow(0 0.12em 0.32em rgba(255, 212, 0, 0.3));
}
.shead p { margin-top: 1rem; color: var(--mute); font-size: 1.04rem; }

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.svc::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 212, 0, 0.13), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.svc:hover { transform: translateY(-8px); border-color: rgba(255, 212, 0, 0.45); box-shadow: 0 26px 60px rgba(0,0,0,0.55); }
.svc:hover::before { opacity: 1; }

.svc__foto { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-3); }
.svc__foto img {
  width: 100%; height: 100%; min-height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(0.92);
}
.svc:hover .svc__foto img { transform: scale(1.08); filter: saturate(1.1); }
.svc__foto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,0.15) 0%, rgba(5,6,8,0.05) 40%, rgba(10,13,18,0.96) 100%);
}

.svc__cuerpo { position: relative; padding: 0 1.8rem 1.9rem; margin-top: -32px; z-index: 1; }

.svc__ico {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(140deg, #1a222c, #0d1116);
  border: 1px solid rgba(255,212,0,0.45);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  margin-bottom: 1.1rem; position: relative;
  transition: transform 0.45s var(--ease-back), border-color 0.4s;
}
.svc:hover .svc__ico { transform: rotate(-8deg) scale(1.08); border-color: var(--yellow); }
.svc__ico svg {
  width: 30px; height: 30px; stroke: var(--yellow); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.svc h3 {
  font-family: var(--f-tech); font-weight: 700; font-size: 1.28rem;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.svc p { margin-top: 0.55rem; color: var(--mute); font-size: 0.97rem; }
.svc__n {
  position: absolute; right: 1.1rem; top: 0.7rem; z-index: 1;
  font-family: var(--f-display); font-size: 2.6rem; line-height: 1;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 4px 18px rgba(0,0,0,0.75);
}

/* ==========================================================================
   PLANES
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 2.3rem 1.9rem;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 30px 64px rgba(0,0,0,0.55); border-color: var(--line-2); }
.plan--star {
  border-color: rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(255,212,0,0.18), 0 26px 60px rgba(0,0,0,0.5);
}
.plan--star { background: linear-gradient(170deg, #101a33, var(--ink-2)); }
.plan__extra {
  margin-top: 0.85rem; color: var(--mute); font-size: 0.93rem;
  position: relative; z-index: 1;
  padding-left: 0.85rem; border-left: 2px solid rgba(91,134,255,0.55);
}
.plan--star::before {
  content: ''; position: absolute; inset: -40% -10% auto; height: 62%;
  background: radial-gradient(closest-side, rgba(255,212,0,0.22), transparent);
  pointer-events: none;
}
.plan__tag {
  position: absolute; top: 1.25rem; right: -2.9rem;
  background: linear-gradient(135deg, var(--red-hi), #a8101a); color: #fff;
  font-family: var(--f-tech); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 3rem; transform: rotate(38deg);
}
.plan h3 {
  font-family: var(--f-display); font-size: 1.6rem; text-transform: uppercase;
  position: relative; z-index: 1;
}
.plan__sub {
  color: var(--mute-2); font-family: var(--f-tech); font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; position: relative; z-index: 1;
}
.plan__price { display: flex; align-items: baseline; gap: 0.4rem; margin: 1.3rem 0 0.3rem; position: relative; z-index: 1; }
.plan__price b {
  font-family: var(--f-display); font-size: 2.9rem; line-height: 1;
  background: linear-gradient(180deg, var(--yellow-hi), var(--yellow-dk));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan__price span {
  font-family: var(--f-tech); font-size: 0.86rem; color: var(--mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.plan__list { margin: 1.5rem 0 1.9rem; display: grid; gap: 0.72rem; flex: 1; position: relative; z-index: 1; }
.plan__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; color: #cdd7e1; }
.plan__list svg {
  width: 18px; height: 18px; flex: none; margin-top: 4px;
  stroke: var(--aqua-hi); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.plan .btn { width: 100%; position: relative; z-index: 1; }
.plans__note { margin-top: 1.8rem; text-align: center; color: var(--mute-2); font-size: 0.92rem; }

/* ==========================================================================
   FACTORES DEL PRECIO
   ========================================================================== */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.factor {
  position: relative; padding: 2rem 1.7rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(41,171,226,0.09), rgba(255,255,255,0.015));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.factor:hover { transform: translateY(-6px); border-color: rgba(41,171,226,0.45); }
.factor__ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(41,171,226,0.14); border: 1px solid rgba(41,171,226,0.32);
  margin-bottom: 1rem;
}
.factor__ico svg {
  width: 26px; height: 26px; stroke: var(--aqua-hi); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.factor h3 { font-family: var(--f-tech); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; }
.factor p { margin-top: 0.5rem; color: var(--mute); font-size: 0.96rem; }

/* ==========================================================================
   COTIZADOR
   ========================================================================== */
.quote {
  margin-top: 3.5rem;
  border: 1px solid var(--line-2); border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(760px 340px at 12% 0%, rgba(255,212,0,0.1), transparent 60%),
    radial-gradient(700px 360px at 92% 100%, rgba(41,171,226,0.14), transparent 62%),
    linear-gradient(170deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 34px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.quote__head { padding: 2.4rem 2.4rem 0; }
.quote__head h3 {
  font-family: var(--f-display); font-size: clamp(1.28rem, 5.2vw, 2.3rem);
  text-transform: uppercase; line-height: 1.05;
}
.quote__head p { margin-top: 0.7rem; color: var(--mute); max-width: 62ch; }

.quote__form { padding: 1.8rem 2.4rem 2.4rem; }

.qgroup { border: 0; margin-top: 1.9rem; }
.qgroup__title {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  font-family: var(--f-tech); font-weight: 700; font-size: 1.06rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.95rem;
}
.qgroup__title b {
  width: 28px; height: 28px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--yellow-hi), var(--yellow-dk));
  color: #100d00; font-family: var(--f-display); font-size: 0.92rem;
}
.qgroup__title i {
  font-style: normal; font-size: 0.78rem; letter-spacing: 0.12em;
  color: var(--mute-2); font-weight: 600;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { position: relative; cursor: pointer; }
.chip input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.chip span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.62rem 1.15rem; border-radius: 999px;
  border: 1px solid var(--line-2); color: #cdd7e1;
  font-family: var(--f-tech); font-weight: 600; font-size: 0.94rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
  user-select: none;
}
.chip span::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mute-2); transition: background 0.25s, box-shadow 0.25s;
}
.chip:hover span { border-color: rgba(255,212,0,0.45); color: var(--white); transform: translateY(-2px); }
.chip input:checked + span {
  background: linear-gradient(135deg, var(--yellow-hi), var(--yellow) 55%, var(--yellow-dk));
  border-color: var(--yellow); color: #100d00;
}
.chip input:checked + span::before { background: #100d00; box-shadow: 0 0 0 3px rgba(16,13,0,0.15); }
.chip input:focus-visible + span { outline: 2px solid var(--aqua-hi); outline-offset: 3px; }

.qtext {
  width: 100%; resize: vertical;
  background: rgba(0,0,0,0.3); color: var(--white);
  border: 1px solid var(--line-2); border-radius: 14px;
  padding: 0.9rem 1.1rem; font-family: var(--f-body); font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.qtext::placeholder { color: var(--mute-2); }
.qtext:focus { outline: 0; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,0.15); }

.chips--turno { margin-top: 0.6rem; }

/* Tiempo aproximado del trabajo */
.tiempo {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 2rem; padding: 1.1rem 1.3rem;
  border: 1px solid rgba(41,171,226,0.32); border-radius: 16px;
  background: linear-gradient(120deg, rgba(41,171,226,0.14), rgba(41,171,226,0.03));
}
.tiempo__ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: rgba(41,171,226,0.18); border: 1px solid rgba(41,171,226,0.4);
}
.tiempo__ico svg {
  width: 22px; height: 22px; stroke: var(--aqua-hi); fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.tiempo b {
  display: block; font-family: var(--f-tech); font-size: 1.12rem;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--white);
}
.tiempo span { color: var(--mute); font-size: 0.9rem; }

.quote__out {
  margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 1.6rem; align-items: center;
}
.quote__resumen b {
  display: block; font-family: var(--f-tech); font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 0.45rem;
}
.quote__resumen p {
  color: #cdd7e1; font-size: 0.97rem; line-height: 1.55;
  background: rgba(0,0,0,0.28); border: 1px solid var(--line);
  border-radius: 14px; padding: 0.85rem 1.05rem; white-space: pre-line;
}
.quote__tip { margin-top: 1.2rem; color: var(--mute-2); font-size: 0.9rem; }

/* ==========================================================================
   ANTES Y DESPUES
   ========================================================================== */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 16 / 9; touch-action: none; cursor: ew-resize;
  background: var(--ink-3);
  box-shadow: 0 34px 80px rgba(0,0,0,0.6);
  --pos: 50%;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__line {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: linear-gradient(180deg, transparent, var(--yellow) 12%, var(--yellow) 88%, transparent);
  box-shadow: 0 0 22px rgba(255, 212, 0, 0.8);
  transform: translateX(-1.5px);
}
.ba__knob {
  position: absolute; top: 50%; left: var(--pos); width: 56px; height: 56px;
  margin: -28px 0 0 -28px; border-radius: 50%;
  background: linear-gradient(140deg, var(--yellow-hi), var(--yellow-dk));
  display: grid; place-items: center; color: #100d00;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55), 0 0 0 6px rgba(255, 212, 0, 0.16);
  transition: transform 0.25s var(--ease-back);
}
.ba:hover .ba__knob { transform: scale(1.08); }
.ba__knob svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ba__tag {
  position: absolute; top: 1rem; font-family: var(--f-tech); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 0.95rem; border-radius: 999px;
  background: rgba(5,6,8,0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
}
.ba__tag--l { left: 1rem; color: var(--mute); }
.ba__tag--r { right: 1rem; color: var(--yellow); border-color: rgba(255,212,0,0.4); }
.ba__hint {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  font-family: var(--f-tech); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  background: rgba(5,6,8,0.7); padding: 0.3rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); pointer-events: none;
  animation: hintFade 4s ease-in-out infinite;
}
@keyframes hintFade { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

.ba__thumbs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.4rem; }
.ba__thumb {
  font-family: var(--f-tech); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--mute);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.ba__thumb:hover { color: var(--white); border-color: var(--line-2); }
.ba__thumb.is-active { background: var(--yellow); color: #100d00; border-color: var(--yellow); }

/* Galeria */
.gallery {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem;
}
.shot {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
  aspect-ratio: 4 / 3; cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.shot:hover { transform: translateY(-6px); border-color: rgba(255,212,0,0.45); box-shadow: 0 24px 54px rgba(0,0,0,0.5); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.shot:hover img { transform: scale(1.07); }
/* La primera foto de la galeria va en grande (hoy el Mustang GT). El 4/3 le da alto
   propio cuando no tiene vecinos al lado (celular); con vecinos se estira a sus dos filas */
.gallery > .shot:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 4 / 3; align-self: stretch; }
.gallery > .shot:first-child img { position: absolute; inset: 0; }
.shot__cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(5,6,8,0.92));
  font-family: var(--f-tech); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.92rem;
}
.shot__pill {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-family: var(--f-tech); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 999px;
  background: rgba(255, 212, 0, 0.92); color: #100d00;
}
/* Aviso que reemplaza la galeria mientras no haya fotos cargadas */
.gallery--aviso { grid-template-columns: 1fr; }
.aviso {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
  padding: 1.9rem 2rem;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background:
    radial-gradient(600px 240px at 8% 0%, rgba(255,212,0,0.1), transparent 62%),
    linear-gradient(170deg, var(--ink-3), var(--ink-2));
}
.aviso__ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,212,0,0.12); border: 1px solid rgba(255,212,0,0.35);
}
.aviso__ico svg {
  width: 28px; height: 28px; stroke: var(--yellow); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.aviso h3 { font-family: var(--f-tech); font-weight: 700; font-size: 1.24rem; text-transform: uppercase; }
.aviso p { margin-top: 0.4rem; color: var(--mute); font-size: 0.97rem; max-width: 60ch; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 2000; display: none;
  place-items: center; padding: 1.5rem;
  background: rgba(3, 4, 6, 0.93); backdrop-filter: blur(10px);
}
.lb.is-open { display: grid; animation: lbIn 0.3s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb__box { width: min(1050px, 100%); }
.lb__box img { width: 100%; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.8); }
.lb__cap { margin-top: 0.9rem; text-align: center; font-family: var(--f-tech); letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.lb__close {
  position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line-2);
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.lb__close:hover { background: var(--yellow); color: var(--ink); transform: rotate(90deg); }
.lb__close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

/* ==========================================================================
   PROCESO
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step {
  position: relative; padding: 2rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255,255,255,0.04), transparent);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(41,171,226,0.45); }
.step__n {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1.3rem;
  background: linear-gradient(140deg, var(--aqua), var(--aqua-dk)); color: #04151f;
  margin-bottom: 1rem;
  box-shadow: 0 10px 26px rgba(41,171,226,0.32);
}
.step h3 { font-family: var(--f-tech); font-weight: 700; font-size: 1.16rem; text-transform: uppercase; }
.step p { margin-top: 0.45rem; color: var(--mute); font-size: 0.95rem; }

/* ==========================================================================
   TIKTOK
   ========================================================================== */
.tt { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: center; }
.tt__embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-3); min-height: 580px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.tt__embed blockquote { margin: 0 !important; }
.tt__stats { display: flex; gap: 2.2rem; margin: 1.8rem 0 2rem; flex-wrap: wrap; }
.tt__stat b {
  display: block; font-family: var(--f-display); font-size: 2.3rem; line-height: 1;
  background: linear-gradient(180deg, #fff, var(--mute));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tt__stat > span { font-family: var(--f-tech); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute-2); }

/* ==========================================================================
   PREGUNTAS FRECUENTES
   ========================================================================== */
.faq { display: grid; gap: 0.85rem; max-width: 880px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq__item[open] { border-color: rgba(255,212,0,0.42); }
.faq__item:hover { border-color: var(--line-2); }

.faq__item summary {
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--f-tech); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex: none; width: 13px; height: 13px;
  border-right: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__item summary:hover { color: var(--yellow); }
.faq__item p {
  padding: 0 1.4rem 1.3rem; color: var(--mute); font-size: 0.99rem;
  animation: faqIn 0.35s var(--ease);
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   UBICACION
   ========================================================================== */
.loc { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.4rem; align-items: stretch; }
.loc__card {
  padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
}
.loc__row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.loc__row:last-of-type { border-bottom: 0; }
.loc__row svg {
  width: 22px; height: 22px; flex: none; margin-top: 5px;
  stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.loc__row b {
  display: block; font-family: var(--f-tech); font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute-2);
}
.loc__row p { font-size: 1.04rem; }
.loc__row a { border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s; }
.loc__row a:hover { color: var(--yellow); border-color: var(--yellow); }
.loc__btns { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.loc__map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 430px; filter: grayscale(0.4) contrast(1.08); transition: filter 0.5s;
}
.loc__map:hover { filter: none; }
.loc__map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 420px at 20% 20%, rgba(255,212,0,0.16), transparent 60%),
    radial-gradient(700px 420px at 84% 80%, rgba(41,171,226,0.2), transparent 62%),
    var(--ink-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center; padding: 6rem 0;
}
.cta h2 {
  font-family: var(--f-display); font-size: clamp(2rem, 8.4vw, 4.8rem); text-transform: uppercase; line-height: 1;
  text-shadow: 0 0.05em 0 rgba(0, 0, 0, 0.6), 0 0.18em 0.5em rgba(0, 0, 0, 0.45);
}
.cta p { margin: 1.1rem auto 2.2rem; max-width: 56ch; color: var(--mute); font-size: 1.06rem; }
.cta__btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { padding: 3.4rem 0 2.2rem; background: var(--ink); }
.foot__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.4rem; }
.foot__logo { width: 92px; height: auto; border-radius: 50%; margin-bottom: 1rem; }
.foot p { color: var(--mute); font-size: 0.96rem; }
.foot h4 {
  font-family: var(--f-tech); font-size: 0.86rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem;
}
.foot__links { display: grid; gap: 0.6rem; }
.foot__links a { color: var(--mute); transition: color 0.25s, transform 0.25s; display: inline-block; }
.foot__links a:hover { color: var(--yellow); transform: translateX(4px); }
.foot__bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--mute-2); font-size: 0.86rem;
}

/* ==========================================================================
   WHATSAPP FLOTANTE
   ========================================================================== */
.wsp {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #2ee36a, #12a84d); color: #04200f;
  box-shadow: 0 14px 34px rgba(18, 168, 77, 0.45);
  transition: transform 0.3s var(--ease-back);
}
.wsp::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(46, 227, 106, 0.6);
  animation: wspPulse 2.4s ease-out infinite;
}
@keyframes wspPulse {
  0%   { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.65); opacity: 0; }
}
.wsp:hover { transform: scale(1.1) rotate(-6deg); }
.wsp svg { width: 32px; height: 32px; fill: currentColor; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   MURO VIP
   ========================================================================== */
.section--vip {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% 8%, rgba(23, 70, 224, 0.42), transparent 64%),
    radial-gradient(760px 460px at 10% 92%, rgba(238, 28, 36, 0.22), transparent 62%),
    linear-gradient(180deg, var(--navy-2), var(--navy) 46%, #05080f);
  border-block: 1px solid rgba(255,255,255,0.09);
}
.section--vip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 76%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 76%);
}
.section--vip > .container { position: relative; z-index: 1; }

/* Cinta con los nombres */
.vip__cinta {
  position: relative; z-index: 1;
  margin: 0 0 2.8rem; padding: 0.55rem 0; overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.03));
  border-block: 1px solid rgba(255,255,255,0.12);
}
.vip__cinta-track {
  display: flex; gap: 2.2rem; width: max-content;
  font-family: var(--f-display); font-size: 1.05rem; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap; color: rgba(255,255,255,0.88);
  animation: marquee 36s linear infinite;
}
.vip__cinta-track i { font-style: normal; color: var(--red-hi); }

/* Fichas de clientes */
.vip__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem;
}
.vipcard {
  position: relative; display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, var(--white), var(--paper-2));
  color: var(--on-paper);
  box-shadow: 0 24px 54px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.vipcard:hover { transform: translateY(-8px); box-shadow: 0 32px 70px rgba(0,0,0,0.62); }
.vipcard::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33% 66%, var(--blue) 66%);
}
.vipcard { cursor: pointer; }
.vipcard__foto {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #cfd8e6;
  display: grid; place-items: center;
}
.vipcard__foto img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  transition: transform 0.7s var(--ease);
}
/* cuando la ficha todavia no tiene nombre, la foto manda sola */
.vipcard--solo .vipcard__foto { aspect-ratio: 3 / 4; }
.vipcard--solo::after { height: 5px; }
.vipcard:hover .vipcard__foto img { transform: scale(1.06); }
.vipcard__ini {
  font-family: var(--f-display); font-size: 3.4rem; letter-spacing: 0.04em;
  color: #8d9bb1;
}
.vipcard__rubro {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-family: var(--f-tech); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.26rem 0.72rem; border-radius: 999px;
  background: var(--red); color: #fff;
}
.vipcard__info { padding: 1.1rem 1.2rem 1.4rem; display: grid; gap: 0.3rem; }
.vipcard__info h3 {
  font-family: var(--f-tech); font-weight: 700; font-size: 1.16rem;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--on-paper);
}
.vipcard__info p { color: #48586d; font-size: 0.92rem; }
.vipcard__link {
  margin-top: 0.45rem;
  font-family: var(--f-tech); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 2px solid transparent; justify-self: start;
  transition: border-color 0.25s, color 0.25s;
}
.vipcard__link:hover { color: var(--red); border-color: var(--red); }

/* Aviso mientras no hay fichas cargadas */
.vip__grid--aviso { grid-template-columns: 1fr; }
.vipaviso {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  backdrop-filter: blur(4px);
}
.vipaviso__ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(238,28,36,0.16); border: 1px solid rgba(238,28,36,0.42);
}
.vipaviso__ico svg {
  width: 28px; height: 28px; stroke: #ff8a8f; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.vipaviso h3 { font-family: var(--f-tech); font-weight: 700; font-size: 1.24rem; text-transform: uppercase; }
.vipaviso p { margin-top: 0.4rem; color: #b9c4d4; font-size: 0.97rem; max-width: 62ch; }

/* Videos del taller */
.clips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.clip__box { position: relative; }

/* Los destacados de alta gama: marco dorado y la marca sobre el video */
.clip.clip--top {
  border-color: rgba(255, 212, 0, 0.55);
  background:
    radial-gradient(520px 200px at 50% 0%, rgba(255,212,0,0.13), transparent 62%),
    linear-gradient(170deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 0 0 1px rgba(255,212,0,0.18), 0 26px 60px rgba(0,0,0,0.5);
}
.clip.clip--top:hover { border-color: var(--yellow); box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.clip__marca {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  font-family: var(--f-tech); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--red-hi), #a8101a); color: #fff;
  box-shadow: 0 8px 20px rgba(238, 28, 36, 0.35);
  pointer-events: none;
}
.clip--top figcaption b { color: var(--yellow); }
.clip {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.clip:hover { transform: translateY(-6px); border-color: rgba(91,134,255,0.5); box-shadow: 0 24px 54px rgba(0,0,0,0.5); }
.clip video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #05070a;
  display: block;
}
.clip figcaption { padding: 0.9rem 1.1rem 1.1rem; }
.clip figcaption b {
  display: block; font-family: var(--f-tech); font-weight: 700; font-size: 1.06rem;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.clip figcaption span { color: var(--mute); font-size: 0.9rem; }

/* Cierre de venta bajo la galeria de trabajos */
.cierre {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between;
  padding: 1.6rem 1.9rem; border-radius: var(--radius);
  border: 1px solid rgba(255, 212, 0, 0.35);
  background:
    radial-gradient(620px 240px at 4% 0%, rgba(255, 212, 0, 0.14), transparent 62%),
    linear-gradient(170deg, var(--ink-3), var(--ink-2));
}
.cierre__txt b {
  display: block; font-family: var(--f-display); font-size: 1.5rem;
  text-transform: uppercase; line-height: 1.1;
}
.cierre__txt span { color: var(--mute); font-size: 0.98rem; }
.cierre__btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Pie del muro */
.vip__pie {
  margin-top: 1.4rem; text-align: center;
  color: #93a1b5; font-size: 0.92rem; max-width: 72ch; margin-inline: auto;
}

/* Videos destacados */
.vip__videos {
  margin-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center;
}
.vip__videos blockquote { margin: 0 !important; }

/* Los cuatro puntos del trato */
.vip__trato {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.trato {
  padding: 1.7rem 1.4rem; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(170deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.trato:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.3); }
.trato__ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 0.9rem; border: 1px solid rgba(255,255,255,0.2);
}
.trato__ico svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trato__ico--red    { background: rgba(238,28,36,0.18);  border-color: rgba(238,28,36,0.45); }
.trato__ico--red svg    { stroke: #ff8a8f; }
.trato__ico--blue   { background: rgba(23,70,224,0.22);  border-color: rgba(91,134,255,0.5); }
.trato__ico--blue svg   { stroke: var(--blue-hi); }
.trato__ico--white  { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.trato__ico--white svg  { stroke: var(--white); }
.trato__ico--yellow { background: rgba(255,212,0,0.16);  border-color: rgba(255,212,0,0.45); }
.trato__ico--yellow svg { stroke: var(--yellow); }
.trato h3 { font-family: var(--f-tech); font-weight: 700; font-size: 1.08rem; text-transform: uppercase; }
.trato p { margin-top: 0.4rem; color: #b3bfd0; font-size: 0.93rem; }

/* ==========================================================================
   AJUSTES DE COLOR: rojo, azul y blanco repartidos por el resto del sitio
   ========================================================================== */
/* Servicios: cada tarjeta con su color */
.svc:nth-child(3n+1) .svc__ico { border-color: rgba(238, 28, 36, 0.5); }
.svc:nth-child(3n+1) .svc__ico svg { stroke: #ff6b70; }
.svc:nth-child(3n+1):hover { border-color: rgba(238, 28, 36, 0.5); }
.svc:nth-child(3n+2) .svc__ico { border-color: rgba(91, 134, 255, 0.55); }
.svc:nth-child(3n+2) .svc__ico svg { stroke: var(--blue-hi); }
.svc:nth-child(3n+2):hover { border-color: rgba(91, 134, 255, 0.55); }
.svc:nth-child(3n+3) .svc__ico { border-color: rgba(255, 255, 255, 0.45); }
.svc:nth-child(3n+3) .svc__ico svg { stroke: var(--white); }
.svc:nth-child(3n+3):hover { border-color: rgba(255, 255, 255, 0.4); }

/* Factores del presupuesto: azul en vez de celeste */
.factor { background: linear-gradient(165deg, rgba(23, 70, 224, 0.16), rgba(255,255,255,0.015)); }
.factor:hover { border-color: rgba(91, 134, 255, 0.55); }
.factor__ico { background: rgba(23, 70, 224, 0.2); border-color: rgba(91, 134, 255, 0.4); }
.factor__ico svg { stroke: var(--blue-hi); }

/* Chequeos de los planes */
.plan__list svg { stroke: var(--blue-hi); }
.plan:nth-child(2) .plan__list svg { stroke: var(--yellow); }

/* Pasos del proceso: uno de cada color */
.step:nth-child(1) .step__n { background: linear-gradient(140deg, var(--red-hi), #a8101a); color: #fff; box-shadow: 0 10px 26px rgba(238,28,36,0.35); }
.step:nth-child(2) .step__n { background: linear-gradient(140deg, #ffffff, #c9d3e2); color: #0b1119; box-shadow: 0 10px 26px rgba(255,255,255,0.22); }
.step:nth-child(3) .step__n { background: linear-gradient(140deg, var(--blue-hi), var(--blue-dk)); color: #f2f6ff; box-shadow: 0 10px 26px rgba(23,70,224,0.42); }
.step:nth-child(4) .step__n { background: linear-gradient(140deg, var(--yellow-hi), var(--yellow-dk)); color: #100d00; box-shadow: 0 10px 26px rgba(255,212,0,0.34); }
.step:hover { border-color: rgba(255,255,255,0.28); }

/* Tiempo estimado del cotizador */
.tiempo { border-color: rgba(91, 134, 255, 0.4); background: linear-gradient(120deg, rgba(23,70,224,0.2), rgba(23,70,224,0.04)); }
.tiempo__ico { background: rgba(23,70,224,0.26); border-color: rgba(91,134,255,0.45); }
.tiempo__ico svg { stroke: var(--blue-hi); }

/* Comparador: la linea divisoria toma los tres colores */
.ba__line { background: linear-gradient(180deg, transparent, var(--red) 12%, var(--white) 50%, var(--blue) 88%, transparent); box-shadow: 0 0 22px rgba(255,255,255,0.55); }
.ba__tag--l { color: #ff8a8f; border-color: rgba(238,28,36,0.4); }

/* Cierre y pie */
.cta {
  background:
    radial-gradient(760px 420px at 20% 20%, rgba(238, 28, 36, 0.18), transparent 60%),
    radial-gradient(700px 420px at 84% 80%, rgba(23, 70, 224, 0.28), transparent 62%),
    var(--ink-2);
}
.foot__bottom { border-top: 0; position: relative; }
.foot__bottom::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--red) 25%, var(--white) 25% 50%, var(--blue) 50% 75%, var(--yellow) 75%);
  opacity: 0.85;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1040px) {
  .svcs { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: 1fr; }
  .quote__out { grid-template-columns: 1fr; }
  .quote__out .btn { width: 100%; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .tt, .loc { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__kicker, .hero__cta, .hero__facts, .hero__line--c { justify-content: center; }
  .hero__text { margin-inline: auto; }
  .hero__art { order: -1; }
  .emblem { width: min(74%, 330px); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 74px; }
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset: 0; z-index: 1001;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(5, 6, 8, 0.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a:not(.btn) { font-size: 1.35rem; }
  .section { padding: 4.6rem 0; }
  .svcs, .steps { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 4 / 3; }
  .ba__knob { width: 46px; height: 46px; margin: -23px 0 0 -23px; }
  .wave svg { height: 54px; }
  .hero__scroll { display: none; }
  .quote__head { padding: 1.7rem 1.3rem 0; }
  .quote__form { padding: 1.2rem 1.3rem 1.8rem; }
  .chip span { padding: 0.55rem 0.95rem; font-size: 0.9rem; }
  .aviso { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 1.7rem 1.3rem; }
  .aviso .btn { width: 100%; }
}

/* ==========================================================================
   TELEFONO: todo un punto mas compacto
   ========================================================================== */
@media (max-width: 560px) {
  html { scroll-padding-top: 68px; }
  .container { width: calc(100% - 2rem); }

  /* Nav */
  .nav { padding: 0.6rem 0; }
  .nav__logo { width: 42px; height: 42px; }
  .nav.is-scrolled .nav__logo { width: 36px; height: 36px; }
  .nav__name { font-size: 0.95rem; }
  .nav__name span { font-size: 0.54rem; letter-spacing: 0.24em; }
  .nav__burger { width: 40px; height: 36px; }
  .nav__burger span:nth-child(1) { top: 11px; }
  .nav__burger span:nth-child(2) { top: 17px; }
  .nav__burger span:nth-child(3) { top: 23px; }
  .nav__links a:not(.btn) { font-size: 1.15rem; }

  /* Botones */
  .btn { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
  .btn--lg { padding: 0.85rem 1.6rem; font-size: 0.94rem; }
  .btn--sm { padding: 0.55rem 1.1rem; font-size: 0.78rem; }

  /* Hero */
  .hero { min-height: auto; padding: 6.2rem 0 3.2rem; }
  .hero__kicker { font-size: 0.76rem; letter-spacing: 0.16em; margin-bottom: 1rem; }
  .hero__kicker .dash { width: 26px; }
  .hero__text { font-size: 0.96rem; margin: 1.1rem 0 1.6rem; }
  .hero__inner { gap: 1.8rem; }
  .hero__cta { gap: 0.6rem; }
  .hero__facts { gap: 1.1rem; margin-top: 1.8rem; padding-top: 1.2rem; }
  .fact__n { font-size: 1.45rem; }
  .fact__l { font-size: 0.66rem; letter-spacing: 0.1em; }
  .emblem { width: min(60%, 215px); }
  /* en el telefono el sello va chico: solo "VIP", para que mande el logo */
  .emblem__badge { padding: 0.26rem 0.6rem; border-radius: 8px; }
  .emblem__badge b { font-size: 0.8rem; letter-spacing: 0.04em; }
  .emblem__badge span { display: none; }

  /* Cinta y olas */
  .marquee { padding: 0.55rem 0; }
  .marquee__track { font-size: 0.9rem; gap: 1.6rem; }
  .wave svg { height: 38px; }

  /* Encabezados de seccion */
  .section { padding: 3.2rem 0; }
  .shead { margin-bottom: 2rem; }
  .shead__kicker { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 0.6rem; }
  .shead p { font-size: 0.93rem; margin-top: 0.7rem; }

  /* Servicios: la foto al lado del texto, para no estirar tanto la pagina */
  .svcs { gap: 0.8rem; }
  .svc { flex-direction: row; align-items: stretch; }
  .svc__foto { width: 38%; flex: none; aspect-ratio: auto; border-radius: 0; }
  .svc__foto::after {
    background: linear-gradient(90deg, rgba(5,6,8,0.1), rgba(10,13,18,0.85));
  }
  .svc__cuerpo { flex: 1; padding: 1rem 1.1rem; margin-top: 0; display: flex; flex-direction: column; justify-content: center; }
  .svc__ico { display: none; }
  .svc h3 { font-size: 1.02rem; line-height: 1.2; }
  .svc p { font-size: 0.87rem; margin-top: 0.35rem; }
  .svc__n { font-size: 1.5rem; left: 0.6rem; right: auto; top: 0.4rem; }

  /* Factores del precio */
  .facts { gap: 0.9rem; }
  .factor { padding: 1.4rem 1.2rem; }
  .factor__ico { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 0.7rem; }
  .factor__ico svg { width: 22px; height: 22px; }
  .factor h3 { font-size: 1.04rem; }
  .factor p { font-size: 0.91rem; }

  /* Planes */
  .plans { gap: 1rem; }
  .plan { padding: 1.7rem 1.35rem; }
  .plan h3 { font-size: 1.3rem; }
  .plan__sub { font-size: 0.74rem; }
  .plan__list { margin: 1.1rem 0 1.4rem; gap: 0.55rem; }
  .plan__list li { font-size: 0.92rem; }
  .plan__tag { font-size: 0.62rem; padding: 0.3rem 2.6rem; top: 1rem; right: -2.6rem; }
  .plans__note { font-size: 0.86rem; }

  /* Cotizador */
  .quote { margin-top: 2.2rem; }
  .quote__head { padding: 1.5rem 1.2rem 0; }
  .quote__head p { font-size: 0.92rem; }
  .quote__form { padding: 1rem 1.2rem 1.6rem; }
  .qgroup { margin-top: 1.5rem; }
  .qgroup__title { font-size: 0.95rem; margin-bottom: 0.7rem; }
  .qgroup__title b { width: 25px; height: 25px; font-size: 0.82rem; }
  .qgroup__title i { font-size: 0.7rem; }
  .chips { gap: 0.45rem; }
  .chip span { padding: 0.48rem 0.85rem; font-size: 0.85rem; gap: 0.4rem; }
  .chip span::before { width: 6px; height: 6px; }
  .qtext { font-size: 0.95rem; padding: 0.75rem 0.9rem; }
  .tiempo { margin-top: 1.5rem; padding: 0.9rem 1rem; gap: 0.8rem; }
  .tiempo__ico { width: 38px; height: 38px; border-radius: 10px; }
  .tiempo__ico svg { width: 19px; height: 19px; }
  .tiempo b { font-size: 0.98rem; }
  .tiempo span { font-size: 0.82rem; }
  .quote__out { margin-top: 1.6rem; padding-top: 1.4rem; gap: 1.1rem; }
  .quote__resumen p { font-size: 0.89rem; padding: 0.7rem 0.85rem; }
  .quote__tip { font-size: 0.84rem; }

  /* Antes y despues */
  .ba__tag { font-size: 0.64rem; padding: 0.24rem 0.7rem; top: 0.7rem; }
  .ba__tag--l { left: 0.7rem; }
  .ba__tag--r { right: 0.7rem; }
  .ba__hint { font-size: 0.66rem; bottom: 0.7rem; }
  .ba__thumb { font-size: 0.78rem; padding: 0.42rem 0.95rem; }
  .gallery { margin-top: 1.8rem; gap: 0.9rem; }

  /* Proceso */
  .step { padding: 1.5rem 1.25rem; }
  .step__n { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 0.7rem; }
  .step h3 { font-size: 1.05rem; }
  .step p { font-size: 0.91rem; }

  /* TikTok */
  .tt { gap: 1.8rem; }
  .tt__embed { min-height: 470px; }
  .tt__stats { gap: 1.6rem; margin: 1.2rem 0 1.4rem; }
  .tt__stat b { font-size: 1.65rem; }
  .tt__stat > span { font-size: 0.68rem; }

  /* Preguntas */
  .faq { gap: 0.6rem; }
  .faq__item summary { font-size: 0.96rem; padding: 0.9rem 1.1rem; gap: 0.7rem; }
  .faq__item summary::after { width: 10px; height: 10px; }
  .faq__item p { font-size: 0.92rem; padding: 0 1.1rem 1.1rem; }

  /* Ubicacion */
  .loc { gap: 1.2rem; }
  .loc__card { padding: 1.5rem 1.3rem; }
  .loc__row { padding: 0.85rem 0; gap: 0.8rem; }
  .loc__row p { font-size: 0.95rem; }
  .loc__row b { font-size: 0.7rem; }
  .loc__row svg { width: 19px; height: 19px; }
  .loc__btns { gap: 0.5rem; margin-top: 1.2rem; }
  .loc__map, .loc__map iframe { min-height: 290px; }

  /* Cierre */
  .cta { padding: 3.6rem 0; }
  .cta p { font-size: 0.95rem; margin: 0.8rem auto 1.6rem; }
  .aviso { padding: 1.5rem 1.2rem; gap: 1rem; }
  .aviso__ico { width: 48px; height: 48px; }
  .aviso h3 { font-size: 1.04rem; }
  .aviso p { font-size: 0.91rem; }

  /* Pie */
  .foot { padding: 2.4rem 0 1.6rem; }
  .foot__grid { gap: 1.6rem; }
  .foot__logo { width: 68px; }
  .foot p, .foot__links a { font-size: 0.9rem; }
  .foot__bottom { margin-top: 1.8rem; font-size: 0.78rem; }

  /* WhatsApp flotante */
  .wsp { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  .wsp svg { width: 27px; height: 27px; }
}

@media (max-width: 380px) {
  .chip span { padding: 0.45rem 0.75rem; font-size: 0.8rem; }
  .btn--lg { font-size: 0.88rem; padding: 0.8rem 1.3rem; }
  .emblem { width: min(58%, 190px); }
}


/* ==========================================================================
   MURO VIP: pantallas chicas
   ========================================================================== */
@media (max-width: 1040px) {
  .vip__trato { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .vipaviso { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 1.7rem 1.3rem; }
  .vipaviso .btn { width: 100%; }
  .vip__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem; }
}

@media (max-width: 560px) {
  .vip__cinta { margin-bottom: 1.8rem; }
  .vip__cinta-track { font-size: 0.86rem; gap: 1.4rem; }
  .vip__trato { grid-template-columns: 1fr; gap: 0.8rem; margin-top: 1.8rem; }
  .trato { padding: 1.3rem 1.2rem; }
  .trato__ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 0.65rem; }
  .trato__ico svg { width: 21px; height: 21px; }
  .trato h3 { font-size: 0.98rem; }
  .trato p { font-size: 0.89rem; }
  .vipcard__info { padding: 0.85rem 0.9rem 1.1rem; }
  .vipcard__info h3 { font-size: 1rem; }
  .vipcard__info p { font-size: 0.85rem; }
  .vipcard__ini { font-size: 2.4rem; }
  .vipaviso h3 { font-size: 1.04rem; }
  .vipaviso p { font-size: 0.91rem; }
  .plan__extra { font-size: 0.87rem; }
}

@media (max-width: 560px) {
  .cierre { padding: 1.3rem 1.2rem; gap: 1rem; margin-top: 1.6rem; }
  .cierre__txt b { font-size: 1.15rem; }
  .cierre__txt span { font-size: 0.9rem; }
  .cierre__btns { width: 100%; }
  .cierre__btns .btn { width: 100%; }
}

/* ==========================================================================
   AJUSTES DE TELEFONO: que se vea mas y se pueda tocar mejor
   ========================================================================== */
@media (max-width: 560px) {
  /* la galeria de trabajos va de a dos: se ven mas autos y la pagina se acorta */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .shot { aspect-ratio: 1 / 1; border-radius: 13px; }
  .shot__cap { font-size: 0.74rem; padding: 1.1rem 0.6rem 0.6rem; line-height: 1.25; }
  .shot__pill { font-size: 0.72rem; top: 0.5rem; left: 0.5rem; padding: 0.2rem 0.55rem; }

  /* el menu abierto: cada link con area para el dedo */
  .nav__links a:not(.btn) { padding: 0.55rem 1rem; }

  /* las opciones del cotizador, mas altas para no errarle */
  .chip span { min-height: 40px; }

  /* textos decorativos que quedaban muy chicos */
  .nav__name span { font-size: 0.6rem; }
  .emblem__badge span { font-size: 0.62rem; }
  .shead__kicker { font-size: 0.74rem; }

  /* fichas del muro VIP: un poco mas altas para que se vean las caras */
  .vip__grid { gap: 0.7rem; }
  .vipcard--solo .vipcard__foto { aspect-ratio: 4 / 5; }
}

@media (max-width: 560px) {
  .nav__burger { width: 44px; height: 42px; }
  .foot__links a { padding: 0.3rem 0; }
  .loc__row p a { display: inline-block; padding: 0.25rem 0; }
}

@media (max-width: 860px) {
  .clips { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
}

@media (max-width: 560px) {
  .clips { grid-template-columns: 1fr; gap: 1rem; }
  .clip video { aspect-ratio: 3 / 4; }
  .clip figcaption { padding: 0.75rem 0.9rem 0.95rem; }
  .clip figcaption b { font-size: 0.98rem; }
  .clip figcaption span { font-size: 0.86rem; }
}

/* ==========================================================================
   TELEFONO, repaso final: letra legible y botones faciles de tocar
   ========================================================================== */
@media (max-width: 560px) {
  .fact__l { font-size: 0.76rem; }
  .shead__kicker { font-size: 0.78rem; }
  .clip__marca { font-size: 0.8rem; padding: 0.34rem 0.9rem; }

  .ba__thumb { min-height: 42px; padding: 0.55rem 1.1rem; }
  .loc__row p a { padding: 0.5rem 0; }
  .loc__btns .btn { min-height: 44px; }
  .foot__links a { padding: 0.5rem 0; }
}

@media (max-width: 560px) {
  .shot__pill { font-size: 0.76rem; }
  .shot__cap { font-size: 0.8rem; }
  .ba__tag, .ba__hint { font-size: 0.76rem; }
  .plan__sub { font-size: 0.8rem; }
  .plan__tag { font-size: 0.72rem; }
  .qgroup__title i { font-size: 0.78rem; }
  .tt__stat > span { font-size: 0.76rem; }
  .loc__row b { font-size: 0.78rem; }
}

