* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

.days-mask {
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0.7;

}

#days-title {
    text-shadow: 0 0 5px;
    font-size: 35px;
    margin: 50px 0;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

.days-section {


    width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
    background-image: url(./img/days-bg.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

.container-days {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 80%;
    gap: 30px;
    margin-bottom: 80px;


}

.container-days li {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 30px;
    height: 100%;
    border: 2px solid red;
    box-shadow: 0 0 10px red;
    border-radius: 10px;
}

.container-days li h2 {
    color: rgb(255, 0, 0);
    text-shadow: 2px 2px 5px black;
}

.adultDays .night h2{
    margin-top: 15px;
   
}


.container-days .info-day {
    margin: 0 auto;
    width: 90%;
    height: auto;
    border: 2px solid red;
    border-radius: 10px;
    box-shadow: 0 0 5px red;
    padding: 10px;
    margin-top: 15px;
}


@media screen and (min-width: 0px) and (max-width : 850px) {



    .container-days {
        grid-template-columns: repeat(1, 1fr);
        width: 80%;
        gap: 50px;
    }

}

@media screen and (min-width: 0px) and (max-width : 600px) {

    #fale-conosco {

        width: 300px;
    }
}
