@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap');

::-webkit-scrollbar {
    width: 8px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #fc5130;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #66a2eb;
    ;
}

:root {
    --verd: #88c417;
    --vermelho: #ed1846;
    --azul: #1d2951;
    --azulhover: #02205f;
    --laranja1: #f5cf48;
    --laranja: #f4cf40;
    --branco: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
}

.conteudo {
    width: 80%;
    height: auto;
    overflow: hidden;
}

/*========================================HEADER===================================*/
.header {
    height: 40px;
    position: relative;
    background: var(--azulhover);
    padding-top: 0px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.header1 {
    margin: auto;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-flow: nowrap;
    justify-content: space-between;
    z-index: 1;
    padding: 0px;
}

.cab-top,
.cab-esq {
    height: 60px;
    width: auto;
    padding: 0px;
    margin: 0px;
}

.cab-esq ul,
.cab-top ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    float: right;
    text-align: center;
    align-items: center;
}

.cab-esq ul li,
.cab-top ul li {
    text-decoration: none;
    font-size: 14px;
    color: var(--branco);
    font-weight: 600;
    padding: 2px 10px 10px 10px;
    list-style: none;
}

.cab-esq i,
.cab-top i {
    font-size: 25px;
    margin: 5px;
    color: var(--branco);
}

.cab-esq i {
    font-size: 20px;
}

.cab-esq ul li a {
    text-decoration: none;
    color: var(--branco);
}

.naveg {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    background: transparent;
    background: #03154f;
    position: fixed;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav {
    margin-left: 10%;
}

.naveg.sticky {
    width: 100%;
    background: var(--branco);
    margin-top: 0px;
}

.logotipo {
    float: left;
    color: var(--branco);

}

.logotipo img {
    width: 60px;
    height: 60px;
    margin-left: 20px;
    margin-top: 10px;
}

/*================================== LISTA MENU ============================*/
.menu {
    float: right;
    margin-top: 20px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: space-between;
}

.menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menu ul li {
    position: relative;
    min-width: 70px;
    width: auto;
    text-align: center;
}
.menu a {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--branco);
    font-size: 14px;
    padding: 20px 10px 20px 10px;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
}
.submenu ul {
    display: none;
    position: fixed;
    width: 200px;
    justify-content: left;
    background-color: white;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .75);
    z-index: 1;
}
.submenu li {
    border-top: 1px solid rgb(221, 221, 221);
    cursor: pointer;
}
.submenu ul li a {
    color:black;
    justify-content: left;
    font-weight: 300;
    width:100%;
}
.menu li:hover>ul {
    display: block;
}
 .naveg.sticky a {
    color: #555555;
}
.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    background: var(--vermelho);
    height: 3px;
    left: 0px;
    bottom: -2px;
    transition: 0.7s;
    margin-right: 1px;
}

.menu a:hover::after {
    width: 90%;
}

#checkmenu {
    display: none;
}
.active {
    border-bottom: 3px solid var(--vermelho);
    font-weight: bold;
    transition: ease;
    border-radius: 3px;
    color: var(--branco);
}

.menu li #btlogin {
    background: transparent;
}

/*======================================================== BEM VINDO ======================================  #321906;*/
.bemvindo {
    height: auto;
    padding-top: 160px;
    position: relative;
    background: var(--azul);
    background-image: url(banner.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    height: 600px;
}

.bemvindo2 {
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    justify-content: space-around;
}

.bemvindo2 div {
    width: 100%;
    height: auto;
    flex: left;
    text-align: center;
    color: var(--branco);
}

.bemvindo2 div #bvindo span {
    font-size: 40px;
    color: var(--laranja1);
    letter-spacing: 4px;
    text-align: center;
}

.bemvindo2 div #micro {
    margin: 6px;
    font-size: 22px;
    margin-top: 60px;
    padding-top: 4px;
}

.bemvindo2 div #cadi {
    margin: 6px;
    font-size: 22px;
    font-weight: bold;
    padding-top: 4px;
}

.bemvindo2 #cadi span {
    font-size: 68px;
    padding-top: 4px;
    color: var(--branco);
    letter-spacing: 8px;
    font-weight: bold;
}

.bemvindo2 span {
    font-size: 20px;
}

.button_1 {
    background: transparent;
    border: 0px;
    margin-top: 70px;

}

.button_1 i {
    font-size: 25px;
    color: var(--vermelho);
    border: 2px solid var(--vermelho);
    padding: 10px;
    transition: all ease;
}

.button_1 i:hover {
    color: var(--branco);
    cursor: pointer;
    color: var(--branco);
    border: 2px solid var(--laranja1);

}

/* ====================================================== BARRA STATUS ============================================  */
.bar_contact {
    background: linear-gradient(var(--azulhover), var(--azul));
    position: relative;
}

.bar_contact1 {
    margin: auto;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.bar_contact1 div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    border: 1px solid silver;
    width: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.bar_contact1 h1 {
    font-size: 50px;
    margin: 0px;
    margin-top: 60px;
    padding: auto;
    padding-bottom: 10px;
}

.bar_contact1 h1 i {
    width: 100%;
}

.bar_contact1 h3 {
    margin: 0px;
    color: var(--laranja1);
    font-size: 30px;
    padding-bottom: 10px;
}

.bar_contact1 p {
    margin: 0px;
    padding-bottom: 60px;
    color: #f2f0f0;
}

/*==================================================== SOBRENOS ===================================================*/
.sobrenos {
    background: var(--branco);
    height: auto;
    position: relative;
    padding-top: 80px;
}

.sobrenos2 {
    margin: auto;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.sobrenos2 div {
    width: 500px;
    height: auto;
    padding: 20px;
}

.sobrenos2 #sobr_descr {
    box-shadow: -14px 0px 7px -6px #eceff9;
}

.sobrenos2 #sobr_descr h2 i {
    padding-right: 10px;
    color: var(--vermelho);
}

.sobrenos2 .sobr_tit {
    width: 100%;
    padding-bottom: 100px;
    text-align: center;
}

.img {
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.sobrenos2 img {
    display: flex;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.sobrenos2 #acerca {
    margin-bottom: 0px;
    color: var(--vermelho);
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.sobrenos2 #acerca span {
    color: #646363;
}

.sobrenos2 #acerca:after {
    content: "";
    position: absolute;
    bottom: -2px;
    background: var(--azul);
    height: 3px;
    width: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sobrenos2 #acerca:before {
    content: "";
    position: absolute;
    bottom: 0px;
    background: var(--azul);
    height: 1px;
    width: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sobrenos2 h2 {
     !color: #808080;
}

.sobrenos2 p {
    text-align: justify;
    font-size: 16px;
    padding-left: 38px;
}

/*====================================================== SERVICOS ====================================================*/
.servicos {
     !background: linear-gradient(#6f7376, #303338);
    background: var(--azul);
    height: auto;
    position: relative;
}

.servicos2 {
    margin: auto;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.servicos2 #queserv {
    width: 100%;
    height: auto;
    color: #555555;
    position: relative;
    text-align: center;
}

.serv-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.servicos2 #serv {
    width: 350px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 60px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    background: #FFFFFF;
    border: 1px solid #2a3559;
     !box-shadow:
        0 0px 2.7px rgba(0, 0, 0, 0.12),
        0 0px 6.9px rgba(0, 0, 0, 0.083),
        0 0px 14.2px rgba(0, 0, 0, 0.067),
        0 0px 29.2px rgba(0, 0, 0, 0.053),
        0 0px 80px rgba(0, 0, 0, 0.037);
}

.servicos2 #serv:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px -10px;
    transition: 0.5s;
    background: #004c7a;
     !background: linear-gradient(var(--azulhover), var(--azul));
}

.servicos2 #qserv {
    margin-top: 100px;
}

.servicos2 #queserv {
    color: #c6c6c9;
}

.servicos2 #queserv span {
    color: #f0f1f4;
}

.servicos2 #listaserv {
    padding-top: 40px;
    padding-bottom: 20px;
    color: #f0f1f4;
    font-size: 18px;
    text-align: justify;
}

.servicos2 #listaserv i {
    color: transparent;
}

.servicos2 #oferec {
    text-align: left;
    margin-top: 0px;
    color: black;
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 10px;
}

.servicos2 #queserv:after {
    content: "";
    position: absolute;
    bottom: -15px;
    background: var(--vermelho);
    height: 3px;
    width: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.servicos2 #queserv:before {
    content: "";
    position: absolute;
    bottom: -13px;
    background: var(--vermelho);
    height: 1px;
    width: 130px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.serv_rodape h4 {
    font-size: 20px;
    color: #000;
    text-align: center;
    padding-top: 5px;
    width: 100%;
}

.serv_corpo {
    width: 100px;
    height: 100px;
    border-style: dotted solid double dashed;
    border-radius: 50%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.serv_corpo img {
    width: 50%;
    padding: auto;
    height: 50%;
     !opacity: 0.75;
}

.serv_rodape {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    text-align: center;
    color: #c6c6c9;
}

.serv_rodape p {
    padding: 0px 10px 10px 10px;
    line-height: 1.8em;
    color: var(--azul);
}

.serv_rodape p span {
    color: var(--branco);
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.serv_rodape ul li {
    list-style: none;
    color: var(--azul);
    text-align: left;
    padding-bottom: 10px;
}

.serv_rodape a {
    text-align: center;
    color: var(--azul);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 100px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: 2px solid silver;

}

.serv_rodape a i {
    color: var(--azul);
}

.serv_rodape a:hover {
    background: var(--laranja1);
    border: 2px solid var(--laranja1);
    color: black;
    font-weight: bold;
}

/*================================================== EQUIPE ======================================================*/
.equipe {
     !background: linear-gradient(#b7e5f9, #218c74);
    background: var(--branco);
    height: auto;
    position: relative;
    padding-top: 80px;
    color: #555555;
}

.equipe2 {
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

.equipe2 #titulo {
    width: 100%;
    height: auto;
}

.equipe2 #titulo1 {
    text-align: center;
    color: var(--vermelho);
    padding: 0px 0px 10px 10px;
    position: relative;
    text-transform: uppercase;
}

.equipe2 #titulo1 span {
    color: #646363;
}

.equipe2 #titulo1:after {
    content: "";
    position: absolute;
    bottom: -5px;
    background: var(--vermelho);
    height: 3px;
    width: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.equipe2 #titulo1:before {
    content: "";
    position: absolute;
    bottom: -3px;
    background: var(--vermelho);
    height: 1px;
    width: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.equipe2 #titulo p {
    margin-top: 20px;
    font-size: 18px;
    padding: 0px 10px 0px 20px;
    text-align: justify;
    line-height: 1.5em;
}

.main {
    width: 100%;
     !background: red;
}

.thumbnail-slider {

    width: 100%;
    float: left;
    overflow: hidden;
    background: transparent;
    height: auto;
    position: relative;
    color: black;
}

.thumbnail-slider .thumbnail-container {
    width: 100%;
    float: left;
    transition: margin 1s ease;
    background: transparent;
}

.thumbnail-slider .item {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
     border-radius: 8px;
    justify-content: space-around;
    transition: 0.5s;
    float: left;
    box-shadow: 0 0 20px -10px;
}

.fotos {
    margin-top: 10px;
    text-align: center;
}

.fotos img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #f3f2f2;
}

.eqconteudo {
    padding: 0px;
    margin: 0px;
    text-align: justify;
}

.eqconteudo h3,
h4 {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.eqconteudo h3 {
    padding: 0px;
    padding-top: 20px;
    color: #959595;
}

.eqconteudo h4 {
    padding: 0px 10px 20px 10px;
    border-bottom: 2px solid #ebebeb;
    font-size: 18px;
    color: silver;
}

.redsoc {
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-flow: wrap;
    margin: 0 40px 20px 40px;
}

.redsoc div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--azul);
    margin-left: 5px;
    font-size: 25px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fa {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: var(--branco);
}

.redsoc div:hover {
    transform: scale(1.05);
    cursor: pointer;
    background: var(--laranja)
}

.thumbnail-slider .item:hover {
    transform: scale(1.05);
    background: linear-gradient(var(--azulhover), var(--azul));
    box-shadow: 0 0 40px -10px;
    transition: 0.5s;
}

.thumbnail-slider .controls {
    width: 100%;
    float: left;
    padding: 15px;
}

.thumbnail-slider .controls ul {

    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.thumbnail-slider .controls ul li {
    height: 35px;
    width: 35px;
    border: 1px solid #c3c3c3;
    margin: 4px;
    display: inline-block;
    line-height: 33px;
    cursor: pointer;
    border-radius: 50%;

}

.thumbnail-slider .controls ul li.active {
    background-color: var(--vermelho);
    color: var(--branco);

}

/*=============================================== CONTACTE-NOS ===============================================*/
.contactenos {
    height: auto;
    position: relative;
    padding-top: 80px;
}

.contactenos1 {
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
    margin-bottom: 0px;
}

.contactenos1 #titulo {
    width: 100%;
    margin: auto;
    margin-bottom: 0px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
}

.contactenos1 #titulo div {
    height: auto;
    margin: auto;
    text-align: left;

}

.contactenos1 #titulo #cont {
    text-align: center;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.contactenos1 #titulo #cont:after {
    content: "";
    position: absolute;
    bottom: 1px;
    background: var(--azul);
    height: 1px;
    width: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactenos1 #titulo #cont:before {
    content: "";
    position: absolute;
    bottom: -1px;
    background: var(--azul);
    height: 3px;
    width: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactenos1 #cont h1 {
    padding: auto;
    font-size: 20px;
    color: #646363;
}

.contactenos1 #titulo span {
    color: var(--vermelho);
}

.contactenos1 #celas {
    width: 550px;
    height: auto;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
}

/*.contactenos1 #celas div{
    width:100%;
	height:auto;
	margin: auto;
    transition: 0.5s;
    margin-top:0px;
    background:linear-gradient(var(--azulhover), var(--azul));
}*/
.contactenos1 #celas #info {
    width: 100%;
    height: auto;
    margin: 1px;
    display: flex;
    flex-direction: row;
    background: linear-gradient(var(--azulhover), var(--azul));
}

.contactenos1 #info div {
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.contactenos1 #celas #inficon {
    width: 350px;
}

.contactenos1 #celas #inficon h3 {}

.contactenos1 #celas #info h3 {
    width: 50%;
    text-align: right;
    padding-right: 30px;
}

.contactenos1 #celas #info h3 i {
    font-size: 30px;
    color: var(--branco);
}

.contactenos1 #celas h1 {
    padding-bottom: 25px;
    color: var(--azul);
    font-size: 20px;
    font-weight: bold;
}

.contactenos1 #celas p,
.contactenos1 #celas p a {
    width: 80%;
    text-align: left;
    font-size: 18px;
    color: #FFFFFF;
    margin: auto;
    text-decoration: none;
}

.contactenos1 #celas form {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 0px;
    position: relative;
}

.contactenos1 #celas form input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid silver;
    background: transparent;
}

.contactenos1 #celas form input::placeholder {
    color: #646363;
}

.contactenos1 #celas form #total {
     !width: 80%;
}

.contactenos1 #celas form #meio {
     !width: 38.5%;
     !border: 1px solid silver;
     !margin-left: 5px;
     !margin-right: 5px;
}

.contactenos1 #celas form input[type="textarea"] {
    height: 100px;
}

.contactenos1 #celas form input[type="submit"] {
    width: 210px;
    height: 45px;
    background: var(--azul);
    border: 0px;
    color: var(--branco);
    font-size: 16px;
    outline: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 50px;
    border-radius: 10px;
    transition: 0.5 ease;

}

.contactenos1 #celas form input[type="submit"]:hover {
    background: var(--laranja1);
    color: #000;
    cursor: pointer;
    transition: 0.5 ease;
    border: 1px solid var(--laranja1);

}

.contactenos1 #celas input:focus {
    outline: none;
    border: 1px solid var(--laranja1);
    background: var(--azul);
    color: var(--laranja1);
}

/*================================================= RODAPE ================================================*/
.rodape {
    background: var(--azul);
    height: auto;
    position: relative;
}

.rodape2 {
    margin: auto;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-around;
    background: transparent;

}

.celulas {
    width: 250px;
    height: auto;
    margin-bottom: 10px;
    flex: left;
    padding: 5px;
    color: var(--branco);
    text-align: left;
     !background: var(--branco);
}

.c #smart {
    font-size: 40px;
    color: var(--laranja);
    font-weight: bold;
    text-align: center;
    letter-spacing: 4px;
    margin: 5px;
}

.c #bisin {
    font-size: 30px;
    color: var(--branco);
    font-weight: bold;
    text-align: center;
    margin: 5px;

}

.celulas ul {
    padding: 0px;
    list-style: none;
}

.celulas li {
    text-align: left;
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 5px;

}

.c #rapido,
#contacto {
    position: relative;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid #474646;

}

.c #rapido:before,
.c #contacto:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--laranja)
}

.celulas a {
    color: var(--branco);
    text-decoration: none;
    border-top: none;
}

.current a {
    font-size: 18px;
    color: var(--laranja);
}

.celulas a:hover {
    color: var(--laranja);
}

.celulas ul li:hover {
    color: var(--laranja);
}

.allrite {
    background: transparent;
    border-top: 2px solid #474646;
    padding: 10px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    color: var(--branco);

}

.rodape .fa-map-marker,
.rodape .fa-phone,
.rodape .fa-envelope-o,
.rodape .fa-globe {
    width: 20px;
    height: 20px;
     !text-align: center;
    margin-right: 10px;
    padding: 5px;
    color: var(--laranja);
}

.bt_home {
    position: fixed;
    background: transparent;
    text-align: center;
    padding: auto;
    margin-top: 30%;
    margin-left: 96%;
    z-index: 1;
}

.fa-chevron-circle-up {
    color: red;
    box-shadow: 0 0 40px -10px;
    z-index: 1;
}

.bt_home a {
    text-decoration: none;
    color: var(--laranja);
}

/*$desktop:1200px;
$laptop:992px;
$tablet:768px;
phone:480px;

============================MEDIA QUERY ============================================*/
@media(max-width:768px) {
    .conteudo{
        width:100%;
        margin: 0;
    }
    .naveg {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .menu {
        width: 100%;
        transform: translateX(-100);
        transition: all 0.3s ease-in-out;
        display: none;
        justify-content: center;
        
    }
    .menuclick {
        position: relative;
        height: 50px;
        width: 50px;
        cursor: pointer;
        border-radius: 50%;
        float: right;
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    .menuclick .top {
        width: 40px;
        background: var(--vermelho);
        border-radius: 6px;
        margin-top: 12px;
        position: absolute;
        border: 2px solid var(--vermelho);
    }

    .menuclick .midle {
        width: 40px;
        background: var(--vermelho);
        border-radius: 6px;
        margin-top: 22px;
        position: absolute;
        border: 2px solid var(--vermelho);
    }

    .menuclick .bottom {
        width: 40px;
        background: var(--vermelho);
        border-radius: 6px;
        margin-top: 32px;
        position: absolute;
        border: 2px solid var(--vermelho);
    }

    .menuclick:hover {
        border: 2px solid var(--vermelho);
        cursor: pointer;
    }

    .menu ul {
        position: relative;
        flex-direction: column;
        padding: 20px;
        width: 100%;

    }
    .menu ul li {
        width: 100%;
    }
    .submenu ul{
       width: 90%;
       justify-content: center;
       padding: 0 10px 0 10px; 
    }
    .bt_home {
        height: 20px;
        width: 70px;
        padding: 10px 10px 10px 5px;
        margin-top: 100%;
        margin-left: 80%;
    }

    #checkmenu:checked~.menu {
        display: block;
    }

    #checkmenu:checked+.menuclick .top {
        margin-top: 22px;
        transform: rotate(-45deg);

    }

    #checkmenu:checked~label span:nth-child(2) {
        margin-top: 22px;
        transform: rotate(45deg);
    }

    #checkmenu:checked~label span:nth-child(3) {
        opacity: 0;
    }

    .contactenos1 #celas form #meio,
    .contactenos1 #celas form #meio {
        width: 80%;
    }

    .servicos2 #queserv:after,
    .servicos2 #queserv:before {
      
    }