/* ==========================================================================
   RASTREO SATELITAL DE VENEZUELA - SISTEMA DE DISEÑO CORPORATIVO
   Colores basados en el logotipo oficial:
   Rojo (#E51E2B), Verde (#7CB31E), Azul (#0069B4), Naranja (#F39200), Cyan (#00A0E2)
   ========================================================================== */

:root {
  /* Paleta Corporativa Oficial */
  --brand-red: #E51E2B;
  --brand-red-glow: rgba(229, 30, 43, 0.35);
  --brand-green: #7CB31E;
  --brand-green-glow: rgba(124, 179, 30, 0.35);
  --brand-blue: #0069B4;
  --brand-blue-glow: rgba(0, 105, 180, 0.35);
  --brand-orange: #F39200;
  --brand-orange-glow: rgba(243, 146, 0, 0.35);
  --brand-cyan: #00A0E2;
  --brand-cyan-glow: rgba(0, 160, 226, 0.35);

  /* Fondos y Superficies Dark Luxury */
  --bg-dark: #0B0F19;
  --bg-darker: #060910;
  --bg-surface: #121927;
  --bg-card: rgba(18, 25, 39, 0.75);
  --bg-card-hover: rgba(25, 36, 56, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 105, 180, 0.4);

  /* Tipografías y Textos */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Contenedores y Medidas */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Sombras y Transiciones */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 105, 180, 0.25);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BARRA SUPERIOR (TOP BAR)
   ========================================================================== */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  z-index: 50;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 179, 30, 0.15);
  color: #A3E635;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  border: 1px solid rgba(124, 179, 30, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #A3E635;
  border-radius: 50%;
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseLight {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(163, 230, 53, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}

.top-bar-divider {
  color: var(--border-subtle);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-label {
  color: var(--text-muted);
}

.top-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  font-weight: 600;
  color: var(--text-primary);
}

.top-wa-btn:hover {
  background: rgba(0, 105, 180, 0.25);
  border-color: var(--brand-blue);
  color: #fff;
}

.top-wa-btn .city-tag {
  color: var(--brand-cyan);
  font-size: 0.76rem;
  text-transform: uppercase;
}

/* ==========================================================================
   HEADER Y BARRA DE NAVEGACIÓN
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(0, 105, 180, 0.2);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand-cyan);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.gps51-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-green);
  margin-right: 4px;
  box-shadow: 0 0 8px var(--brand-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   BOTONES Y COMPONENTES REUTILIZABLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm {
  font-size: 0.84rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0084E2 100%);
  color: #fff;
  box-shadow: 0 4px 18px var(--brand-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-blue-glow);
  filter: brightness(1.1);
}

.btn-danger {
  background: linear-gradient(135deg, var(--brand-red) 0%, #FF3342 100%);
  color: #fff;
  box-shadow: 0 4px 18px var(--brand-red-glow);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-red-glow);
}

.btn-warning {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA826 100%);
  color: #060910;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--brand-orange-glow);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-orange-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--brand-blue);
  background: rgba(0, 105, 180, 0.15);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border-color: var(--border-subtle);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Badges y Tags */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.blue-tag { background: rgba(0, 105, 180, 0.15); color: var(--brand-cyan); border: 1px solid rgba(0, 105, 180, 0.3); }
.orange-tag { background: rgba(243, 146, 0, 0.15); color: var(--brand-orange); border: 1px solid rgba(243, 146, 0, 0.3); }
.green-tag { background: rgba(124, 179, 30, 0.15); color: var(--brand-green); border: 1px solid rgba(124, 179, 30, 0.3); }
.red-tag { background: rgba(229, 30, 43, 0.15); color: #FF4D5A; border: 1px solid rgba(229, 30, 43, 0.3); }

.card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 12px;
}

.blue-badge { background: rgba(0, 105, 180, 0.2); color: #60A5FA; border: 1px solid rgba(0, 105, 180, 0.4); }
.orange-badge { background: rgba(243, 146, 0, 0.2); color: #FBBF24; border: 1px solid rgba(243, 146, 0, 0.4); }
.green-badge { background: rgba(124, 179, 30, 0.2); color: #A3E635; border: 1px solid rgba(124, 179, 30, 0.4); }
.red-badge { background: rgba(229, 30, 43, 0.2); color: #F87171; border: 1px solid rgba(229, 30, 43, 0.4); }

/* Gradientes de Texto */
.gradient-text-orange {
  background: linear-gradient(135deg, #FFB020 0%, #F39200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #38BDF8 0%, #0069B4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-green {
  background: linear-gradient(135deg, #A3E635 0%, #7CB31E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Encabezados de Sección */
.section {
  padding: 95px 0;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 55px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 100px;
  background: radial-gradient(circle at 10% 20%, rgba(0, 105, 180, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 90% 60%, rgba(243, 146, 0, 0.1) 0%, transparent 45%),
              var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-glow-1 {
  position: absolute;
  top: 15%;
  left: 2%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 105, 180, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(229, 30, 43, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 22px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 35px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #E2E8F0;
}

.point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.green-icon { background: rgba(124, 179, 30, 0.2); color: #A3E635; }
.blue-icon { background: rgba(0, 105, 180, 0.2); color: #60A5FA; }
.orange-icon { background: rgba(243, 146, 0, 0.2); color: #FBBF24; }
.red-icon { background: rgba(229, 30, 43, 0.2); color: #F87171; }

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-carriers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.carrier-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.carrier-pill {
  font-size: 0.76rem;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

/* Radar Visual Simulado */
.hero-visual {
  position: relative;
}

.radar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 105, 180, 0.15);
  position: relative;
}

.radar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.radar-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green);
  animation: blinkStatus 1.5s infinite;
}

@keyframes blinkStatus {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.radar-platform-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 105, 180, 0.25);
  color: var(--brand-cyan);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 160, 226, 0.3);
}

/* Pantalla Radar */
.radar-display {
  position: relative;
  width: 100%;
  height: 310px;
  background: #060B14;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 105, 180, 0.3);
}

.radar-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 105, 180, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 180, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}

.radar-center-target {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.target-circle {
  width: 240px;
  height: 240px;
  border: 1px dashed rgba(0, 160, 226, 0.25);
  border-radius: 50%;
}

.target-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand-cyan);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg at 0 0, rgba(0, 160, 226, 0.45) 0deg, transparent 60deg);
  border-radius: 50%;
  animation: sweepAnim 4.5s linear infinite;
  pointer-events: none;
}

@keyframes sweepAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Marcadores de Vehículos en el Radar */
.radar-blip {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.radar-blip:hover {
  transform: scale(1.2);
  z-index: 20;
}

.blip-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
  position: relative;
}

.blip-marker::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  animation: pingMarker 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingMarker {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.red-marker { background: var(--brand-red); color: var(--brand-red); }
.blue-marker { background: var(--brand-blue); color: var(--brand-blue); }
.green-marker { background: var(--brand-green); color: var(--brand-green); }
.orange-marker { background: var(--brand-orange); color: var(--brand-orange); }

/* Tooltip de Unidad */
.blip-tooltip {
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  width: max-content;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.74rem;
  pointer-events: none;
  opacity: 0.92;
  backdrop-filter: blur(8px);
}

.blip-tooltip strong {
  color: #fff;
  font-size: 0.8rem;
}

.blip-tooltip span {
  color: var(--text-secondary);
}

.tag-fuel { color: #FBBF24 !important; }
.tag-secure { color: #60A5FA !important; }
.tag-live { color: #A3E635 !important; }
.tag-geo { color: #E2E8F0 !important; }

/* Métricas del Radar */
.radar-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
}

.text-green { color: var(--brand-green); }
.text-blue { color: var(--brand-cyan); }
.text-orange { color: var(--brand-orange); }

.metric-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECCIÓN SOLUCIONES Y FLOTAS
   ========================================================================== */
.solutions-section {
  background: var(--bg-dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.featured-card {
  border-color: rgba(229, 30, 43, 0.35);
  box-shadow: 0 0 25px rgba(229, 30, 43, 0.1);
}

.solution-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bg-red-soft { background: rgba(229, 30, 43, 0.12); }
.bg-blue-soft { background: rgba(0, 105, 180, 0.12); }
.bg-green-soft { background: rgba(124, 179, 30, 0.12); }
.bg-orange-soft { background: rgba(243, 146, 0, 0.12); }

.solution-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.solution-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.solution-features li {
  font-size: 0.84rem;
  color: #CBD5E1;
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.solution-features li::before {
  content: '▪';
  color: var(--brand-cyan);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.1rem;
}

.solution-footer {
  margin-top: auto;
}

/* ==========================================================================
   SECCIÓN TECNOLOGÍA & BENEFICIOS
   ========================================================================== */
.tech-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.tech-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.tech-item {
  display: flex;
  gap: 14px;
}

.brand-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 5px;
}

.dot-red { background: var(--brand-red); box-shadow: 0 0 10px var(--brand-red); }
.dot-green { background: var(--brand-green); box-shadow: 0 0 10px var(--brand-green); }
.dot-blue { background: var(--brand-blue); box-shadow: 0 0 10px var(--brand-blue); }
.dot-orange { background: var(--brand-orange); box-shadow: 0 0 10px var(--brand-orange); }

.tech-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.tech-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Mockup de Telemetría */
.fleet-control-mockup {
  background: var(--bg-darker);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 50px rgba(0, 0, 0, 0.6);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-circle.red { background: #EF4444; }
.mockup-circle.yellow { background: #F59E0B; }
.mockup-circle.green { background: #10B981; }

.mockup-title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fleet-card-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.preview-unit {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.status-active {
  background: rgba(124, 179, 30, 0.2);
  color: #A3E635;
  border: 1px solid rgba(124, 179, 30, 0.3);
}

.preview-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.detail-col .lbl {
  color: var(--text-muted);
  display: block;
}

.detail-col .val {
  color: #E2E8F0;
  font-weight: 600;
}

.fuel-progress-bar {
  margin-bottom: 14px;
}

.fuel-label-group {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  margin-bottom: 6px;
}

.font-bold { font-weight: 700; }

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.fill-green { background: linear-gradient(90deg, #65A30D, var(--brand-green)); }
.fill-orange { background: linear-gradient(90deg, #D97706, var(--brand-orange)); }

.mockup-actions {
  display: flex;
  gap: 10px;
}

.mock-btn {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.mock-btn.btn-danger {
  background: rgba(229, 30, 43, 0.2);
  border: 1px solid var(--brand-red);
  color: #FF808A;
}

.mock-btn.btn-secondary {
  background: rgba(0, 105, 180, 0.2);
  border: 1px solid var(--brand-blue);
  color: #60A5FA;
}

/* ==========================================================================
   SECCIÓN PLANES Y PRECIOS EN DÓLARES ($ USD)
   ========================================================================== */
.pricing-section {
  background: var(--bg-dark);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popular-card {
  border-color: var(--brand-blue);
  background: linear-gradient(180deg, rgba(0, 105, 180, 0.12) 0%, rgba(18, 25, 39, 0.9) 100%);
  box-shadow: 0 0 35px rgba(0, 105, 180, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 105, 180, 0.4);
}

.heavy-card {
  border-color: rgba(229, 30, 43, 0.3);
}

.plan-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  min-height: 40px;
  line-height: 1.4;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0 10px;
}

.plan-price .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-green);
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.plan-price .period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hardware-price {
  font-size: 0.8rem;
  color: var(--brand-cyan);
  background: rgba(0, 160, 226, 0.08);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 160, 226, 0.25);
}

.plan-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-perks li {
  font-size: 0.84rem;
  color: #CBD5E1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.plan-perks .check {
  color: var(--brand-green);
  font-weight: 800;
}

.plan-action {
  margin-top: auto;
}

/* ==========================================================================
   COTIZADOR INTERACTIVO DE FLOTAS
   ========================================================================== */
.fleet-calculator-box {
  background: linear-gradient(135deg, rgba(18, 25, 39, 0.95) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(0, 105, 180, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 105, 180, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  position: relative;
}

.calculator-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 35px;
}

.calc-badge {
  display: inline-block;
  background: rgba(243, 146, 0, 0.15);
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(243, 146, 0, 0.3);
  margin-bottom: 12px;
}

.calculator-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.calculator-header p {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 35px;
}

.calc-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E8F0;
  display: block;
  margin-bottom: 10px;
}

.vehicle-options-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.v-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.v-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.v-pill.active {
  background: rgba(0, 105, 180, 0.25);
  border-color: var(--brand-cyan);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 160, 226, 0.2);
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.units-display {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-cyan);
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-cyan);
  cursor: pointer;
  box-shadow: 0 0 12px var(--brand-cyan);
  border: 2px solid #fff;
  transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Resultados de la Calculadora */
.calc-results-panel {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
}

.calc-res-item {
  display: flex;
  flex-direction: column;
}

.res-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.res-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.res-sub {
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ==========================================================================
   SECCIÓN PLATAFORMA GPS51 EMBEBIDA
   ========================================================================== */
.gps51-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-subtle);
}

.gps51-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.gps51-info {
  max-width: 650px;
}

.platform-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 179, 30, 0.15);
  border: 1px solid rgba(124, 179, 30, 0.35);
  color: #A3E635;
  font-size: 0.76rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.live-dot-green {
  width: 8px;
  height: 8px;
  background: #A3E635;
  border-radius: 50%;
  box-shadow: 0 0 8px #A3E635;
}

.gps51-quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visor Iframe Embebido */
.gps51-embed-container {
  background: var(--bg-darker);
  border: 1px solid rgba(0, 105, 180, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 105, 180, 0.15);
  position: relative;
}

.browser-frame-bar {
  background: #0E1420;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.browser-dots .dot.red { background: #EF4444; }
.browser-dots .dot.yellow { background: #F59E0B; }
.browser-dots .dot.green { background: #10B981; }

.browser-address-bar {
  flex-grow: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

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

.browser-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.browser-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  height: 680px;
  background: #05080E;
}

#gps51Iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.iframe-fallback-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 5;
}

.fallback-text {
  font-size: 0.86rem;
  color: #E2E8F0;
  font-weight: 500;
}

.fallback-buttons {
  display: flex;
  gap: 10px;
}

/* Guías Rápidas GPS51 */
.gps51-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.guide-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(0, 160, 226, 0.25);
  margin-bottom: 6px;
}

.guide-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SECCIÓN CONTACTO Y SEDES (CARACAS Y SAN CRISTÓBAL)
   ========================================================================== */
.contact-section {
  background: var(--bg-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.sedes-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sede-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.sede-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.active-border-blue {
  border-left: 4px solid var(--brand-blue);
}

.active-border-orange {
  border-left: 4px solid var(--brand-orange);
}

.sede-header {
  margin-bottom: 18px;
}

.sede-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
}

.sede-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
}

.detail-row .icon {
  font-size: 1.2rem;
  line-height: 1.4;
}

.detail-row strong {
  color: #fff;
  display: block;
  font-size: 0.84rem;
}

.detail-row p {
  color: var(--text-secondary);
  margin: 2px 0 4px;
}

.sub-coverage {
  font-size: 0.76rem;
  color: var(--brand-cyan);
  display: block;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 1.35rem !important;
  font-weight: 800;
}

.contact-link {
  color: #fff;
}

.contact-link:hover {
  color: var(--brand-cyan);
}

.avail-badge {
  font-size: 0.74rem;
  color: #A3E635;
  font-weight: 600;
}

/* Columna del Formulario */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.interactive-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #fff;
  transition: var(--transition);
}

.form-group select {
  cursor: pointer;
  background-color: #121927;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 180, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   SECCIÓN FAQ
   ========================================================================== */
.faq-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
}

.faq-chevron {
  font-size: 1.4rem;
  color: var(--brand-cyan);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
  color: var(--brand-red);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER CORPORATIVO
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 0;
  color: var(--text-secondary);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.footer-brand-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--brand-cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.corporate-colors-bar {
  display: flex;
  gap: 6px;
  width: 140px;
  height: 4px;
}

.c-bar {
  flex-grow: 1;
  border-radius: 2px;
}

.c-bar.red { background: var(--brand-red); }
.c-bar.green { background: var(--brand-green); }
.c-bar.blue { background: var(--brand-blue); }
.c-bar.orange { background: var(--brand-orange); }
.c-bar.cyan { background: var(--brand-cyan); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-wa-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
}

.footer-wa-item:hover {
  background: rgba(0, 105, 180, 0.2);
  border-color: var(--brand-blue);
}

.wa-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-cyan);
  text-transform: uppercase;
}

.wa-num {
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-portal-note {
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ==========================================================================
   WIDGET FLOTANTE WHATSAPP MULTI-ASESOR
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1000;
}

.wa-trigger-btn {
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.wa-badge-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.wa-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 330px;
  background: var(--bg-darker);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.25s ease;
  pointer-events: none;
}

.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup-header {
  background: #075E54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  position: relative;
}

.wa-avatar img {
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.wa-header-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-online-status {
  font-size: 0.7rem;
  color: #A3E635;
}

.wa-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.wa-close-btn:hover {
  color: #fff;
}

.wa-popup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-greeting {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.wa-advisor-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: var(--transition);
}

.wa-advisor-card:hover {
  background: rgba(0, 105, 180, 0.15);
  border-color: var(--brand-blue);
  transform: translateX(4px);
}

.advisor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.advisor-avatar.bg-blue { background: rgba(0, 105, 180, 0.3); }
.advisor-avatar.bg-orange { background: rgba(243, 146, 0, 0.3); }

.advisor-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.advisor-city {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.advisor-phone {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: #25D366;
  font-weight: 800;
}

.advisor-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.advisor-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.wa-portal-quicklink {
  font-size: 0.76rem;
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.wa-portal-quicklink a {
  color: var(--brand-cyan);
  font-weight: 600;
  margin-left: 4px;
}

/* ==========================================================================
   RESPONSIVE (MÓVILES Y PANTALLAS PEQUEÑAS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .calc-results-panel {
    grid-template-columns: 1fr 1fr;
  }

  .calc-res-action {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Oculta en móviles para maximizar espacio */
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .nav-quote-btn {
    display: none;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .calc-results-panel {
    grid-template-columns: 1fr;
  }

  .calc-res-action {
    grid-column: span 1;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .iframe-wrapper {
    height: 500px;
  }

  .wa-popup {
    width: calc(100vw - 40px);
    right: -10px;
  }
}
