    /* Body - Classe que define os estilos básicos, como de fontes, e as delimitações externas da página */
*{
	font-family: "Cardo", Arial, Helvetica, sans-serif;
}
body {
	margin: 0;
	padding: 0;
	border: 0;
    color: rgb(3, 119, 167);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url("C:/Users/URB31/Desktop/site da URB31/img/por-do-sol-no-mato2 - grande.jpg"); */
    background-size: 100%;
}
h1, h2 {
    font-family: 'Cinzel Decorative', serif;
}
h3, h4, h5 {
    font-family: 'Cinzel', serif;
}
a, button{
    color: unset;
    text-decoration: unset;
    background: unset;
    border: unset;
}
textarea {
	font-family: inherit;
    padding: 5px;
}
li {
    padding: 5px 0;
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scrollbar::-webkit-scrollbar-track {
    background-color: rgb(210, 210, 210);
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: rgb(127, 127, 127);
    border-radius: 0px;
}

.foto {
    position: fixed;
    min-width: 1520px;
    width: 110%;
    min-height: 100%;
    top: -20px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Body */


    /* Menu de navegação - Define o estilo da barra de menu, que permite mover entre as páginas do site */
header {
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}
.containerMenuBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color:rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 5px gray, 0px 0px 10px rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 45px;
}
#menuIcone {
    display: none;
}
#logo {
    display: flex;
    margin: 10px 0 10px 45px;
    height: 90px;
    transition: width 0.5s ease;
}
#logo:hover {
    box-shadow: 0px 0px 20px rgba(3, 119, 167, 0.7);
    border-radius: 60px;
}
.menuBar {
    position: relative;
    right: 40px;
    border: none;
    display: flex;
    align-self: center;
    font-size: 40px;
    padding: 0px;
    margin: 0px;
}
.containerMenuBarBtn {
    overflow-y: visible;
}
.menuBarBtn {
    padding: 15px 30px;
    font-family: "Cinzel Decorative";
    font-size: 18px;
    font-weight: bold;
    color: rgb(3, 119, 167);
    text-shadow: 0px 0px 5px rgb(0, 0, 0, 0.1);

}
.menuBarBtn:hover {
    background-color:  rgb(3, 119, 167);
    color: white;
}
.containerMenuBarBtn-content { /* Revisar */
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 5;
    margin: 0;
    color: rgb(3, 119, 167);
    box-shadow: 0px 0px 5px gray, 0px 0px 30px rgba(0, 0, 0, 0.7);
}
.containerMenuBarBtn-content a { /* Revisar */
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    border-bottom: rgb(218, 218, 218) solid 1px;
}
.containerMenuBarBtn-content a:hover { /* Revisar */
    background-color: rgb(3, 119, 167);
    font-weight: bold;
    color: white;
}

    /* Seção - container que comporta cada bloco para compor a página */
.tituloPagina {
    font-size: 40px;
    text-align: center;
    margin: 160px 10px 40px;
    border-bottom: 3px solid rgb(0, 155, 190, 0.8);
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 10px 30px 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    box-shadow: 4px 2px 10px rgba(0, 0, 0, 0.3);
}
.blocoSecao { /* divContato, divGaleria, divItem */
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    width: 1020px;
    width: -webkit-fill-available;
    height: fit-content;
    margin: 10px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(3, 119, 167);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}
.blocoSecaoMult {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.blocoSecaoOverflowX {
    overflow-x: auto;
    flex-wrap: unset;
    flex-direction: row;
    justify-content: unset;
    align-items: center;
    height: 350px;
}
.tituloSecao { /* tituloGaleria */
    font-size: 26px;
    width: fit-content;
    margin: 0 0 10px;
    padding: 5px 15px 2px;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgb(3, 119, 167);
    border-radius: 2px;
    box-shadow: 4px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.textoSecao { /*descricaoGaleria*/
    margin: 30px;
    text-align: justify;
    line-height: 30px;
}
/* Seção */

    /* Itens */
.containerItem { /*divItemCatalogo*/
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
    width: 550px;
    min-height: 650px;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    /* box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3); */
}
.tituloItem {
    /* align-self: center; */
    font-size: 22px;
    max-width: 440px;
    margin: 20px;
    padding: 5px 10px;
    border-radius: 2px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.tituloItemCatalogo {
    font-size: 22px;
    max-width: 440px;
    margin: 10px;
}
.textoItem {
    text-align: center;
    margin: 30px;
    max-width: 450px;
}
.textoItemItalico {
    font-size: 22px;
    font-style: italic;
    margin: 40px;
    max-width: unset;
}
.textoItemCatalogo {
    font-size: 18px;
    height: 100px;
    margin: 0;
    text-align: justify;
    overflow-y: hidden;
    max-width: 500px;

}
.textoItemCatalogo:hover {
    overflow-y: auto;
}
.textoProduto {
    text-align: justify;
    margin: 30px;
    padding: 0px 30px;
}

.containerImgItem {
    position: relative;
    margin-bottom: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}
.imagemItem {
    position: relative;
    display: flex;
}
.imagemItem > img {
    max-width: 100%;
}
.imagemItemPrev, .imagemItemNext { /* prev next */
    cursor: pointer;
    position: absolute;
    top: 42%;
    left: 0;
    width: auto;
    padding: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 30px 30px 0;
    user-select: none;
    -webkit-user-select: none;
}
.imagemItemNext { /* next */
    right: 0;
    left: unset;
    border-radius: 30px 0 0 30px;
}
.imagemItemPrev:hover, .imagemItemNext:hover { /* prev next hover */
    background-color: rgba(0, 0, 0, 0.8);
}
.imagemItemCatalogo {
    max-width: 520px;
    max-height: 270px;
    min-height: unset;
    margin: 30px 0 10px;
}
.imagemItemPreco {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 0 10px;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}

.tabelaItemCatalogo {
    display: none;
    flex-direction: column;
    margin: 30px 15px 0;
    font-size: 18px;
    border-top: solid 1px #bebdbd;
}
.tabelaItemCatalogo > a {
    padding: 10px;
    border-bottom: solid 1px #bebdbd;
    border-left: solid 1px #bebdbd;
    border-right: solid 1px #bebdbd;
}
.tabelaItemCatalogo > * {
    padding: 10px;
}

.mapItem {
    border-radius: 2px;
    width: 450px;
    height: 400px;
    margin: 10px;
    position: relative;
    align-self: center;
    box-shadow: 2px 2px 8px black;
    justify-content: center;
}

.buttonItem {
    font-family: 'Cinzel Decorative', serif;
    width: 170px;
    height: 50px;
    margin: 10px 10px 30px;
    border-radius: 2px;
    color: white;
    background-color: rgb(3, 119, 167);
    box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}
.buttonItem:hover {
    background-color: rgba(3, 119, 167, 0.7);
    cursor: pointer;
}

.linkFormulario {
    display: flex;
    align-self: center;
    justify-self: center;
    justify-content: center;
    align-items: center;
    border-style: none;
    font-size: 18px;
    border-radius: 2px;
    color: white;
    background-color: rgb(3, 119, 167);
    width: fit-content;
    padding: 0 20px;
    height: 50px;
    margin-bottom: 20px;
    box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.3);
}
/* Itens */

    /* Depoimentos vai dentro de uma seção multipla */
.containerDepoimentos {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
    width: 400px;
    min-height: 250px;
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.9);
}
/* Depoimentos */

/* Carrosel de imagens */
.containerCarrossel { /* container */
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: center;
    width: min-content;
    margin: 10px 0 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.containerCarrosselChamaMais {
    text-align: center;
    align-self: center;
    align-content: center;
    width: 104%;
    height: 140px;
    margin-bottom: -30px;
    margin-left: -60px;
    margin-right: -60px;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}
.carrosselImgAmp { /* mySlides */
    position: relative;
    display: flex;
    align-self: center;
    align-content: center;
    max-height: 550px;
    width: 100%;
    justify-content: center;
}
.carrosselImgAmp > img { /* mySlides>img */
    height: 550px;
    max-width: fit-content;
}
.carrosselThumbsContainer { /* row */
    display: flex;
}
.carrosselThumbsContainer:after { /* row:after */
    content: "";
    display: table;
    clear: both;
}
.carrosselImgPrev, .carrosselImgNext { /* prev next */
    cursor: pointer;
    position: absolute;
    top: 45%;
    left: 0;
    width: auto;
    padding: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 30px 30px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 2;
}
.carrosselImgNext { /* next */
    right: 0;
    left: unset;
    border-radius: 30px 0 0 30px;
}
.carrosselImgPrev:hover, .carrosselImgNext:hover { /* prev next hover */
    background-color: rgba(0, 0, 0, 0.8);
}
.carrosselImgNumber { /* numbertext */
    color: #f2f2f2;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    right: 0;
}
.carrosselTexto { /* caption-caption */
    font-size: 18px;
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}
.carrosselThumbContainer { /* colum */
    float: left;
    width: 20%;
    max-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.carrosselThumbImg {
    cursor: pointer;
    opacity: 0.6;
    width: 100%;
}
.carrosselThumbImgAtivo, .carrosselThumbImg:hover {
    opacity: 1;
}
/* Carrosel de imagens */

    /* Carrosel de slides */
.carrosselSlidesTexto {
    position: absolute;
    bottom: 0;
    font-size: 18px;
    text-align: center;
    width: 100%;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-color: unset;
    padding: 2px 0;
    color: white;
}
.carrosselSlidesTexto > h2 {
    margin: 20px;
}
.carrosselSlidesTexto > p {
    margin: 20px 35px;
}
/* Carrosel de slides */

    /* Contato */
.contact {
    font-size: 20px;
    position: relative;
    width: fit-content;
    height: fit-content;
    border-bottom: 3px solid rgb(3, 119, 167);
    margin-top: 8px;
    padding: 2px 5px;
    border-radius: 2px;
    box-shadow: 2px 2px 7px gray;
}
.containerItemContato {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}
#contactName, #contactPhone, #contactEmail, #contactMessage {
    flex-grow: 1;
    font-size: 18px;
    margin: 10px;
}
#anexo {
    margin-left: 10px;
}
#contactSubmit {
    border-style: none;
    font-size: 18px;
    border-radius: 2px;
    color: white;
    text-shadow: 2px 1px 3px rgba(255, 255, 255, 0.2);
    background-color: rgb(3, 119, 167);
    width: 170px;
    height: 50px;
    margin-bottom: 20px;
    box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.3);
}
#contactSubmit:hover {
    background-color: rgba(3, 119, 167, 0.7);
    cursor: pointer;
}
.ligue {
    position: relative;
    color: rgb(3, 119, 167);
    font-weight: bold;
    font-size: 21px;
    margin: 10px 0px;
    text-shadow: 1px 1px 1px dark rgb(3, 119, 167), 1px 1px 15px rgb(172, 172, 172);
}
/* Contact */

    /* Status */
.divStatus {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 2px;
    width: 1080px;
    height: fit-content;
    margin: 40px 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(3, 119, 167);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}
.tituloStatus {
    position: relative;
    width: fit-content;
    padding: 5px 10px;
    margin: 0px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px 5px;
    box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    font-size: 26px;
}
.divStatus2 {
    display: flex;
    position: relative;
    align-self: center;
    flex-wrap: wrap;
    height: fit-content;
    margin: 20px;
    font-size: 20px;
}      
.statusItem {
    border-bottom: 5px solid rgb(3, 119, 167);
    padding: 40px 0px;
    display: flex;
    flex-direction: column-reverse;
}
.statusItem2 {
    border-bottom: 5px solid black;
    padding: 40px 0;
    display: flex;
    flex-direction: column-reverse;
}
.statusSubItem {
    transform: rotate(-45deg);
}
/* Status */

    /* Footer */
footer {
    position: static;
    bottom: 0px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    background-color: white;
    width: 100%;
}
.socialMidia-bar a {
    display: inline-block;
    text-align: center;
    padding: 16px;
    margin-bottom: 15px;
    font-size: 25px;
    transition: all 0.7s ease;
    width: 30px;
    height: 30px;
}
.socialMidia-bar a:hover {
    color: white;
    background-color: rgb(3, 119, 167);
    border-radius: 100%;
}
#fone {
    font-size: medium;
    color: rgb(3, 119, 167);
    padding: 0px;
    margin: 0px;
}
#copyright {
    color: rgb(3, 119, 167);
}
.ajustaTelaClima {
    align-self: center;
    width:1200px;
}
/* Footer */


@media screen and (max-width: 992px) {
    /* TAMANHO DAS FONTES */
    #menuIcone {
        font-size: 40px;
        display: block;
        width: 70px;
        color: rgb(3, 119, 167);
    }
    #logo {
        margin: 10px 35px;
        height: 60px;
    }
    .menuBar {
        position: absolute;
        right: 0;
        top: 75px;
        display: none;
        flex-direction: column;
        width: fit-content;
        padding: 10px;
        z-index: 5;
        background-color:rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 5px gray, 0px 0px 30px rgba(0, 0, 0, 0.7);
        border-radius: 5px 0px 5px 5px;
        overflow-y: auto;
    }
    .containerMenuBarBtn {
        display: block;
        text-align: left;
        background-color: white;
        width: 300px;
    }
    .menuBarBtn {
        width: 100%;
        height: 100%;
        padding: 10px 0;
        margin: 0;
        font-size: 20px;
    }
    .containerMenuBarBtn-content {
        position: relative;
        margin: 0;
        background-color: white;
    }
    .containerMenuBarBtn-content a {
        font-size: 18px;
    }
    .containerMenuBarBtn-content a:focus {
        background-color: rgb(3, 119, 167);
        font-weight: bold;
        color: white;
    }

    .blocoSecao {
        padding: 0;
    }
    .containerCarrossel {
        margin: 0;
    }
    .textoItemItalico {
        margin: 20px;
    }
    .containerCarrossel {
        width: 100%;
    }
    .containerCarrosselChamaMais {
        width: 100%;
        margin-bottom: 0;
    }
    .containerCarrosselChamaMais > .buttonItem {
        margin: 10px 10px 0px;
    }
    .carrosselImgAmp > img {
        height: 100%;
        max-width: 100%;
        min-height: 290px;
    }
    .containerItem {
        margin: 10px;
        min-height: unset;
    }
    .ajustaTelaClima {
        width: inherit;
    }
}

@media screen and (max-width: 992px) and (orientation: landscape) {

    #logo {
        display: flex;
        margin: 10px 0 10px 45px;
        height: 45px;
        transition: width 0.5s ease;
    }
    .tituloPagina {
        font-size: 30px;
        text-align: center;
        margin: 90px 10px 30px;
    }
}