/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

/* Contenedor principal */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 70px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contenedor de roles */
.roles {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Tarjeta de rol */
.role-card {
    text-decoration: none;
    color: rgb(19, 10, 151);
    background: rgba(40, 174, 184, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease; /*sobra cuando se pasa el mause*/
    width: 150px;
}

.role-card:hover {
    transform: translateY(-10px);
    background: rgba(6, 3, 165, 0.336);
}

.role-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.role-card h2 {
font-size: 1.2rem;
margin:0;
}

.btn-salir-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
    padding: 10px 0;
    background: transparent;
}

.btn-salir {
    background-color: #692bf9a5;
    color: white;
    border: none;
    padding: 7px 7px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    font-weight: 500;
    min-width: 120px;
}

.btn-salir:hover {
    background-color: #d32f2f9c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ajuste del espacio inferior */
body {
    padding-bottom: 100px;
}

/* Versión responsive para móviles */
@media (max-width: 768px) {
    .btn-salir {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    body {
        padding-bottom: 80px;
    }
}