.lista-red {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.item-red {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #eee; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease;
}

.item-red:hover {
    transform: translateX(5px);
    border-left: 4px solid #0b3d91;
}

.item-red span {
    font-weight: 600;
    color: #444;
}

.item-red a {
    color: #0b3d91;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: #f0f4ff;
    transition: background 0.3s;
}

.item-red a:hover {
    background-color: #0b3d91;
    color: #fff;
}

@media (max-width: 600px) {
    .item-red {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}