/*
  RestoSoft – Landing Page
  v4.0 – Modern SaaS Redesign
  Paleta: #1487da / #0b3996 / #1d1d24
  =====================================================
*/

/* =====================================================
   1. VARIABLES
===================================================== */
:root {
  /* Paleta principal – NO MODIFICAR */
  --primary:        #1487da;
  --primary-dark:   #0b3996;
  --primary-mid:    #1264b8;
  --primary-light:  #2e86e8;
  --grad-primary:   linear-gradient(135deg, #0b3996 0%, #1487da 60%, #2e86e8 100%);
  --grad-hero:      linear-gradient(160deg, #eef6fd 0%, #f4f9fe 55%, #ffffff 100%);

  /* Transparencias del primario */
  --p-50:   rgba(20, 135, 218, .04);
  --p-100:  rgba(20, 135, 218, .08);
  --p-200:  rgba(20, 135, 218, .16);
  --p-300:  rgba(20, 135, 218, .28);

  /* Texto */
  --txt-dark:   #0d1b2a;
  --txt-body:   #3a4f66;
  --txt-muted:  #6b84a0;
  --txt-light:  #a0b4c8;

  /* Fondos */
  --bg:       #ffffff;
  --bg-soft:  #f7fafd;
  --bg-blue:  #eef6fd;
  --bg-dark:  #1d1d24;
  --bg-dark2: #252730;

  /* Bordes */
  --border:      #d8e7f4;
  --border-soft: #eaf2f9;

  /* Radios */
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-f:  9999px;

  /* Sombras */
  --sh-xs: 0 1px 4px rgba(13,27,42,.06);
  --sh-sm: 0 2px 12px rgba(13,27,42,.08);
  --sh-md: 0 8px 28px rgba(13,27,42,.10);
  --sh-lg: 0 20px 52px rgba(13,27,42,.12);
  --sh-p:  0 6px 22px rgba(20,135,218,.28);
  --sh-pL: 0 14px 38px rgba(20,135,218,.32);

  /* Transiciones */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t:    .24s var(--ease);
  --tS:   .4s  var(--ease);
}

/* =====================================================
   2. RESET & BASE
===================================================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; overscroll-behavior-y: none; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--txt-body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  max-width:100%;
  overflow-x:hidden;
}
img   { max-width:100%; display:block; }
section, header, footer { overflow-x: clip; }
a     { text-decoration:none; color:inherit; }
ul    { list-style:none; }

/* =====================================================
   3. UTILIDADES
===================================================== */
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--txt-dark);
  margin: .6rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section-header p {
  color: var(--txt-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--p-100);
  border: 1px solid var(--p-200);
  padding: .28rem .85rem;
  border-radius: var(--r-f);
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   4. BOTONES
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  border-radius: var(--r-f);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-p);
}
.btn-primary:hover {
  box-shadow: var(--sh-pL);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--p-100);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--txt-dark);
  border-color: var(--border);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: #b0c8df;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

.btn-lg   { padding: .88rem 1.85rem; font-size: 1rem; border-radius: var(--r-f); }
.btn-sm   { padding: .38rem .9rem;   font-size: .8rem; }

/* =====================================================
   5. NAVBAR
===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 2px 16px rgba(13,27,42,.08);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--txt-body);
  padding: .4rem .8rem;
  border-radius: 8px;
  transition: all var(--t);
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--p-100);
}

.nav-actions { display:flex; align-items:center; gap:.75rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--txt-dark);
  border-radius: 2px;
  transition: all var(--t);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 1.5rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(13,27,42,.08);
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--txt-body);
  padding: .65rem .85rem;
  border-radius: 10px;
  transition: all var(--t);
}
.nav-mobile a:hover { color:var(--primary); background:var(--p-100); }
.nav-mobile a.btn-primary,
.nav-mobile a.btn-primary:hover { color:#fff; }

/* =====================================================
   6. HERO
===================================================== */
#home {
  min-height: 100vh;
  padding: 120px 0 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Orbes decorativos */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero-glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(20,135,218,.14) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero-glow--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(11,57,150,.1) 0%, transparent 70%);
  bottom: 80px; left: -120px;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  background: var(--grad-primary);
  color: #fff;
  padding: .4rem 1.1rem;
  border-radius: var(--r-f);
  width: fit-content;
  box-shadow: var(--sh-p);
  letter-spacing: .02em;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 800;
  color: var(--txt-dark);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--txt-muted);
  max-width: 500px;
  line-height: 1.75;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: var(--txt-body);
  font-weight: 500;
}
.hero-features li i { color: var(--primary); font-size: .95rem; flex-shrink:0; }

.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }

.hero-image { position:relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--grad-primary);
  border-radius: calc(var(--r-xl) + 4px);
  z-index: -1;
  opacity: .35;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  display: block;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}
.stat { display:flex; flex-direction:column; align-items:center; gap:.25rem; }
.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label { font-size: .78rem; color:var(--txt-muted); text-align:center; font-weight:500; }
.stat-divider { width:1px; height:44px; background:var(--border); }

/* =====================================================
   7. BENEFICIOS (nueva sección)
===================================================== */
#beneficios {
  padding: 7rem 0;
  background: var(--bg);
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.beneficio-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--t);
}
.beneficio-card:hover {
  border-color: var(--p-200);
  box-shadow: 0 8px 28px rgba(20,135,218,.10);
  transform: translateY(-4px);
  background: #fff;
}
.beneficio-card:hover::before { opacity:1; }

.beneficio-icono {
  width: 52px; height: 52px;
  background: var(--p-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all var(--t);
}
.beneficio-card:hover .beneficio-icono {
  background: var(--grad-primary);
  color: #fff;
}
.beneficio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-dark);
  line-height: 1.3;
}
.beneficio-card p {
  font-size: .88rem;
  color: var(--txt-muted);
  line-height: 1.65;
}

/* =====================================================
   8. MÓDULOS
===================================================== */
#modulos {
  padding: 7rem 0;
  background: var(--bg-soft);
}

.productos-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.productos-row {
  display: flex;
  gap: 1.75rem;
}
.productos-row .producto-card { flex: 1 1 0; min-width: 0; }

.producto-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  overflow: hidden;
}
.producto-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tS);
}
.producto-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
  border-color: var(--p-200);
}
.producto-card:hover::after { transform: scaleX(1); }

.producto-card--lite {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent;
  color: #fff;
}
.producto-card--lite::after { display:none; }
.producto-card--lite:hover { border-color:transparent; box-shadow: var(--sh-pL); }

.producto-card--lite h3,
.producto-card--lite .producto-sub { color: #fff; }
.producto-card--lite .feature-list li { color: rgba(255,255,255,.9); }
.producto-card--lite .feature-list li i { color: rgba(255,255,255,.8); }

.producto-badge {
  position: absolute;
  top: 1.35rem; right: 1.35rem;
  font-size: .69rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  background: var(--p-100);
  color: var(--primary);
  padding: .25rem .75rem;
  border-radius: var(--r-f);
}
.producto-badge--new {
  background: rgba(255,255,255,.22);
  color: #fff;
}

.producto-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--txt-dark);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.producto-card h3 span { color: var(--primary); }
.producto-card--lite h3 span { color: rgba(255,255,255,.7); }

.producto-sub { font-size: .9rem; color:var(--txt-muted); }

.feature-list { display:flex; flex-direction:column; gap:.65rem; flex:1; }
.feature-list li {
  display: flex; align-items: center; gap:.65rem;
  font-size: .93rem; color:var(--txt-body);
}
.feature-list li i { color:var(--primary); font-size:.82rem; flex-shrink:0; }

/* Pricing cards */
.precio-tag {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: .25rem 0;
}
.precio-monto {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--txt-dark);
  letter-spacing: -.03em;
  line-height: 1;
}
.producto-card--lite .precio-monto { color: #fff; }
.precio-periodo {
  font-size: .85rem;
  color: var(--txt-muted);
  font-weight: 500;
}
.producto-card--lite .precio-periodo { color: rgba(255,255,255,.7); }
.precio-nota {
  font-size: .78rem;
  color: var(--txt-light);
  margin-top: .15rem;
}
.producto-card--lite .precio-nota { color: rgba(255,255,255,.55); }
.precio-consultar {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--p-100);
  border: 1px dashed var(--p-200);
  padding: .3rem .9rem;
  border-radius: var(--r-f);
}
.producto-card--lite .precio-consultar {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.producto-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: .25rem 0;
}
.producto-card--lite .producto-divider { border-top-color: rgba(255,255,255,.18); }

/* Tabla de comparación */
#comparacion {
  padding: 7rem 0;
  background: var(--bg-soft);
}
.comparacion-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.comparacion-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .92rem;
}
.comparacion-table th {
  padding: 1.5rem 1.75rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--txt-dark);
  border-bottom: 2px solid var(--border-soft);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
  white-space: nowrap;
}
.comparacion-table th:first-child {
  text-align: left;
  width: 42%;
  border-right: 1px solid var(--border-soft);
}
.comparacion-table th.th-destacado {
  background: linear-gradient(160deg, #eef6fd, #fff);
  color: var(--primary-dark);
}
.th-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--grad-primary);
  color: #fff;
  padding: .18rem .6rem;
  border-radius: var(--r-f);
  margin-left: .4rem;
  vertical-align: middle;
}
.comparacion-table tr.cat-row td {
  background: var(--bg-soft);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--txt-muted);
  padding: .6rem 1.75rem;
  border-top: 1px solid var(--border-soft);
}
.comparacion-table tr.feat-row td {
  padding: .9rem 1.75rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--txt-body);
  transition: background var(--t);
}
.comparacion-table tr.feat-row:hover td { background: var(--p-50); }
.comparacion-table tr.feat-row td:first-child {
  font-weight: 500;
  color: var(--txt-dark);
  border-right: 1px solid var(--border-soft);
}
.comparacion-table tr.feat-row td:not(:first-child) { text-align: center; }
.comparacion-table td.td-destacado { background: rgba(20,135,218,.03); }
.cmp-si  { color: #16a34a; font-size: 1.1rem; }
.cmp-no  { color: #d1d5db; font-size: 1.1rem; }
.cmp-txt { font-size: .82rem; color: var(--txt-muted); font-style: italic; }

/* Grillas de módulos */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.modulo-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--t);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.modulo-card:hover {
  border-color: var(--p-200);
  box-shadow: 0 8px 24px rgba(20,135,218,.12);
  transform: translateY(-4px);
}

.modulo-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--p-100);
  border-radius: 16px;
  color: var(--primary);
  font-size: 1.65rem;
  transition: all var(--t);
}
.modulo-card:hover .modulo-icon {
  background: var(--grad-primary);
  color: #fff;
}
.modulo-icon img { width:36px; height:36px; object-fit:contain; }

.modulo-card h4 { font-size:.93rem; font-weight:700; color:var(--txt-dark); }

.modulo-card ul { text-align:left; width:100%; display:flex; flex-direction:column; gap:.3rem; }
.modulo-card ul li {
  font-size: .8rem;
  color: var(--txt-muted);
  padding-left: .85rem;
  position: relative;
  line-height: 1.5;
}
.modulo-card ul li::before {
  content: '·';
  position: absolute; left:0;
  color: var(--primary); font-weight:700;
}

.modulo-card p { font-size:.83rem; color:var(--txt-muted); line-height:1.6; }
.modulo-card--web { background: linear-gradient(160deg, #f0f7ff, #fff); }

/* =====================================================
   9. MODAL
===================================================== */
.modal {
  display: none;
  position: fixed; inset:0;
  background: rgba(0,0,0,.65);
  z-index: 2000;
  justify-content: center; align-items: center;
  backdrop-filter: blur(5px);
}
.modal:target { display:flex; }
.modal-contenido {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.35rem;
  position: relative;
  width: 90%; max-width: 680px;
  box-shadow: var(--sh-lg);
}
.modal-contenido iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}
.cerrar {
  position: absolute;
  top: -14px; right: -14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--txt-dark);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items:center; justify-content:center;
  line-height:1; font-weight:700;
  text-decoration:none;
  transition: background var(--t);
}
.cerrar:hover { background: var(--primary-dark); }

/* =====================================================
   10. MODAL DEMO
===================================================== */
.demo-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.demo-overlay.open { display: flex; }

.demo-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  position: relative;
  display: flex;
  flex-direction: column;
}
.demo-box-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid #f0f4f8;
  flex-shrink: 0;
}
.demo-box-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--txt-dark); margin: 0 0 .35rem; }
.demo-box-header p  { font-size: .88rem; color: var(--txt-muted); margin: 0; line-height: 1.6; }
.demo-box-body { padding: 1.5rem 2rem 2rem; }
.demo-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: #f0f4f8; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--txt-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.demo-close:hover { background: var(--border); }
.demo-field { margin-bottom: 1.1rem; }
.demo-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--txt-dark); margin-bottom: .4rem; }
.demo-field label .req { color: var(--primary); margin-left: 2px; }
.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .65rem .9rem;
  font-size: .9rem;
  font-family: inherit;
  color: var(--txt-dark);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,135,218,.1); }
.demo-field textarea { min-height: 90px; resize: vertical; }
.demo-submit {
  width: 100%;
  padding: .8rem;
  background: #25D366;
  border: none; border-radius: 12px;
  color: #fff; font-size: 1rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: .5rem;
  transition: background var(--t), transform var(--t);
}
.demo-submit:hover { background: #1ebe5a; transform: translateY(-1px); }
.demo-submit i { font-size: 1.2rem; }

/* =====================================================
   11. NOSOTROS
===================================================== */
#nosotros {
  padding: 7rem 0;
  background: #fff;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.nosotros-grid > * { min-width: 0; }

.nosotros-text { display:flex; flex-direction:column; gap:1.25rem; }
.nosotros-text h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 800;
  color: var(--txt-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.nosotros-text p { color:var(--txt-body); line-height:1.78; font-size:.97rem; }

.nosotros-img img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  width: 100%; height:430px;
  object-fit: cover;
}

/* Métricas */
.metricas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.metrica-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--t);
}
.metrica-card:hover {
  border-color: var(--p-200);
  box-shadow: 0 6px 20px rgba(20,135,218,.1);
  transform: translateY(-3px);
}
.metrica-numero {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
}
.metrica-label {
  font-size: .83rem;
  color: var(--txt-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Misión / Visión */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex; flex-direction:column; gap:1rem;
  transition: all var(--t);
}
.mv-card:hover {
  border-color: var(--p-200);
  box-shadow: 0 8px 24px rgba(20,135,218,.1);
}
.mv-icon {
  width:52px; height:52px;
  background: var(--grad-primary);
  border-radius: 13px;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.3rem;
}
.mv-card h3 { font-size:1.15rem; font-weight:700; color:var(--txt-dark); }
.mv-card p  { color:var(--txt-body); line-height:1.72; font-size:.93rem; }

/* =====================================================
   11. INSTRUCTIVOS
===================================================== */
#instructivos {
  padding: 7rem 0;
  background: var(--bg-soft);
}

.instructivos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.instructivo-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.instructivo-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--p-200);
}

.instructivo-img {
  padding: 1.5rem;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.instructivo-img img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform var(--tS);
}
.instructivo-card:hover .instructivo-img img { transform: scale(1.05); }

.instructivo-info {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}
.instructivo-info p {
  font-size: .92rem;
  font-weight: 700;
  color: var(--txt-dark);
  line-height: 1.4;
}

/* =====================================================
   12. REFERENCIAS – MAPA INTERACTIVO
===================================================== */
#referencias {
  padding: 7rem 0;
  background: var(--bg-soft);
}

.mapa-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.mapa-svg-container {
  display: flex;
  justify-content: center;
}

.mapa-zoom-controls {
  position: absolute;
  top: .6rem;
  right: .6rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  z-index: 10;
}

.zoom-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
  color: var(--txt-dark);
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), border-color var(--t);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  padding: 0;
}

.zoom-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

#argentina-map {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(13,27,42,.14));
  overflow: hidden;
  cursor: grab;
}
#argentina-map:active { cursor: grabbing; }

/* Provincias del SVG real */
#argentina-map path {
  transition: all .18s ease;
  stroke-linejoin: round;
}
#argentina-map path:hover { opacity: .78; stroke-width: 1.5px !important; }
#argentina-map path.activa {
  opacity: 1;
  stroke-width: 2px !important;
  filter: drop-shadow(0 0 6px rgba(20,135,218,.5));
}

/* Pines de ciudades */
.pin-glow {
  fill: rgba(255,255,255,.25);
  transition: all .18s ease;
}
.pin-dot {
  fill: #fff;
  stroke: rgba(0,0,0,.25);
  stroke-width: 1;
  transition: all .18s ease;
}
.pin-label {
  font-size: 7px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  fill: #0b3996;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
.pin-group:hover .pin-dot,
.pin-group.activa .pin-dot {
  fill: #fff;
  stroke: var(--primary-dark);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(20,135,218,.8));
}
.pin-group.activa .pin-glow { fill: rgba(20,135,218,.2); }

.mapa-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: var(--txt-muted);
  font-size: 2rem;
}

/* Panel lateral */
.mapa-panel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  position: sticky;
  top: 90px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.mapa-panel-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  color: var(--txt-light);
  text-align: center;
}
.mapa-panel-empty i   { font-size: 3rem; color: var(--border); }
.mapa-panel-empty p   { font-size: .88rem; line-height: 1.65; color: var(--txt-muted); }

.mapa-panel-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mapa-panel-header {
  background: var(--grad-primary);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}
.mapa-panel-title  { font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.3; }
.mapa-panel-count  {
  font-size: .72rem; font-weight: 700;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: .22rem .7rem;
  border-radius: var(--r-f);
  white-space: nowrap;
  flex-shrink: 0;
}

.mapa-panel-lista {
  flex: 1;
  overflow-y: auto;
  max-height: 360px;
  padding: .5rem 0;
}
.mapa-panel-lista::-webkit-scrollbar { width: 4px; }
.mapa-panel-lista::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.mapa-cliente-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--t);
}
.mapa-cliente-item:last-child { border-bottom: none; }
.mapa-cliente-item:hover { background: var(--p-50); }
.mapa-cliente-nombre   { font-size: .84rem; font-weight: 600; color: var(--txt-dark); line-height: 1.3; }
.mapa-cliente-localidad { font-size: .74rem; color: var(--txt-light); white-space: nowrap; flex-shrink: 0; }

.mapa-empty-zona {
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem;
  padding: 2.5rem 1.5rem;
  color: var(--txt-light); text-align: center; font-size: .85rem;
}
.mapa-empty-zona i { font-size: 2rem; color: var(--border); }

/* Leyenda */
.mapa-leyenda {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
  justify-content: center;
}
.leyenda-item {
  display: flex; align-items: center; gap: .5rem;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-f);
  padding: .42rem 1rem;
  font-size: .81rem; font-weight: 500;
  color: var(--txt-body);
  cursor: pointer;
  transition: all var(--t);
}
.leyenda-item:hover, .leyenda-item.activa {
  border-color: var(--primary);
  background: var(--p-100);
  color: var(--primary-dark);
}
.leyenda-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.leyenda-count {
  font-size: .72rem; font-weight: 600;
  background: var(--bg-soft);
  color: var(--txt-muted);
  padding: .1rem .5rem;
  border-radius: var(--r-f);
  transition: all var(--t);
}
.leyenda-item.activa .leyenda-count { background: var(--p-200); color: var(--primary-dark); }

/* =====================================================
   13. CONTACTO
===================================================== */
#contactanos {
  padding: 7rem 0;
  background: var(--bg-soft);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contacto-grid > * { min-width: 0; }

.contacto-info { display:flex; flex-direction:column; gap:1rem; }

.info-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--t);
  box-shadow: var(--sh-xs);
}
.info-card:hover {
  border-color: var(--p-200);
  box-shadow: 0 4px 18px rgba(20,135,218,.1);
  transform: translateX(4px);
}
.info-icon {
  width: 46px; height:46px; min-width:46px;
  border-radius: 12px;
  background: var(--p-100);
  display: flex; align-items:center; justify-content:center;
  color: var(--primary); font-size:1.1rem;
  transition: all var(--t);
}
.info-card:hover .info-icon { background: var(--grad-primary); color:#fff; }
.info-card h4 {
  font-size:.78rem; font-weight:700;
  color:var(--txt-muted);
  text-transform:uppercase; letter-spacing:.05em;
  margin-bottom: .15rem;
}
.info-card p { font-size:.95rem; font-weight:600; color:var(--txt-dark); }

.distribuidores-contacto {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--sh-xs);
}
.distribuidores-contacto h3 {
  font-size:1rem; font-weight:700; color:var(--txt-dark);
  margin-bottom:1.35rem;
  padding-bottom:.85rem;
  border-bottom: 2px solid var(--p-100);
}
.dist-list { display:flex; flex-direction:column; gap:.75rem; }
.dist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.dist-item:last-child { border-bottom:none; }
.dist-ciudad { font-size:.9rem; font-weight:600; color:var(--txt-dark); }
.dist-tel    { font-size:.88rem; color:var(--primary); font-weight:500; }

/* =====================================================
   14. CTA FINAL (nueva sección)
===================================================== */
#cta-final {
  padding: 7rem 0;
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  width: 600px; height:600px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -200px; right: -100px;
  pointer-events: none;
}
#cta-final::after {
  content: '';
  position: absolute;
  width: 400px; height:400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px; left: -80px;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.72;
  max-width: 580px;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================
   15. FOOTER
===================================================== */
#footer { background:var(--bg-dark); color:rgba(255,255,255,.75); }

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand { display:flex; flex-direction:column; gap:1.1rem; }
.footer-logo  { height:210px; width:auto; align-self:flex-start; }
.footer-brand p {
  font-size: .86rem;
  line-height: 1.72;
  color: rgba(255,255,255,.5);
}

.footer-redes { display:flex; gap:.7rem; }
.footer-redes a {
  width:36px; height:36px;
  border-radius:9px;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.65);
  font-size:.92rem;
  transition: all var(--t);
}
.footer-redes a:hover { background:var(--primary); color:#fff; transform:translateY(-2px); }

.footer-col h4 {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.1rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul li,
.footer-col ul a {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
  display: flex; align-items:center; gap:.5rem;
}
.footer-col ul a:hover { color:#fff; }
.footer-col ul li i { width:14px; text-align:center; color:var(--primary); font-size:.83rem; }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items:center; justify-content:space-between; gap:1rem;
}
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.35); }
.footer-bottom .btn-outline {
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.18);
  font-size:.78rem;
}
.footer-bottom .btn-outline:hover { background:rgba(255,255,255,.08); color:#fff; }

/* =====================================================
   16. RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .referencias-grid      { grid-template-columns: repeat(2, 1fr); }
  .instructivos-grid     { grid-template-columns: repeat(2, 1fr); }
  .modulos-grid          { grid-template-columns: repeat(2, 1fr); }
  .metricas-grid         { grid-template-columns: repeat(2, 1fr); }
  .beneficios-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-container      { grid-template-columns: 1fr 1fr; gap:2rem; }
  .producto-card         { padding: 2rem; }
  .nosotros-img img      { height: 340px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display:none; }
  .menu-toggle { display:flex; }

  /* Secciones: reducir padding vertical */
  #beneficios, #modulos, #nosotros, #instructivos,
  #referencias, #contactanos, #cta-final { padding: 4.5rem 0; }

  .hero-grid { grid-template-columns:1fr; text-align:center; gap:2rem; padding-top:1rem; }
  .hero-text { align-items:center; }
  .hero-features { text-align:left; }
  .hero-image { order:-1; }
  .hero-stats { gap:1.5rem; flex-wrap:wrap; }
  .stat-number { font-size:1.65rem; }

  .productos-row  { flex-direction:column; }
  .productos-row .producto-card { flex:0 0 auto; }
  .producto-card  { padding: 1.75rem 1.5rem; }
  .nosotros-grid  { grid-template-columns:1fr; gap:2.5rem; }
  .nosotros-img img { height:220px; }
  .metricas-grid  { grid-template-columns: repeat(2,1fr); }
  .mv-grid        { grid-template-columns:1fr; }
  .beneficios-grid{ grid-template-columns:1fr; }
  .contacto-grid  { grid-template-columns:1fr; }
  .mapa-wrapper   { grid-template-columns:1fr; gap:1.5rem; }
  #argentina-map  { max-width:260px; }
  .mapa-panel     { position:static; min-height:300px; }
  .referencias-grid { grid-template-columns:1fr; }
  .footer-container { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom  { flex-direction:column; text-align:center; }
  .cta-btns       { flex-direction:column; align-items:center; }
  .dist-item      { flex-direction:column; align-items:flex-start; gap:.2rem; }
  .comparacion-wrap { font-size:.82rem; }
  .comparacion-table th,
  .comparacion-table tr.feat-row td { padding:.75rem 1rem; }
}

@media (max-width: 480px) {
  #beneficios, #modulos, #nosotros, #instructivos,
  #referencias, #contactanos, #cta-final { padding: 3.5rem 0; }

  .hero-btns { flex-direction:column; width:100%; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .modulos-grid { grid-template-columns:1fr; }
  .instructivos-grid { grid-template-columns:1fr; }
  .hero-stats { flex-direction:column; gap:1rem; }
  .stat-divider { width:60px; height:1px; }
  .metricas-grid { grid-template-columns:1fr; }
  .metrica-card  { padding: 1.25rem 1rem; }
  .beneficio-card { padding: 1.5rem 1.25rem; }
  .mv-card       { padding: 1.5rem; }
  .producto-card  { padding: 1.5rem; }
  .precio-monto   { font-size: 2rem; }
  .section-header { margin-bottom: 2.5rem; }
  .distribuidores-contacto { padding: 1.5rem; }
}

/* =====================================================
   16. DESKTOP: cada sección entra en una sola pantalla
===================================================== */
@media (min-width: 769px) {
  #home, #beneficios, #modulos, #comparacion, #modulos-adicionales,
  #nosotros, #referencias, #contactanos, #cta-final {
    height: 100vh;
    min-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }
  #home { padding-top: 7vh; }

  .section-header { margin-bottom: 2vh; }
  .section-header h2 { font-size: clamp(1.4rem, 3.6vh, 2.6rem); }
  .section-header p  { font-size: clamp(.8rem, 1.7vh, 1rem); }

  /* Hero */
  .hero-grid { gap: 2rem; }
  .hero-text h1 { font-size: clamp(1.5rem, 4.4vh, 2.9rem); }
  .hero-desc     { font-size: clamp(.85rem, 1.8vh, 1.05rem); margin: 1vh 0; }
  .hero-features { font-size: clamp(.78rem, 1.6vh, .92rem); gap: .5vh; }
  .hero-btns      { margin-top: 1.5vh; }
  .hero-image-wrap img { max-height: 40vh; object-fit: cover; width:100%; }
  .hero-stats  { padding: 1.5vh 1.5rem; gap: 2rem; margin-top: 1.5vh; }
  .stat-number { font-size: clamp(1.2rem, 3vh, 1.8rem); }
  .stat-label  { font-size: clamp(.68rem, 1.3vh, .8rem); }

  /* Beneficios */
  .beneficios-grid { gap: 1rem; }
  .beneficio-card   { padding: 1.5vh 1.25rem; }
  .beneficio-icono  { margin-bottom: 1vh; }
  .beneficio-card h3 { font-size: clamp(.9rem, 1.9vh, 1.1rem); margin-bottom: .5vh; }
  .beneficio-card p  { font-size: clamp(.75rem, 1.5vh, .88rem); }

  /* Productos */
  .productos-grid, .productos-row { gap: 1rem; }
  .producto-card    { padding: 1.5vh 1.5rem; }
  .producto-card h3 { font-size: clamp(1.1rem, 2.6vh, 1.7rem); }
  .producto-sub     { font-size: clamp(.75rem, 1.4vh, .9rem); }
  .feature-list     { gap: .5vh; }
  .feature-list li  { font-size: clamp(.75rem, 1.4vh, .93rem); }
  .precio-monto     { font-size: clamp(1.4rem, 3vh, 2rem); }

  /* Comparación */
  .comparacion-wrap { font-size: clamp(.72rem, 1.4vh, .92rem); }
  .comparacion-table th { padding: 1vh 1.25rem; font-size: clamp(.78rem, 1.5vh, 1rem); }
  .comparacion-table tr.cat-row td  { padding: .5vh 1.75rem; }
  .comparacion-table tr.feat-row td { padding: .5vh 1.75rem; }

  /* Módulos adicionales */
  .modulos-grid  { gap: 1rem; }
  .modulo-card   { padding: 1.5vh 1.25rem; }
  .modulo-card h3, .modulo-card .titulo { font-size: clamp(.85rem, 1.7vh, 1rem); margin-bottom: .5vh; }
  .modulo-card ul li { font-size: clamp(.7rem, 1.3vh, .8rem); }

  /* Nosotros */
  .nosotros-grid   { gap: 2.5rem; margin-bottom: 1.5vh; }
  .nosotros-img img { height: 30vh; }
  .nosotros-text p  { font-size: clamp(.75rem, 1.5vh, .92rem); margin-bottom: .8vh; }
  .metricas-grid    { margin-bottom: 1.5vh; }
  .metrica-card     { padding: 1vh 1rem; }
  .metrica-numero   { font-size: clamp(1.2rem, 2.8vh, 1.8rem); }
  .metrica-label    { font-size: clamp(.68rem, 1.3vh, .8rem); }
  .mv-grid  { gap: 1rem; }
  .mv-card  { padding: 1.5vh 1.25rem; }

  /* Referencias / mapa */
  .mapa-wrapper { gap: 1.5rem; }
  #argentina-map { max-height: 50vh; width: auto; }
  .mapa-panel    { max-height: 50vh; }
  .mapa-panel-lista { max-height: 30vh; }

  /* Contacto */
  .contacto-grid { gap: 1.5rem; }
  .info-card      { padding: 1vh 1.25rem; }
  .distribuidores-contacto { padding: 1.5vh 1.75rem; }
  .dist-item { padding: .5vh 0; }

  /* CTA final */
  .cta-content h2 { font-size: clamp(1.3rem, 3.2vh, 2.2rem); }
  .cta-content p  { font-size: clamp(.8rem, 1.6vh, 1rem); }
}
