/* ═══════════════════════════════════════════════════════════════
   322LIVESTREAM — style-v2.css
   Dark Mode Tech-Premium Landing
   ═══════════════════════════════════════════════════════════════ */
  
:root {
  --bg:         #050505;
  --bg-card:    rgba(13,17,23,0.75);
  --border:     rgba(255,255,255,0.07);
  --text:       #FFFFFF;
  --text-dim:   #8B949E;
  --accent:     #00E5FF;
  --blue:       #0066FF;
  --blue-dark:  #0052cc;
  --font-title: 'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #000000; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* ─── NAV ─── */
.nav-v2 {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 15px; /* Ligeramente más grande */
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link-v2 {
  font-size: 16px; /* Modificado de 10px a 16px */
  font-weight: 500;
  letter-spacing: 1.5px; /* Ajustado para mejor lectura */
  text-transform: uppercase;
  color: #F3F4F6; /* Color más claro y legible */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.nav-link-v2:hover { color: #FFFFFF; }

.nav-cta {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 14px; /* Modificado de 10px a 14px */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 22px;
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 2px;
  background: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: rgba(0,229,255,0.07);
  box-shadow: 0 0 20px rgba(0,229,255,0.1);
  color: var(--accent);
}

/* ─── Admin link — desktop subtle ─── */
.nav-admin-link {
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  color: #2a3441 !important;
  transition: color 0.2s;
}
.nav-admin-link:hover { color: #4a5568 !important; }

/* ─── Hamburger button (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: rgba(255,255,255,0.3); }

/* ─── Off-canvas backdrop ─── */
.nav-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-offcanvas-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ─── Off-canvas panel ─── */
.nav-offcanvas {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 90vw);
  height: 100dvh;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav-offcanvas.is-open { right: 0; }

.nav-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav-offcanvas-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.nav-offcanvas-close:hover { border-color: rgba(255,255,255,0.3); color: var(--accent); }

.nav-offcanvas-links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-offcanvas-links li a,
.nav-offcanvas-links li button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  padding: 18px 0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-offcanvas-links li a:hover,
.nav-offcanvas-links li button:hover {
  color: var(--accent);
  padding-left: 6px;
}

.nav-offcanvas-links .offcanvas-cta {
  color: var(--accent) !important;
  border-color: rgba(0,229,255,0.12) !important;
}
.nav-offcanvas-links .offcanvas-cta:hover { padding-left: 6px; }

.nav-offcanvas-links .offcanvas-admin {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  letter-spacing: 1.5px;
  margin-top: 12px;
  border-bottom: none !important;
}
.nav-offcanvas-links .offcanvas-admin:hover {
  color: #6b7280 !important;
  padding-left: 0 !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 65% at 65% 55%, rgba(0,102,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(0,229,255,0.04) 0%, transparent 55%),
    var(--bg);
}

/* Subtle grid lines */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: grayscale(0.5) saturate(0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px; /* Aumentado para visibilidad */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(54px, 9vw, 122px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-title .line { display: block; }

.hero-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}

.hero-title .line-accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; /* Modificado de 15px a 18px */
  font-weight: 300;
  line-height: 1.6;
  color: #F3F4F6; /* Color gris claro legible */
  max-width: 580px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}

.hero-scroll::before {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25));
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-title);
  font-size: 14px; /* Aumentado */
  font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,102,255,0.35);
  color: #fff;
}

.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: #F3F4F6; /* Color más claro */
  font-family: var(--font-title);
  font-size: 14px; /* Aumentado */
  font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px; cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: #FFFFFF; color: #FFFFFF; }

/* ─── SPECS / GRID TÉCNICO ─── */
.specs {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spec-item {
  padding: 20px 10px;
  background: transparent;
  border: none;
  text-align: center;
}
.spec-value {
  font-family: var(--font-title);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.spec-value sup {
  font-size: 0.44em;
  font-weight: 600;
  color: var(--accent);
  vertical-align: super;
  margin-left: 2px;
}
.spec-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.spec-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
  max-width: 260px;
}

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; /* Aumentado */
  font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title-v2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--text);
}

/* ─── CASOS DE USO ─── */
.casos {
  position: relative; z-index: 1;
  padding: 100px 0;
}

.casos-header {
  padding: 0;
  margin-bottom: 56px;
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.caso-card {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #080b10;
  border-radius: 20px;
}

.caso-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.6);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
}

.caso-card:hover .caso-bg {
  transform: scale(1.06);
  filter: brightness(0.52) saturate(0.75);
}

.caso-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}

.caso-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; z-index: 3;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.caso-card:hover::after { transform: scaleX(1); }

.caso-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px 40px;
  z-index: 2;
}

.caso-tag {
  font-size: 12px; /* Aumentado */
  font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.caso-title-v2 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}

.caso-desc-v2 {
  font-size: 16px; /* Modificado de 13px a 16px */
  line-height: 1.6;
  color: #F3F4F6; /* Color más legible sobre foto oscura */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.caso-card:hover .caso-desc-v2 {
  max-height: 140px; /* Aumentado un poco para el texto más grande */
  opacity: 1;
}

.caso-link {
  display: inline-block;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  transition: max-height 0.5s ease, opacity 0.4s 0.1s ease, margin-top 0.3s;
}

.caso-card:hover .caso-link {
  max-height: 40px;
  opacity: 1;
  margin-top: 16px;
}

/* Tarjeta completa como enlace */
a.caso-card {
  display: block;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

/* Ícono flecha en tarjetas */
.caso-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s 0.1s ease, margin-top 0.3s, border-color 0.3s, background 0.3s;
}

.caso-card:hover .caso-arrow {
  max-height: 50px;
  opacity: 1;
  margin-top: 20px;
  border-color: var(--accent);
  background: rgba(0,229,255,0.08);
}

/* ─── COTIZADOR ─── */
.cotizador-section {
  position: relative; z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.cotizador-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cotizador-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative; z-index: 1;
}

.cotizador-header { margin-bottom: 56px; }

.cotizador-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.cotizador-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 30%, var(--accent) 70%, transparent 100%);
}

.cotizador-form-inner { padding: 56px 64px; }

/* ─── FORM ELEMENTS V2 ─── */
.fv2-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.fv2-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fv2-section-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-title);
  font-size: 14px; /* Modificado de 10px a 14px */
  font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #F3F4F6; /* Color mejorado */
  margin-bottom: 24px;
}

.fv2-section-title::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}

.fv2-section-note {
  font-size: 15px; /* Modificado de 11px a 15px */
  color: #D1D5DB; /* Gris claro legible */
  letter-spacing: 0.5px;
  margin-top: -16px;
  margin-bottom: 18px;
}

.fv2-group { margin-bottom: 18px; }

.fv2-label {
  display: block;
  font-size: 13px; /* Modificado de 9px a 13px (en mayúsculas se ve fuerte) */
  font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #F3F4F6; /* Color blanco/gris claro */
  margin-bottom: 8px;
}

.fv2-input,
.fv2-select,
.fv2-textarea {
  width: 100%;
  background: #141418;
  border: 1px solid #2a2a35;
  color: #f1f5f9;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-radius: 8px;
  appearance: none; -webkit-appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.fv2-input:focus,
.fv2-select:focus,
.fv2-textarea:focus {
  border-color: var(--accent);
  background: #141418;
  box-shadow: 0 0 0 3px rgba(0,229,255,0.10), 0 0 18px rgba(0,229,255,0.06);
}

.fv2-input::placeholder,
.fv2-textarea::placeholder { color: #555b6b; }

.fv2-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23888'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  background-color: #141418;
}

.fv2-select option { background: #141418; color: #f1f5f9; }

.fv2-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
  border-radius: 8px;
}

.fv2-persuasion {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(0,229,255,0.55);
  line-height: 1.7;
  text-align: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 24px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  width: 100%;
  line-height: 1.7;
  letter-spacing: 0.3px;
  margin-top: 20px;
}
.form-note a { color: var(--accent); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

.fv2-submit {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
  color: #fff;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
}
.fv2-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,229,255,0.22);
}
.fv2-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

input[type="date"].fv2-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8); cursor: pointer;
}

.fv2-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Checkboxes */
.fv2-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fv2-checkbox-item {
  display: flex; align-items: center; /* Alineación centrada */
  gap: 10px;
  cursor: pointer;
  padding: 14px 16px; /* Un poco más de espacio */
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px; /* ¡ERROR CORREGIDO AQUÍ! (antes decía 2;) */
  font-size: 16px; /* Texto más grande para el checkbox */
  color: #F3F4F6; /* Color claro y legible */
}

/* =========================================
   📱 AJUSTES RESPONSIVOS (CELULAR)
   ========================================= */
/* ─── CAROUSEL DOTS (globales — solo estilos visuales, sin layout) ─── */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background-color: #FFFFFF;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  /* 1. Menú Hamburguesa */
  .nav-v2 {
    padding: 0 20px;
    height: 60px;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* 2. Arreglo de las Tarjetas (Carrusel deslizable horizontal) */
  .casos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
  }
  .casos-grid::-webkit-scrollbar {
    display: none;
  }
  

  .caso-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    height: 480px;
    border-radius: 16px;
  }
  .caso-title-v2 {
    font-size: 22px;
    white-space: normal;
  }
  .caso-content {
    padding: 30px 24px;
  }

  /* 3. Ajustes generales para que nada se salga en celular */
  .hero {
    padding: 0 24px;
  }
  .hero-title {
    font-size: 46px !important;
  }
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cotizador-inner {
    padding: 0 24px;
  }
  .cotizador-form-inner {
    padding: 30px 24px;
  }
  .fv2-grid-2, .fv2-checkbox-grid {
    grid-template-columns: 1fr;
  }

  /* ── Safe Area Móvil — contenedores de texto y formularios ── */
  .cotizador-section,
  .cotizador-header,
  .cot-header {
    box-sizing: border-box;
  }

  /* ── Carrusel móvil — activo SOLO en ≤768px ── */
  .mobile-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    padding-right: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  .mobile-carousel > * {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }
}

@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }

/* ── COMING SOON — Video de fondo ─────────────────────────── */
body {
    position: relative;
    z-index: 10;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -20;
    filter: blur(1px);
    opacity: 0.9;
}

#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Capa 1: Gradiente oscurecedor profundo de NEGRO puro */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 1;
    pointer-events: none;
}

#video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Capa 2 y 3: Textura de cuadrícula fina proyectada como LUZ CYAN/ACENTO sutil */
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
}

.coming-soon-content {
    position: relative;
    z-index: 20;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER V2 — Corporate Tech Premium
   ═══════════════════════════════════════════════════════════════ */

.footer-v2 {
  background: #0a0a0a;
  border-top: 1px solid #1c1c1c;
  margin-top: 80px;
}

.footer-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 36px;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

/* Col 1 — Brand */
.footer-v2-logo {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-v2-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4b5563;
  line-height: 1.85;
  max-width: 300px;
}

/* Col 2 & 3 — col title */
.footer-v2-col-title {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 20px;
}

/* Col 2 — Contact */
.footer-v2-email {
  font-family: var(--font-body);
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}
.footer-v2-email:hover { color: var(--accent); }

/* Col 3 — Social */
.footer-v2-social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-v2-social-links a {
  color: #374151;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s, transform 0.2s;
}
.footer-v2-social-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-v2-social-links svg { width: 22px; height: 22px; }

/* Bottom bar */
.footer-v2-bottom {
  border-top: 1px solid #1c1c1c;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-v2-copyright {
  font-family: var(--font-body);
  font-size: 11px;
  color: #374151;
  letter-spacing: 0.3px;
}
.footer-v2-legal { display: flex; gap: 24px; }
.footer-v2-legal a {
  font-family: var(--font-body);
  font-size: 11px;
  color: #374151;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.footer-v2-legal a:hover { color: #6b7280; }

/* Responsive */
@media (max-width: 900px) {
  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-v2-brand { grid-column: 1 / -1; }
  .footer-v2-tagline { max-width: 100%; }
}

@media (max-width: 600px) {
  .footer-v2-inner { padding: 56px 24px 32px; }
  .footer-v2-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    margin-bottom: 48px;
  }
  .footer-v2-brand { grid-column: unset; }
  .footer-v2-tagline { max-width: 100%; margin: 0 auto; }
  .footer-v2-social-links { justify-content: center; }
  .footer-v2-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-v2-legal { justify-content: center; }
}
