@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap'); /*Roboto*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap'); /*Open Sans*/
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');/*Source Sans Pro*/
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');/*Nunito*/


* {
    padding: 0cm;
    margin: 0cm;
}

.header {
    height: 55px;
    background-color: transparent;
    justify-content: space-between; /*'justify-content' só funciona se o 'dispaly' for 'flex'*/
    display: flex;
    width: 100%;
    align-items: center;
    box-sizing: border-box;

}

.backgroundandlogo{
    width: 100%;
    height: 350px;
    background-image: url(./contato.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 5px 10px 0.2rem rgb(6, 12, 8);
}

#logo {
    width: 30px;
    height: 30px;
    padding-left: 21px;
    margin: 7px;
    margin-top: 13px;
}


ul {
    display: flex;
}

li {
    color: aliceblue;
    list-style: none; /*'list-style' seve para personalizar as bolinhas que têm em uma lista, quando se coloca 'none' tira as bolinhas*/
    cursor: pointer; /*quando o mouse passar em cima aparecerá uma mãozinha*/
    padding-left: 1rem;
    padding-right: 0.9rem;
    margin: 18px;
    font-family: 'Roboto', sans-serif;
}


a{
    text-decoration: none;
    color: rgb(58, 56, 56);
}

a :hover{
    color: rgb(12, 85, 12);
    font-size: 11.9pt;
}

#cape {
    width: 100%;
    height: 100%;
}

#tophm {
    color:rgb(235, 235, 235);
    font-size: 25px;
    padding-left: 5px;
    margin: 7px;
    padding-top: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14pt;
    letter-spacing: 1px;
}

#top-logo {
    display: flex;
    justify-content: space-between;
}

#whatsapp{
    margin-top: 100px;
    
}

#pat2 {
    width: 100%;
    height: 60vh;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 70px solid black;
}

#pat2 h2{
    font-size: 27pt;
    margin-bottom: 10px;
}

#pat2 h3{
    padding: 15px;
    line-height: 40px;
    font-size: 14pt;
}
.closed{
    color: rgb(150, 36, 36);
}

.open{
    color: green;
}

.divisor{
    width: 90%;
    background-color: rgb(87, 81, 81);
    height: 1.5px;
    position: absolute;
    top: 700px;
    left: 5%;
}

.divisor2{
    width: 90%;
    background-color: rgb(87, 81, 81);
    height: 1.5px;
    margin-left: 5%;
    margin-top: 50px;
}

.son {
    flex-direction: row;
}

/* Responsividade 686 */

#whaticket {
    display: flex;
    flex-direction: row;
}

#btn-mobile {
    display: none;
}

@media screen and (max-width: 730px) { 
    

    .linha2 {
        margin-left:30px;
    }
   
    li {
        font-family: 'Open Sans', sans-serif;
    }
    
    /*nav responsivo*/


    #menu {
        display:block;
        position: absolute;
        width: 80%;
        top: 55px;
        left: 0px;
        background-color: rgb(2, 2, 2);
        height: 0;
        transition: 0.6s;
        z-index: 10000; /*se tiver outro elemento o menu ficará em cima*/
        visibility: hidden;
        overflow-y: hidden ;
    }

    #nav.active #menu {
        display: block;
        height: calc(100vh - 70px);
        visibility: visible;
        }


    #btn-mobile{
        display: flex;
        padding: .5rem 1rem;
        font: 1rem;
        border: none;
        background:none;
        cursor: pointer;

    }

  

        #menu li{
            border-bottom: solid 1px rgb(20, 20, 20);
            padding: 1rem;
            font-size: 15pt;
        }

        #hamburger {
            border-top: 2px solid;
            width: 20px;
            color: white;

        }

        #hamburger::after,  #hamburger::before{
            content: '';
            display: block;
            width: 20px;
            height: 2px;
            background: currentColor;
            margin-top: 5px;
            position: relative;
            transition: 0.3s;
        }

        #nav.active #hamburger {
            border-top-color: transparent;
        }

        #nav.active #hamburger::before {
            transform: rotate(135deg);
        }

        #nav.active #hamburger::after {
            transform: rotate(-135deg);
            top: -7px;
        }
}