/* 
* Card simple
* Composto por uma imagem, um título e uma descrição dispostos na vertical.
*/

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* space between cards */
    justify-content: center;
    /* center them horizontally */
    margin: 20px auto;
    /* adjust spacing as needed */
    max-width: 1200px;
    /* optional, to limit container width */
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 350px;
    /* adjust card width */
    max-width: 300px;
    /* optional, limit max width per card */
    padding: 20px;
    text-align: center;
    max-width: 280px !important;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #555;
}