/* ════════════════════════════════════════
   EL MUNDO DEL PARABRISAS — style.css
   ════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0d0d0d;
  --surface:    #161616;
  --surface2:   #1e1e1e;
  --border:     #2a2a2a;
  --border2:    #333;
  --text:       #e8e4df;
  --muted:      #6a6560;
  --muted2:     #4a4540;
  --orange:     #E8750A;
  --orange2:    #F5921E;
  --orange-dim: rgba(232,117,10,0.12);
  --white:      #fff;
  --scratch: repeating-linear-gradient(
    92deg,
    transparent 0px, transparent 2px,
    rgba(255,255,255,.012) 2px, rgba(255,255,255,.012) 3px
  );
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto Condensed', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image: var(--scratch);
}

a { text-decoration: none; color: inherit; }
img { display: block; }


/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(13,13,13,0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 40px; width: auto; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mid {
  display: flex; gap: 2rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.nav-mid a:hover { color: var(--text); transition: color .15s; }
.nav-actions { display: flex; gap: .6rem; align-items: center; }
.nav-tel {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  color: var(--muted); padding: .4rem .9rem;
  border: 1px solid var(--border2);
  transition: all .15s;
}
.nav-tel:hover { color: var(--text); border-color: var(--muted); }
.nav-wa {
  background: var(--orange); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1.2rem; display: flex; align-items: center; gap: .5rem;
  transition: background .15s;
}
.nav-wa:hover { background: var(--orange2); }
.nav-wa svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }


/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 6px; /* compensa el nav fijo */
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1; /* sobre el fallback */
}
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1f1208 0%, #0d0d0d 70%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,.75) 30%, rgba(13,13,13,.3) 65%, rgba(13,13,13,.55) 100%),
    linear-gradient(to right, rgba(13,13,13,.7) 0%, transparent 55%);
}
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 3px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange2) 50%, transparent 100%);
}
.hero-body {
  position: relative; z-index: 4;
  padding: clamp(4.5rem, 8vh, 7rem) 2.5rem 2.5rem;
  max-width: 900px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp .5s .1s ease forwards;
}
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
.hero-h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.5rem, 11vw, 11rem);
  line-height: .88; letter-spacing: -.01em; color: var(--white);
  text-transform: uppercase;
  opacity: 0; animation: fadeUp .55s .2s ease forwards;
}
.hero-h1 .ghost { -webkit-text-stroke: 1px rgba(255,255,255,.2); color: transparent; }
.hero-h1 .accent { color: var(--orange); }

.hero-cta-row {
  display: flex; align-items: stretch; gap: 0;
  margin-top: 2.5rem;
  opacity: 0; animation: fadeUp .5s .35s ease forwards;
  max-width: 560px;
}
.cta-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  background: var(--orange); color: #fff;
  font-family: 'Anton', sans-serif; font-size: 1.3rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 1.1rem 2rem;
  transition: background .2s;
}
.cta-wa:hover { background: var(--orange2); }
.cta-wa svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.cta-tel {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: rgba(255,255,255,.05); color: var(--text);
  border: 1px solid var(--border2); border-left: none;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 1.1rem 1.5rem; white-space: nowrap;
  transition: background .2s, color .2s;
}
.cta-tel:hover { background: rgba(255,255,255,.1); color: #fff; }

.hero-stats {
  display: flex; gap: 0;
  margin-top: 2rem;
  opacity: 0; animation: fadeUp .5s .45s ease forwards;
}
.hero-st {
  padding: .9rem 1.6rem;
  border: 1px solid var(--border); border-right: none;
}
.hero-st:last-child { border-right: 1px solid var(--border); }
.hero-st-n { font-family: 'Anton', sans-serif; font-size: 2rem; line-height: 1; color: var(--white); }
.hero-st-n em { font-style: normal; color: var(--orange); font-size: 1.1rem; }
.hero-st-l { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }

.hero-scroll-hint {
  position: absolute; right: 2.5rem; bottom: 4rem; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: 0; animation: fadeIn .5s .8s ease forwards;
}
.hero-scroll-hint span {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.2); writing-mode: vertical-lr;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.15), transparent); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


/* ─── CONTACT RIBBON ─── */
.ribbon {
  background: var(--surface);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.ribbon-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.3rem 2rem;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s;
}
.ribbon-item:last-child { border-right: none; }
.ribbon-item:hover { background: var(--surface2); }
.ri-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border2); flex-shrink: 0;
  transition: background .15s;
}
.ribbon-item:hover .ri-dot { background: var(--orange); }
.ri-label { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted2); }
.ri-val { font-size: .9rem; font-weight: 700; letter-spacing: .02em; color: var(--text); margin-top: .1rem; }


/* ─── SECTIONS BASE ─── */
.section { padding: 6rem 2.5rem; border-bottom: 1px solid var(--border); }

.section-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 2rem;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--orange); }

.section-h {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .92; letter-spacing: .01em; text-transform: uppercase;
  color: var(--white); margin-bottom: 3.5rem;
}
.section-h span { color: var(--orange); }


/* ─── SERVICES ─── */
.svc-list { border-top: 1px solid var(--border); }
.svc-item {
  display: grid; grid-template-columns: 3rem 1fr auto;
  align-items: center; gap: 2rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--border);
  cursor: default; position: relative;
  transition: background .15s;
}
.svc-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--orange-dim);
  transition: width .2s;
}
.svc-item:hover::before { width: 100%; }
.svc-item:hover .svc-n { color: var(--orange); }
.svc-item:hover .svc-arrow { transform: translateX(6px); color: var(--orange); }
.svc-num { font-size: .7rem; font-weight: 700; letter-spacing: .12em; color: var(--muted2); position: relative; z-index: 1; }
.svc-body { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.svc-n {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--text); transition: color .2s;
}
.svc-pills { display: flex; gap: .35rem; flex-wrap: wrap; }
.svc-pill {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: .2rem .55rem;
  border: 1px solid var(--border2); background: transparent;
}
.svc-arrow { font-size: 1rem; color: var(--muted2); transition: transform .2s, color .2s; position: relative; z-index: 1; justify-self: end; }


/* ─── ABOUT ─── */
#nosotros { padding: 0; }
.nos-left {
  padding: 6rem 3rem 6rem 2.5rem;
  border-right: 1px solid var(--border);
  background: var(--surface);
  position: relative; overflow: hidden;
}
.nos-left-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0px, transparent 18px, rgba(255,255,255,.012) 18px, rgba(255,255,255,.012) 19px);
  pointer-events: none;
}
.nos-big {
  position: absolute; bottom: -2rem; left: -1rem;
  font-family: 'Anton', sans-serif; font-size: 16rem; line-height: 1;
  color: rgba(232,117,10,.05); pointer-events: none; text-transform: uppercase;
  letter-spacing: -.04em;
}
.nos-left .section-h { margin-bottom: 1.5rem; }
.nos-p { font-size: .95rem; font-weight: 300; line-height: 1.85; color: var(--muted); max-width: 420px; position: relative; z-index: 1; }
.nos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 3rem; border: 1px solid var(--border);
  position: relative; z-index: 1;
}
.nos-cell { padding: 1.4rem 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.nos-cell:nth-child(2n) { border-right: none; }
.nos-cell:nth-child(3), .nos-cell:nth-child(4) { border-bottom: none; }
.nos-cell-n { font-family: 'Anton', sans-serif; font-size: 2.5rem; line-height: 1; color: var(--white); }
.nos-cell-n em { font-style: normal; color: var(--orange); font-size: 1.4rem; }
.nos-cell-l { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2); margin-top: .2rem; }

.nos-right { padding: 6rem 2.5rem 6rem 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.pillar-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.pillar {
  padding: 1.5rem 0; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; align-items: start;
}
.pillar-i { font-family: 'Anton', sans-serif; font-size: 1.2rem; color: var(--orange); line-height: 1; }
.pillar-h { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: .4rem; }
.pillar-t { font-size: .85rem; font-weight: 300; line-height: 1.7; color: var(--muted); }
.nos-btns { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 3rem; }
.btn-o {
  background: var(--orange); color: #fff;
  font-family: 'Anton', sans-serif; font-size: .95rem; letter-spacing: .06em;
  text-transform: uppercase; padding: .75rem 1.8rem; transition: background .15s;
  display: inline-block;
}
.btn-o:hover { background: var(--orange2); }
.btn-g {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border2);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .75rem 1.4rem; transition: all .15s; display: inline-block;
}
.btn-g:hover { color: var(--text); border-color: var(--muted); }


/* ─── BRANDS ─── */
#marcas {
  background: var(--surface);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.brands-label { font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted2); white-space: nowrap; flex-shrink: 0; }
.brands-sep { width: 1px; height: 16px; background: var(--border2); flex-shrink: 0; }
.brands-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.brand {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted2); padding: .25rem .65rem;
  border: 1px solid var(--border); cursor: default;
  transition: all .15s;
}
.brand:hover { color: var(--text); border-color: var(--border2); }


/* ─── ZONA DE INSTALACIÓN ─── */
.zona-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.zona-bg-img {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, #2a1500 0%, #111 60%, #0d0d0d 100%);
  z-index: 0;
}
.zona-bg-img::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -35deg,
    transparent 0px, transparent 60px,
    rgba(232,117,10,.04) 60px, rgba(232,117,10,.04) 61px,
    transparent 61px, transparent 120px
  );
}
.zona-bg-img::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 55%; height: 80%;
  background: linear-gradient(135deg,
    rgba(232,117,10,.06) 0%, transparent 40%,
    rgba(255,255,255,.03) 55%, transparent 70%,
    rgba(232,117,10,.04) 100%
  );
  clip-path: polygon(8% 18%, 92% 18%, 100% 38%, 100% 82%, 0% 82%, 0% 38%);
  border: 1px solid rgba(232,117,10,.12);
}
.zona-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(13,13,13,.97) 35%, rgba(13,13,13,.75) 65%, rgba(13,13,13,.55) 100%),
    linear-gradient(to top, rgba(13,13,13,.6) 0%, transparent 50%);
}
.zona-content {
  position: relative; z-index: 2;
  padding: 5rem 2.5rem;
  max-width: 540px;
}
.zona-desc {
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: rgba(232,228,223,.55); margin-top: .5rem; max-width: 400px;
}
.zona-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 1.8rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232,117,10,.3);
  padding: .55rem 1rem;
}
.zb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,117,10,.2);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,117,10,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(232,117,10,.05); }
}
.zona-map-wrap {
  display: grid; grid-template-columns: 220px 1fr;
  background: var(--surface);
}
.zona-map-label {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.zona-map { height: 420px; background: var(--surface2); }

/* Leaflet dark theme */
.zona-map .leaflet-tile                { filter: grayscale(1) brightness(.45) contrast(1.1) sepia(.1) !important; }
.zona-map .leaflet-control-attribution { background: rgba(13,13,13,.7) !important; color: var(--muted2) !important; font-size: .58rem !important; }
.zona-map .leaflet-control-zoom a      { background: var(--surface) !important; color: var(--text) !important; border-color: var(--border) !important; }
.zona-map .leaflet-control-zoom a:hover{ background: var(--surface2) !important; }


/* ─── CONTACT ─── */
#contacto { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.ct-left {
  background: var(--orange);
  padding: 6rem 3rem 6rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.ct-left-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 38px, rgba(0,0,0,.07) 38px, rgba(0,0,0,.07) 39px);
}
.ct-eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 1rem; position: relative; z-index: 1;
}
.ct-eyebrow::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.4); }
.ct-h {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .88; text-transform: uppercase; color: #fff;
  position: relative; z-index: 1;
}
.ct-sub {
  font-size: .92rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.6); margin-top: 1rem; max-width: 320px;
  position: relative; z-index: 1;
}
.ct-channels { position: relative; z-index: 1; margin-top: 2.5rem; }
.ct-ch {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.18);
  text-decoration: none; transition: opacity .15s;
}
.ct-ch:hover { opacity: .7; }
.ct-ch-l { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.ct-ch-v { font-size: 1.15rem; font-weight: 700; letter-spacing: .02em; color: #fff; margin-top: .1rem; }
.ct-ch-arr { color: rgba(255,255,255,.3); font-size: .9rem; }

.ct-right { background: var(--surface); padding: 6rem 2.5rem 6rem 3rem; }
.ct-right .section-eyebrow { margin-bottom: 1.5rem; }
.f-h { font-family: 'Anton', sans-serif; font-size: 2.2rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); margin-bottom: .4rem; }
.f-sub { font-size: .82rem; font-weight: 300; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-g { margin-bottom: .9rem; }
.f-g label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted2); margin-bottom: .4rem; }
.f-g input,
.f-g select,
.f-g textarea {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 0;
  padding: .65rem .9rem;
  font-family: 'Roboto Condensed', sans-serif; font-size: .88rem; font-weight: 400;
  color: var(--text); outline: none;
  transition: border-color .15s; -webkit-appearance: none; appearance: none;
}
.f-g input::placeholder,
.f-g textarea::placeholder { color: var(--muted2); }
.f-g input:focus,
.f-g select:focus,
.f-g textarea:focus { border-color: var(--orange); }
.f-g select option { background: var(--surface2); color: var(--text); }
.f-g textarea { resize: none; height: 68px; }
.btn-submit {
  width: 100%; background: var(--orange); color: #fff;
  font-family: 'Anton', sans-serif; font-size: 1.1rem; letter-spacing: .06em;
  text-transform: uppercase; border: none; cursor: pointer;
  padding: .85rem 2rem; transition: background .2s; margin-top: .4rem;
}
.btn-submit:hover { background: var(--orange2); }


/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  padding: 3.5rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.ft-logo img { height: 44px; width: auto; margin-bottom: .9rem; }
.ft-about { font-size: .8rem; font-weight: 300; line-height: 1.75; color: var(--muted2); max-width: 220px; }
.ft-col-t { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted2); margin-bottom: 1rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.ft-col ul a { font-size: .82rem; font-weight: 300; color: var(--muted); transition: color .15s; }
.ft-col ul a:hover { color: var(--text); }
.ft-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); }
.ft-soc { display: flex; gap: 1.4rem; }
.ft-soc a { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted2); transition: color .15s; }
.ft-soc a:hover { color: var(--orange); }


/* ─── FLOATING WA ─── */
.wa-fab {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 999;
  display: flex; align-items: center; gap: .7rem;
  background: #25D366; color: #fff;
  font-family: 'Anton', sans-serif; font-size: .85rem; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  padding: .7rem 1.3rem .7rem 1rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.25);
  transition: transform .2s, box-shadow .2s, background .15s;
  animation: popIn .4s 1s cubic-bezier(.175,.885,.32,1.275) both;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.35); }
.wa-fab svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
@keyframes popIn { from { opacity: 0; transform: scale(.6) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }


/* ─── RESPONSIVE ─── */
@media (max-width: 1060px) {
  .nav-toggle           { display: flex; order: 2; }
  nav .nav-mid          {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: .8rem 1.2rem 1.2rem;
    background: rgba(13,13,13,.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  nav.nav-open .nav-mid {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-mid a            { padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .nav-mid a:last-child { border-bottom: none; }
  #contacto  { grid-template-columns: 1fr; }
  .nos-left             { border-right: none; border-bottom: 1px solid var(--border); }
  .ft-top               { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats           { flex-wrap: wrap; }
}

@media (max-width: 700px) {
  nav                   { padding: 0 .9rem; height: 64px; }
  .nav-logo img         { height: 34px; }
  .nav-actions          { margin-left: auto; }
  .nav-tel              { display: none; }
  .nav-wa               { padding: .55rem .8rem; font-size: .68rem; }
  .hero                 { min-height: 100svh; padding-top: 64px; }
  .hero-body            { padding: 3.2rem 1.2rem 2rem; }
  .hero-label           { margin-bottom: .85rem; font-size: .55rem; letter-spacing: .18em; }
  .hero-h1              { font-size: clamp(3rem, 16vw, 4.8rem); line-height: .88; }
  .hero-cta-row         { flex-direction: column; max-width: 100%; }
  .cta-tel              { border-left: 1px solid var(--border2); border-top: none; }
  .ribbon               { grid-template-columns: 1fr 1fr; }
  .ribbon-item:nth-child(2) { border-right: none; }
  .ribbon-item:nth-child(3) { border-top: 1px solid var(--border); }
  .ribbon-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .section              { padding: 4rem 1.2rem; }
  .nos-left, .nos-right { padding: 4rem 1.2rem; }
  .ct-left, .ct-right   { padding: 4rem 1.2rem; }
  .ft-top               { grid-template-columns: 1fr; }
  footer                { padding: 3rem 1.2rem 1.8rem; }
  .svc-item             { grid-template-columns: 2rem 1fr auto; gap: .8rem; padding: 1.2rem 0; }
  .f-grid               { grid-template-columns: 1fr; }
  .hero-stats           { gap: 0; flex-wrap: wrap; }
  .hero-st              { padding: .8rem 1rem; }
  #marcas               { padding: 1.8rem 1.2rem; }
  .zona-map-wrap        { grid-template-columns: 1fr; }
  .zona-map-label       { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.2rem; }
  .zona-map             { height: 320px; }
  .zona-content         { padding: 3.5rem 1.2rem; }
}

/* ─── CLASES BEM FALTANTES ─── */

/* ribbon-item--static: no es clickeable */
.ribbon-item--static { cursor: default; }
.ribbon-item--static:hover { background: transparent; }
.ri-dot--off { background: var(--border); }
.ribbon-item--static:hover .ri-dot--off { background: var(--border); }

/* hero stat tamaño pequeño para texto multilinea */
.hero-st-n--sm {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

/* nos-cell tamaño pequeño */
.nos-cell-n--sm {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--white);
}

/* nos-left-content: posicion relativa para z-index sobre watermark */
.nos-left-content {
  position: relative;
  z-index: 1;
}

/* ct-left-content: posicion relativa sobre el pattern */
.ct-left-content {
  position: relative;
  z-index: 1;
}

/* nos-grid-outer: wrapper del grid nosotros */
.nos-grid-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* #heroVideo hereda estilos de .hero video */

@media (max-width: 1060px) {
  .nos-grid-outer { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   SECCIÓN TIENDA — index.html
   ════════════════════════════════════════ */

/* cabecera */
.tienda-head {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 2rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.tienda-sub {
  font-size: .88rem; font-weight: 300;
  color: var(--muted); max-width: 320px;
  text-align: right; line-height: 1.6;
}

/* filtros */
.tienda-filters {
  display: flex; gap: .4rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tf-btn {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--border2);
  padding: .45rem 1.1rem; cursor: pointer;
  transition: all .15s;
}
.tf-btn:hover  { color: var(--text); border-color: var(--muted); }
.tf-btn--active,
.tf-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* grid */
.tienda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 2.5rem;
}
.prod-card {
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: background .15s;
  position: relative;
}
.prod-card:hover { background: var(--surface2); }
.prod-card.hidden { display: none; }

/* imagen / fondo por categoría */
.prod-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}

/* backgrounds únicos por tipo usando gradientes + patrón */
.prod-img--cristal {
  background:
    radial-gradient(ellipse 70% 60% at 55% 55%, #0f1e3a 0%, #080d18 100%);
}
.prod-img--cristal::before {
  content: '';
  position: absolute; inset: 15% 12%;
  border: 1.5px solid rgba(26,79,190,.35);
  clip-path: polygon(8% 20%, 92% 20%, 100% 42%, 100% 80%, 0% 80%, 0% 42%);
  background: rgba(26,79,190,.07);
}

.prod-img--trasero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, #1a0a00 0%, #0d0600 100%);
}
.prod-img--trasero::before {
  content: '';
  position: absolute; inset: 18% 10%;
  border: 1.5px solid rgba(232,117,10,.3);
  border-radius: 4px;
  background: rgba(232,117,10,.06);
}

.prod-img--lateral {
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, #0d1a0d 0%, #060d06 100%);
}
.prod-img--lateral::before {
  content: '';
  position: absolute; inset: 15% 15%;
  border: 1.5px solid rgba(34,197,94,.25);
  clip-path: polygon(0% 20%, 80% 20%, 100% 38%, 100% 80%, 0% 80%);
  background: rgba(34,197,94,.05);
}

.prod-img--lamina {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #1a1200 0%, #0d0900 100%);
}
.prod-img--lamina::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 6px,
    rgba(232,117,10,.06) 6px, rgba(232,117,10,.06) 7px
  );
}

.prod-img--lamina-seg {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #0d0d00 0%, #060600 100%);
}
.prod-img--lamina-seg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px, transparent 8px,
    rgba(180,180,0,.05) 8px, rgba(180,180,0,.05) 9px
  );
}

.prod-img--alza {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #0a0a1a 0%, #060610 100%);
}
.prod-img--alza::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50%; height: 4px;
  background: rgba(100,120,200,.2);
  box-shadow: 0 -16px 0 rgba(100,120,200,.12), 0 16px 0 rgba(100,120,200,.12);
}

.prod-img--telepeaje {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #001a10 0%, #000d08 100%);
}
.prod-img--telepeaje::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 32px; height: 32px;
  border: 2px solid rgba(34,197,94,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(34,197,94,.06), 0 0 0 20px rgba(34,197,94,.03);
}

.prod-img--radio {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #0d001a 0%, #070010 100%);
}
.prod-img--radio::before {
  content: '';
  position: absolute; inset: 25% 15%;
  border: 1.5px solid rgba(180,50,220,.2);
  border-radius: 3px;
  background: rgba(180,50,220,.05);
}

.prod-img--parlantes {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #1a0000 0%, #0d0000 100%);
}
.prod-img--parlantes::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border: 2px solid rgba(239,68,68,.25);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 12px rgba(239,68,68,.06),
    inset 0 0 0 22px rgba(239,68,68,.03);
}

/* tag de categoría */
.prod-cat-tag {
  position: absolute; top: .7rem; left: .7rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .22rem .6rem;
  background: rgba(13,13,13,.85); color: var(--orange);
  border: 1px solid rgba(232,117,10,.3);
}

/* body de la card */
.prod-body { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.prod-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase;
  color: var(--white); margin-bottom: .4rem;
}
.prod-desc {
  font-size: .78rem; font-weight: 300;
  color: var(--muted); line-height: 1.5;
  flex: 1; margin-bottom: 1rem;
}
.prod-btn {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  border: 1px solid rgba(232,117,10,.3);
  padding: .5rem 1rem;
  transition: all .15s; align-self: flex-start;
}
.prod-btn:hover { background: var(--orange); color: #fff; }

/* CTA al final */
.tienda-cta {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.tienda-cta p {
  font-size: .88rem; font-weight: 300;
  color: var(--muted);
}

/* responsive tienda en index */
@media (max-width: 900px) {
  .tienda-grid { grid-template-columns: repeat(2, 1fr); }
  .tienda-head { flex-direction: column; }
  .tienda-sub  { text-align: left; }
}
@media (max-width: 560px) {
  .tienda-grid { grid-template-columns: 1fr; }
}

/* Ajuste visual para widget Issabel Click2Call */
[id*="issabel"],
[class*="issabel"],
[id*="click2call"],
[class*="click2call"] {
  bottom: 24px !important;
  left: 24px !important;
  z-index: 998 !important;
}

@media (max-width: 700px) {
  [id*="issabel"],
  [class*="issabel"],
  [id*="click2call"],
  [class*="click2call"] {
    bottom: 18px !important;
    left: 16px !important;
    transform: scale(0.92);
    transform-origin: bottom left;
  }

  .wa-fab {
    right: 16px;
    bottom: 18px;
  }
}

/* ════════════════════════════════════════
   ISSABEL WEBRTC — SKIN VISUAL PRO
   El widget real queda invisible y clickeable encima.
   La estética visible es .issabel-skin.
   ════════════════════════════════════════ */
.issabel-skin {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 28px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483645;
  pointer-events: none; /* deja pasar el click al widget Issabel */
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.issabel-skin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232,117,10,.22);
  opacity: .9;
}

.issabel-skin svg {
  width: 23px;
  height: 23px;
  display: block;
}

body.issabel-hover .issabel-skin {
  background: #E8750A;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(232,117,10,.28), 0 10px 28px rgba(0,0,0,.45);
}

/* Clase aplicada por JS al elemento REAL que inyecta Issabel */
.issabel-real-widget {
  position: fixed !important;
  left: 24px !important;
  bottom: 24px !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  border-radius: 50% !important;
  opacity: 0.001 !important; /* invisible, pero sigue recibiendo clicks */
  z-index: 2147483646 !important;
  pointer-events: auto !important;
  overflow: hidden !important;
}

.issabel-real-widget * {
  cursor: pointer !important;
}

@media (max-width: 700px) {
  .issabel-skin,
  .issabel-real-widget {
    left: 16px !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }

  .wa-fab {
    right: 16px !important;
    bottom: 18px !important;
  }
}
