*{
    margin: 0;
    padding: 0;
}

body {
	background-color: #fff;
	background-attachment: fixed;
    background-clip: border-box;
    background-color: transparent;
    background-image: url("/assets/images/background.jpg");
    background-origin: padding-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
}

.body-container{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: fit-content;
    background-color: #fff;
    box-shadow: 6px 6px 10px #797979;
}

header{
    position: relative;
    width: calc(100% -20px);
    height: 140px;
    background-color: aqua;
    background-clip: border-box;
    background-image: url("/assets/images/fundo-azul-2.png");
    background-origin: padding-box;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 10px;
    display: grid;
    grid-template-columns: 300px auto 300px;
}

header .logo{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img{
    width: 250px;
    height: 112px;
}

header .contact-info{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

header .contact-info .box{
    color: #1a75be;
    font-weight: bold;
    width: fit-content;
    overflow: auto;
    background: rgba(255, 255, 255, 80%);
    border-radius: 15px;
    box-shadow: 1px 6px 5px #3d3d3d;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .contact-info span{
    display: block;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .contact-info span i{
    font-size: 20px;
    margin-right: 5px;
}

header .contact-info a img{
    width: 30px;
    margin-right: 10px;
}

header .contact-info a{
    color: #1a75be;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer{
    position: relative;
    width: 100%;
    height: 110px;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 38%, rgba(56,56,56,1) 74%, rgba(99,99,99,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .credits{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-align: center;
}

#bwb_soft {
    text-decoration: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #7e7e7e;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bwb_soft img{
    width: 70px;
}

main{
    display: grid;
    grid-template-columns: 200px auto;
    background: rgb(2,0,36);
    background: linear-gradient(20deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 25%, rgba(0,212,255,1) 100%);
    padding-bottom: 10px;
}

main .left-bar{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
}

main .left-bar .main-menu{
    list-style: none;
    width: 100%;
    padding-top: 10px;
}

main .left-bar .main-menu li{
    margin-bottom: 25px;
    margin-left: 10px;
    height: 30px;
    display: flex;
    justify-content: flex-end;
}

main .left-bar .main-menu li a{
    position: relative;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    width: calc(100% - 35px);
    height: 20px;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 30px;
    font-size: 13px;
   
    background: repeating-linear-gradient(
        135deg,
        #3b3b3d,
        #3b3b3d 10px,
        #373739 10px,
        #373739 20px
    );
}

main .left-bar .main-menu li a:hover{
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 50%) inset;
}

main .left-bar .main-menu li a img{
    position: absolute;
    width: 45px;
    left: -5px;
}

main .content{
    margin: 10px;
    width: calc(100% - 50px);
    height: 600px;
    overflow: auto;
    background: rgba(255, 255, 255, 80%);
    border-radius: 15px;
    box-shadow: 1px 6px 5px #3d3d3d;
    padding: 15px;
}

footer .credits{
    font-size: 13px;
    color: rgba(255,255,255, 0.7);
}

#wpp-mobile img{
    width: 40px;
}

#menu-mobile{
    display: none;
    position: absolute;
    top: 20px;
    left: 10px;
    color: white;
    cursor: pointer;
    padding: 3px;
    border-radius: 5px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    background: rgba(26, 117, 190, 0.7);
    align-items: center;
    font-weight: bold;
}

#menu-mobile i{
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile-buttons{
    display: none;
    grid-template-columns: 1fr 1fr;
    height: 40px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
#mobile-buttons a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}
#mobile-buttons a.phone{
    background: #1a75be;
}
#mobile-buttons a.phone i{
    margin-right: 5px;
}


#mobile-buttons a.wpp{
    background: #25d366;
}
#mobile-buttons a.wpp img{
    width: 25px;
    margin-right: 5px;
}
