/* ============================================================
   GlassCar — Rediseño Geométrico, Técnico y Libre de Emojis
   ============================================================ */

/* El atributo [hidden] debe ocultar aunque el elemento tenga display explícito
   (p. ej. el mensaje "cotización vacía" o el pie del carrito). */
[hidden] { display: none !important; }

   /* Estilos para la imagen del logo en la barra superior */
.logo .logo-img {
  height: 40px;          /* Controla el alto del logo para que encaje en el header */
  width: auto;           /* Mantiene la proporción original de la imagen */
  display: block;
  object-fit: contain;   /* Evita que la imagen se estire o deforme */
}

/* Logo en footer más pequeño */
.logo-footer .logo-img {
  height: 28px;          /* Logo más compacto en footer */
  width: auto;
}

/* Opcional: Ajuste de separación si decides mantener el texto secundario lateral */
.logo-sub {
  margin-left: 4px;      /* Reduce o calibra el espacio entre el logo y el texto técnico */
}

:root {
  /* paleta cromática */
  --dark: #0a0c12;
  --dark-2: #0d1018;
  --gray: #f3f4f7;
  --white: #ffffff;
  --ink: #141a2e;
  --ink-soft: #5b6478;
  --line: #e4e7ee;
  --navy: #141a30;
  /* acentos */
  --green: #22c55e;
  --wa: #25d366;
  --blue: #2b6fd6;
  --sky: #2666C0;
  --sky-light-1: #F0F8FC;
  --sky-light-2: #E8F4F9;
  --blue-light: #D9E8F5;
  
  /* REDUCCIÓN DE BORDES REDONDEADOS */
  --radius-sm: 4px;      /* Cajas pequeñas, tags e inputs */
  --radius-md: 6px;      /* Tarjetas principales y contenedores */
  --radius-btn: 20px;    /* Redondeado controlado suave para botones píldora */
  
  --max: 1240px;
  /* FUENTE SANS GEOMÉTRICA (Space Grotesk) */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --hero-img: url('fondoinicio.png'); 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--gray); color: var(--ink); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 860px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,.5); }

/* ===== Header ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; color: #fff; background: transparent; transition: all .3s var(--ease); }
.header.scrolled { color: var(--ink); background: var(--white); box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(168,220,226,.15); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; color: inherit; }
.logo-mark { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.03em; }
.logo-sub { font-size: .82rem; font-weight: 700; line-height: 1.1; }
.logo-sub small { font-weight: 400; font-size: .68rem; opacity: .6; letter-spacing: .03em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: inherit; opacity: .7; font-weight: 600; font-size: .95rem; transition: opacity .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: #1C5AC8; }
.nav-right { display: flex; align-items: center; gap: 16px; }

.branch-select { border: 1px solid #1C5AC8; background: #0f1423; border-radius: var(--radius-sm); padding: 8px 14px; font-weight: 600; font-size: .85rem; cursor: pointer; color: #ffffff; transition: .2s; }
.branch-select:hover { border-color: #2A77FC; background: #1a2140; }
.branch-select:focus { outline: none; border-color: #2A77FC; background: #1a2140; }
.branch-select option { background: #0f1423; color: #ffffff; padding: 8px; }
.branch-select option:checked { background: #1C5AC8; color: #ffffff; }

.lang-select { border: 1px solid currentColor; opacity: .85; border-radius: var(--radius-sm); padding: 8px 14px; font-weight: 600; font-size: .85rem; cursor: pointer; display: flex; gap: 8px; align-items: center; }
.lang-select i { font-size: .75rem; }

/* Botón píldora técnico */
.btn-pill-out { background: #0f1423; color: #fff; border: 1px solid #0f1423; border-radius: var(--radius-btn); padding: 10px 22px; font-family: var(--font-display); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; transition: .2s; }
.btn-pill-out:hover { background: #1e293b; border-color: #1e293b; }
.btn-pill-out .fa-whatsapp { color: var(--wa); font-size: 1.1rem; }
.header.scrolled .btn-pill-out { background: #0f1423; color: #fff; border-color: #0f1423; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Botones Estructurados ===== */
.btn-white { background: #fff; color: var(--ink); border-radius: var(--radius-btn); padding: 14px 28px; font-family: var(--font-display); font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: 9px; transition: .2s var(--ease); border: 0; cursor: pointer; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,255,255,.15); }

.btn-out { background: #0f1423; color: #fff; border: 1px solid #0f1423; border-radius: var(--radius-btn); padding: 14px 28px; font-family: var(--font-display); font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: 9px; transition: .2s var(--ease); }
.btn-out:hover { background: #1e293b; border-color: #1e293b; transform: translateY(-2px); }
.btn-out .fa-whatsapp { color: var(--wa); font-size: 1.1rem; }

.btn-navy { background: linear-gradient(135deg, #1C5AC8 0%, #012680 100%); color: #fff; border-radius: 24px; padding: 16px 36px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; transition: all .3s var(--ease); border: 0; cursor: pointer; box-shadow: 0 4px 16px rgba(1,38,128,0.4); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(20,26,48,.2); }
.btn-block { width: 100%; justify-content: center; }
.arrow { transition: transform .25s var(--ease); }
.btn-navy:hover .arrow, .svc-link:hover .arrow { transform: translateX(4px); }

/* ===== Placeholder de Imagen Genérico ===== */
.img-ph { background:
    linear-gradient(135deg, rgba(20,26,46,.02), rgba(20,26,46,.05)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(20,26,46,.02) 14px, rgba(20,26,46,.02) 28px);
  border: 1px dashed rgba(20,26,46,.15); display: grid; place-items: center; color: var(--ink-soft);
  background-image: var(--ph-img); background-size: cover; background-position: center; }
.img-ph i { font-size: 1.6rem; opacity: .4; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; padding: 120px 0 0; overflow: hidden; background: linear-gradient(to top right, #041943 0%, #041943 30%, #032CA6 100%); color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img), linear-gradient(to top right, #041943 0%, #041943 30%, #032CA6 100%);
  background-size: cover; background-position: center right; }
.hero-fade { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle 800px at 0% 0%, rgba(11,58,127,0.9) 0%, rgba(11,58,127,0.5) 20%, transparent 50%), radial-gradient(circle 1200px at 0% 0%, rgba(2,27,74,1) 0%, rgba(2,27,74,0.8) 10%, rgba(2,27,74,0.5) 25%, rgba(2,27,74,0.2) 45%, transparent 70%), radial-gradient(ellipse 80% 70% at 70% 45%, transparent 0%, transparent 10%, rgba(0,0,0,0.2) 18%, rgba(0,0,0,0.4) 24%, rgba(0,0,0,0.6) 32%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.95) 48%, rgba(0,0,0,1) 55%); }

.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(38,130,192,.15); border: 1px solid rgba(38,130,192,.4); border-radius: var(--radius-sm); padding: 8px 16px; font-family: var(--font-display); font-weight: 600; font-size: .7rem; letter-spacing: .12em; margin-bottom: 20px; color: rgba(255,255,255,.8); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 600px; }
.hero-title { font-size: clamp(2.8rem, 5.5vw, 4.6rem); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.hero-title .line-1, .hero-title .line-2 { display: block; }
.hero-title .line-1 { opacity: 0; transform: translateY(20px); animation: up .6s var(--ease) .1s forwards; }
.hero-title .line-2 { color: #ffffff; opacity: 0; transform: translateY(20px); animation: up .6s var(--ease) .25s forwards; }
@keyframes up { to { opacity: 1; transform: translateY(0); } }
.hero-model { position: absolute; right: 260px; top: 43%; transform: translateY(-50%); width: 43%; height: 520px; max-width: 480px; z-index: 5; pointer-events: none; }
model-viewer { width: 100%; height: 100%; background: transparent; }
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.1rem; margin: 24px 0 15px; max-width: 470px; opacity: 0; animation: up .6s var(--ease) .45s forwards; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: up .6s var(--ease) .6s forwards; position: relative; z-index: 20; }

.hero-brands { display: flex; gap: 20px; margin-top: 40px; align-items: center; opacity: 0; animation: up .6s var(--ease) .7s forwards; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 16px 20px; width: fit-content; }

.hero-brands img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; animation: float 3s ease-in-out infinite; }

.hero-brands img:nth-child(2) { animation-delay: 0.2s; }
.hero-brands img:nth-child(3) { animation-delay: 0.4s; }
.hero-brands img:nth-child(4) { animation-delay: 0.6s; }
.hero-brands img:nth-child(5) { animation-delay: 0.8s; }

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.typing-dots { display: inline-block; animation: typing-blink 1.4s infinite; }

@keyframes typing-blink {
  0%, 10% { opacity: 1; }
  20%, 30% { opacity: 0; }
  40%, 50% { opacity: 1; }
  60%, 70% { opacity: 0; }
  80%, 100% { opacity: 1; }
}

.stats-card { position: absolute; right: 150px; bottom: 120px; z-index: 3; width: 280px; max-width: calc(100% - 56px); background: rgba(20,26,48,.6); border: 1px solid rgba(38,130,192,.3); border-radius: var(--radius-md); padding: 12px 16px; backdrop-filter: blur(16px); box-shadow: 0 30px 80px rgba(38,130,192,.2); opacity: 0; animation: up .7s var(--ease) .7s forwards; }
.sc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-row i { width: 44px; height: 44px; background: #114AB3; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.sc-row strong { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; letter-spacing: -.02em; color: var(--sky); }
.sc-label { text-align: right; display: flex; flex-direction: column; color: rgba(255,255,255,.7); font-size: .7rem; }
.sc-label b { font-family: var(--font-display); font-weight: 700; font-size: .66rem; letter-spacing: .14em; color: rgba(255,255,255,.9); }
.sc-divider { height: 1px; background: rgba(168,220,226,.3); margin: 8px 0; }
.scroll-ind { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: .66rem; letter-spacing: .25em; color: rgba(255,255,255,.75); }
.scroll-ind .chev { font-size: 1rem; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ===== Secciones Generales ===== */
.section { padding: 110px 0; position: relative; }
.sec-white { background: var(--white); }
.sec-gray { background: var(--sky-light-1) url('fondoserv.png') center / contain no-repeat; }

/* Alternancia variada profesional */
.section:nth-child(4) { background: var(--sky-light-2); }
.section:nth-child(6) { background: var(--blue-light); }
.section h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: var(--ink); }
.section h2.upper { text-transform: uppercase; letter-spacing: -.02em; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-soft); font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.eyebrow b { color: var(--sky); }
.eyebrow .bar { width: 22px; height: 2px; background: var(--sky); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; max-width: 540px; }
.lead.center { margin-left: auto; margin-right: auto; }
.head-left { margin-bottom: 56px; }
#comunidad .head-left { max-width: 350px; }
#comunidad .head-left h2 { font-size: 3.5rem; line-height: 1.1; }
#comunidad .head-left .lead { font-size: 1.4rem; max-width: 480px; line-height: 1.4; }
.head-center { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.center-cta { text-align: center; margin-top: 48px; }

/* ===== Nosotros ===== */
#nosotros { position: relative; height: 130vh; padding: 0; }
#nosotros::before { display: none; }
#nosotros .container { max-width: 100%; padding: 0; height: 100%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; height: 100%; width: 100%; grid-auto-rows: 1fr; }
.about-media { position: relative; height: 100%; overflow: visible; }
.about-main { width: 100%; height: 100%; border-radius: 0; border: none; --ph-img: var(--about-img-1, none); background-size: 100% 100% !important; background-position: 70% center !important; display: block; clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%); }
.about-mini { position: absolute; bottom: 80px; left: 80px; width: 200px; aspect-ratio: 1/1; border-radius: 12px; border: 3px solid rgba(255,255,255,.5); --ph-img: var(--about-img-2, none); }
.about-medal { position: absolute; left: 310px; bottom: 85px; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 14px; background: rgba(1,23,62,0.9); color: #fff; border-radius: 14px; padding: 20px 24px; border: 2px solid #175EE0; box-shadow: 0 0 20px rgba(23,94,224,0.4), 0 8px 24px rgba(0,0,0,0.3); }
.about-medal .medal { font-size: 2rem; color: #175EE0; }
.about-medal strong { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; display: block; line-height: 1; color: #fff; }
.about-medal span { font-size: .75rem; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,0.85); }
.about-text { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; text-align: left; padding: 60px 0 60px 80px; gap: 12px; }
.about-header-desktop { margin-bottom: 24px; }
.about-header-desktop .eyebrow { font-size: 0.85rem; }
.about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0; width: 110px; height: 110px; background: rgba(23,94,224,0.1); border: 2px solid rgba(23,94,224,0.4); border-radius: 14px; gap: 10px; }
.feature-item i { font-size: 2.4rem; color: #175EE0; }
.feature-item span { font-size: 0.85rem; font-weight: 700; line-height: 1.3; color: #141a30; }
.about-text h2 { margin-bottom: 6px; font-size: 4rem; font-weight: 800; color: #141a30; line-height: 1.1; }
.about-text .lead { margin-top: 0 !important; margin-bottom: 12px !important; max-width: 100% !important; font-size: 1.2rem !important; line-height: 1.38 !important; letter-spacing: 0.3px !important; }
.check-list { list-style: none; margin: 16px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding: 14px 20px 14px 50px; color: var(--ink); font-weight: 500; font-size: 1.05rem; background: #fff; border-left: 3px solid #175EE0; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #031645; color: #fff; font-size: .75rem; }

/* ===== Servicios ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; min-height: 480px; }
.svc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px; transition: .25s var(--ease); clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%); }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(20,26,46,.08); }
.svc-img { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; }
.svc-badge { position: absolute; top: 14px; right: 14px; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; padding: 6px 12px; border-radius: var(--radius-sm); z-index: 2; }
.svc-body { padding: 20px 16px 20px 32px; }
.svc-arrow { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--gray); color: var(--ink); font-size: .95rem; cursor: pointer; transition: .2s var(--ease); margin-bottom: 18px; display: grid; place-items: center; }
.svc-arrow:hover { background: var(--sky); color: var(--navy); border-color: var(--sky); }
.svc-body h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: .01em; margin-bottom: 8px; }
.svc-subtitle { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.4; }
.svc-price { font-size: 1.3rem; font-weight: 700; color: var(--sky); margin-bottom: 16px; }
.svc-areas { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 12px; }
.svc-areas .pin { color: var(--sky); font-size: .88rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tags span { background: var(--gray); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 5px 12px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink); }
.svc-link:hover { color: var(--sky); }

/* ============================================================
   SECCIÓN BENEFICIOS (Réplica del estilo corporativo de la imagen)
   ============================================================ */
.sec-benefits {
  background-image: url('beneficiosfondo.jpg');
  background-size: 100% 100%;
  background-color: #2c7a8d;
  color: #000;
  padding: 120px 0;
}

/* Encabezado asimétrico distribuido */
.benefits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.benefits-header h2 {
  color: #000 !important;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-top: 12px;
}
.benefits-header .eyebrow.technical {
  color: #000;
}
.benefits-header .eyebrow.technical .bar {
  background: #000;
}
.bh-right p {
  color: #000;
  font-size: 1.05rem;
  max-width: 320px;
  line-height: 1.5;
}

/* El contenedor maestro que encierra la cuadrícula unificada */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(168, 220, 226, 0.15);
  border-radius: var(--radius-md); /* Esquinas rectas técnicas */
  overflow: hidden;
}

/* Celdas individuales de la cuadrícula */
.benefit-cell {
  position: relative;
  padding: 50px 40px;
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

/* Eliminar bordes sobrantes para mantener la limpieza del panel */
.benefits-grid .benefit-cell:nth-child(3n) {
  border-right: none;
}
.benefits-grid .benefit-cell:nth-child(n+4) {
  border-bottom: none;
}

/* Efecto hover sutil de tecnología */
.benefit-cell:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* Contenedor cuadrado pequeño para los iconos técnicos */
.b-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(23, 94, 224, 0.15);
  border: 1px solid rgba(168, 220, 226, 0.15);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.b-icon-box i {
  color: #175EE0;
  font-size: 1.1rem;
}

.bg-number {
  color: #175EE0 !important;
}

/* Títulos y textos de los beneficios */
.benefit-cell h4 {
  font-family: var(--font-body); /* Tipo de letra más limpio para consistencia */
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.benefit-cell p {
  color: #000;
  font-size: 0.92rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Números gigantes integrados en el fondo con opacidad baja */
.bg-number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* Adaptación responsiva estricta para pantallas móviles */
@media (max-width: 960px) {
  .benefits-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .bh-right p {
    max-width: 100%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 40px 28px;
  }
  .benefits-grid .benefit-cell:last-child {
    border-bottom: none !important;
  }
}

/* ===== Comunidad ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--gray); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 36px 28px; transition: .25s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,26,46,.08); }
.card-icon { font-size: 2rem; margin-bottom: 18px; color: var(--sky); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--ink-soft); }

/* ===== Galería ===== */
.gallery-wrapper { position: relative; display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.gallery { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-auto-rows: 200px; gap: 18px; flex: 1; }
.g-item { border-radius: var(--radius-md); overflow: hidden; display: grid; place-items: center; border: 2px solid #2682C0; }
.g-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.g-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.g-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.g-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.g-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-nav { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #2682C0; background: #fff; color: #2682C0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; }
.gallery-nav:hover { background: #2682C0; color: #fff; }
.gallery-pagination { display: flex; justify-content: center; gap: 8px; }
.gallery-pagination button { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #2682C0; background: transparent; cursor: pointer; transition: all 0.3s; }
.gallery-pagination button.active { background: #2682C0; }

/* ===== Testimonios ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 28px; position: relative; border-left: 4px solid #2682C0; }
.stars { color: #f5b50a; font-size: .85rem; display: flex; gap: 4px; margin-bottom: 16px; }
.testi p { font-size: 0.98rem; color: var(--ink); line-height: 1.5; }
.testi footer { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 42px; height: 42px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; }
.testi footer strong { display: block; color: var(--ink); }
.testi footer span { color: var(--ink-soft); font-size: .85rem; }

/* ============================================================
   BANNER CTA PREMIUM (ESTILO IMAGEN)
   ============================================================ */
.sec-cta-banner {
  position: relative;
  padding: 140px 0;
  background: #394b81; /* Oscuro sólido */
  background-image: url('costado.jpg'); /* AQUÍ PONDRÁS TU IMAGEN DESPUÉS */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efecto sutil de movimiento al hacer scroll */
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 450px;
}

/* Capa oscura para que el texto resalte sobre la imagen */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 18, 0.9) 20%, rgba(10, 12, 18, 0.4) 100%);
  z-index: 1;
}

.cta-flex-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-content {
  max-width: 650px;
}

.cta-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: none; /* Mantener estilo natural como la imagen */
  letter-spacing: -0.03em;
}

.cta-content p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
}

/* Columna de botones */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
}

/* Estilo Botón Blanco */
.btn-cta-white {
  background: #ffffff;
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 999px; /* Botones tipo píldora como en la imagen */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s var(--ease);
}

.btn-cta-white:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Estilo Botón Outline */
.btn-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s var(--ease);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Responsive para el Banner */
@media (max-width: 992px) {
  .cta-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .cta-content p {
    margin: 0 auto;
  }
  .cta-actions {
    width: 100%;
    max-width: 320px;
  }
  .cta-overlay {
    background: rgba(10, 12, 18, 0.7); /* Oscurecer más en móvil */
  }
}
/* ============================================================
   SECCIÓN DE CONTACTO PREMIUM (RÉPLICA EXACTA DE LA IMAGEN)
   ============================================================ */
.sec-contact-premium {
  background-size: 100% 100% !important;
  background-position: center !important;
  padding: 120px 0;
}

.grid-contact-premium {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* --- Panel de Información (Izquierda) --- */
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #0b132a;
  line-height: 1.05;
  margin: 16px 0 24px;
}
.contact-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 460px;
  margin-bottom: 40px;
}

/* Lista de Bloques de Datos */
.contact-data-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-data-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cd-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #175EE0;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-texts {
  display: flex;
  flex-direction: column;
}
.cd-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #adb5bd;
  margin-bottom: 2px;
}
.cd-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b132a;
}
a.cd-value {
  transition: color 0.2s;
}
a.cd-value:hover {
  color: var(--sky);
}

/* Redes Sociales Circulares */
.contact-social-row {
  display: flex;
  gap: 12px;
}
.contact-social-row a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  background: #ffffff;
  color: #495057;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: all 0.25s var(--ease);
}
.contact-social-row a:hover {
  border-color: #0b132a;
  color: #0b132a;
  transform: translateY(-2px);
}

/* --- Tarjeta del Formulario (Derecha) --- */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(23,94,224,.3);
  border-radius: 28px; /* Redondeado curvo amplio como la imagen */
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(23, 94, 224, 0.2);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b132a;
  margin-bottom: 32px;
}

/* Elementos del Formulario */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-double-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #495057;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  background: #f1f3f7;
  border: 1px solid rgba(62,189,222,.3);
  border-radius: 12px;
  padding: 16px;
  font-size: 1.3rem;
  color: #0b132a;
  font-family: inherit;
  transition: all 0.2s ease;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2682C0;
  box-shadow: 0 0 0 4px rgba(62, 189, 222, 0.1);
}
.contact-form-card textarea {
  resize: none;
}

/* Ajuste del selector nativo */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #495057;
  font-size: 0.8rem;
  pointer-events: none;
}

/* Combobox buscador (servicio de interés) */
.combo-search {
  position: relative;
}
.combo-search input {
  padding-right: 42px;
}
.combo-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #495057;
  font-size: 0.8rem;
  pointer-events: none;
}
.combo-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: white;
  border: 1px solid rgba(62,189,222,.4);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  max-height: 260px;
  overflow-y: auto;
}
.combo-list li {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.combo-list li:hover,
.combo-list li.active {
  background: #2682C0;
  color: white;
}
.combo-list li.combo-empty {
  color: #999;
  cursor: default;
  font-size: 0.9rem;
}
.combo-list li.combo-empty:hover {
  background: transparent;
  color: #999;
}

/* Botón de Envió Corporativo Oscuro */
.btn-premium-submit {
  width: 100%;
  background: #175EE0;
  color: #ffffff;
  border: none;
  border-radius: 999px; /* Formato píldora de la imagen */
  padding: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.25s var(--ease);
}
.btn-premium-submit:hover {
  background: #1349c1;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(23, 94, 224, 0.25);
}

/* --- Adaptación en Pantallas Móviles --- */
@media (max-width: 992px) {
  .grid-contact-premium {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-card {
    padding: 36px 24px;
  }
  .form-double-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============================================================
   FOOTER PREMIUM (DIAGONAL ASIMÉTRICA - ESTILO 7H)
   ============================================================ */
.footer-premium {
  background: linear-gradient(180deg, #e9f0fa 0%, #f4f8fd 45%);
  color: #000000;
  position: relative;
  padding-top: 40px;
  padding-bottom: 0px;
}

.footer-premium-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
  gap: 48px;
  padding-bottom: 80px;
  align-items: flex-start;
  position: relative;
  top: 20px;
}

/* --- Columna de Marca --- */
.fp-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 350px;
  position: relative;
  left: -80px;
}
.logo-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  margin-bottom: 24px;
}
.lf-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -.05em;
}
.lf-sub {
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
}
.lf-sub small {
  font-weight: 400;
  font-size: .68rem;
  opacity: .8;
  color: #000000;
}
.fp-brand-tagline {
  color: #000000;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 12px;
  margin: 0 0 12px 0;
  max-width: 280px;
}
.tagline-highlight {
  color: #134ED7;
}
.fp-brand-text {
  color: #000000;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 32px;
}

/* Redes Sociales Cuadradas con Esquinas Suaves */
.fp-social-links {
  display: none;
}
.fp-social-links a {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.88rem;
  transition: all 0.2s ease;
}
.fp-social-links a:hover {
  border-color: #000000;
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
}

/* --- Columnas de Enlaces --- */
.fp-col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 24px;
}
.fp-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fp-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
.fp-links li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fp-links a {
  color: #000000;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-right: 16px;
}
.fp-links a i {
  color: #134ED7;
  font-size: 1.1rem;
}
.fp-links a::after {
  content: '→';
  position: absolute;
  right: 0;
  color: #000000;
  font-size: 1.2rem;
}
.fp-links a:hover {
  color: #000000;
}
.fp-links a:hover i {
  color: #0d2a7a;
}
.fp-links a:hover::after {
  color: #000000;
}

/* --- Columna de Información Técnica --- */
.fp-col-contact {
  background: linear-gradient(135deg, #031D5C 0%, #0A4FA8 100%);
  border-radius: 12px;
  padding: 24px;
}
.fp-col-contact .fpc-icon {
  align-self: flex-start;
  margin-top: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}
.fp-col-contact h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 24px;
}
.fp-col-contact .fpc-label {
  color: rgba(255, 255, 255, 0.7);
}
.fp-col-contact .fpc-value {
  color: #ffffff;
}
.btn-escribenos-wasap {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-escribenos-wasap:hover {
  background: #1fa855;
  transform: translateY(-2px);
}
.fp-contact-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fp-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fpc-icon {
  width: 36px;
  height: 36px;
  background: rgba(23, 94, 224, 0.1);
  border-radius: 8px;
  color: #175EE0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.fpc-texts {
  display: flex;
  flex-direction: column;
}
.fpc-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1px;
}
.fpc-value {
  font-size: 0.85rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}
a.fpc-value:hover {
  color: #000000;
}

.fp-features-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 24px;
}
.fp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
}
.fp-feature i {
  font-size: 1.4rem;
  color: #134ED7;
  flex-shrink: 0;
}
.fp-feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fp-feat-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
}
.fp-feat-text {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.7);
}

/* --- Línea de Derechos Reservados --- */
.footer-premium-bottom {
  background: #0D1525;
  border-top: none;
  padding: 15px 0 20px 0;
  margin-top: 0px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 50px;
}
.footer-premium-bottom p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
}
.footer-security {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #ffffff;
  white-space: nowrap;
}
.footer-security i {
  font-size: 0.85rem;
  color: #ffffff;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.footer-social-icons a:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Adaptación para Pantallas de Teléfonos y Tablets --- */
@media (max-width: 992px) {
  .footer-premium {
    padding-top: 60px;
    /* Se quita la imagen del auto: al apilar, tapaba el texto negro */
    background-image: none;
    background-color: #eef4fb;
  }
  .footer-premium-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fp-col-brand {
    left: 0;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .footer-premium-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fp-brand-text {
    max-width: 100%;
  }
  .footer-premium-bottom p {
    color: rgba(0, 0, 0, 0.7);
  }
}

/* ===== Elementos Flotantes ===== */
.wa-float { position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,.35); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.06); }

.to-top { position: fixed; right: 28px; bottom: 96px; z-index: 90; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: .9rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s var(--ease); box-shadow: 0 6px 20px rgba(20,26,46,.08); display: grid; place-items: center; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== Animations / Reveals ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .stats-card { position: static; transform: none; width: 100%; max-width: 440px; margin: 40px 0 0; animation: none; opacity: 1; }
  .scroll-ind { display: none; }
  .about-mini { left: 0; }
}
@media (max-width: 1100px) {
  .hero { min-height: 100vh; padding: 140px 0 0; align-items: flex-start !important; }
  .hero-model { display: block !important; position: absolute !important; right: 0 !important; left: 0 !important; top: auto !important; bottom: 20px !important; transform: none !important; width: 100% !important; height: 280px !important; max-width: 100% !important; z-index: 2; pointer-events: none !important; }

    /* Activar la opción únicamente dentro del menú cortina del celular */
  .nav-links .only-mobile.nav-link-whatsapp-right {
    display: flex !important;
    align-items: center;
    justify-content: space-between; /* Texto a la izquierda, ícono a la derecha */
    width: 100%;                     /* Ocupa todo el ancho disponible */
    color: #0f1423 !important;       /* Color oscuro corporativo */
    font-family: var(--font-display) !important;
    font-size: 1.4rem !important;    /* Tamaño grande de la cortina móvil */
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  /* Estilo del logotipo de WhatsApp flotando a la derecha en celular */
  .nav-links .only-mobile.nav-link-whatsapp-right i {
    color: #25d366;                 /* Verde oficial de WhatsApp */
    font-size: 1.4rem;
    margin-right: 4px;
  }

  /* Comportamiento táctil o hover */
  .nav-links .only-mobile.nav-link-whatsapp-right:hover,
  .nav-links .only-mobile.nav-link-whatsapp-right:active {
    color: var(--blue) !important;
  }
  .nav-links { position: fixed; top: 84px; right: 0; flex-direction: column; align-items: flex-start; gap: 22px; background: var(--white); color: var(--ink); border-left: 1px solid var(--line); padding: 32px 36px; width: 260px; height: calc(100vh - 84px); transform: translateX(100%); transition: transform .3s var(--ease); }
  .nav-links a { opacity: 1; color: var(--ink); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-right { display: none; }
  .hero { align-items: flex-start !important; padding-top: 80px !important; }
  .about-grid, .grid-2 { grid-template-columns: 1fr; }
  .svc-grid, .benefits, .testimonials, .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   AJUSTES EXCLUSIVOS PARA INICIO (HERO) EN VISTA DE CELULAR
   ============================================================ */
@media (max-width: 1200px) {
  html { scroll-padding-top: 40px; overflow-x: hidden !important; max-width: 100vw !important; width: 100vw !important; }
  body { overflow-x: hidden !important; max-width: 100vw !important; width: 100vw !important; }
  .logo-img { height: 28px !important; }
  .logo-sub { font-size: 0.65rem !important; }
  .nav-toggle { display: flex !important; margin-left: auto !important; width: 30px !important; height: 30px !important; flex-shrink: 0 !important; z-index: 101 !important; }
  .hero-brands { display: none !important; }
  .hero { min-height: 100vh !important; padding: 110px 0 0 !important; align-items: flex-start !important; }
  #nosotros { margin-top: 40px !important; }
  .hero-model { bottom: auto !important; top: 200px !important; }

  /* 1. Mostrar stats-card en mobile */
  .stats-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: 21 !important;
  }

  .sc-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: rgba(255,255,255,.95) !important;
    border: 1px solid rgba(168,220,226,.4) !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    min-width: 100px !important;
    box-shadow: 0 30px 80px rgba(168,220,226,.2) !important;
  }

  .sc-row strong {
    font-size: 1.4rem !important;
  }

  .sc-label {
    font-size: 0.65rem !important;
  }

  .sc-divider {
    display: none !important;
  }

  .stats-card * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    padding: auto !important;
    margin: auto !important;
  }

  /* 2. Adaptar el contenedor del Hero al formato limpio de la imagen */
  .hero {
    min-height: 100vh;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-top: 80px;
    padding-bottom: 0px;
    margin-bottom: -40px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    align-items: flex-start;
    text-align: left;
    overflow: hidden !important;
  }

  /* Modelo mobile pegado a botones */
  .hero-model {
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    left: 0 !important;
    top: auto !important;
    bottom: 70px !important;
    transform: none !important;
    width: 100% !important;
    height: 280px !important;
    max-width: 100% !important;
    z-index: 2;
  }


  .hero-inner { max-width: 100% !important; overflow: hidden !important; width: 100% !important; }
  .container { max-width: 100% !important; width: 100% !important; }

  /* 3. Ajustar los textos principales (H1 y párrafo) */
  .hero-content h1 {
    font-size: clamp(2.4rem, 8vw, 3rem) !important; /* Texto imponente pero adaptado */
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em;
  }

  .hero-content p {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 32px !important;
    max-width: 100%;           /* Aprovecha todo el ancho del celular */
  }

  /* 4. Estirar los botones para que sean cómodos de presionar en celular */
  .hero-actions {
    flex-direction: column;    /* Un botón encima del otro */
    gap: 12px !important;
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions a {
    width: 100%;               /* Ancho completo en móvil */
    justify-content: center;   /* Centra el texto e ícono dentro del botón */
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }
}
/* Estilo integrado para la opción Únete con icono */
  .nav-links a.nav-link-whatsapp {
    display: flex !important;
    align-items: center;
    gap: 12px;                  /* Espacio fino entre el icono y el texto */
    color: #0f1423 !important;  /* Mismo color oscuro corporativo de las demás opciones */
  }

  /* Color verde oficial para el icono de WhatsApp, manteniendo el texto limpio */
  .nav-links a.nav-link-whatsapp i {
    color: #25d366;             /* Verde de la marca */
    font-size: 1.5rem;          /* Tamaño perfectamente equilibrado con el texto */
  }

  /* Efecto de desplazamiento sutil al interactuar */
  .nav-links a.nav-link-whatsapp:hover,
  .nav-links a.nav-link-whatsapp:active {
    color: var(--blue) !important;
  }
  /* Ocultar por defecto las opciones exclusivas de móvil en la vista de PC */
.nav-links .only-mobile {
  display: none !important;
}
/* ============================================================
   ASIGNACIÓN DE IMÁGENES EN "NOSOTROS" SIN ALTERAR EL DISEÑO
   ============================================================ */

/* 1. Ocultar los iconos antiguos de FontAwesome sin romper la estructura */
.about-main i, 
.about-mini i {
  display: none !important;
}

/* 2. Cargar tu Imagen Principal en la caja grande */
.about-main {
  /* REEMPLAZA 'img/nosotros-grande.jpg' POR TU RUTA REAL */
  background: url('lavado.jpg') no-repeat center center !important;
  background-size: cover !important;
}

/* 3. Cargar tu Imagen Secundaria en la caja pequeña/mini */
.about-mini {
  /* REEMPLAZA 'img/nosotros-mini.jpg' POR TU RUTA REAL */
  background: url('mini.jpg') no-repeat center center !important;
  background-size: cover !important;
}

/* ============================================================
   CONTROL DE VISIBILIDAD DE CABECERAS EN NOSOTROS (PC vs CELULAR)
   ============================================================ */

/* Por defecto en PC ocultamos la cabecera móvil especial */
.about-header-mobile {
  display: none;
}

/* En PC el bloque mantiene el título normal del costado */
.about-header-desktop {
  display: block;
  margin-bottom: 20px;
}

/* --- AJUSTE RESPONSIVO EXCLUSIVO PARA DISPOSITIVOS MÓVILES --- */
@media (max-width: 900px) {
  
  /* Convertimos la cuadrícula en un flexbox vertical ordenable */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* 1. MOSTRAR CABECERA MÓVIL Y MANDARLA ARRIBA DEL TODO */
  .about-header-mobile {
    display: block !important;
    order: 1 !important; /* Posición 1: Título */
    width: 100%;
    margin-bottom: 10px;
  }

  /* 2. ACOMODAR LAS IMÁGENES INMEDIATAMENTE DEBAJO DEL TÍTULO */
  .about-media {
    order: 2 !important; /* Posición 2: Imágenes asimétricas */
    width: 100% !important;
  }

  /* 3. ACOMODAR EL CUERPO DE TEXTO, LISTA Y BOTÓN AL FINAL */
  .about-text {
    order: 3 !important; /* Posición 3: Reseña, Checks y Botón */
    width: 100% !important;
  }

  /* Ocultamos el título interno viejo para que no se duplique abajo */
  .about-header-desktop {
    display: none !important;
  }
}
/* Coloca esto al final de tu archivo styles.css */
model-viewer::part(default-progress-bar) {
  display: none !important;
}
/* Hace que el modelo 3D ignore por completo cualquier interacción del mouse o táctil */
model-viewer#car-model {
  pointer-events: none;
}

/* ============================================================
   PAGINACIÓN DE SERVICIOS
   ============================================================ */
.svc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.svc-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 2px solid #2682C0;
  background: white;
  color: #2682C0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.svc-page-btn:hover {
  background: #2682C0;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 130, 192, 0.3);
}

.svc-page-btn.active {
  background: #2682C0;
  color: white;
  box-shadow: 0 4px 12px rgba(38, 130, 192, 0.3);
}

.svc-page-btn i {
  font-size: 0.85rem;
}

/* Buscador del catálogo */
.svc-search {
  display: flex;
  gap: 10px;
  margin: 0 0 30px;
  max-width: 520px;
}

.svc-search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid #2682C0;
  border-radius: 8px;
  padding: 0 12px;
}

.svc-search-box i {
  color: #2682C0;
}

.svc-search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  height: 44px;
  font-size: 1rem;
  color: #1a1a1a;
}

.svc-search-box button {
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}

.svc-search-box button:hover {
  color: #2682C0;
}

.svc-search-btn {
  height: 48px;
  padding: 0 22px;
  border: 2px solid #2682C0;
  background: #2682C0;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.svc-search-btn:hover {
  background: white;
  color: #2682C0;
}

/* Mensajes de estado del catálogo (cargando / sin resultados) */
.svc-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #2682C0;
  font-weight: 600;
  font-size: 1.05rem;
}

.svc-status i {
  margin-right: 8px;
}


/* ============================================================
   CATÁLOGO: menú de categorías, filtro y tarjetas con carrito
   ============================================================ */

/* --- Dropdown "Catálogo" en el nav --- */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-toggle .fa-chevron-down { font-size: .7rem; transition: transform .2s var(--ease); }
.nav-dropdown:hover .nav-dropdown-toggle .fa-chevron-down,
.nav-dropdown.open .nav-dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; max-height: 60vh; overflow-y: auto;
  background: #fff; border-radius: 14px; padding: 10px;
  box-shadow: 0 24px 60px rgba(20,26,46,.18); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transition: .2s var(--ease); z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.nav-cat-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px; border-radius: 9px; font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .04em; color: var(--ink) !important; text-transform: uppercase;
  transition: .15s var(--ease);
}
.nav-cat-item:hover { background: var(--gray); }
.nav-cat-item.active { background: var(--navy); color: #fff !important; }
.nav-cat-count { font-size: .72rem; font-weight: 700; background: var(--blue-light); color: var(--sky); padding: 2px 9px; border-radius: 20px; }
.nav-cat-item.active .nav-cat-count { background: rgba(255,255,255,.2); color: #fff; }
.nav-cat-loading { padding: 14px; text-align: center; color: var(--ink-soft); font-size: .82rem; }

/* --- Botón de carrito en el nav --- */
.cart-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  background: #0f1423; color: #fff; border: 1px solid #1C5AC8; cursor: pointer;
  display: inline-grid; place-items: center; font-size: 1.05rem; transition: .2s var(--ease);
}
.cart-btn:hover { background: #1a2140; border-color: #2A77FC; transform: translateY(-2px); }
.cart-btn.pulse { animation: cartPulse .45s var(--ease); }
@keyframes cartPulse { 0% { transform: scale(1); } 40% { transform: scale(1.22); } 100% { transform: scale(1); } }
.cart-count {
  position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--wa); color: #05230f; border-radius: 20px; font-size: .72rem; font-weight: 800;
  display: inline-grid; place-items: center; border: 2px solid #0f1423;
}

/* --- Barra de filtro por categoría --- */
.catalog-filter-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 40px;
  padding: 10px 12px 10px 22px; margin: 0 0 26px; width: fit-content;
}
.cfb-label { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; color: var(--ink-soft); }
.cfb-cat { font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .06em; color: var(--navy); text-transform: uppercase; }
.cfb-clear {
  display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: #fff;
  border: none; border-radius: 40px; padding: 8px 16px; font-weight: 700; font-size: .78rem; cursor: pointer; transition: .2s var(--ease);
}
.cfb-clear:hover { background: var(--sky); }

/* --- Tarjeta de producto (catálogo) --- */
#servicios .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
#servicios .svc-card {
  clip-path: none; border-radius: 16px; padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
}
#servicios .svc-img {
  position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: #eef1f6; display: block;
}
#servicios .svc-img.no-img { display: grid; place-items: center; }
.no-img-ph { display: grid; place-items: center; gap: 6px; color: #aeb6c6; }
.no-img-ph i { font-size: 2.4rem; }
.no-img-ph span { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .18em; }
#servicios .svc-badge {
  top: 12px; left: 12px; right: auto; max-width: calc(100% - 24px);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
#servicios .svc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
#servicios .svc-body h3 { font-size: 1.02rem; line-height: 1.25; margin: 0; }
#servicios .svc-subtitle { font-size: .8rem; color: var(--ink-soft); margin: 0; }
#servicios .svc-price { font-size: 1.15rem; margin: 4px 0 0; }
.svc-add-cart {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff; border: none; border-radius: 40px; padding: 12px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem; cursor: pointer; transition: .2s var(--ease);
}
.svc-add-cart:hover { background: var(--sky); transform: translateY(-2px); }
.svc-add-cart:active { transform: translateY(0); }

/* --- Carrito (drawer) --- */
.cart-overlay { position: fixed; inset: 0; background: rgba(10,12,18,.5); z-index: 1400; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 400px; max-width: 92vw;
  background: #fff; z-index: 1500; display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .32s var(--ease);
  box-shadow: -20px 0 60px rgba(20,26,46,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; background: var(--navy); color: #fff;
}
.cart-head h3 { margin: 0; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cart-close { background: rgba(255,255,255,.12); border: none; color: #fff; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: .2s; }
.cart-close:hover { background: rgba(255,255,255,.25); }
.cart-branch { padding: 12px 22px; background: var(--gray); font-size: .85rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.cart-branch b { color: var(--navy); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 18px; }
.cart-item { display: flex; gap: 12px; align-items: flex-start; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ci-name { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink); }
.ci-cat { font-size: .7rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.ci-price { font-size: .85rem; font-weight: 700; color: var(--sky); }
.ci-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ci-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.ci-qty button { width: 28px; height: 30px; border: none; background: var(--gray); color: var(--navy); font-size: 1rem; cursor: pointer; transition: .15s; }
.ci-qty button:hover { background: var(--navy); color: #fff; }
.ci-qty-input { width: 38px; height: 30px; border: none; text-align: center; font-weight: 700; font-size: .85rem; color: var(--ink); -moz-appearance: textfield; }
.ci-qty-input::-webkit-outer-spin-button, .ci-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ci-remove { background: none; border: none; color: #c0392b; cursor: pointer; font-size: .85rem; opacity: .7; transition: .15s; }
.ci-remove:hover { opacity: 1; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--ink-soft); padding: 40px; text-align: center; }
.cart-empty i { font-size: 2.6rem; color: #cfd6e2; }
.cart-empty p { margin: 6px 0 0; font-weight: 700; color: var(--ink); }
.cart-empty span { font-size: .85rem; }
.cart-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); }
.cart-total-row b { font-size: 1.2rem; color: var(--navy); }
.cart-checkout {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa); color: #05230f; border: none; border-radius: 40px; padding: 15px;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; cursor: pointer; transition: .2s var(--ease);
}
.cart-checkout:hover { filter: brightness(1.05); transform: translateY(-2px); }
.cart-clear { background: none; border: none; color: var(--ink-soft); font-size: .82rem; cursor: pointer; text-decoration: underline; }
.cart-clear:hover { color: #c0392b; }
body.cart-open { overflow: hidden; }

/* --- Responsive --- */
@media (max-width: 900px) {
  #servicios .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; opacity: 1; visibility: visible; max-height: none; min-width: 0; padding: 4px 0; }
  .nav-dropdown-menu::before { display: none; }
}
@media (max-width: 560px) {
  #servicios .svc-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; max-width: 100vw; }
}

/* ============================================================
   PÁGINA DEDICADA DE CATÁLOGO (catalogo.html)
   ============================================================ */
body.catalog-page { background: var(--gray); }

.cat-main { min-height: 70vh; }

/* ---- HERO cinematográfico oscuro ---- */
.cat-hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  padding: 140px 0 90px; overflow: hidden; color: #fff;
  background: #05070f;
}
.cat-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('fondoserv.png');
  background-size: cover; background-position: center;
}
.cat-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,9,25,.96) 0%, rgba(4,9,25,.85) 38%, rgba(4,9,25,.45) 70%, rgba(4,9,25,.25) 100%),
    linear-gradient(0deg, rgba(4,9,25,.9) 0%, transparent 45%);
}
.cat-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.eyebrow-hero {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .28em; color: var(--sky); margin-bottom: 20px;
}
.cat-hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: .98; letter-spacing: -.02em;
  text-transform: none; margin: 0 0 22px;
}
.cat-hero-title .accent { color: var(--sky); }
.cat-hero-sub { color: rgba(255,255,255,.72); font-size: 1.12rem; max-width: 500px; margin: 0 0 30px; }
.cat-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sky); color: #fff; border-radius: 40px; padding: 14px 28px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  transition: .2s var(--ease); box-shadow: 0 14px 34px rgba(38,102,192,.4);
}
.cat-hero-cta:hover { background: #1f57a8; transform: translateY(-2px); }

/* ---- CUERPO claro ---- */
.cat-body { padding: 48px 0 70px; }
.cat-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.cat-stat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 26px; min-width: 104px; text-align: center;
  box-shadow: 0 12px 30px rgba(20,26,46,.05);
}
.cat-stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--navy); line-height: 1; }
.cat-stat span { font-size: .68rem; letter-spacing: .14em; color: var(--ink-soft); text-transform: uppercase; font-weight: 700; }

.cat-body .catalog-filter-bar { margin: 8px 0 22px; }

/* Banner de la categoría activa */
.cat-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(120deg, var(--navy) 0%, #1d2749 100%);
  border-radius: 18px; padding: 26px 30px; color: #fff; margin-bottom: 30px;
  box-shadow: 0 20px 45px rgba(20,26,46,.18);
}
.cat-banner-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.cat-banner-icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); font-size: 1.4rem; flex-shrink: 0;
}
.cat-banner-sub { font-size: .7rem; letter-spacing: .2em; color: rgba(255,255,255,.6); font-weight: 700; }
.cat-banner-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 2rem); margin: 2px 0 0; line-height: 1.1; }
.cat-banner-count {
  background: rgba(255,255,255,.14); border-radius: 40px; padding: 9px 20px;
  font-weight: 700; font-size: .9rem; white-space: nowrap; flex-shrink: 0;
}

/* Grid en la página de catálogo (mismo look que en la home) */
.cat-body .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-body .svc-card { clip-path: none; border-radius: 16px; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.cat-body .svc-img { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: #eef1f6; display: block; }
.cat-body .svc-img.no-img { display: grid; place-items: center; }
.cat-body .svc-badge { top: 12px; left: 12px; right: auto; max-width: calc(100% - 24px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cat-body .svc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cat-body .svc-body h3 { font-size: 1.02rem; line-height: 1.25; margin: 0; }
.cat-body .svc-status { padding: 50px 20px; text-align: center; color: var(--ink-soft); font-size: 1rem; grid-column: 1 / -1; }

@media (max-width: 900px) {
  .cat-body .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cat-hero { min-height: 62vh; padding-top: 120px; }
  .cat-stats { width: 100%; }
}
@media (max-width: 560px) {
  .cat-body .svc-grid { grid-template-columns: 1fr; }
  .cat-banner { flex-direction: column; align-items: flex-start; }
}

/* Footer del catálogo: 3 columnas (sin la columna SERVICIOS) que llenan el ancho */
@media (min-width: 901px) {
  body.catalog-page .footer-premium-inner { grid-template-columns: 1.5fr 0.9fr 1.3fr; }
}

/* ---- Selector de sede en los filtros del catálogo ---- */
.cat-filters-row { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; margin-bottom: 8px; }
.cat-filters-row .svc-search { flex: 1 1 320px; margin: 0; }
.cat-sede { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.cat-sede label { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.cat-sede label i { color: var(--sky); }
.branch-select-light {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 700; font-size: .9rem;
  cursor: pointer; min-width: 170px; transition: .2s;
}
.branch-select-light:hover, .branch-select-light:focus { border-color: var(--sky); outline: none; }
.branch-select-light option { background: #fff; color: var(--ink); }

/* ---- Selector de sede destino en el carrito ---- */
.cart-branch { display: flex; flex-direction: column; gap: 8px; }
.cart-branch label { font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.cart-branch label i { color: var(--sky); }
.cart-branch-select {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: var(--radius-sm); padding: 11px 14px; font-weight: 700; font-size: .9rem; cursor: pointer;
}
.cart-branch-select:hover, .cart-branch-select:focus { border-color: var(--sky); outline: none; }

@media (max-width: 560px) {
  .cat-sede { flex: 1 1 100%; }
  .branch-select-light { width: 100%; }
}

/* ============================================================
   FLOTANTE: elegir sede para contactar
   ============================================================ */
.branch-picker-overlay {
  position: fixed; inset: 0; z-index: 1600; display: flex; align-items: center; justify-content: center;
  background: rgba(6,9,20,.6); padding: 20px; opacity: 0; transition: opacity .2s var(--ease);
}
.branch-picker-overlay.open { opacity: 1; }
.branch-picker {
  background: #fff; border-radius: 18px; width: 100%; max-width: 430px; padding: 28px 26px 24px;
  position: relative; box-shadow: 0 30px 70px rgba(6,9,20,.4);
  transform: translateY(12px) scale(.98); transition: transform .22s var(--ease);
}
.branch-picker-overlay.open .branch-picker { transform: translateY(0) scale(1); }
.bp-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 8px;
  border: none; background: var(--gray); color: var(--ink-soft); cursor: pointer; font-size: 1rem; transition: .15s;
}
.bp-close:hover { background: var(--line); color: var(--ink); }
.bp-head { text-align: center; margin-bottom: 20px; }
.bp-icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(37,211,102,.14); color: var(--wa); font-size: 1.6rem; margin-bottom: 12px;
}
.bp-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--navy); margin: 0 0 6px; }
.bp-head p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.bp-list { display: flex; flex-direction: column; gap: 10px; }
.bp-branch {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  cursor: pointer; transition: .16s var(--ease); text-align: left;
}
.bp-branch:hover { border-color: var(--wa); background: rgba(37,211,102,.06); transform: translateY(-1px); }
.bp-branch.current { border-color: var(--sky); }
.bp-branch-info { display: flex; flex-direction: column; gap: 3px; }
.bp-branch-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.bp-branch-phone { font-size: .82rem; color: var(--ink-soft); }
.bp-branch-phone i { color: var(--wa); }
.bp-arrow { color: var(--ink-soft); transition: .16s; }
.bp-branch:hover .bp-arrow { color: var(--wa); transform: translateX(3px); }

/* ============================================================
   SECCIÓN SEDES
   ============================================================ */
.sec-sedes { background: var(--gray); }
.sedes-sub { color: var(--ink-soft); font-size: 1rem; margin-top: 8px; }
.sedes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px;
}
.sedes-grid .svc-status { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 40px; }
.sede-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0; overflow: hidden;
  display: flex; flex-direction: column; transition: .25s var(--ease);
  box-shadow: 0 10px 30px rgba(20,26,46,.05);
}
.sede-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(20,26,46,.1); border-color: var(--sky); }
.sede-map { line-height: 0; background: #eef1f6; }
.sede-map iframe { display: block; width: 100%; height: 190px; border: 0; filter: grayscale(.1); transition: filter .25s var(--ease); }
.sede-card:hover .sede-map iframe { filter: grayscale(0); }
.sede-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.sede-head { display: flex; align-items: center; gap: 14px; }
.sede-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1d2749); color: #fff; font-size: 1.2rem;
}
.sede-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy); margin: 0; }
.sede-data { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sede-data li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: .92rem; line-height: 1.4; }
.sede-data li i { color: var(--sky); font-size: 1rem; width: 20px; text-align: center; margin-top: 2px; flex-shrink: 0; }
.sede-data li .fa-whatsapp { color: var(--wa); }
.sede-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sede-btn-map, .sede-btn-wa {
  flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 40px; padding: 11px 14px; font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; cursor: pointer; transition: .2s var(--ease); white-space: nowrap;
}
.sede-btn-map { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.sede-btn-map:hover { border-color: var(--navy); background: var(--gray); }
.sede-btn-wa { background: var(--wa); color: #05230f; border: none; }
.sede-btn-wa:hover { filter: brightness(1.05); transform: translateY(-2px); }

@media (max-width: 900px) { .sedes-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .sedes-grid { grid-template-columns: 1fr; } }
