/* BOTÓN FLOTANTE */
#btnAcceso {
    position: fixed;
    right: 0px;
    top: 300px;
    width: 120px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    padding: 15px;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.2s;
}

#btnAcceso:hover {
    transform: scale(1.05);
}

#btnAcceso img {
    width: 40px;
    margin-bottom: 5px;
}

#btnAcceso span {
    font-size: 12px;
    color: #f05a1a;
    font-weight: bold;
}

/* PANEL DESLIZANTE */
#panelLogin {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #f05a1a;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 10000;
}

#panelLogin.active {
    right: 0;
}

.login-content {
    padding: 30px;
    color: white;
}

.login-content h2 {
    margin-bottom: 20px;
}

.login-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
}

.login-content button {
    width: 100%;
    background: #222;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}

.login-content a {
    display: block;
    margin-top: 15px;
    color: white;
    text-align: center;
}

.login-content img {
    display: block;
    margin-top: 15px;
    text-align: center;
    width: 200px;
    height: auto;
}
.cerrar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* PASSWORD OJO */
.password-box {
    position: relative;
}

#togglePass {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

/* CAPTCHA */
.captcha label {
    font-size: 13px;
}
.btn-panel {
    display: block;
    width: 100%;
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
}

.btn-panel-secundario {
    width: 100%;
    background: white;
    color: #f05a1a;
    border: none;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}
/* BOTÓN NORMAL */
#btnAcceso {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px; /* 👈 AQUÍ ESTÁ LA CLAVE */

    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

#btnAcceso span {
    font-size: 10px;
    margin-top: 5px;
    text-align: center;
    color: #f05a1a;
    font-weight: bold;

}

/* HOVER */
#btnAcceso:hover {
    transform: scale(1.05);
}

/* ICONO */
#btnAcceso img {
    width: 40px;
    margin-bottom: 5px;
}



/* 🔥 ESTADO LOGUEADO */
#btnAcceso.logueado {
    background: #f05a1a;
}

/* TEXTO en logueado */
#btnAcceso.logueado span {
    color: white;
}

/* AVATAR */
.avatar {
    width: 40px;
    height: 40px;
    background: white;
    color: #f05a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 16px;
}

/* efecto pro */
#btnAcceso.logueado:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 600px) {
  #btnAcceso {
   
    right: 0px;
    top: 200px;
    width: 50px;
  }
  #btnAcceso img {
    width: 20px;
    margin-bottom: 2px;
}
#btnAcceso span {
  display: none;
}
}