@charset "UTF-8";

/* ============================================================
   SUPPORT JET  |  Hoja de Estilos Corporativa
   Diseño ejecutivo  ·  Institucional  ·  Alta gama
   Referencias: McKinsey, Stripe, Intercom
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   TOKENS DE DISEÑO
   ============================================================ */
:root {
  /* --- Color institucional --- */
  --navy-900: #060e1a;
  --navy-800: #0b1a2e;
  --navy-700: #0f2242;
  --navy-600: #142d56;
  --navy-500: #1a3a6b;
  --navy-400: #1e4d8c;

  --steel-700: #2d3748;
  --steel-600: #4a5568;
  --steel-500: #718096;
  --steel-400: #a0aec0;
  --steel-300: #cbd5e0;
  --steel-200: #e2e8f0;
  --steel-100: #edf2f7;
  --steel-50:  #f7fafc;

  --white:     #ffffff;
  --off-white: #fafbfc;

  /* --- Acento sofisticado (oro viejo / bronce) --- */
  --accent:      #b8943a;
  --accent-dark: #8e702a;
  --accent-light:#d4b96a;
  --accent-subtle:rgba(184,148,58,0.08);

  /* --- Semánticos --- */
  --success:    #2f855a;
  --success-bg: #f0fff4;
  --error:      #c53030;

  /* --- Tipografía --- */
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:  'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

  /* --- Escala tipográfica --- */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.8125rem;  /* 13px */
  --text-base:  0.9375rem;  /* 15px */
  --text-md:    1.0625rem;  /* 17px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   2.75rem;    /* 44px */
  --text-4xl:   3.5rem;     /* 56px */

  /* --- Espaciado --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10:40px;
  --space-12:48px;
  --space-16:64px;
  --space-20:80px;
  --space-24:96px;
  --space-32:128px;

  /* --- Bordes --- */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-none:0;

  /* --- Sombras (sutiles, solo donde aportan) --- */
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-elevated: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-nav: 0 1px 0 rgba(0,0,0,0.06);

  /* --- Layout --- */
  --max-width: 1120px;
  --nav-height: 68px;

  /* --- Transiciones --- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET GLOBAL
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--steel-700);
  background: var(--white);
  overflow-x: hidden;
}

::selection {
  background: var(--navy-500);
  color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

hr {
  border: none;
  border-top: 1px solid var(--steel-200);
  margin: 0;
}

/* ============================================================
   CONTENEDOR
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-5); }
}

/* ============================================================
   TIPOGRAFÍA UTILITARIA
   ============================================================ */
.label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--steel-500);
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 768px) {
  .section-title { font-size: var(--text-2xl); }
  .section-subtitle { font-size: var(--text-base); }
}

/* ============================================================
   NAVEGACIÓN  ·  Limpia, ligera, fondo blanco
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--steel-200);
  box-shadow: var(--shadow-nav);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-brand img {
  height: 36px;
  width: auto;
}

.nav-brand .brand-name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel-600);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-links a:hover {
  color: var(--navy-800);
}

.nav-links a.nav-cta {
  background: var(--navy-800);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-links a.nav-cta:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
}

/* --- Hamburguesa --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 1px;
  transition: all 0.25s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    transition: right 0.35s var(--ease);
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
  }

  .nav-links.active { right: 0; }
  .nav-links a { font-size: var(--text-base); }
  .nav-whatsapp-mobile { display: block; }
  .nav-toggle { display: flex; }
}

@media (min-width: 769px) {
  .nav-whatsapp-mobile { display: none; }
}

/* ============================================================
   HERO  ·  Impactante, limpio, sin artificios
   ============================================================ */
.hero {
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
  background: var(--navy-800);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 30%, rgba(30,77,140,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(11,26,46,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content .hero-kicker {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-5);
}

.hero-content h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-content p {
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  margin-bottom: var(--space-6);
  line-height: 1.4;
}

.hero-trust-badge .badge-icon {
  font-size: 16px;
  color: var(--accent-light);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-stat-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-12);
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-stat-block img {
  max-height: 140px;
  margin: 0 auto var(--space-8);
  opacity: 0.95;
}

.hero-stat-block .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.hero-stat-block .stat-item .stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hero-stat-block .stat-item .stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-height) + var(--space-10)) 0 var(--space-12); }
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .hero-content { text-align: center; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-content h1 { font-size: var(--text-2xl); }
  .hero-stat-block { padding: var(--space-8); }
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn-white {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-card);
}

.btn-white:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--steel-300);
}

.btn-outline:hover {
  border-color: var(--navy-400);
  color: var(--navy-600);
}

.btn-whatsapp {
  background: #075e54;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #064e46;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: var(--text-xs);
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; }
}

/* ============================================================
   SECCIONES  ·  Espaciado generoso
   ============================================================ */
.section {
  padding: var(--space-32) 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy-800);
  color: var(--white);
}

.section-header {
  margin-bottom: var(--space-20);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .section-header { margin-bottom: var(--space-12); }
}

/* ============================================================
   SERVICIOS  ·  Grid ejecutivo con icono numérico
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-10);
}

.service-card {
  padding: var(--space-10);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.service-card:hover {
  border-color: var(--steel-300);
  box-shadow: var(--shadow-elevated);
}

.service-card .service-number {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--steel-500);
  line-height: 1.7;
}

/* ============================================================
   PRODUCTOS  ·  Cards limpias con ficha técnica
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.product-card {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--steel-300);
  box-shadow: var(--shadow-elevated);
}

.product-card .product-img {
  background: var(--off-white);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-bottom: 1px solid var(--steel-200);
}

.product-card .product-img img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-card .product-body {
  padding: var(--space-6) var(--space-8) var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-series {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: var(--space-1);
}

.product-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.product-card .product-desc {
  font-size: var(--text-sm);
  color: var(--steel-500);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  flex: 1;
}

.product-card .product-specs-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-4);
  margin-bottom: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--steel-100);
}

.product-card .product-specs-inline .spec-chip {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--steel-500);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.product-card .product-specs-inline .spec-chip .spec-val {
  font-weight: 600;
  color: var(--steel-700);
}

.product-card .product-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TABLA DE ESPECIFICACIONES (Estilo ejecutivo)
   ============================================================ */
.specs-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-6);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.specs-table th,
.specs-table td {
  padding: var(--space-3) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--steel-200);
}

.specs-table th {
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-400);
  background: var(--off-white);
}

.specs-table td {
  font-weight: 500;
  color: var(--steel-700);
}

.specs-table tr:hover td {
  background: var(--steel-50);
}

/* ============================================================
   RENTA  ·  Planes corporativos con enfoque serio
   ============================================================ */
.renta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.renta-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  background: rgba(255,255,255,0.03);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.renta-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.renta-card.featured {
  background: rgba(184,148,58,0.06);
  border-color: rgba(184,148,58,0.25);
}

.renta-card .plan-tier {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-4);
}

.renta-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.renta-card .plan-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.renta-card .plan-price-row {
  margin-bottom: var(--space-8);
}

.renta-card .plan-price-row .price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.renta-card .plan-price-row .period {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.renta-card .plan-features {
  margin-bottom: var(--space-8);
  flex: 1;
}

.renta-card .plan-features li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.6;
}

.renta-card .plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.renta-card .btn { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 480px) {
  .renta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MÉTRICAS / CONFIANZA
   ============================================================ */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
  margin-bottom: var(--space-16);
}

.metric-item {
  text-align: center;
}

.metric-item .metric-value {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.metric-item .metric-label {
  font-size: var(--text-sm);
  color: var(--steel-500);
  font-weight: 500;
}

@media (max-width: 768px) {
  .metrics-strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
}

@media (max-width: 480px) {
  .metrics-strip { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .metric-item .metric-value { font-size: var(--text-2xl); }
}

/* ============================================================
   BLOQUE DE CONFIANZA (condiciones de renta)
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}

.trust-card {
  padding: var(--space-8);
  border-left: 2px solid var(--steel-200);
  transition: border-color 0.25s var(--ease);
}

.trust-card:hover {
  border-left-color: var(--accent);
}

/* --- Tira de sectores atendidos --- */
.sectors-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 700px;
  margin: 0 auto;
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel-600);
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 50px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.sector-pill:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.trust-card .trust-icon {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.trust-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.trust-card p {
  font-size: var(--text-sm);
  color: var(--steel-500);
  line-height: 1.7;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info-block h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.contact-info-block > p {
  font-size: var(--text-sm);
  color: var(--steel-500);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail .cd-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--steel-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--steel-600);
}

.contact-detail .cd-text h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.contact-detail .cd-text p {
  font-size: var(--text-sm);
  color: var(--steel-500);
}

.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.form-field {
  margin-bottom: var(--space-5);
}

.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: var(--space-2);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--steel-700);
  background: var(--white);
  border: 1.5px solid var(--steel-300);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(30,77,140,0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ============================================================
   FOOTER  ·  Ejecutivo, limpio
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: var(--steel-400);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--space-8);
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: var(--space-5);
}

.footer-col p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--steel-500);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--steel-500);
  transition: color 0.2s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-brand img {
  height: 28px;
  width: auto;
}

.footer-brand span {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--steel-500);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  font-size: var(--text-sm);
  color: var(--steel-500);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.footer-social a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   WHATSAPP FLOAT  ·  Discreto, profesional
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #075e54;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--steel-300);
  color: var(--steel-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--navy-400);
  color: var(--navy-600);
}

/* ============================================================
   MODAL  ·  Limpio, corporativo
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,14,26,0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: var(--space-5);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-10);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--steel-200);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  transition: all 0.2s var(--ease);
}

.modal-close:hover {
  background: var(--steel-50);
  border-color: var(--steel-300);
  color: var(--steel-600);
}

.modal img {
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto var(--space-6);
}

.modal h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
}

.modal .modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.modal .modal-specs .ms-item {
  background: var(--off-white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-200);
}

.modal .modal-specs .ms-item .ms-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 2px;
}

.modal .modal-specs .ms-item .ms-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--steel-700);
}

@media (max-width: 480px) {
  .modal { padding: var(--space-6); }
  .modal .modal-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMACIONES SUTILES (solo fade)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILIDADES MÍNIMAS
   ============================================================ */
.mt-1 { margin-top: var(--space-2); }
.mt-2 { margin-top: var(--space-4); }
.mt-3 { margin-top: var(--space-6); }
.mt-4 { margin-top: var(--space-8); }
.mt-5 { margin-top: var(--space-10); }
.mt-6 { margin-top: var(--space-12); }
.mt-8 { margin-top: var(--space-16); }

.mb-1 { margin-bottom: var(--space-2); }
.mb-2 { margin-bottom: var(--space-4); }
.mb-3 { margin-bottom: var(--space-6); }
.mb-4 { margin-bottom: var(--space-8); }
.mb-6 { margin-bottom: var(--space-12); }

.text-center { text-align: center; }
.block { display: block; }

@media (max-width: 480px) {
  .hide-mobile { display: none !important; }
}

/* ============================================================
   MAPA PLACEHOLDER
   ============================================================ */
.map-zone {
  width: 100%;
  height: 320px;
  background: var(--steel-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--steel-500);
  font-size: var(--text-sm);
}

.map-zone .map-icon {
  font-size: var(--text-2xl);
  opacity: 0.5;
}
