/* ============================================
   FONDO (mantengo tu estilo original)
============================================ */
body {
  background-color: #141414;
  background-image: url('/images/fondo/fondo.jpg');
  background-size: cover;
  background-position: center;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ============================================
   CONTENEDOR PARPADEO — MANTENIENDO TU ESTILO
============================================ */
.parpadeo {
  animation: parpadeo 1.5s infinite;
  border-radius: 12px;
  background-color: rgba(20,20,20,0.85);
  padding: 25px;
  max-width: 90%;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,229,48,0.4);
}

@keyframes parpadeo {
  0% {
    box-shadow:
      0 0 10px rgba(0, 229, 48, 0.5),
      0 0 20px rgba(0, 229, 48, 0.6),
      0 0 30px rgba(0, 229, 48, 0.7),
      0 0 40px rgba(0, 229, 48, 0.8);
  }
  50% {
    box-shadow:
      0 0 5px rgba(0, 229, 48, 0.3),
      0 0 10px rgba(0, 229, 48, 0.4),
      0 0 15px rgba(0, 229, 48, 0.5),
      0 0 20px rgba(0, 229, 48, 0.6);
  }
  100% {
    box-shadow:
      0 0 10px rgba(0, 229, 48, 0.5),
      0 0 20px rgba(0, 229, 48, 0.6),
      0 0 30px rgba(0, 229, 48, 0.7),
      0 0 40px rgba(0, 229, 48, 0.8);
  }
}

/* ============================================
   LOGO RESPONSIVE — MANTENIENDO TU ESTILO
============================================ */
.logo {
  display: block;
  max-width: 150px;
  width: 80%;
  height: auto;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .logo {
    max-width: 200px;
    width: auto;
  }
}

@media (min-width: 1200px) {
  .parpadeo {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   BOTONES FLOTANTES (verde parpadeante)
============================================ */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #00e530;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 0 15px #00e530;
  animation: pulse 1.4s infinite;
  z-index: 999;
}

/* Distancias */
#btn-telegram { bottom: 140px; }
#btn-codigos  { bottom: 80px; }
#btn-contacto { bottom: 20px; }

/* Parpadeo verde */
@keyframes pulse {
  0%   { box-shadow: 0 0 5px #00e530; }
  50%  { box-shadow: 0 0 20px #00e530; }
  100% { box-shadow: 0 0 5px #00e530; }
}

/* ============================================
   MEJORAS DE INPUTS (RESPETANDO TU ESTILO)
============================================ */
input, select {
  width: 100%;
  padding: 12px;
  background: #1e1e1e;
  border: 2px solid #00e530;
  border-radius: 8px;
  margin-bottom: 15px;
  color: white;
}

input:focus, select:focus {
  outline: none;
  box-shadow: 0 0 10px #00e530;
}

/* BOTÓN SUBMIT */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: #00e530;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.btn-submit:hover {
  background: #00c42b;
}

/* === BOTONES FLOTANTES === */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #00e530;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  z-index: 9999;
  animation: pulse 1.8s infinite;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 229, 48, .8);
}

#btn-telegram { bottom: 150px; }
#btn-codigos  { bottom: 90px; }
#btn-contacto { bottom: 30px; }

@keyframes pulse {
  0%   { box-shadow: 0 0 10px #00e530; }
  50%  { box-shadow: 0 0 25px #00e530; }
  100% { box-shadow: 0 0 10px #00e530; }
}

/* ================================
   ESTILO VERDE NEÓN EN EL FORMULARIO
=================================== */

/* Color del texto dentro del cuadro */
.form-box,
.form-box label,
.form-box h1,
.form-box .form-label i {
    color: #00ff4c !important;
    text-shadow: 0 0 6px #00ff4c;
}

/* Inputs verdes */
.form-box input,
.form-box select {
    background-color: #0a0a0a !important;
    color: #00ff4c !important;
    border: 1px solid #00ff4c88 !important;
    box-shadow: inset 0 0 8px #00ff4c55;
}

/* Placeholder en color verde */
.form-box input::placeholder,
.form-box select::placeholder {
    color: #00ff4caa !important;
}

/* Línea del input cuando está activo */
.form-box input:focus,
.form-box select:focus {
    border-color: #00ff4c !important;
    box-shadow: 0 0 12px #00ff4c !important;
    outline: none !important;
}

/* ===== COLORES VERDES DENTRO DEL CUADRO ===== */

.form-box label,
.form-box h1,
.form-box i {
    color: #00ff4c !important;
    text-shadow: 0 0 6px #00ff4c;
}

/* Inputs con borde verde */
.form-box input,
.form-box select {
    border: 2px solid #00ff4c !important;
    color: #00ff4c !important;
}

/* Placeholder verde */
.form-box input::placeholder,
.form-box select::placeholder {
    color: #00ff4caa !important;
}

/* Al hacer clic */
.form-box input:focus,
.form-box select:focus {
    border-color: #00ff4c !important;
    box-shadow: 0 0 10px #00ff4c !important;
}
