.mw-horoscopoDoDia{
    grid-column: span 4;
    grid-row: span 1;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    font-family: "NunitoSans-Bold";
    max-height: 180px;
}

.mw-horoscopoDoDia > h3 {
    color: #283593;
    font-family: 'NunitoSans-Black';
    font-size: 16px;
    margin-bottom: 10px;
}

.mw-horoscopoGrid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: minMax(40px, auto);
    align-items: center;
    justify-items: center;
    gap: 5px;
}

.mw-horoscopoGrid a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mw-horoscopoGrid h3 {
    color: #283593;
    font-family: 'NunitoSans-Black';
    font-size: 14px;
}

.mw-horoscopoGrid h4 {
    color: #283593;
    font-size: 16px;
    text-align: center;
}

.mw-horoscopoGrid img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.horoscopo-container-es {
    grid-column: span 4;
    grid-row: span 3;
}

.mw-chamadaHoroscopo {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.mw-chamadaHoroscopo h2 {
    justify-content: center;
    color: #000000;
    font-family: "NunitoSans-Black";
    font-size: 22px;
    line-height: 26px;
    display: flex;
    gap: 25px;
    align-items: center;
}
.mw-chamadaHoroscopo a {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

@media (max-width:1000px){
    .mw-horoscopoDoDia{
        max-height: fit-content;
        width: 100%;
        grid-column: span 2;
    }

    .mw-horoscopoDoDia > h3{
        margin-bottom: 15px;
    }

    .mw-horoscopoGrid{
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .horoscopo-container-es {
        width: 100%; 
        grid-column: span 2; 
        grid-row: span 3;
        margin: 0;
    }

    .horoscopo-container-pe {
        width: 100%; 
        grid-column: span 2; 
        grid-row: span 7;
        margin: 0;
    }
    
}