
.accesos-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acceso-tarjeta {
    text-decoration: none;
    background: #e0f4ff;
    color: #003366;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 0;
    transition: all 0.3s ease;
    background-clip: padding-box;
}

.acceso-tarjeta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #66ccff, #3399ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.acceso-tarjeta:hover {
    transform: translateY(-3px);
}

.acceso-tarjeta:hover::before {
    opacity: 1;
}

.acceso-tarjeta:focus {
    outline: 2px solid #003366;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.4);
}

.acceso-icono {
    font-size: 22px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    padding: 10px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #003366;
}

.acceso-texto {
    font-weight: 600;
    font-size: 16px;
    color: #003366;
}
