
/* ========================= */
/* 📱 ESTILOS TABLET - BIENVENIDA */
/* ========================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  body.bienvenida {
    background-image: url("/static/img/p_bienvenida_tablet.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100dvh;
    overflow: hidden;
  }

  /* Botones login / registro */
    .botones-auth {
    position: absolute;
    top: 825px; /* igual que en responsive */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;            /* Distancia entre botones */
    width: 100%;
    max-width: 280px;
    z-index: 20;
  }

  .btn-principal,
  .btn-secundario {
    font-size: 18px;        /* 10px × 1.75 */
    width: 175%;               /* mantenemos igual */
    height: 45px;           /* 26px × 1.75 */
    padding: 0 24.5px;        /* 14px × 1.75 */
    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 */
  .redes-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px !important;
    margin-bottom: 10px !important;
  }

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

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

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

  /* Marca registrada */
  .marca-registrada {
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: #807e78;
    opacity: 0.8;
    margin-bottom: 3px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Ocultar botón de ayuda */
  .boton-ayuda {
    display: none !important;
  }
}
