/* Variables para facilitar cambios de color */
:root {
    --azul-oscuro: #002d5a;
    --amarillo: #ffc107;
    --blanco: #ffffff;
}

/* Estilos de la sección principal */
.hero-selection {
    min-height: calc(100vh - 140px);
    background: var(--azul-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-wrapper h1 {
    color: var(--blanco);
    text-align: center;
    margin-bottom: 40px;
}

/* Contenedor de las tarjetas */
.selection-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilo de la tarjeta/botón */
.btn-role {
    background: var(--blanco);
    width: 300px;
    padding: 50px 30px;
    text-decoration: none;
    border-radius: 12px;
    color: var(--azul-oscuro);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

/* Estilo específico para los ICONOS */
.btn-role i {
    font-size: 4rem; /* Tamaño grande y profesional */
    margin-bottom: 20px;
    color: var(--azul-oscuro);
    transition: color 0.3s ease;
}

.btn-role span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
    margin-top: 10px;
}

/* Efectos Hover */
.btn-role:hover {
    transform: translateY(-10px);
    background: var(--amarillo);
}

.btn-role:hover i {
    color: var(--azul-oscuro); /* Mantiene el icono visible sobre el amarillo */
}