
/* bienvenida_responsive.css */

/* ========================= */
/* 🔁 ESTILOS RESPONSIVE     */
/* ========================= */

@media (max-width: 768px) {
  body.bienvenida {
    background-image: url("/static/img/p_bienvenida_mobile.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }

  .contenido-bienvenida {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 0 20px;
  }

  .botones-auth {
    position: absolute;
    top: 465px; /* ← Ajusta esta cifra si quieres subir o bajar los botones */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    max-width: 280px;
    z-index: 20;
  }

  .btn-principal,
  .btn-secundario {
    font-size: 10px;
    font-weight: bold;
    width: 80%;
    height: 26px;
    padding: 0 14px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
    color: white;
    border: none;
    z-index: 20;
    position: relative;
    font-family: 'Raleway', sans-serif;
  }

  .btn-secundario {
    background-color: #375e65;
  }

  .btn-principal {
    background-color: #8e1c1c;
  }

  /* ✅ Redes sociales (parte inferior centrada) */
  .redes-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px !important;
    margin-bottom: -2px !important;     /* acercar iconos al final de la ventana */
  }

  .redes-sociales img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  .redes-sociales img:hover {
    transform: scale(1.2);
  }

  /* ✅ Marca registrada centrada abajo */
  .marca-registrada {
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 9px;
    color: #807e78;
    opacity: 0.8;
    margin-bottom: 0px !important; 

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .redes-sociales img[src*="youtube_shorts"] {
    width: 18px;
    transform: translateY(1px);
  }

  /* ✅ Estilo para centrar el copyright en una sola línea */
  .copyright {
    font-family: 'Urbanist', sans-serif;
    font-size: 9px;
    color: #807e78;
    opacity: 0.8;
    text-align: center;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }


  .menu-icon {
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
  }

  /* Oculta el botón de ayuda en responsive */
  .boton-ayuda {
    display: none !important;
  }
}
