/* CONTENEDOR GENERAL */
.listados-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
}

/* TÍTULO */
.listados-titulo {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
}

/* DESCRIPCIÓN */
.listados-descripcion {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

/* MENÚ DE LISTADOS */
.menu-listados {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* ITEM DEL MENÚ */
.listado-item {
    display: block;
    padding: 14px 18px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 17px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* HOVER */
.listado-item:hover {
    background-color: #e9e9e9;
    border-color: #bbb;
    transform: translateX(4px);
}
