/* ===================================================== */
/* HERO RASTREO MODERNO PREMIUM */
/* ===================================================== */
.hero-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-image: url('../img/rastreo/mask-shape.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay más elegante */
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(8, 18, 35, 0.95) 0%,
    rgba(8, 18, 35, 0.85) 40%,
    rgba(8, 18, 35, 0.35) 100%
  );
}

.hero-landing .content {
  position: relative;
  z-index: 2;
}
/* ===================================================== */
/* TEXTO IZQUIERDA */
/* ===================================================== */

.hero-landing .badge {
  font-size: 14px;
  padding: 8px 16px;
  backdrop-filter: blur(5px);
}

.hero-landing .title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-landing p.lead {
  font-size: 1.15rem;
  max-width: 520px;
}

/* Botón principal más moderno */
.hero-landing .btn-primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-landing .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===================================================== */
/* CARD RASTREO GLASS PREMIUM */
/* ===================================================== */

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.glass:hover {
  transform: translateY(-5px);
}

.card-body h5 {
  font-weight: 700;
  font-size: 1.4rem;
}

.card-body p {
  font-size: 0.95rem;
}

/* Input moderno */
.form-control-lg {
  border-radius: 12px;
  padding: 14px 18px;
  border: none;
}

.form-control-lg:focus {
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
  border: none;
}

/* Botón verificar más atractivo */
#btnVerificar {
  border-radius: 12px;
  background: linear-gradient(90deg, #111827, #1f2937);
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

#btnVerificar:hover {
  background: linear-gradient(90deg, #000, #111);
  transform: translateY(-2px);
}

/* Iconos informativos */
.card-body .border {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px;
}

/* ===================================================== */
/* LINK INFERIOR */
/* ===================================================== */

.hero-landing .link-light {
  font-weight: 600;
  transition: 0.2s;
}

.hero-landing .link-light:hover {
  color: #3b82f6 !important;
}

/* ===================================================== */
/* HERO LEFT MEJORADO */
/* ===================================================== */

.hero-left {
  max-width: 620px;
}

/* Badge moderno */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  color: #53e41a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-cta2{
  background: rgba(59,130,246,0.15);
  color: #53e41a;
  padding: 8px 16px;
  border-radius: 50px;
}
/* Título principal */
.hero-main-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-main-title span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Descripción */
.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 520px;
}

/* Botón principal premium */
.hero-btn-primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* Mini info */
.hero-mini-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}


/* ===================================================== */
/* MODAL PREMIUM TECNOLÓGICO */
/* ===================================================== */

.modal-premium .modal-content {
  background: rgba(17, 25, 40, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: fadeInModal 0.4s ease;
}

/* Animación entrada */
@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.premium-header {
  background: linear-gradient(90deg, #111827, #1f2937);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: white;
}

.modal-subtitle {
  font-size: 13px;
  opacity: 0.7;
}

/* Body */
.premium-body {
  color: #e5e7eb;
  padding: 30px;
  min-height: 150px;
}

/* Footer */
.premium-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

/* Botón degradado */
.btn-gradient {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Loader animado personalizado */
.loading-box {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.loader-ring {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Zoom animado al abrir */
.modal-dialog-zoom {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog-zoom {
  transform: scale(1);
}
/* Responsive */
@media (max-width: 991px) {
  .hero-main-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}


/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media (max-width: 991.98px) {

  .hero-landing {
    min-height: auto;
    padding: 4rem 0;
  }

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

  .glass {
    margin-top: 30px;
  }

}