/* ==========================================================================
   TU CAMIÓN FINANCIADO - ULISES STUTZ
   Estilos Principales - Dark UI & Vibrant Orange
   ========================================================================== */

:root {
  /* Paleta de Colores Corporativa */
  --bg-main: #060c18;
  --bg-sidebar: #081120;
  --bg-card: #0c182b;
  --bg-card-hover: #11223d;
  --bg-elevated: #142848;
  --bg-overlay: rgba(6, 12, 24, 0.85);

  /* Acentos Naranja */
  --primary-orange: #ff6b00;
  --primary-orange-hover: #ff7d1a;
  --primary-orange-dark: #e05b00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-subtle: rgba(255, 107, 0, 0.12);

  /* WhatsApp Verde */
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #20ba5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Textos y Bordes */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light: #e2e8f0;
  --border-subtle: #16263e;
  --border-focus: #ff6b00;

  /* Dimensiones y Sombras */
  --sidebar-width: 280px;
  --header-ribbon-height: 84px;
  --footer-height: 90px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 6px 20px -2px rgba(255, 107, 0, 0.45);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1c3252;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */
.app-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--bg-main);
}

/* ==========================================================================
   SIDEBAR IZQUIERDO FIJO
   ========================================================================== */
.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 10px;
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  z-index: 100;
  box-sizing: border-box;
}

/* 1. Cuadro Principal de Menú y Contacto */
.sidebar-main-panel {
  background: #081324;
  border: 1px solid #162842;
  border-radius: var(--radius-md);
  padding: 8px 8px 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

/* Logo Corporativo Oficial */
.sidebar-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
  width: 100%;
}

.sidebar-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 107, 0, 0.25);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.sidebar-logo:hover .sidebar-logo-img {
  transform: scale(1.02);
  border-color: var(--primary-orange);
}

/* Navegación Vertical */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-item i,
.nav-item svg {
  font-size: 0.86rem;
  width: 15px;
  height: 15px;
  color: #64748b;
  transition: color var(--transition-fast);
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding-left: 12px;
}

.nav-item:hover i,
.nav-item:hover svg {
  color: var(--primary-orange);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.22) 0%, rgba(255, 107, 0, 0.05) 100%);
  color: var(--primary-orange);
  border-left: 3px solid var(--primary-orange);
}

.nav-item.active i,
.nav-item.active svg {
  color: var(--primary-orange);
}

/* Tarjeta CTA adentro del panel principal */
.sidebar-cta-card {
  background: #050d1a;
  border: 1px solid #14243b;
  border-radius: var(--radius-sm);
  padding: 8px 8px 6px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.sidebar-cta-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar-cta-text h4 {
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.3px;
  line-height: 1.18;
}

.sidebar-cta-text p {
  font-size: 0.62rem;
  color: var(--text-secondary);
  line-height: 1.18;
}

.btn-sidebar-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 8px 6px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.45);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-sidebar-whatsapp:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ffa02e 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.65);
}

.btn-sidebar-whatsapp i,
.btn-sidebar-whatsapp svg {
  font-size: 0.84rem;
}

/* 2. Cuadro Separado del Código QR (Aparte, en el espacio inferior) */
.sidebar-separate-qr-card {
  background: #081324;
  border: 1px solid #162842;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  min-height: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.sidebar-separate-qr-card:hover {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(255, 107, 0, 0.25);
  transform: translateY(-2px);
}

.sidebar-qr-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.sidebar-separate-qr-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.sidebar-separate-qr-card:hover .sidebar-separate-qr-img {
  transform: scale(1.03);
}

/* ==========================================================================
   CONTENIDO PRINCIPAL (DERECHA)
   ========================================================================== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: var(--bg-main);
  position: relative;
}

/* Vistas Intercambiables */
.view-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  animation: fadeInView 0.35s ease;
}

@keyframes fadeInView {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Barra Móvil */
.mobile-top-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background-color: var(--bg-sidebar);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 150;
}

.mobile-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}
.mobile-logo-text span {
  color: var(--primary-orange);
}

.btn-hamburger {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CINTA SUPERIOR DE BENEFICIOS (4 COLUMNAS)
   ========================================================================== */
.top-benefits-ribbon {
  background: linear-gradient(180deg, #091322 0%, #060c18 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
}

.benefit-col {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-fast);
}

.benefit-col:last-child {
  border-right: none;
}

.benefit-col:hover {
  transform: translateY(-2px);
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.benefit-text-box h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.benefit-text-box p {
  font-size: 0.73rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Barra de Herramientas de Administrador / Subir Fotos */
.admin-action-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 28px 4px;
  gap: 12px;
}

.btn-manage-photos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #ff9500;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-manage-photos:hover {
  background: var(--primary-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SLIDER PRINCIPAL (SOLO FOTOS LIMPIAS DE ALTA DEFINICIÓN)
   ========================================================================== */
.hero-slider-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 28px 10px;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 439;
  max-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #091322;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #070e1a;
  display: block;
}

.hero-slide-overlay-backdrop {
  display: none;
}

.hero-slide-info-card {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 330px;
  max-width: 330px;
  padding: 12px 16px 14px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  color: #ffffff;
  pointer-events: auto;
}

.slide-info-title {
  font-family: 'Impact', 'Oswald', 'Barlow Condensed', sans-serif;
  font-size: 2.05rem;
  font-weight: 400;
  color: #f26522;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 6px;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.slide-specs-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.slide-spec-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.slide-spec-label {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: #f26522;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.15;
}

.slide-spec-value {
  font-family: 'Arial Narrow', 'Barlow Condensed', 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.22;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.slide-spec-table-group {
  margin-top: 2px;
}

.slide-spec-table-title {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.slide-spec-table-cols {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-table-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
}

.slide-table-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.slide-table-label {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #f26522;
  text-transform: uppercase;
}

.slide-table-val {
  font-family: 'Arial Narrow', 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-engineering-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #eab308;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.slide-engineering-badge i {
  font-size: 0.9rem;
}

.slide-cta-row {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.slide-btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f26522 0%, #ff8800 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(242, 101, 34, 0.45);
  transition: all var(--transition-normal);
}

.slide-btn-consultar:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ffa02e 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(242, 101, 34, 0.65);
}

.slide-btn-consultar i {
  font-size: 1.15rem;
}

.banner-cta-hotspot {
  position: absolute;
  bottom: 4%;
  left: 3.5%;
  width: 22%;
  height: 12%;
  border-radius: var(--radius-full);
  z-index: 8;
  cursor: pointer;
  background: transparent;
  transition: all var(--transition-fast);
}

.banner-cta-hotspot:hover {
  background: rgba(255, 107, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 32px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 12, 24, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.hero-photo-wa-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #f05a00 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.hero-photo-wa-btn:hover {
  background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.7);
}

.hero-photo-wa-btn i {
  font-size: 1.15rem;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0.3;
  transition: all var(--transition-fast);
}

.hero-slider-wrapper:hover .hero-nav-arrow {
  opacity: 0.9;
}

.hero-nav-arrow:hover {
  opacity: 1 !important;
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev { left: 10px; }
.hero-nav-next { right: 10px; }

.hero-dots-container {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
  background: rgba(8, 17, 32, 0.55);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.hero-dot.active {
  background-color: var(--primary-orange);
  width: 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--primary-orange);
}

/* ==========================================================================
   CARRUSEL INFERIOR DE PRODUCTOS (SOLUCIONES A MEDIDA)
   ========================================================================== */
.solutions-section {
  padding: 6px 28px 20px;
  position: relative;
}

.solutions-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.solutions-header-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.solutions-title-group h2 {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-transform: uppercase;
}

.solutions-title-group span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  display: block;
}

.solutions-hint {
  font-size: 0.74rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.solutions-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-solutions-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-solutions-nav:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

.solutions-slider-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.solutions-grid {
  display: flex;
  gap: 14px;
  width: max-content;
}

.solution-card {
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 107, 0, 0.25);
}

.solution-card.active {
  border-color: var(--primary-orange);
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.4);
}

.solution-card-img-wrap {
  width: 100%;
  height: 115px;
  background-color: #091322;
  overflow: hidden;
  position: relative;
}

.solution-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.solution-card:hover .solution-card-img {
  transform: scale(1.08);
}

.solution-card-body {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #091424;
  flex-grow: 1;
}

.solution-card-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.solution-card-text {
  display: flex;
  flex-direction: column;
}

.solution-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 0.5px;
}

.solution-name {
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.25;
}

/* ==========================================================================
   SUBPÁGINA: GAMAS DE CAMIONES IVECO 0 KM (Fiel a la referencia)
   ========================================================================== */
.iveco-subpage-section {
  padding: 18px 28px 24px;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.iveco-gamas-container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 22px;
  width: 100%;
  align-items: stretch;
}

.iveco-gamas-panel {
  background: linear-gradient(145deg, #091324 0%, #060e1c 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.iveco-panel-header h2 {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.header-line-accent {
  width: 70px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.iveco-gamas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex-grow: 1;
}

.gama-card-col {
  background: #081122;
  border: 1px solid #162944;
  border-radius: var(--radius-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.gama-card-col:hover,
.gama-card-col.active {
  border-color: var(--primary-orange);
  background: #0c1a32;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 107, 0, 0.25);
  transform: translateY(-2px);
}

.gama-card-icon {
  width: 100%;
  height: 48px;
  color: var(--primary-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gama-card-silhouette-img {
  max-width: 68px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 0, 0.4));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.gama-card-col:hover .gama-card-silhouette-img,
.gama-card-col.active .gama-card-silhouette-img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(255, 107, 0, 0.75));
}

.gama-card-title {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin-bottom: 12px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gama-card-col.active .gama-card-title {
  color: var(--primary-orange);
}

.gama-model-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 2px;
}

.gama-model-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: left;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gama-model-btn:hover,
.gama-model-btn.active {
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary-orange);
  padding-left: 10px;
}

.model-arrow {
  font-size: 0.8rem;
  color: var(--primary-orange);
  opacity: 0.8;
}

/* Previsualización del Modelo Seleccionado a la Derecha */
.iveco-model-preview-card {
  background: #091322;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.model-preview-img-wrap {
  width: 100%;
  height: 290px;
  min-height: 290px;
  position: relative;
  background: radial-gradient(circle at center, #0e1e36 0%, #050b16 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.model-preview-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.7));
}

.model-preview-img-wrap:hover .model-preview-img {
  transform: scale(1.02);
}

.btn-change-model-photo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 17, 32, 0.85);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #ff9500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  z-index: 5;
}

.btn-change-model-photo:hover {
  background: var(--primary-orange);
  color: #ffffff;
}

.model-preview-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.model-preview-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.model-preview-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.15;
}

.model-preview-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
  margin-bottom: 12px;
}

.model-preview-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 4px;
}

.model-preview-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 600;
}

.model-preview-spec-item .check {
  color: var(--primary-orange);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.spec-highlight-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  width: 100%;
}

.spec-header-title {
  color: var(--primary-orange);
  font-size: 0.78rem;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.spec-detail-text {
  color: #f1f5f9;
  font-size: 0.76rem;
  line-height: 1.4;
  padding-left: 18px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.45);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ffa02e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.65);
  color: #ffffff !important;
}

.whatsapp-bubble-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35), 0 0 10px rgba(37, 211, 102, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.whatsapp-bubble-icon i,
.whatsapp-bubble-icon svg {
  color: #ffffff !important;
  font-size: 1.15rem;
}

.whatsapp-bubble-sm {
  width: 24px;
  height: 24px;
  min-width: 24px;
  font-size: 0.95rem;
  border-width: 1px;
}

.whatsapp-bubble-sm i,
.whatsapp-bubble-sm svg {
  font-size: 0.90rem;
}

.btn-iveco-cta {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
  justify-content: space-between;
  box-sizing: border-box;
  margin-top: 6px;
}

/* ==========================================================================
   SUBPÁGINA: SHACMAN 0 KM (PRÓXIMO LANZAMIENTO)
   ========================================================================== */
.shacman-subpage-section {
  padding: 14px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shacman-header-bar {
  margin-bottom: 4px;
}

.shacman-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shacman-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--primary-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.shacman-main-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.shacman-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 900px;
}

.shacman-launch-card {
  background: linear-gradient(135deg, #091426 0%, #050d1a 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.shacman-launch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.shacman-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 145, 0, 0.15);
  border: 1px solid rgba(255, 145, 0, 0.4);
  color: #ff9500;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.shacman-launch-heading {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.8px;
  line-height: 1.25;
}

.shacman-launch-desc {
  font-size: 0.90rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 960px;
}

.shacman-launch-desc strong {
  color: #ffffff;
}

.shacman-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 6px;
}

.shacman-pillar-item {
  background: rgba(8, 17, 32, 0.6);
  border: 1px solid #162842;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition-normal);
}

.shacman-pillar-item:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.shacman-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.shacman-pillar-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.shacman-pillar-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.shacman-cta-box {
  margin-top: 10px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shacman-cta-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.shacman-cta-text p {
  font-size: 0.80rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.shacman-cta-text strong {
  color: var(--primary-orange);
}

.btn-shacman-wa-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   SUBPÁGINA: INGENIERÍA E INTEGRACIÓN DE PROYECTO
   ========================================================================== */
.engineering-subpage-section {
  padding: 14px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.engineering-header {
  margin-bottom: 2px;
}

.engineering-main-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.engineering-showcase-card {
  background: linear-gradient(135deg, #091426 0%, #050d1a 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.engineering-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.engineering-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.engineering-visual-container {
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle at center, #0e1e36 0%, #060e1d 100%);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.engineering-visual-img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-normal);
}

.engineering-visual-container:hover .engineering-visual-img {
  transform: scale(1.03);
}

.engineering-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.engineering-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.engineering-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(8, 17, 34, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-orange);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: all var(--transition-fast);
}

.engineering-feature-item:hover {
  background: rgba(12, 26, 50, 0.95);
  border-color: rgba(255, 107, 0, 0.45);
  transform: translateX(4px);
}

.feature-icon-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-top: 2px;
}

.feature-text-block h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.feature-text-block p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.engineering-cta-wrap {
  margin-top: 4px;
}

.btn-engineering-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
  transition: all var(--transition-normal);
}

.btn-engineering-cta:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ffa02e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.65);
}

.btn-eng-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main-title {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.15;
}

.btn-sub-title {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.engineering-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 6px;
}

.eng-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
}

.eng-dot.active {
  background: var(--primary-orange);
  width: 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--primary-orange);
}

.engineering-solutions-section {
  padding: 0;
}

/* ==========================================================================
   SUBPÁGINA: CAMIONES EQUIPADOS (10 UNIDADES + INGENIERÍA)
   ========================================================================== */
.equipados-subpage-section {
  padding: 16px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.equipados-header-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.equipados-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.equipados-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9500;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.equipados-main-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.15;
}

.equipados-subtitle {
  font-size: 0.90rem;
  font-weight: 600;
  color: #94a3b8;
  max-width: 850px;
  line-height: 1.45;
}

.equipados-unit-selector-wrapper {
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.equipados-unit-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.equipado-unit-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #081324;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-full);
  color: #cbd5e1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.equipado-unit-tab .tab-num {
  background: rgba(255, 255, 255, 0.1);
  color: #ff9500;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 900;
}

.equipado-unit-tab:hover {
  background: #0e223f;
  border-color: rgba(255, 107, 0, 0.4);
  color: #ffffff;
}

.equipado-unit-tab.active {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  border-color: #ff8800;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.equipado-unit-tab.active .tab-num {
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.equipados-showcase-card {
  background: linear-gradient(135deg, #091426 0%, #050d1a 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.equipados-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.equipado-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.equipado-visual-container {
  width: 100%;
  background: radial-gradient(circle at center, #0e1e36 0%, #060e1d 100%);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.equipado-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 12, 22, 0.92);
  border: 1px solid rgba(234, 179, 8, 0.6);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.equipado-main-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-normal);
}

.equipado-visual-container:hover .equipado-main-img {
  transform: scale(1.02);
}

.equipado-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 17, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.quick-spec-item .q-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.quick-spec-item .q-data {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.quick-spec-item .q-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.quick-spec-item .q-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
}

.equipado-right-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.equipado-header-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.equipado-tag-pill {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.equipado-title-text {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.equipado-subtitle-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipado-section-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-badge-title {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.equipado-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.equipado-app-card {
  background: rgba(8, 17, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff9500;
}

.app-card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

.app-card-header h4 {
  font-size: 0.80rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
}

.app-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.app-card-items li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
}

.app-card-items li .check {
  color: var(--primary-orange);
  font-size: 0.72rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.equipado-eng-container {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eng-box-header {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(234, 179, 8, 0.35);
  margin-bottom: 2px;
}

.eng-box-header i {
  font-size: 1.6rem;
}

.eng-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.equipado-eng-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.eng-item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}

.eng-item-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.45;
}

.eng-item-text strong {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 850;
}

.equipado-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #081324;
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-prompt-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-prompt-box h4 {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.cta-prompt-box p {
  font-size: 0.80rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.3;
}

.btn-equipado-whatsapp {
  padding: 10px 20px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.equipados-catalog-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.equipados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.equipado-catalog-card {
  background: #081324;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.equipado-catalog-card:hover {
  border-color: rgba(255, 107, 0, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.equipado-catalog-card.active {
  border-color: var(--primary-orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  background: linear-gradient(180deg, #0b1c36 0%, #081324 100%);
}

.card-thumb-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  background: radial-gradient(circle at center, #0e1e36 0%, #050b16 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.equipado-catalog-card:hover .card-thumb-img {
  transform: scale(1.06);
}

.card-thumb-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(6, 12, 22, 0.9);
  border: 1px solid rgba(255, 107, 0, 0.6);
  color: #ff9500;
  font-size: 0.70rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.card-thumb-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.card-thumb-body h4 {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.card-thumb-subtitle {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.card-thumb-specs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-thumb-specs i {
  color: #fbbf24;
}

.btn-select-equipado {
  margin-top: auto;
  padding: 9px 14px;
  background: #0e223f;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-select-equipado:hover,
.equipado-catalog-card.active .btn-select-equipado {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  border-color: #ff8800;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
}

.equipados-showcase-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  scroll-margin-top: 20px;
}

.equipados-solutions-section {
  padding: 0;
}

/* ==========================================================================
   SUBPÁGINA: CONTACTO (ULISES STUTZ - GRANDES EMPRESAS)
   ========================================================================== */
.contacto-subpage-section {
  padding: 16px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-header-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacto-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacto-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--primary-orange);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contacto-main-title {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.contacto-subtitle {
  font-size: 0.86rem;
  color: #94a3b8;
  max-width: 860px;
  line-height: 1.45;
}

.contacto-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Columna Izquierda: Tarjeta de Perfil & Canales */
.contacto-left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacto-profile-card {
  background: linear-gradient(135deg, #0b1c36 0%, #081324 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-avatar-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

.profile-identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-identity h2 {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.profile-role {
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
}

.profile-card-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.profile-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* Grilla de 4 Canales de Contacto Directos */
.contacto-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contacto-channel-card {
  background: #081324;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.contacto-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.channel-whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.channel-email:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.channel-instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.25);
}

.channel-corporate:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.channel-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.channel-whatsapp .channel-icon-box {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.channel-email .channel-icon-box {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.channel-instagram .channel-icon-box {
  background: rgba(225, 48, 108, 0.15);
  color: #f43f5e;
}

.channel-corporate .channel-icon-box {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.channel-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-label {
  font-size: 0.66rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-val {
  font-size: 0.90rem;
  font-weight: 800;
  color: #ffffff;
  word-break: break-all;
}

.channel-action-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
}

/* Columna Derecha: Formulario Interactivo */
.contacto-form-card {
  background: #081324;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.form-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-card-header h3 {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-card-header p {
  font-size: 0.80rem;
  color: #94a3b8;
  line-height: 1.4;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-group label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  color: #64748b;
  font-size: 0.85rem;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.contact-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  background: #050b16;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.84rem;
  transition: all var(--transition-fast);
}

.contact-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.input-with-icon:focus-within i {
  color: var(--primary-orange);
}

.contact-select {
  cursor: pointer;
}

.contact-select option {
  background: #081324;
  color: #ffffff;
}

.contact-textarea {
  resize: vertical;
  min-height: 70px;
  padding: 10px 12px;
}

.form-submit-row {
  margin-top: 4px;
}

.btn-contact-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contacto-guarantees {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.70rem;
  font-weight: 700;
  color: #94a3b8;
}

.guarantee-item i {
  color: #fbbf24;
}

.contacto-solutions-section {
  padding: 0;
  margin-top: 10px;
}

/* ==========================================================================
   SUBPÁGINA: QUIÉNES SOMOS (DOCUMENTO CONTINUO)
   ========================================================================== */
.quienes-somos-subpage-section {
  padding: 16px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Documento Corporativo Único */
.quienes-somos-doc-card {
  background: linear-gradient(135deg, #0b1c36 0%, #071224 100%);
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.qs-doc-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qs-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--primary-orange);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qs-doc-title {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.qs-doc-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qs-doc-p {
  font-size: 1.02rem;
  color: #e2e8f0;
  line-height: 1.7;
  font-weight: 400;
}

.qs-doc-p strong {
  color: #ffffff;
}

.qs-doc-bridge {
  color: #ffffff;
  font-weight: 600;
}

.qs-doc-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 4px;
}

.qs-doc-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.qs-bullet-dot {
  color: var(--primary-orange);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1px;
  font-weight: 900;
}

.qs-doc-bullet-item strong {
  color: #ffffff;
  font-weight: 800;
}

.qs-doc-closing {
  margin-top: 8px;
  padding: 14px 18px;
  background: rgba(255, 107, 0, 0.08);
  border-left: 4px solid var(--primary-orange);
  border-radius: var(--radius-sm);
}

.qs-doc-punchline {
  font-family: 'Impact', 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.qs-doc-footer {
  padding-top: 8px;
  display: flex;
  justify-content: flex-start;
}

.btn-quienes-doc-cta {
  padding: 14px 28px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.quienes-solutions-section {
  padding: 0;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER INFERIOR (4 BLOQUES DE CONTACTO)
   ========================================================================== */
.main-footer {
  background: #050a14;
  border-top: 1px solid var(--border-subtle);
  padding: 16px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.footer-col {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.footer-col:hover {
  background: rgba(255, 255, 255, 0.04);
}

.footer-col:hover .footer-icon-wrap {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.08);
}

.footer-icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.06);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.footer-info h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.footer-info p {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 990;
  text-decoration: none;
  transition: all var(--transition-normal);
  animation: pulse-green 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   MODALES (SUBIR FOTOS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 18, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

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

.modal-container {
  background: #0a1424;
  border: 1px solid #1a2f4e;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #081120;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h3 i,
.modal-header h3 svg {
  color: var(--primary-orange);
}

.btn-modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.btn-modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 24px;
}

.dropzone-box {
  border: 2px dashed #1e3557;
  background: rgba(14, 28, 48, 0.5);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 20px;
  position: relative;
}

.dropzone-box:hover,
.dropzone-box.dragover {
  border-color: var(--primary-orange);
  background: rgba(255, 107, 0, 0.05);
}

.dropzone-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.dropzone-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dropzone-box p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.dropzone-preview {
  display: none;
  width: 100%;
  max-height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.dropzone-preview img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.btn-remove-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-control {
  background: #081120;
  border: 1px solid #1c3252;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.existing-slides-section {
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.existing-slides-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.slide-thumb-card {
  background: #070e1b;
  border: 1px solid #16263e;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-thumb-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.slide-thumb-info h5 {
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-thumb-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.btn-thumb-action {
  flex: 1;
  padding: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid #1e3557;
  background: #0e1c2e;
  color: #cbd5e1;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-thumb-action:hover {
  background: var(--primary-orange);
  color: #ffffff;
  border-color: var(--primary-orange);
}

.btn-thumb-delete:hover {
  background: #ef4444;
  border-color: #ef4444;
}

.btn-secondary {
  background: #102138;
  color: #cbd5e1;
  border: 1px solid #1e3557;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary-orange {
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-msg {
  background: #0d1a2d;
  color: #ffffff;
  border: 1px solid var(--primary-orange);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 107, 0, 0.4);
  animation: toastFade 3s forwards;
}

@keyframes toastFade {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-15px); }
}

/* ==========================================================================
   RESPONSIVIDAD (TABLETS Y MÓVILES)
   ========================================================================== */
@media (max-width: 1200px) {
  .top-benefits-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .benefit-col:nth-child(2) {
    border-right: none;
  }
  .main-footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .iveco-gamas-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    transition: left var(--transition-normal);
    z-index: 200;
  }
  .sidebar.mobile-open {
    left: 0;
  }
  .sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 190;
  }
  .sidebar-backdrop.active {
    display: block;
  }
  .mobile-top-bar {
    display: flex;
  }
  .hero-slider-section {
    padding: 6px 14px 10px;
  }
  .top-benefits-ribbon {
    padding: 12px 18px;
  }
  .solutions-section {
    padding: 8px 18px 16px;
  }
  .iveco-subpage-section {
    padding: 14px 18px;
  }
  .engineering-subpage-section {
    padding: 14px 18px;
  }
  .engineering-showcase-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }
  .engineering-main-title {
    font-size: 1.35rem;
  }
  .equipados-subpage-section {
    padding: 14px 18px;
  }
  .equipados-showcase-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }
  .equipados-main-title {
    font-size: 1.35rem;
  }
  .equipado-apps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .equipado-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .btn-equipado-whatsapp {
    justify-content: center;
  }
  .iveco-gamas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quienes-somos-subpage-section {
    padding: 14px 18px;
  }
  .quienes-somos-doc-card {
    padding: 24px 20px;
    gap: 18px;
  }
  .qs-doc-title {
    font-size: 1.75rem;
  }
  .btn-quienes-doc-cta {
    width: 100%;
    justify-content: center;
  }
  .contacto-subpage-section {
    padding: 14px 18px;
  }
  .shacman-subpage-section {
    padding: 14px 18px;
  }
  .shacman-launch-card {
    padding: 22px 18px;
    gap: 16px;
  }
  .shacman-pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .shacman-cta-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }
  .btn-shacman-wa-cta {
    width: 100%;
    justify-content: center;
  }
  .contacto-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .main-footer {
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
  .top-benefits-ribbon {
    grid-template-columns: 1fr;
  }
  .benefit-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
  }
  .hero-slider-section {
    padding: 6px 10px 10px;
  }
  .hero-nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .hero-nav-prev { left: 10px; }
  .hero-nav-next { right: 10px; }
  .engineering-showcase-card {
    padding: 14px;
    gap: 16px;
  }
  .engineering-main-title {
    font-size: 1.15rem;
  }
  .equipados-showcase-card {
    padding: 14px;
    gap: 16px;
  }
  .equipados-main-title {
    font-size: 1.15rem;
  }
  .equipado-quick-specs {
    grid-template-columns: 1fr;
  }
  .equipado-title-text {
    font-size: 1.5rem;
  }
  .quienes-somos-doc-card {
    padding: 20px 16px;
    gap: 16px;
  }
  .qs-doc-title {
    font-size: 1.45rem;
  }
  .qs-doc-p {
    font-size: 0.95rem;
  }
  .qs-doc-bullet-item {
    font-size: 0.92rem;
  }
  .qs-doc-punchline {
    font-size: 1.15rem;
  }
  .contacto-main-title {
    font-size: 1.25rem;
  }
  .contacto-channels-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contacto-guarantees {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .iveco-gamas-grid {
    grid-template-columns: 1fr;
  }
  .main-footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
