* {
   margin: 0;
   padding: 0;
   border: 0;
   box-sizing: border-box;
}

img, svg {
   display: block;
   width: 100%;
   height: auto;
}


.grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12,1fr);
    column-gap: 20px;
}

.banda{
    width: 100%;
}

.max{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.branco{
    background-color: #F8FBFC;
}

.azul{
    background-color: #5CACC4;
}

.preto{
    background-color: #071013;
}

.cinzacla{
    background-color: #DEE2E3;
}

.txtazul{
    color: #5CACC4;
}

.txtpreto{
    color: #071013;
}

.txtbranco{
    color: #F8FBFC;
}

.txtcinzaesc{
    color: #7F8F94;
}

.txtbordeaux{
    color: #77002E;
}

.centrar{
    text-align: center;
}

.sublinhado{
    margin-bottom: 18px;
}

.sublinhado span{
    position: relative;
    white-space: nowrap;
}

.sublinhado span img{
    display: inline;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.cor svg path :hover{
    fill: none;
    stroke: #77002E;
}

.margin{
    margin: 0 20px;
}

img{
    border-radius: 6px;
}

@font-face {
    font-family: ruda;
    src: url(font/Ruda-VariableFont_wght.ttf);
}

a{
    font-family: ruda;
    text-decoration: none;
    color: #071013;
    font-weight: 600;
    line-height: 26px;
}

a:hover{
    color: #77002E;
}

h1{
    font-family: ruda;
    font-weight: 500;
    line-height: 51px;
}

h2{
    font-family: ruda;
    font-weight: 500;
    line-height: 45px;
}

h3{
    font-family: ruda;
    font-weight: 500;
    line-height: 32px;
}

p{
    font-family: ruda;
    font-weight: 500;
    line-height: 29px;
}

nav{
    grid-column: 1/6;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
}

nav a{
    margin-right: 25px;
}

b{
    font-weight: 800;
}

#logo{
    grid-column: 6/8;
    max-width: 112px;
    margin: 29px 0;
    justify-self: center;
}

#logo path :hover{
    fill: #77002E;
}

#nav2{
    grid-column: 11/13;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.icon{
    max-width: 24px;
}

footer{
    padding: 55px 0;
    margin-bottom: 4px;
}

#logofoot{
    width: 80%;
    grid-column: 1/3;
    grid-row: 1;
    justify-self: flex-start;
    align-self: center;
    margin-left: 20px;
}

#bolas{
    grid-column: 2;
    grid-row: 1;
    width: 90%;
    justify-self: flex-end;
    align-self: flex-start;
    position: relative;
    top: -25px;
    left: 25px;
}

#peixesfoot{
    width: 90%;
    grid-column: 9/13;
    grid-row: 1;
    justify-self: flex-end;
    align-self: center;
    margin-right: 20px;
}

#navfoot{
    grid-column: 5/9;
    grid-row: 1;
}

#social{
   grid-column: 6/8;
   grid-row: 1;
   display: flex; 
   justify-content: space-between;
   padding: 0 30px;
   gap: 15px;
   align-self: flex-end;
}

a:hover svg path{
    fill: #77002E;
}

a.cor:hover svg path{
    stroke: #77002E;
    fill: none;
}

#footer2{
    padding: 20px 0;
}

#footer2 p{
    font-size: 14px;
}

#copy{
    grid-column: 1/5;
    margin-left: 20px;
}

#desen{
    grid-column: 10/13;
    margin-right: 20px;
}

#burguer{
    display: none;
}

#menumbl{
    display: none;
}

#btx{
    width: 40px;
      
}

#menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  font-size: 24px;
}


#logombl{
    width: 112px;
}

#btsmbl{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    margin: 0 0 100px 0;
}

#elevador{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: none;
}

.mostrar_elevador{
    display: block !important;
}

#elevador:hover{
    cursor: pointer;
}

#elevador img{
    width: 40px;
}

/* ----------------------------RESPONSIVE------------------------------- */

@media (max-width: 900px) {
    header nav {
        display: none;
    }

    #logo{
        grid-column: 1/3;
        justify-self: flex-start;
        align-self: center;
        margin-left: 24px;
    }

    #nav2{
        display: none;
    }

    #burguer{
        display: block;
        grid-column: 12;
        justify-self: flex-end;
        align-self: center;
        margin-right: 24px;
    }

   

    #menumbl{
        display: block;
        transition: top .5s;
        background-color: #5CACC4;
        position: fixed;
        z-index: 100;
        width: 100%;
        height: 100vh;
        top: -120%;
        left: 0;
    }

    #navfoot {
        grid-column: 4/10;
        justify-self: center;
    }

    #peixesfoot{
        width: 80%;
    }

    #social{
        padding: 0;
    }

    #desen{
        grid-column: 9/13;
        justify-self: flex-end;
    }

}

@media (max-width: 650px) {
    p{
    line-height: 30px;
    font-size: 19px;
    }
    
    #logo{
        margin-left: 24px;
        width: 60%;
        grid-column: 1/4;
    }
    
    #burguer{
        grid-column: 11/13;
        width: 60%;
        
    }

    #logofoot{
    display: none;
   }

   #bolas{
    display: none;
   }

   #peixesfoot{
    width: 100%;
    grid-column: 4/10;
    align-self: flex-start;
   }

   #navfoot{
    flex-direction: column;
    margin-top: 225px;
    gap: 40px;
    grid-column: 6/8;
    margin-left: 0;
   }

   #navfoot a{
    margin: 0;
   }

   #social{
    grid-column: 5/9;
    grid-row: 2;
    margin-top: 60px;
   }

   #social a{
    width: 34px;
   }

   #copy{
    grid-column: 3/11;
    text-align: center;
    margin-bottom: 23px;
    margin-left: 0;
   }

   #desen{
    grid-column: 3/11;
    text-align: center;
    justify-self: center;
    margin-left: 0;
   }

}

@media (max-width: 550px) {

    #logo{
        width: 100%;
    }

    #burguer{
        width: 100%;
    }

    #peixesfoot{
        grid-column: 4/13;
        padding-right: 24px;
    }

    #navfoot{
        margin: 170px 0 0 0
    }

    #social{
        grid-column: 5/9;
    }

    
}