/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}


/* ===== Colours ===== */
:root{
    --cor-primaria: #74302F;
    --cor-secundario: #875353;
    --body-color: #E4E9F7;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --table-titulo: #535353;
    --text-branco: #FFFFFF;
}

body{
    height: 100vh;
    background-color: var(--text-branco);
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: var(--cor-primaria);
    z-index: 100;
    box-shadow: 20px 20px 50px -30px #000000;
}

nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color: var(--cor-primaria);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}

.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before{
    opacity: 1;
}

/*Main*/
main {  
  /*background: green;*/ 
  max-width: 1200px;
  margin: 0px auto;
  margin-top: 7%;
  padding: 20px;
}

.msg-sucesso{
    color: red;
}


/*Cards Top*/
.cardTop{
    display: flex;
    padding: 5px;
    justify-content: space-between;

}

.cardTopLeft{
    /*background: white;*/
    width: 100px;
    height: 150px;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
}

.cardTopLeft img{
    width: 100%;
}

.cardTopRight{
    /*background: white;*/
    width: 100px;
    height: 150px;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
}

.cardTopRight img{
    width: 100%;
}

/*Cards Centro*/
.cardsCenter{
    display: flex;
    padding: 5px;
    justify-content: center;
}

.cardCenter{
    width:60%;
    height: 60%;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
}

.cardCenter img{
    width: 100%;
}
.buttons-card{
    background: var(--cor-primaria);
    width:100px;
    height: 30px;
    border-radius: 10px;

}
.button-card{
    text-decoration: none;
    color: var(--text-branco);
    font-size: 15px;
}
.buttons-card:hover{
    background: var(--cor-secundario);
}


/*Atendimentos*/
.section-atendimento{
    margin-top: 10px;
    padding: 10px;
    text-align: center;
}
.section-atendimento h1{
    font-size: 28px;
    color: var(--cor-secundario);
}

.section-atendimento h2{
    font-size: 23px;
    color: var(--cor-secundario);
}

.section-atendimento p{
    font-size: 18px;
}

/*Secão Cads*/
div.cards{
    display: flex;
    padding: 32px;
    justify-content: center;
}

div.cards section.imagem{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
}

div.cards section.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
}

div.cards section.card icon{
    width: 44px;
    height: 44px;
}

div.cards section.card img{
    width: 100%;
}

div.cards section.card h3{
    font-size: 100%;
    margin: 16px 0;
}

div.cards section.card span{
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
}

/*Fim de Cards*/

/*Contatos*/

.section-contatos{
    background: white;
    margin-top: 10px;
    padding: 10px;
    /*text-align: center;*/
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
    margin-bottom: 20px;
}

.section-contatos h1{
    font-size: 22px;
    color: var(--cor-secundario);
}

.section-contatos p{
    font-size: 16px;
}

/*Map*/

.section-map{
    background: white;
    margin-top: 10px;
    padding: 10px;
    /*text-align: center;*/
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
    height: 80%;
    margin-bottom: 80px;
}
.section-map h1{
  font-size: 23px;
  font-weight: 600;
  color: var(--cor-primaria);
}  

.section-map h1{
    font-size: 22px;
    color: var(--cor-secundario);
}

/*Serviços*/
.section-titulo-servicos{
    background: var(--table-titulo);
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    margin-left: 32px;
    box-shadow: 20px 20px 50px -30px #000000;
    margin-bottom: 20px;
}

.section-titulo-servicos h1{
    font-size: 25px;
    color: var(--text-branco);
}

/*Sobre*/

.tables-titulo-sobre{
  padding: 10px;
  margin: auto;
  border-collapse: collapse;
  justify-content: center;
  width: 80%;
}
.tables-titulo-sobre td, .tables-titulo-sobre th{
  padding: 12px 15px;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  font-size: 20px;
  font-weight: bold;
}

.tables-sobre{
  padding: 10px;
  margin: auto;
  border-collapse: collapse;
  justify-content: center;
  width: 80%;
}
.tables-sobre td, .tables-sobre th{
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 15px;
  /*font-weight: bold;*/
}

/*Select DropDown*/
select {
   -webkit-appearance:none;
   -moz-appearance:none;
   -ms-appearance:none;
   appearance:none;
   outline:0;
   box-shadow:none;
   border:0!important;
   background: #5c6664;
   background-image: none;
   flex: 1;
   padding: 0 .5em;
   color:#fff;
   cursor:pointer;
   font-size: 1em;
   font-family: 'Open Sans', sans-serif;
}
select::-ms-expand {
   display: none;
}
.select {
   position: relative;
   left: 10%;
   display: flex;
   width: 20em;
   height: 3em;
   line-height: 3;
   background: #5c6664;
   overflow: hidden;
   border-radius: .25em;
}
.select::after {
   content: '\25BC';
   position: absolute;
   top: 0;
   right: 0;
   padding: 0 1em;
   background: #2b2e2e;
   cursor:pointer;
   pointer-events:none;
   transition:.25s all ease;
}
.select:hover::after {
   color: var(--text-branco);
}


/*footer*/

footer{
    background: var(--cor-primaria);
    color: #FFF;
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;

}
/*Pagina Transparência*/

.buttons{
  width:150px;
  height: 50px;
  position: relative;
  left: 10%;
  top: 30px;

  /*border: 1px solid black;*/

}
.button{
   background-color:#00a833;
   width:50%;
   border: none;
   padding: 10px;
   text-decoration: none;
   outline: none;
   border-radius: 10px;
   font-size: 120%;
   left: 50%;
   color: black;

}

.tables{
  padding: 10px;
  margin: auto;
  border-collapse: collapse;
  justify-content: center;
  width: 80%;
}
.tables td, .tables th{
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.tables th{
  background-color: var(--table-titulo);
  color: #ffffff;
}
.tables tbody tr:nth-child(even){
  background-color: #f5f5f5;
}

.tables-servicos{
  padding: 10px;
  margin: auto;
  border-collapse: collapse;
  justify-content: center;
  width: 80%;
}

.tables-servicos td, .tables-servicos th{
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.tables-servicos th{
  background-color: var(--table-titulo);
  color: #ffffff;
}
.tables-servicos tbody tr:nth-child(even){
  background-color: #f5f5f5;
}

@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen{
        display: block;

    }

    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--cor-secundario);
        z-index: 100;
        transition: all 0.4s ease;

    }

    nav.active .menu{
        left: -0%;
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .logo-toggle .siderbarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        margin-top: 50px;
        flex-direction: column;
        padding-top: 10px;
    }

    .nav-bar ul li{
     border-bottom: 1px solid white;
     width: 100%;
    }

    .nav-links li a{
        display: block;

    }

    div.cards{
    flex-direction: column;
    padding: 32px;
    justify-content: center;
    }

    div.cards section.card{
    margin-left: 0;
    margin-bottom: 32px;
    }

    .cardTop{
    margin-top: 60px;
    }

    .cardCenter{
    width:80%;
    height: 80%;
    }
    

}