@charset "UTF-8";

/* PALETA DE CORES */

:root {

    --cor0: #0554F2;
    --cor1: #044BD9;
    --cor2: #0460D9;
    --cor3: #D96941;
    --cor4: #0D0D0D;
    
    }
    
    /* GRADIENTE */
    
    /* #000000;
    #0050DF;
    #DF7740; */
    
/* ______________________________________________________________ */


/* CONFIGURAÇÃO PADRÃO */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-style: normal;
    overflow-x: hidden;
    
}

main {
    position: relative;
    top: 100px;
    padding-bottom: 80px;
    margin: auto;
    width: 90%;
    
}

h1 {
    font-size: 2rem;
    text-align: center;
    padding: 20px;
       
}

h2 {
    font-size: 1.8rem;
    padding: 20px;
    text-align: center;

}

h3 {
    font-size: 1.6rem;
    padding: 20px;
    text-align: left;
}

h4 {
    font-size: 1.4rem;
    padding: 20px;
    text-align: left;
    font-style: italic;
}

p {
   text-align: justify;
   font-size: 1.1rem;
   line-height: 1.8rem;
   padding: 20px;

}

li {
    font-size: 1.1rem;
    padding: 0px 20px 20px 20px;
    font-weight: normal;
    
}

/* ______________________________________________________________ */

/* CABEÇALHO */

header {
    background-color: var(--cor0);
    color: white;
    display: flex;
    height: 100px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.425);
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 1;

}

header img {
    width: 250px;
    height: auto;
    vertical-align: middle;

}

header a {
    margin-left: 20px;
}

header img:hover {
    transform: scale(1.1);
    transition: 0.5s;

}

nav a {
    
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bolder;
    margin-right: 40px;
    padding: 10px 0px 10px 0px;
 
    
}


nav a:hover {
    color: var(--cor3);
    transition: 0.5s;
    

}

nav#nav-mobile {
    display: none;
    position: relative;
    background-color: var(--cor0);
    margin-top: 190px;
    width: 220px;
    height: 220px;
    float: right;
    z-index: 10;    
      
}

nav#nav-mobile > a {
    display: block;
    padding: 12px;
    width: 190px;

}

i#bars, i#bars-x {
    font-size: 25px;
    z-index: 10;
    float: right;
    margin-right: 40px;
    
}

i#bars {
    display: block;
}

i#bars-x {
    display: none;
 
}

i#bars:hover, i#bars-x:hover {
    transform: scale(1.2);
    transition: .5s;
    color: var(--cor3);
    cursor: pointer;
}

/* ______________________________________________________________ */

/* CONTEÚDO PRINCIPAL */

section.container {
    text-align: center;
    width: 100%;
    height: auto;
    margin: auto;
    
}

div.principal {
    color: white;
    width: 45%;
    min-width: 320px;
    height: 320px;
    display: inline-flex;
    margin: 20px;
    box-shadow: 5px 7px 7px rgba(0, 0, 0, 0.425);       

}

div#consult {
    background-color: var(--cor3);

}

div#dev {
    background-color: var(--cor0);

}

 
div a {
    color: white;
    font-size: 25px;
    font-weight: bolder;
    margin: auto;
    padding: 30px;
    text-decoration: none;

}

div#consult a:hover {
    color: var(--cor0);
    font-size: 27px;
    transition: 0.5s;
    
}

div#dev a:hover {
    color: var(--cor3);
    font-size: 27px;
    transition: 0.5s;

}

div.principal:hover {
    transition: 0.5s;
    transform: scale(1.1);
    
}

/* ______________________________________________________________ */

/* RODAPÉ */

footer {
    position: relative;
    background-color: var(--cor3);
    color: white;
    display: flex;
    height: 260px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 1;

}

footer a#img {
    margin-left: 20px;
    
}


footer img {
    width: 250px;
    height: auto;
    align-content: middle;
    

}


footer img:hover {
    transform: scale(1.1);
    transition: 0.5s;

}


aside a {
    
    text-decoration: none;
    color: white;
    padding: 5px;
       
}

aside#menu {
    padding: 10px;

}
aside#menu > a {
    display: block;
    font-size: 1rem;
}

aside a:hover {
    color: var(--cor0);
    transition: 0.5s;
    font-weight: bolder;
    transform: scale(1.1);
    
}
  
aside#sociais i {
    font-size: 2rem;
    margin-right: 20px;
    padding: 10px 0px;
    
}

aside#sociais a {
    padding: 0;
}

aside#sociais > a i:hover {
    transform: scale(1.2);
    transition: 0.5s;
    
}

aside#contato > p {
    font-size: 1rem;
    padding: 0px 20px 0px 0px;

}

aside#contato > p {
    font-size: 1rem;
    padding: 0px 20px 0px 0px;

}

aside#contato address > p {
    font-size: 1rem;
    padding: 0px;
    margin: 0px;
    font-style: normal;
}

div#redes {
    margin-right: 20px;
}

/* ______________________________________________________________ */

/* POLÍTICA DE PRIVACIDADE E TERMO DE USO */

.norma {
    width: 100%;
    margin: auto;
    
}

/* ______________________________________________________________ */

/* CONSULTORES */

div#consultores {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
       
}

div.dados {
    font-size: 15px;
    text-align: center;
    width: 340px;
        
}

div.dados a {
    margin: 0;
    padding: 0;

}

div.dados p {
    font-size: 0.9rem;
    line-height: 1.5rem;
}

div.dados:hover {
    transform: scale(1.03);
    transition: 0.5s;
    line-height: .5rem;

}
img.quem-somos {
    width: 300px;
    height: 300px;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.425);
        
}

/* ______________________________________________________________ */

/* DIVERSOS */

ul.servicos {
    padding-left: 40px;
    padding-bottom: 20px;
    column-count: 2;
    text-align: left;
    
}

span {
    color: #ffffff;
    position: sticky;
    bottom: 20px;
    right: 20px;
    float: right;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    background-color: #0554f241;
    z-index: 10;
    cursor: pointer;
    scroll-behavior: smooth;

}

span i {
    vertical-align: middle;
}

span:hover {
    transform: scale(1.2);
    transition: .5s;

}

.go-to-top {
    
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  
  }
  
  /* @media (max-width: 768px) {
    .go-to-top {
      width: 0px;
      
    }
  } */
  
  .gruda-ai {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }




/* ______________________________________________________________ */

/* RESPONSIVIDADE */

@media screen and (min-width: 960px) {
    #nav-mobile, i#bars, i#bars-x {
        display: none;
        
    }

}

@media screen and (max-width: 960px) { 
    
    #nav-site, span, footer img {
        display: none;
    }

    section, article {
        margin: 0px;
        padding: 0px;
    }

    div.principal {
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
    }
    
    header a {
        padding: 0;
        
    }

    header img {
        width: 180px;
        height: auto;
        vertical-align: middle;
    }

 
    p, h1, h2, h3, h4, li {
        padding: 20px 10px 20px 10px;
    }   
  

    h4 {
        margin-left: 10px;
    }

    aside#menu > a {
        font-size: 0.8rem;
    }

    aside#contato > p {
        font-size: 0.8rem;
        line-height: 1.2rem;
        
    
    }

    aside#contato address > p {
        font-size: 0.8rem;
        line-height: 1.2rem;
    
    }
    
    aside#contato, aside#menu {
        padding-bottom: 60px;
    }

}

/* ______________________________________________________________ */