/* body {
    font-family: "Poppins", sans-serif;
    background: #4d6a52;
    margin: 0;
    padding: 30px 10px;
    color: #fff;
    text-align: center;
} */

.titulo {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.contenedor {
    max-width: 900px;
    margin: 0 auto;
}

.dia {
    background: #ffffff;
    color: #333;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 30px;
}

.dia h2 {
    text-align: center;
    color:#333;
    font-style: helvetica;
    margin-bottom: 20px;
    font-size:larger;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.card {
    background: #f0efec;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.card.gris {
    opacity: 0.5;
}