* {
  box-sizing: border-box;
}

:root {
  --lime: #c8f45a;
  --lime-soft: #e3ff9a;
  --dark: rgba(8, 10, 8, 0.88);
  --dark-soft: rgba(15, 18, 15, 0.82);
  --border: rgba(200, 244, 90, 0.22);
  --text: #ffffff;
  --muted: #d8d8d8;
  --input: #eef3f6;
  --error: #e35b5b;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

.registro-page {
  min-height: 100vh;
  padding: 130px 20px 80px;

  /* quita fixed */
  background: url("../img/IMC/bodylife_pesas.png") center/cover no-repeat;
}
.registro-layout {
  width: 100%;
  max-width: 990px; /* antes 720px → ahora más ancho */
  margin: 0 auto;
  
  
    gap: 40px; /* ← controla la separación entre bloques */
}


/* CABECERA */
.registro-hero {
  text-align: center;
  padding: 32px 34px;
  margin-bottom: 24px;
  border-radius: 24px;

  background: rgba(8, 10, 8, 0.88);

  border: 1px solid rgba(191, 255, 0, 0.45);

  box-shadow:
    0 0 18px rgba(191, 255, 0, 0.28),
    0 0 45px rgba(191, 255, 0, 0.18),
    0 22px 60px rgba(0, 0, 0, 0.55);

    backdrop-filter: none;
}

.registro-hero span {
  display: inline-block;

  font-size: 17px;        /* antes 11–12px → ahora más visible */
  font-weight: 700;

  letter-spacing: 2.5px;    /* separación elegante */
  text-transform: uppercase;

  color: #c8f45a;         /* verde lima suave */

  margin-bottom: 12px;

  /* glow suave */
  text-shadow:
      0 0 6px rgba(191,255,0,0.4),
      0 0 12px rgba(191,255,0,0.2);
}

.registro-hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;

  text-shadow:   0 3px 15px rgba(0,0,0,0.8),
        0 0 20px rgba(191,255,0,0.25);
}
.registro-hero p {
  font-size: 18px;
  line-height: 1.6;

  color: #ffffff; /* blanco más puro */

  max-width: 720px;
  margin: 12px auto 0;
  text-align: center;

  font-weight: 500;
  letter-spacing: 0.4px;

  /* sombras premium */
 
    text-shadow:
        0 3px 12px rgba(0,0,0,0.8),
        0 0 10px rgba(191,255,0,0.35),
        0 0 25px rgba(191,255,0,0.2);
}

/* PASOS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.step {
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.step strong {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 900;
}

.step span {
  font-size: 15px;
  font-weight: 700;

  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.95);

  text-shadow:
      0 2px 6px rgba(0,0,0,0.7),
      0 0 6px rgba(191,255,0,0.25);
}
.step.active,
.step.done {
  background: rgba(200,244,90,0.12);
  border-color: rgba(200,244,90,0.38);
}

.step.active strong,
.step.done strong {
  background: var(--lime);
  color: #111;
}

/* ALERTAS */
.alerta {
  margin: 0 auto 20px;
  padding: 15px 18px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
  backdrop-filter: blur(6px);
}
.alerta.exito {
  width: fit-content;
  max-width: 90%;
  margin: 20px auto;
  padding: 14px 22px;

  background: rgba(191,255,0,0.20);
  border: 1px solid rgba(191,255,0,0.75);
  color: #ffffff;

  border-radius: 14px;
  font-weight: 800;
  text-align: center;

  box-shadow:
    0 0 16px rgba(191,255,0,0.30),
    0 8px 24px rgba(0,0,0,0.45);

  text-shadow: 0 1px 5px rgba(0,0,0,0.7);
}
.alerta.exito {
  color: #ffffff;
}

.alerta.exito strong,
.alerta.exito .correo-destacado {
  color: #c6ff1a;
}
.alerta.info,
.alerta.error {
  width: fit-content;
  max-width: 90%;
  margin: 20px auto;
  padding: 14px 22px;

  background: rgba(255,80,80,0.14);
  border: 1px solid rgba(255,90,90,0.55);
  color: #ffc2c2;

  border-radius: 14px;
  font-weight: 800;
  text-align: center;

  box-shadow:
    0 0 12px rgba(255,80,80,0.18),
    0 8px 24px rgba(0,0,0,0.45);

  text-shadow: 0 1px 5px rgba(0,0,0,0.7);
}
/* TARJETAS */
.registro-panel,
.two-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.card-registro {
  width: 100%;
  max-width: 900px;   /* MÁS GRANDE */
  margin: 40px auto;  /* separación vertical */
  padding: 50px 60px; /* más espacio interno */

  border-radius: 28px;

  background: #000000; /* negro total */
  border: 1px solid rgba(191,255,0,0.5);

  box-shadow:
      0 30px 80px rgba(0,0,0,0.65),
      0 0 30px rgba(191,255,0,0.15);

  backdrop-filter: blur(14px);
}
.card-registro:hover {
  transform: none;
  box-shadow:
      0 40px 100px rgba(0,0,0,0.75),
      0 0 40px rgba(191,255,0,0.25);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(200,244,90,0.13);
  color: var(--lime);
  border: 1px solid rgba(200,244,90,0.3);
}

.card-registro h2 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.texto-ayuda {
  color: #cfcfcf;
  font-size: 14px;
}

.texto-ayuda {
  max-width: 520px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FORMULARIOS */
.form-registro {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 28px;
}
.campo-full {
  grid-column: span 2;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo label {
  font-size: 20px;              /* más grande */
  font-weight: 700;

  color: rgba(255,255,255,0.85); /* blanco suave (no molesta) */

  margin-bottom: 6px;
  display: block;

  letter-spacing: 0.4px;

  /* sombra ligera para contraste */
  text-shadow: 
      0 1px 4px rgba(0,0,0,0.6);
}
.campo input,
.campo select {
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--input);
  color: #111;
  padding: 0 16px;
  outline: none;
  font-size: 18px;
}

.campo input:focus,
.campo select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(200,244,90,0.22);
}

/* Texto pequeño debajo de contraseña */
.campo small {
  display: block;
  text-align: left;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  max-width: 300px;   /* 👉 evita que sea demasiado ancho */
  margin-left: 28px; /* mismo espacio que el checkbox */
}

/* Checkbox + texto */
.check {
  font-size: 16px;       /* más grande */
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tamaño del checkbox */
.check input {
  width: 18px;
  height: 18px;
  accent-color: #bfff00; /* verde lima */
}
.mostrar-password {
  margin-top: 10px !important;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e8e8e8 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.mostrar-password input {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
}

/* BOTONES */


.btn-principal {
  position: relative;
  display: inline-block;

  padding: 12px 28px;
  margin: 25px auto 0;

  background: #c7f34a;
  color: #000;

  border-radius: 14px;
  border: none;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow: 0 6px 16px rgba(0,0,0,0.4);

  overflow: hidden; /* ESTO FALTABA */
  z-index: 1;
}

.btn-principal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  border-radius: 14px;

  background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.38),
      transparent
  );

  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn-principal:hover {
  transform: translateY(-2px) scale(1.02);
  background: #d6ff5f;
}

.btn-principal:hover::before {
  opacity: 1;
  animation: shine 0.6s ease;
}

@keyframes shine {
  from { left: -120%; }
  to   { left: 140%; }
}
/* CORREO VERIFICADO */
.correo-verificado {
  margin: 0 auto 22px;
  padding: 16px 18px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
  color: rgba(255,255,255,0.9); /* texto principal más claro */
  border: 1px solid rgba(200,244,90,0.45);
  backdrop-filter: blur(6px);
  width: fit-content; 
  text-shadow:
  0 1px 4px rgba(0,0,0,0.6),
  0 0 6px rgba(191,255,0,0.15);
}
.correo-verificado span {
  color: #bfff00; /* solo el título en verde */
  font-weight: 700;
  letter-spacing: 1px;
}

.correo-verificado strong {
  color: #ffffff; /* el email en blanco limpio */
  font-weight: 600;
}
.correo-verificado i {
  color: var(--lime);
  margin-right: 8px;
}

#mensajeCoincidencia.ok {
  color: var(--lime) !important;
  font-weight: 800;
}

#mensajeCoincidencia.bad {
  color: var(--error) !important;
  font-weight: 800;
}

/*----------------------------------------------FOOTER.PHP-------------------------------*/

.footer-main {
  position: relative;
  overflow: hidden;

 
  background: #000000;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;

  box-shadow: none;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;
 
      box-shadow:
        inset 0 80px 120px rgba(0,255,170,0.03),
        inset 0 -80px 120px rgba(0,140,255,0.03);
    }

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.03), transparent 70%);

  opacity: 0.4;
  pointer-events: none;
}
.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  filter: blur(2px);
  opacity: 0.6;
}
.footer-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 10px;
  padding-right: 30px;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;   /* clave */
  align-items: center;      /* centra horizontal */
  justify-content: center;
  text-align: center;       /* centra el texto */
  gap: 10px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  margin: 0;
  transform: none;
}
.footer-contact-block{
  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  text-align:center;

  transform: translateX(20px);
}
.footer-social{
  display:flex;

  justify-content:center;
  align-items:center;

  gap:0.9rem;

  width:100%;
}
.footer-contact-block h5,
.footer-phone{
  position: relative;
  left: 35px;
}

/* ================= MARCA ================= */



.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-bottom: 5px;
}

.footer-brand-text {
  min-width: 0;
  
  text-align: center;
}
.footer-brand-text h4 {
  margin: 0 0 6px;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: none;
}
.footer-brand-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: none;
}
/* ================= UBICACIÓN ================= */

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-left: 0;
  transform: translateX(75px) !important;
}
.footer-contact-block h5 {
  color: #ffffff;

}
    .footer-info h5,
    .footer-contact-block h5 {
      font-size: 1.4rem;     /* mismo tamaño que BODY LIFE */
      font-weight: 900;
      letter-spacing: 0.8px;
      color: #ffffff;
      transform: translateX(6px); 
    }

.footer-info p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.7;
  word-break: break-word;
}

.footer-location {
  color: #3b82f6;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-location i {
  color: #3b82f6;
}

.footer-location:hover {
  color: #60a5fa;
}

.footer-location:hover i {
  color: #60a5fa;
}
.footer-location i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.4);
}

/* ================= CONTACTO ================= */


.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-wrap: wrap;
  word-break: break-word;
}
.footer-phone i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.5);
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.03),
    0 6px 16px rgba(0,0,0,0.28);
  transition: all 0.28s ease;
}

.footer-social a i {
  font-size: 21px;
  transition: all 0.28s ease;
}

/* Colores sutiles por red */
.footer-social a:nth-child(1) i {
  color: #d96aa7;
}

.footer-social a:nth-child(2) i {
  color: #6ea8ff;
}

.footer-social a:nth-child(3) i {
  color: #4fd17b;
}

/* Hover elegante */
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.04),
    0 10px 22px rgba(0,0,0,0.34);
}

.footer-social a:nth-child(1):hover {
  box-shadow:
    0 0 0 1px rgba(217,106,167,0.18),
    0 8px 20px rgba(217,106,167,0.14);
}

.footer-social a:nth-child(2):hover {
  box-shadow:
    0 0 0 1px rgba(110,168,255,0.18),
    0 8px 20px rgba(110,168,255,0.14);
}

.footer-social a:nth-child(3):hover {
  box-shadow:
    0 0 0 1px rgba(79,209,123,0.18),
    0 8px 20px rgba(79,209,123,0.14);
}

.footer-social a:hover i {
  transform: scale(1.06);
}

/* ================= PARTE INFERIOR ================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 1.8rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/*  HOVER AZUL */
.footer-links a:hover {
  color: #1e90ff; /* azul tipo link */
  text-decoration: underline;
}
/* FORZAR TODO EL TEXTO DEL FOOTER A BLANCO */
.footer-brand-text h4,
.footer-brand-text p,
.footer-info h5,
.footer-info p,
.footer-contact-block h5,
.footer-phone
.footer-contact-block {
  color: #ffffff;
}
.footer-contact-block h5,
.footer-phone {
  transform: translateX(-40px); /* ajusta aquí */
}
/* FORZAR MISMO BLANCO REAL QUE UBICACIÓN */
.footer-brand-text h4,
.footer-contact-block h5,
.footer-info h5 {
color: #ffffff !important;


}
.password-help {
  display: block;
  width: 100%;
  
  font-size: 16px;
  font-weight: 500;
  
  color: rgba(255,255,255,0.9);
  
  margin-top: 6px;
  padding: 10px 14px;
  
  border-radius: 10px;
  
  background: rgba(191,255,0,0.08); /* fondo suave verde */
  border-left: 3px solid #bfff00;   /* línea elegante */
  
  text-shadow: 0 0 6px rgba(191,255,0,0.15);
}
.legal-box {
  background: rgba(10, 12, 10, 0.95); /* negro profundo */
  border: 1px solid rgba(191,255,0,0.25);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 8px;

  box-shadow:
      0 10px 30px rgba(0,0,0,0.6),
      0 0 15px rgba(191,255,0,0.08);
}
.legal-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.legal-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #bfff00;
}

.legal-box p {
  margin: 12px 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
/*----------------------------------------------AVISO LEGAL---------------------------------*/
.legal-check span {
  color: #d6d6d6;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* LINKS SIN SUBRAYADO */
.legal-check a {
  color: #c6ff1a; /* verde BODY LIFE */
  text-decoration: none; /*  quitamos subrayado */
  font-weight: 700;

  transition: all 0.2s ease;
}

/* HOVER SUAVE */
.legal-check a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(198,255,26,0.5);
}

/* quitar estilos feos del navegador */
.legal-check a:visited,
.legal-check a:active {
  color: #c6ff1a;
}

.obligatorio {
  color: #ff4d4d;
  font-weight: 900;
  margin-left: 4px;
}

.campo-error {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}
.mensaje-error-campo {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 800;
  margin-top: 7px;
  text-align: left;
}
.campo-error:focus {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}

.info-obligatorio {
  margin: 10px auto 18px;
  text-align: center;

  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);

  letter-spacing: 0.3px;
}


.info-obligatorio span {
  color: rgba(255,255,255,0.35);
  font-weight: 800;
  font-size: 1.2em;

  display: inline-block; /* clave */
  transform: translateY(2px); /* baja el asterisco */
}
.footer-bottom p{
  font-size:1.08rem;
  font-weight:600;

  color:rgba(255,255,255,.9);

  letter-spacing:.3px;

  text-shadow:
    0 0 10px rgba(255,255,255,.08);
}

.footer-links a{
  font-size:1.05rem;
  font-weight:700;

  color:rgba(255,255,255,.92);

  transition:.25s ease;
}

.footer-links a:hover{

  color:#b8ff2c;

  text-shadow:
    0 0 10px rgba(184,255,44,.35);
}
.footer-main .footer-top .footer-info{
  position: relative;
  left: 28px;
}
/* ========================================================= RESPONSIVE REGISTRO.CSS - BODYLIFE  ======================================================= */

/* Tablets grandes / iPad Pro / Surface */
@media (max-width: 1200px) {
  .registro-page {
    padding: 120px 24px 70px;
    background-position: center top;
  }

  .registro-layout {
    max-width: 900px;
  }

  .card-registro {
    max-width: 850px;
    padding: 45px 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .footer-info {
    transform: none;
  }

  .footer-contact-block h5,
  .footer-phone {
    transform: none;
  }
}

/* Tablets / iPad Mini / iPad Air */
@media (max-width: 900px) {
  .registro-page {
    padding: 110px 18px 60px;
  }

  .registro-hero {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .registro-hero h1 {
    font-size: 34px;
  }

  .registro-hero p {
    font-size: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step {
    padding: 13px 10px;
  }

  .card-registro {
    max-width: 760px;
    padding: 40px 34px;
    margin: 32px auto;
  }

  .grid-form {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 22px;
  }

  .campo-full {
    grid-column: span 1;
  }

  .form-registro {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-container {
    padding: 0 18px;
  }
}

/* Móviles grandes / iPhone 14 Pro Max / Pixel / Samsung Ultra */
@media (max-width: 600px) {
  .registro-page {
    padding: 95px 14px 50px;
    background-position: center center;
  }

  .registro-hero {
    padding: 24px 18px;
    margin-bottom: 18px;
    border-radius: 20px;
  }

  .registro-hero span {
    font-size: 13px;
    letter-spacing: 1.8px;
  }

  .registro-hero h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .registro-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .card-registro {
    padding: 32px 20px;
    margin: 26px auto;
    border-radius: 22px;
  }

  .card-registro h2 {
    font-size: 24px;
    text-align: center;
  }

  .texto-ayuda {
    font-size: 13.5px;
  }

  .campo label {
    font-size: 16px;
  }

  .campo input,
  .campo select {
    height: 54px;
    font-size: 16px;
    border-radius: 12px;
  }

  .password-help {
    font-size: 14px;
    padding: 9px 12px;
  }

  .legal-box {
    padding: 16px 14px;
  }

  .legal-check {
    font-size: 14px;
    gap: 10px;
  }

  .legal-box p {
    margin-left: 30px;
    font-size: 13px;
  }

  .btn-principal {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
  }

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error,
  .correo-verificado {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
  }

  .footer-brand-text h4 {
    font-size: 1.5rem;
  }

  .footer-brand-text p,
  .footer-info p,
  .footer-phone {
    font-size: 0.9rem;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }
}

/* Móviles pequeños / iPhone SE */
@media (max-width: 390px) {
  .registro-page {
    padding: 88px 10px 45px;
  }

  .registro-hero {
    padding: 22px 14px;
  }

  .registro-hero h1 {
    font-size: 24px;
  }

  .registro-hero p {
    font-size: 14px;
  }

  .step span {
    font-size: 13px;
  }

  .card-registro {
    padding: 28px 14px;
    border-radius: 20px;
  }

  .campo label {
    font-size: 15px;
  }

  .campo input,
  .campo select {
    height: 50px;
    font-size: 15px;
    padding: 0 12px;
  }

  .legal-check {
    font-size: 13px;
  }

  .legal-box p {
    font-size: 12.5px;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .footer-brand-text h4 {
    font-size: 1.35rem;
  }
}

/* Plegables estrechos / Surface Duo / Galaxy Fold */
@media (max-width: 320px) {
  .registro-page {
    padding-left: 8px;
    padding-right: 8px;
  }

  .registro-hero h1 {
    font-size: 22px;
  }

  .card-registro {
    padding: 24px 12px;
  }

  .campo input,
  .campo select {
    font-size: 14px;
  }

  .btn-principal {
    font-size: 13px;
  }
}

/* Pantallas bajas tipo Nest Hub */
@media (max-height: 650px) and (min-width: 700px) {
  .registro-page {
    padding-top: 90px;
    padding-bottom: 35px;
  }

  .registro-hero {
    padding: 22px 26px;
  }

  .registro-hero h1 {
    font-size: 30px;
  }

  .registro-hero p {
    font-size: 15px;
  }

  .card-registro {
    margin: 24px auto;
    padding: 34px 42px;
  }

  .campo input,
  .campo select {
    height: 52px;
  }
}

/* Pantallas muy anchas */
@media (min-width: 1400px) {
  .registro-layout {
    max-width: 1050px;
  }

  .card-registro {
    max-width: 960px;
  }
}
/* ================= iPhone SE / 375x667 ================= */
@media (min-width: 360px) and (max-width: 390px) and (max-height: 700px) {

  .registro-page {
    padding: 88px 12px 35px;
    min-height: auto;
    background-position: center top;
  }

  .registro-layout {
    max-width: 100%;
  }

  .registro-hero {
    width: 100%;
    padding: 26px 18px 28px;
    margin: 0 auto 22px;
    border-radius: 20px;
  }

  .registro-hero span {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .registro-hero h1 {
    font-size: 32px;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .registro-hero p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 285px;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .step {
    width: 100%;
    padding: 12px 10px;
    border-radius: 15px;
  }

  .step strong {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }

  .step span {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 1.4px;
  }
}
/* =====================================================
   TOGGLER PREMIUM BODYLIFE
===================================================== */

.navbar-toggler {
  width: 62px;
  height: 62px;

  border-radius: 18px !important;

  border: 1.5px solid rgba(191,255,0,0.45) !important;

  background: rgba(5, 8, 5, 0.92) !important;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;

  transition: all 0.28s ease;

  box-shadow:
      0 0 18px rgba(191,255,0,0.08),
      inset 0 0 12px rgba(191,255,0,0.03);

  backdrop-filter: blur(12px);
}

/* QUITA BORDE AZUL */
.navbar-toggler:focus {
  box-shadow: none !important;
}

/* ICONO */
.navbar-toggler-icon {
  width: 24px;
  height: 24px;

  background-image: none !important;

  position: relative;
}

/* LAS 3 LÍNEAS */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;

  width: 24px;
  height: 2px;

  background: #c8f45a;

  border-radius: 10px;

  box-shadow:
      0 0 8px rgba(191,255,0,0.35);
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon::after {
  bottom: 6px;
}

/* LÍNEA CENTRAL */
.navbar-toggler-icon {
  border-top: 2px solid #c8f45a;

  box-shadow:
      0 0 8px rgba(191,255,0,0.35);
}

/* HOVER */
.navbar-toggler:hover {
  transform: translateY(-2px);

  border-color: rgba(191,255,0,0.65) !important;

  box-shadow:
      0 0 22px rgba(191,255,0,0.18),
      0 10px 28px rgba(0,0,0,0.45);
}

/* =====================================================
 MÓVIL
===================================================== */

@media (max-width: 480px) {

  .navbar-toggler {
      width: 56px;
      height: 56px;

      border-radius: 16px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 22px;
  }
}
/* ================= TODO MÁS PEQUEÑO - iPhone SE ================= */
@media (min-width: 360px) and (max-width: 390px) and (max-height: 700px) {

  .registro-page {
      padding: 82px 10px 30px;
  }

  .registro-layout {
      max-width: 285px;
  }

  .registro-hero {
      max-width: 285px;

      padding: 18px 12px 20px;

      border-radius: 18px;
  }

  .registro-hero span {
      font-size: 10px;
      letter-spacing: 1.8px;

      margin-bottom: 8px;
  }

  .registro-hero h1 {
      font-size: 22px;
      line-height: 1.05;

      margin-bottom: 12px;
  }

  .registro-hero p {
      max-width: 210px;

      font-size: 12.5px;
      line-height: 1.5;
  }

  .steps {
      gap: 8px;

      margin-top: 18px;
  }

  .step {
      padding: 8px 8px;

      border-radius: 14px;
  }

  .step strong {
      width: 24px;
      height: 24px;

      font-size: 12px;

      margin-bottom: 5px;
  }

  .step span {
      font-size: 10px;

      letter-spacing: 1.2px;

      line-height: 1.3;
  }

  .navbar-brand {
      gap: 8px !important;
  }

  .brand-logo {
      width: 22px;
  }

  .brand-text {
      font-size: 18px;
  }

  .navbar-toggler {
      width: 50px;
      height: 50px;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 18px;
  }
}
/* ================= iPhone XR / 414x896 ================= */
@media (min-width: 391px) and (max-width: 430px) {

  .registro-page {
      padding: 88px 12px 40px;
  }

  .registro-layout {
      max-width: 315px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 315px;

      padding: 22px 14px 24px;

      border-radius: 20px;
  }

  .registro-hero span {
      font-size: 11px;
      letter-spacing: 2px;

      margin-bottom: 10px;
  }

  .registro-hero h1 {
      font-size: 28px;

      line-height: 1.08;

      margin-bottom: 14px;
  }

  .registro-hero p {
      max-width: 250px;

      font-size: 14px;
      line-height: 1.55;

      margin-left: auto;
      margin-right: auto;
  }

  .steps {
      gap: 10px;

      margin-top: 22px;
  }

  .step {
      padding: 12px 10px;

      border-radius: 16px;
  }

  .step strong {
      width: 28px;
      height: 28px;

      font-size: 13px;

      margin-bottom: 6px;
  }

  .step span {
      font-size: 11px;

      letter-spacing: 1.4px;

      line-height: 1.35;
  }

  /* HEADER */

  .brand-logo {
      width: 24px;
  }

  .brand-text {
      font-size: 19px;
  }

  .navbar-toggler {
      width: 54px;
      height: 54px;

      border-radius: 16px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 20px;
  }
}
/* ================= iPhone 12 Pro / 390x844 ================= */
@media (min-width: 385px) and (max-width: 400px) and (min-height: 780px) {

  .registro-page {
      padding: 86px 12px 40px;
  }

  .registro-layout {
      max-width: 325px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 325px;

      padding: 24px 15px 26px;

      border-radius: 22px;
  }

  .registro-hero span {
      font-size: 11px;

      letter-spacing: 2px;

      margin-bottom: 10px;
  }

  .registro-hero h1 {
      font-size: 30px;

      line-height: 1.08;

      margin-bottom: 14px;
  }

  .registro-hero p {
      max-width: 255px;

      font-size: 14px;
      line-height: 1.6;

      margin-left: auto;
      margin-right: auto;
  }

  .steps {
      gap: 11px;

      margin-top: 24px;
  }

  .step {
      padding: 13px 10px;

      border-radius: 17px;
  }

  .step strong {
      width: 30px;
      height: 30px;

      font-size: 14px;

      margin-bottom: 7px;
  }

  .step span {
      font-size: 11px;

      letter-spacing: 1.5px;

      line-height: 1.35;
  }

  /* ALERTAS */

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error {
      max-width: 325px;

      padding: 14px 14px;

      font-size: 13px;

      border-radius: 16px;
  }

  /* HEADER */

  .brand-logo {
      width: 24px;
  }

  .brand-text {
      font-size: 19px;
  }

  .navbar-toggler {
      width: 54px;
      height: 54px;

      border-radius: 16px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 20px;
  }
}
/* ================= Samsung Galaxy S8+ / 360x740 ================= */
@media (min-width: 350px) and (max-width: 370px) and (min-height: 700px) {

  .registro-page {
      padding: 84px 10px 34px;
  }

  .registro-layout {
      max-width: 295px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 295px;

      padding: 20px 13px 22px;

      border-radius: 20px;
  }

  .registro-hero span {
      font-size: 10px;

      letter-spacing: 1.8px;

      margin-bottom: 9px;
  }

  .registro-hero h1 {
      font-size: 25px;

      line-height: 1.08;

      margin-bottom: 13px;
  }

  .registro-hero p {
      max-width: 225px;

      font-size: 13px;
      line-height: 1.58;

      margin-left: auto;
      margin-right: auto;
  }

  .steps {
      gap: 10px;

      margin-top: 20px;
  }

  .step {
      padding: 11px 9px;

      border-radius: 16px;
  }

  .step strong {
      width: 28px;
      height: 28px;

      font-size: 13px;

      margin-bottom: 6px;
  }

  .step span {
      font-size: 10.5px;

      letter-spacing: 1.3px;

      line-height: 1.3;
  }

  /* HEADER */

  .brand-logo {
      width: 22px;
  }

  .brand-text {
      font-size: 17px;
  }

  .navbar-toggler {
      width: 52px;
      height: 52px;

      border-radius: 16px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 18px;
  }
}
/* ================= iPad Mini / 768x1024 ================= */
@media (min-width: 700px) and (max-width: 820px) {

  .registro-page {
      padding: 95px 18px 50px;
  }

  .registro-layout {
      max-width: 560px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 560px;

      padding: 34px 28px 36px;

      border-radius: 26px;
  }

  .registro-hero span {
      font-size: 15px;

      letter-spacing: 2.5px;

      margin-bottom: 14px;
  }

  .registro-hero h1 {
      font-size: 46px;

      line-height: 1.06;

      margin-bottom: 18px;
  }

  .registro-hero p {
      max-width: 500px;

      font-size: 21px;
      line-height: 1.7;

      margin-left: auto;
      margin-right: auto;
  }

  .steps {
      gap: 14px;

      margin-top: 30px;
  }

  .step {
      padding: 18px 14px;

      border-radius: 20px;
  }

  .step strong {
      width: 38px;
      height: 38px;

      font-size: 18px;

      margin-bottom: 10px;
  }

  .step span {
      font-size: 16px;

      letter-spacing: 1.8px;

      line-height: 1.4;
  }

  /* ALERTAS */

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error {
      max-width: 560px;

      padding: 18px 22px;

      font-size: 17px;

      border-radius: 18px;
  }

  /* HEADER */

  .brand-logo {
      width: 28px;
  }

  .brand-text {
      font-size: 24px;
  }

  .navbar-toggler {
      width: 64px;
      height: 64px;

      border-radius: 18px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 24px;
  }
}
/* =====================================================
   FONDO RESPONSIVE REGISTRO
===================================================== */

/* Base: que nunca se duplique */
.registro-page {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* iPhone SE / Samsung pequeños */
@media (max-width: 390px) {
  .registro-page {
      background-size: auto 100%;
      background-position: center top;
  }
}

/* iPhone XR / 12 Pro / 14 Pro Max */
@media (min-width: 391px) and (max-width: 480px) {
  .registro-page {
      background-size: auto 105%;
      background-position: center top;
  }
}

/* Tablets */
@media (min-width: 700px) and (max-width: 1024px) {
  .registro-page {
      background-size: cover;
      background-position: center top;
  }
}

/* Plegables estrechos */
@media (max-width: 320px) {
  .registro-page {
      background-size: auto 100%;
      background-position: center top;
  }
}

/* Pantallas tipo Nest Hub o muy bajas */
@media (max-height: 700px) and (min-width: 700px) {
  .registro-page {
      background-size: cover;
      background-position: center center;
  }
}

/* Pantallas grandes */
@media (min-width: 1200px) {
  .registro-page {
      background-size: cover;
      background-position: center center;
  }
}
/* ================= Surface Pro 7 / 912x1368 ================= */
@media (min-width: 850px) and (max-width: 950px) {

  .registro-layout {
      max-width: 460px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 460px;

      padding: 26px 22px 28px;

      border-radius: 24px;
  }

  .registro-hero span {
      font-size: 13px;

      letter-spacing: 2px;
  }

  .registro-hero h1 {
      font-size: 34px;

      margin-bottom: 14px;
  }

  .registro-hero p {
      max-width: 390px;

      font-size: 15px;
      line-height: 1.55;
  }

  /* PASOS */

  .steps {
      grid-template-columns: repeat(3, 1fr);

      gap: 8px;

      margin-top: 22px;
  }

  .step {
      padding: 10px 8px;

      border-radius: 14px;
  }

  .step strong {
      width: 24px;
      height: 24px;

      font-size: 12px;

      margin-bottom: 5px;
  }

  .step span {
      font-size: 9px;

      letter-spacing: 1px;

      line-height: 1.25;
  }

  /* ALERTAS */

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error {
      max-width: 380px;

      padding: 12px 14px;

      font-size: 12px;
  }

  /* TARJETAS FORMULARIO */

  .card-registro {
      max-width: 430px;

      padding: 28px 22px;

      border-radius: 22px;

      margin: 28px auto;
  }

  .card-registro h2 {
      font-size: 18px;
  }

  .texto-ayuda {
      max-width: 320px;

      font-size: 12px;

      line-height: 1.5;
  }

  .form-registro {
      max-width: 300px;
  }

  .campo label {
      font-size: 14px;
  }

  .campo input,
  .campo select {
      height: 44px;

      font-size: 13px;

      border-radius: 10px;
  }

  .btn-principal {
      padding: 10px 18px;

      font-size: 12px;

      border-radius: 10px;
  }

  /* HEADER */

  .brand-logo {
      width: 22px;
  }

  .brand-text {
      font-size: 18px;
  }

  .navbar-toggler {
      width: 48px;
      height: 48px;
  }

  /* FONDO */

  .registro-page {
      background-size: cover;
      background-position: center top;
  }
}
/* ================= Surface Duo / 540x720 ================= */
@media (min-width: 500px) and (max-width: 600px) and (max-height: 750px) {

  .registro-page {
      padding: 82px 12px 34px;
  }

  .registro-layout {
      max-width: 360px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 360px;

      padding: 24px 18px 24px;

      border-radius: 22px;
  }

  .registro-hero span {
      font-size: 12px;

      letter-spacing: 2px;

      margin-bottom: 10px;
  }

  .registro-hero h1 {
      font-size: 32px;

      line-height: 1.08;

      margin-bottom: 14px;
  }

  .registro-hero p {
      max-width: 300px;

      font-size: 15px;
      line-height: 1.6;

      margin-left: auto;
      margin-right: auto;
  }

  /* PASOS */

  .steps {
      gap: 10px;

      margin-top: 22px;
  }

  .step {
      padding: 12px 10px;

      border-radius: 16px;
  }

  .step strong {
      width: 30px;
      height: 30px;

      font-size: 14px;

      margin-bottom: 6px;
  }

  .step span {
      font-size: 11px;

      letter-spacing: 1.4px;

      line-height: 1.35;
  }

  /* TARJETAS */

  .card-registro {
      max-width: 360px;

      padding: 28px 22px;

      border-radius: 22px;

      margin: 26px auto;
  }

  .card-registro h2 {
      font-size: 22px;
  }

  .texto-ayuda {
      max-width: 300px;

      font-size: 13px;
  }

  .form-registro {
      max-width: 300px;
  }

  .campo label {
      font-size: 15px;
  }

  .campo input,
  .campo select {
      height: 48px;

      font-size: 14px;

      border-radius: 12px;
  }

  .btn-principal {
      padding: 11px 20px;

      font-size: 13px;
  }

  /* ALERTAS */

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error {
      max-width: 340px;

      padding: 13px 15px;

      font-size: 13px;
  }

  /* HEADER */

  .brand-logo {
      width: 24px;
  }

  .brand-text {
      font-size: 20px;
  }

  .navbar-toggler {
      width: 56px;
      height: 56px;

      border-radius: 16px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 20px;
  }

  /* FONDO */

  .registro-page {
      background-size: cover;
      background-position: center top;
  }
}
/* ================= Galaxy Z Fold 5 / 344x882 ================= */
@media (min-width: 330px) and (max-width: 350px) and (min-height: 820px) {

  .registro-page {
      padding: 82px 8px 36px;
  }

  .registro-layout {
      max-width: 285px;
      margin: 0 auto;
  }

  .registro-hero {
      max-width: 285px;

      padding: 20px 12px 22px;

      border-radius: 20px;
  }

  .registro-hero span {
      font-size: 10px;
      letter-spacing: 1.7px;
      margin-bottom: 9px;
  }

  .registro-hero h1 {
      font-size: 24px;
      line-height: 1.08;
      margin-bottom: 12px;
  }

  .registro-hero p {
      max-width: 220px;
      font-size: 13px;
      line-height: 1.55;
      margin-left: auto;
      margin-right: auto;
  }

  .steps {
      gap: 10px;
      margin-top: 20px;
  }

  .step {
      padding: 11px 8px;
      border-radius: 16px;
  }

  .step strong {
      width: 27px;
      height: 27px;
      font-size: 13px;
      margin-bottom: 6px;
  }

  .step span {
      font-size: 10px;
      letter-spacing: 1.25px;
      line-height: 1.3;
  }

  .alerta,
  .alerta.exito,
  .alerta.info,
  .alerta.error {
      max-width: 265px;
      padding: 12px 12px;
      font-size: 12px;
      border-radius: 15px;
  }

  .card-registro {
      max-width: 285px;
      padding: 26px 16px;
      border-radius: 20px;
      margin: 24px auto;
  }

  .form-registro {
      max-width: 245px;
  }

  .campo label {
      font-size: 14px;
  }

  .campo input,
  .campo select {
      height: 46px;
      font-size: 13px;
  }

  .btn-principal {
      width: 100%;
      font-size: 12px;
      padding: 11px 16px;
  }

  .brand-logo {
      width: 21px;
  }

  .brand-text {
      font-size: 16px;
  }

  .navbar-toggler {
      width: 50px;
      height: 50px;
      border-radius: 15px !important;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 18px;
  }

  .registro-page {
      background-size: auto 100%;
      background-position: center top;
  }
}
/* ========================= ================ ================ ================ FOOTER RESPONSIVE MÓVIL========================= */

@media (max-width: 768px){

  .footer-main{
    padding: 2.2rem 0 1.2rem;
    overflow: hidden;
  }

  .footer-container{
    width: 100%;
    padding: 0 18px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .footer-top{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    margin: 0 auto !important;
    padding: 0 !important;

    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  .footer-logo{
    width: 54px;
    height: 54px;
    margin: 0 auto .7rem !important;
  }

  .footer-brand-text h4{
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .footer-brand-text p{
    font-size: .9rem;
    line-height: 1.35;
  }

  .footer-info{
    overflow: hidden;
  }

  .footer-info h5,
  .footer-contact-block h5{
    font-size: 1.35rem;
    margin-bottom: .6rem;
  }

  .footer-info p{
    width: 100%;
    max-width: 310px;

    margin: 0 auto .75rem;

    font-size: .88rem;
    line-height: 1.55;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .footer-location,
  .footer-phone{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: .9rem;

    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-social{
    width: 100% !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    gap: .9rem;
    margin-top: .9rem;
  }

  .footer-social a{
    width: 48px;
    height: 48px;
  }

  .footer-social a i{
    font-size: 18px;
  }

  .footer-bottom{
    margin-top: 2rem;
    padding-top: 1.4rem;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .9rem;

    text-align: center !important;
  }

  .footer-author{
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer-author-content{
    align-items: center !important;
    text-align: center !important;
  }

  .footer-author-mini{
    font-size: .55rem;
  }

  .footer-author-name{
    font-size: .9rem;
  }

  .footer-author-phone{
    font-size: .85rem;
  }

  .footer-bottom p{
    width: 100%;
    max-width: 320px;

    margin: 0 auto;

    font-size: .92rem;
    line-height: 1.45;

    text-align: center;
  }

  .footer-links{
    width: 100%;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .65rem;
  }

  .footer-links a{
    font-size: .95rem;
  }
}
@media (max-width:768px){

  .footer-info p{
    max-width:280px;
    margin:auto;
  }

  .footer-bottom{
    padding-top:1.7rem;
  }

  .footer-links{
    margin-top:.4rem;
  }

}
@media (max-width:768px){

  .footer-main *{
    transform:none !important;
  }

  .footer-container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block,
  .footer-bottom,
  .footer-author,
  .footer-links{
    width:100% !important;
    max-width:100% !important;

    margin-left:auto !important;
    margin-right:auto !important;

    left:auto !important;
    right:auto !important;

    text-align:center !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .footer-info p{
    max-width:270px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .footer-social{
    justify-content:center !important;
  }
  .footer-contact-block{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;
    padding:0 !important;

    left:auto !important;
    right:auto !important;
    transform:none !important;
  }

  .footer-contact-block h5,
  .footer-phone,
  .footer-social{
    position:static !important;

    left:auto !important;
    right:auto !important;
    transform:none !important;

    margin-left:auto !important;
    margin-right:auto !important;

    text-align:center !important;
    justify-content:center !important;
  }

  .footer-social{
    width:100% !important;
  }
}
@media (max-width:768px){

  .footer-author{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;

    position:static !important;
    left:auto !important;
    transform:none !important;
  }

  .footer-author-content{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
  }

  .footer-author-line{
    display:none;
  }

  .footer-author-mini,
  .footer-author-name,
  .footer-author-phone{
    text-align:center !important;

    margin-left:auto !important;
    margin-right:auto !important;

    left:auto !important;
    transform:none !important;
  }
}
/* =========================
   FOOTER RESPONSIVE FINAL
========================= */

@media (max-width: 1200px){

  .footer-main{
    padding: 2.4rem 0 1.5rem;
  }

  .footer-container{
    width: 100%;
    padding: 0 22px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .footer-top{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.7rem !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    margin: 0 auto !important;
    padding: 0 !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .footer-logo{
    margin: 0 auto .65rem !important;
  }

  .footer-info p{
    max-width: 330px !important;
    margin: 0 auto .7rem !important;
    text-align: center !important;
  }

  .footer-phone{
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;

    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-social{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .85rem !important;
  }

  .footer-bottom{
    width: 100% !important;

    margin-top: 2rem !important;
    padding-top: 1.35rem !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .85rem !important;

    text-align: center !important;
  }

  .footer-author{
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    margin: 0 auto !important;

    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .footer-author-line{
    display: none !important;
  }

  .footer-author-content{
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
  }

  .footer-author-mini,
  .footer-author-name,
  .footer-author-phone{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-bottom p{
    max-width: 360px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer-links{
    width: 100% !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    flex-wrap: wrap !important;
    gap: 1rem !important;

    margin: 0 auto !important;
    text-align: center !important;
  }
  
}

@media (width:1024px) and (height:600px){

  .footer-contact-block{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;
    padding:0 !important;

    position:static !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
  }

  .footer-contact-block h5,
  .footer-phone,
  .footer-social{
    width:100% !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    text-align:center !important;

    margin-left:auto !important;
    margin-right:auto !important;

    position:static !important;
    left:auto !important;
    transform:none !important;
  }
}
.footer-author-mini {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .32em;
  color: rgba(255,255,255,.35);
}

.footer-author-name {
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255,255,255,.35);
}
.footer-author-phone {
  font-size: .82rem;

  color: rgba(255,255,255,.35);
  text-decoration: none;

  text-shadow:
    0 0 8px rgba(255,255,255,.04);
}
}
/* =====================================================
   MENÚ MÓVIL BODY LIFE - LIMPIO Y CENTRADO
===================================================== */
/* ===== MENÚ MÓVIL FINAL BODY LIFE ===== */
@media (max-width: 991px) {

  .navbar-nav {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
  }

  .navbar-nav .nav-item {
    list-style: none !important;
  }

  .bl-navbar .container-fluid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .navbar-toggler {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;

    border: 1px solid rgba(184,255,44,.28) !important;
    border-radius: 12px !important;

    background: rgba(8,10,12,.55) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow:
      inset 0 0 12px rgba(255,255,255,.03),
      0 4px 18px rgba(0,0,0,.35) !important;
  }

  .navbar-toggler-icon {
    width: 24px !important;
    height: 24px !important;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184,255,44,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;

    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    border: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    display: none !important;
    content: none !important;
  }

  .navbar-collapse {
    margin-top: 14px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background: #000 !important;
    border: 1px solid rgba(184,255,44,.22) !important;
  }

  .navbar-nav .nav-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px 10px !important;
  }
}