.body{
    background-color: black;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
header{
    text-align: center;
    padding: 40px;
}
header a{
    text-decoration: none;
    color: white;
    margin: 15px;
}
.titulos{
    font-weight: 700;
}

html{
    scroll-behavior: smooth;
  }
  
:target{
    scroll-margin-top: 100px;
}

/* section banner */
.banner{
    position: relative;
}
.imgbanner{
    width: 100%;
    opacity: 0.5;
}
.txtbanner{
    text-align: center;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* section história */
.sechis{
    margin-top: 150px;
    margin-left: 20px;
    margin-right: 20px;
}
.divhis{
    background-color: rgba(113, 23, 23, 1);
    text-align: left;
    border-radius: 20px;
    padding: 20px;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.imghis{
    width: 100%;
}
.textohis{
    display: flex;
    flex-direction: column;
    justify-content: center;  
}

/* section pratos */
.secpratos{
    margin-top: 150px;
    margin-left: 20px;
    margin-right: 20px;
}
.divpratos{
    padding-top: 25px;
}
.imgpratos{
    border-radius: 10px;
    padding-bottom: 5px;
    width: 100%;
}
.btnreceita{
    background-color: rgba(113, 23, 23, 1) !important;
    border: rgba(113, 23, 23, 1) !important;
    border-radius: 20px !important;
}

.modal-header{
    background-color: rgba(113, 23, 23, 1);
}
.modal-content{
    color: white !important;
}
.modal-body{
    background-color: rgba(39, 39, 39, 1);
}
.modal-footer{
    background-color: rgba(39, 39, 39, 1) !important;
}

/* section cinza*/
.secinza{
    margin-top: 150px;
    background-color: rgba(39, 39, 39, 1);
    padding: 60px;
}
.btnguia{
    text-decoration: none;
    color: white;
    background-color: rgba(113, 23, 23, 1);
    border-radius: 20px;
    padding: 15px;
}
.divbtnguia{
    margin-top: 50px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 proporção padrão do youtube*/
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*section curiosidades*/
.securiosidades{
    margin-top: 150px;
    margin-left: 20px;
    margin-right: 20px;
}
.text-rigth{
    text-align: right;
}
.imgcurio{
    width: 50%;
}
.imgright{
    float: right;
}
.imgleft{
    float: left;
}
.divcurio{
    margin-top: 80px;
}

footer{
    margin-top: 100px;
    background-color: rgba(39, 39, 39, 1);
    padding: 50px;
    text-align: center;
}

/* botao de voltar ao topo */
.btn-back-to-top{
    background-color: rgba(113, 23, 23, 1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}

.btn-back-to-top:hover{
    background-color: rgb(128, 39, 39);
}
.back-to-top-visible{
    display: flex;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 900px) {
    .txtbanner {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        margin: 30px;
    }
    .his-row{
        display: block !important;
    }
    .hiscol{
        width: 100% !important;
    }
    .imghis{
        width: 70%;
        margin-left: 15%;
        margin-right: 15%;
    }
    .row-cin{
        display: block !important;
    }
    .col-cin{
        width: 100% !important;
    }
    .row-curio{
        display: block !important;
    }
    .col-curio{
        width: 100% !important;
    }
    .imgright, .imgleft{
        float: none !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        width: 40%;
    }
    .txtcentro{
        text-align: center;
        margin-top: 20px !important;
    }
    .row-curio-reverso{
        flex-direction: column-reverse;
    }
}


