:root {
    --navy: #172746;
    --gold: #e5b516;
    --navy-light: rgba(23, 39, 70, 0.1);
    --gold-light: rgba(229, 181, 22, 0.1);
    --text-muted: #718096;
}

.text-navy { color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.bg-navy-light { background-color: var(--navy-light); }
.bg-gold-light { background-color: var(--gold-light); }

.min-vh-100 { min-height: 100vh; }

.role-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card-link:hover {
    transform: translateY(-8px);
}

.role-card {
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Estilos específicos para Admin */
.role-card-link:hover .admin-card {
    border-color: var(--navy);
    box-shadow: 0 10px 20px rgba(23, 39, 70, 0.15);
}

.btn-navy {
    background-color: var(--navy);
    color: white;
    border-radius: 10px;
    font-weight: 600;
}
.btn-navy:hover {
    background-color: #2a3a5a;
    color: white;
}

/* Estilos específicos para Asegurado */
.role-card-link:hover .aseg-card {
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(229, 181, 22, 0.15);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 10px;
    font-weight: 600;
}
.btn-gold:hover {
    background-color: #d4a514;
    color: var(--navy);
}