.container-menor {
    max-width: 1600px;
    padding: 0;
    overflow: hidden;
}

.header-titulo {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.filters {
    /* background-color: yellow; */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 17px;
}

/* Estilos de inputs e labels */
label {
    display: block;
    margin: 10px 0 5px;
}

input, select {
    /* width: 100%; */
    padding: 9px;
    border: 1px solid #ccc;
    border-right: 3px solid #535353;
    border-radius: 20px 10px 10px 20px;
    background-color: #E6E6E6;
    outline: none;
    border: 3px solid #E6E6E6;
    /* border-right: 4px solid #ccc; */
    color: #535353;
    padding-left: 20px;
    font-size: 16px;
    transition: .2s;
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
}

input:focus, select:focus {
    outline: none;
    border-color: #555;
}

/* .filters input, .filters select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
} */

#exerciseList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.exercise-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 15px;
    text-align: center;
}

.exercise-card img {
    width: 100%;
    border-radius: 8px;
}

.exercise-card h3 {
    margin: 10px 0;
    color: red;
    font-size: 21px;
}

.exercise-card p {
    margin: 5px 0;
}

.exercice-desc {
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    margin: 0.5rem 0;
    font-size: 25px;
}

.a-link-exercicio {
    width: 100%;
    text-align: center;
    background-color: #FF323D;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#loadMoreButton {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#loadMoreButton:hover {
    background-color: #555;
}