/* ==============================
   CTA - Llamado a la Acción
   ============================== */

#azules-cta {
  background: linear-gradient(to right, #0033A0, #001f4d);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 30px;
  background: #DA291C;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

.cta-subtext {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #eee;
}

.cta-button {
  display: inline-block;
  background-color: #DA291C;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #fff;
  color: #DA291C;
  transform: scale(1.05);
}

/* Animación sutil */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(218, 41, 28, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(218, 41, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 41, 28, 0); }
}
/* =======================
   POPUP ESTILO AZULES
   ======================= */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.popup-box {
  background: linear-gradient(to right, #001f4d, #0033A0);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  position: relative;
}

.popup-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.popup-form input,
.popup-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.popup-form button {
  background-color: #DA291C;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-form button:hover {
  background-color: #fff;
  color: #DA291C;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
