﻿body, p, h1, ul, li, blockquote {
    padding: 0px;
    margin: 0px;
}

body{
    font-family: "Rubik", sans-serif;
}

h1, h2, h3 {
    font-family: "Raleway", sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: HSL(200,31%, 14%);
}

li {
    list-style: none;
}

p{
    color: #5E5E5E;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}


/*Grid Geral*/
.estrutura {
    display: grid;
    background-color: #E4EDEF;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "header header header"
        "banner banner banner"
        "content content content"
        "footer footer footer";
}


@media (max-width: 970px){
    .estrutura{
        grid-template-areas: 
        "header header"
        "banner banner"
        "content content"
        "footer footer"
        ;
    }
}

@media (max-width: 385px){
    .estrutura{
        grid-template-columns: 1fr;   
        background-color: HSL(200,25%, 94%); 
        grid-template-areas: 
        "header"
        "banner"
        "content"
        "footer"
        ;
    }
}

/*Header*/
.header {
    grid-area: header;
    opacity: 1;
    padding: 10px 25px 0 9%;
    /*display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;*/
    background: #D1E1EC;
    max-width: 1707px;
    width: 100%;
    z-index: 2;
}

/*menu novo*/
.topnav {
    overflow: hidden;
    
}

    .topnav a {
        float: right;
        display: block;
        color: #070761;
        text-align: center;
        padding: 15px 5px 0 16px;
        text-decoration: none;
        font-size: 17px;
        text-transform: uppercase;
        font-family: "Work Sans";
        font-weight: 200;
    }
    .topnav a:first-child {
        float:left;

    }
      
    .active {
        background-color: red;
        color: white;
    }

    .topnav .icon {
        display: none;
    }

    .dropdown_menu {
        float: inline-end;
        overflow: hidden;
    }

    .dropdown_menu .dropbtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: #211F5C;
        padding: 15px 16px 0 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
        text-transform: uppercase;
        font-family: "Work Sans";
        font-weight: 200;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #E4EDEF;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .topnav a:hover, .dropdown_menu:hover .dropbtn {
        color: #304C9F;

    }

.dropdown-content a:hover {
    background-color: #B6C4E0;
    color: black;
}

    .dropdown_menu:hover .dropdown-content {
        display: block;
    }

.btnMenu {
    margin-top: -10px;
    z-index: 9999;
    cursor: pointer;
}

.bar1 {
    margin-top: 0 !important;
}

.bar3 {
    margin-bottom: 0 !important;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    border-radius: 15px;
    background-color: #211F5C;
    margin: 8px 15px;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 7px);
    transform: rotate(-45deg) translate(-8px, 7px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -7px);
    transform: rotate(45deg) translate(-7px, -7px);
}

@media screen and (max-width: 1000px) {
    .topnav a:not(:first-child), .dropdown_menu .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
        margin-top: 10px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 600px) {
 
    
    .topnav {
        background-color: transparent;
    }
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav.responsive .dropdown_menu {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown_menu .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}
    /*fim do menu novo*/

   .logo{
    max-width: 160px;
    min-width: 100px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.dropdown-menu{
    background-color: #f8f8f8;
    color: blue;
}

.dropdown-item {
    color: #383838 !important;
}

.dropdown-item:hover {
   color: #4E75E1 !important;
}

.dropdown-menu a:hover {
    background-color: transparent;

}

.navbar-collapse{
    width: auto;
}

.navbar-toggler:hover{
    color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}


.header nav ul:not(.nav-item-drop){
    display: flex;
}

.header nav a {
    display: block;
    padding: 5px;
    margin: 10px 20px 5px 10px;
    color: red;
    font-size: 1em;
    transition: 0.2s;  
}

    .header nav a:hover {
        color: #4E75E1;
    }

.header ul li a.menu_ativo {
    color: #2F4BA0;
}


/*Banner*/

#divBanner{
    background-size: 400% 400%;
    grid-area: banner;
    height: 600px;
    opacity: 0.5;
    
}

.conteudo_banner {
    text-align: center;
    grid-area: banner;
    display: grid;
    grid-template-columns: 0.3fr 2fr 1fr 1fr;
    grid-template-rows: 320px 10px 20px auto;
    background: #D1E1EC;
    padding-left: 50px;
    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
    margin-top: 0;
}


.titulo_banner {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: #070761;
    font-size: 4rem;
    font-weight: 800;
    text-align: left;
    text-transform: inherit;
    line-height: 4.2rem;
    margin-top: 50px;
    max-width: 800px;
}

.subtitulo_banner {
    grid-column: 2;
    grid-row: 2;
    font-weight: 300;
    font-size: 1.2rem;
    color: #070761;
    text-align: left;
    margin-top: -50px;
}

.subtitulo_destaque{
    font-weight: 500;
    letter-spacing: 2px;
}

.btn_banner {
    grid-column: 2;
    grid-row: 3/5;
    max-height: 50px;
    max-width: 320px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border: none;
    border-radius: 10px 0 10px 10px;
    border: 3px solid #1E44AE;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    background: #1E44AE;
    letter-spacing: 1px;
    transition: 0.3s;
    vertical-align: bottom;
}


.btn_banner:hover {
   background-color: #211F5C;
   border: 3px solid #211F5C;
   color: white;
   
}

.triangulo {
    grid-column: 3/6;
    grid-row: 1/5;
    background-color: #1E44AE;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    
}

.foto_banner {
    grid-column: 3/5;
    grid-row: 1/5;
    max-width: 80%;
    justify-self: center;
    align-self: end;
    z-index: 1;
}

/*Conteudo*/

.content {
    grid-area: content;
    background: #EFF4F8; /*quase branco*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-items: center;
}

.modulos {
    grid-column: 1 / 6;
    max-width: 1280px;
    margin-top: 72px;
    padding: 20px;
    display: grid;
}

.modulo_titulo{
  grid-column: 1 / 6;
  justify-self: center;
  text-transform: uppercase;
  font-family: Raleway;
  font-weight: 800;
  font-size: 1.4em;
  color:HSL(200,31%, 14%);
}

.subtitulo_home{
    max-width: 300px;
    margin:5px auto 10px auto;
    padding: 20px;
    
}

.descricao_erp{
    text-align: center;
    font-size: 1.15em;
    line-height: 1.3em;
    margin: 0 30px 0 30px;
    color: HSL(200, 16%, 16%);
}

.solucoes_lista {
    grid-column: 1 / 5;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
}

.caixa1, .caixa2, .caixa3 {
    display: flex;
    flex-wrap: wrap;
    min-width: 260px;
    margin: 30px;
    justify-content: center;
    flex: 1 1 0;
    background: #f9f9f9;
    box-shadow: 0 3px 6px 0 hsla(0, 0%, 0%, 0.2);
    border-radius: 15px 0px 15px 15px;
}

.caixa1 img, .caixa2 img, .caixa3 img{
    max-width: 80px;
    margin-right: 10px;
    color: #4E75E1;
}

.caixa1 a, .caixa2 a, .caixa3 a{
    text-transform: uppercase;
    letter-spacing: 1px;
}

.caixa1 h2, .caixa2 h2, .caixa3 h2 {
    color: #002387 ;
    margin: 0px;
 }

.solucoes_lista h2{
    font-size: 1.3em;
    font-weight: 800;
    line-height: 1.2em;
    text-transform: capitalize;
    align-self:center
}

.solucoes_lista p{
    padding: 10px 25px 10px 25px;
    min-height: 100px;
    font-size: 1.1rem;
    text-align: center;
}

.solucoes_lista div{
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 0;
}

.solucoes_lista a {
    color: #002387;
    font-weight: 500;
    font-size: 0.91em;
    width: 120px;
    text-align: center;
    align-self: flex-end;
    padding: 10px;
    transition: 0.5s;
    animation-direction: reverse;
    border-radius: 0px 0px 15px 0px;
}

.solucoes_lista a:hover {
    width: calc(100%);
    border-radius: 0px 0px 15px 15px;
    background: #002387 ;
    color: white;
}

.btn_azul {
    grid-column: 1 /5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 25px;
    padding: 10px;
    border: 5px solid #002387;
    cursor: pointer;
    margin: 10px 25px 5px;
    min-width: 80px;
    border-radius: 10px 0 10px 10px;
    background-color: #002387;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: white;
    transition: 0.2s 0.1s;
}

.btn_azul:hover {
    border: 5px solid #002387 ;
    transition: 0.4s 0.1s;
    background-color: transparent;
    color: #002387
}

.conteudo_destaque {
    grid-column: 1 / 6;
    background: #DAE5F0;
    margin: 220px 0 200px 0;
    height: 430px;
    display: grid;
    padding: 20px 300px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    align-content: center;
    column-gap: 20px;
}

.imagem_destaque {
    grid-column: 2;
    grid-row: 1/5;
    margin-top: -90px;
/*    border-radius: 50px 0 50px 50px;*/
    width: 95%;
}

.conteudo_destaque h1 {
    grid-column: 1;
    grid-row: 1;
    font-size: 3.3rem !important;
    color: #383838;
    font-size: 3.5rem;
    line-height: 1.1em;
    font-weight: 800;
    text-transform: inherit;
}

.conteudo_destaque p {
    grid-column: 1;
    grid-row: 2;
    color: #383838;
    margin-top: 30px;
    font-size: 1.1rem;
}

.conteudo_destaque ul{
    grid-column: 1 / 3;
    grid-row: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conteudo_destaque ul li img{
    max-width: 75px;
}

.solicite {
    grid-column: 1 / 6;
    display: grid;
    max-width: 1280px;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 20% 50% auto;
    grid-gap: 30px;
    margin-bottom: 150px;
}

.solicite img{
    grid-row: 1 / 4;
    grid-column: 1 / 3;
    align-self: center;
    border-radius: 50px 0 50px 50px;
    max-width: 580px; 
}

.solicite h1 {
    grid-row: 1;
    grid-column: 3;
    font-size: 3.5rem;
    line-height: 0.9em;
    font-weight: 800;
    text-transform: inherit;
    color: #383838;
}

.solicite p {
    grid-row: 2;
    grid-column: 3;
    font-size: 1.1rem;
    line-height: 1.5em;
    margin-top: 40px;
}

.solicite a {
    grid-row: 3;
    grid-column: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background-color: #1E44AE;
    font-size: 1rem;
    font-weight: 500;
    height: 50px;
    border-radius: 10px 0 10px 10px;
    border: 3px solid #1E44AE;
    margin: -20px 0 0 0;
}

.solicite a:hover{
    grid-row:3;
    grid-column: 3; 
    text-transform: uppercase;
    color: #1E44AE;
    background-color: #E4EDEF;
    transition: 0.4s 0.1s;
}

@media (max-width: 1430px) {
    .conteudo_destaque {
       display: flex;
       margin-bottom: 100px;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       padding: 0 50px;
       height: auto;
    }

    .imagem_destaque {
        max-width: 55%;
    }

    .conteudo_destaque h1 {
        text-align: center;
    }

    .conteudo_destaque p {
        text-align: center;
    }

    .conteudo_destaque ul {
        justify-content: space-around;
        margin: 20px 0 20px 0;
    }

    .conteudo_destaque ul li{
        margin: 0 10px;    
    }

    .solicite{
        padding: 0 20px;
    }

 }

@media (max-width: 1198px) {
    .conteudo_banner {
        grid-template-columns: 0.3fr 6fr 2fr 1fr;
        padding-left: 10px;
        margin-top: 0;
    }

    .imagem_destaque {
        max-width: 70%;
    }

    .solicite {
        grid-template-rows: 30% 42% auto;
    }

    .solicite h1 {
       font-size: 3.5rem;
    }

}

@media (max-width: 1100px) {

    .conteudo_banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .titulo_banner {
        text-align: center;
        justify-content: center;
    }

    .subtitulo_banner {
        margin: 40px 40px;
        text-align: center;
    }

    .btn_banner {
        margin: 1px 0 20px 0;
        align-self: center;
        padding: 20px 150px;
        max-width: 580px;
    }

    .foto_banner {
        max-width: 55%;
        margin-top: 46px;
        align-self: center;
        order: 1;
    }

    .triangulo {
        width: 100%;
        height: 30rem;
        align-self: center;
        order: 2;
        margin-top: -480px;
        background-color: #B6C4E0;
    }

    .solucoes_lista h2 {
        font-size: 1.3em;
        margin: 5px;
    }

    .solucoes_lista img {
        max-width: 60px;
    }

    .solucoes_lista div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

  
}

    @media (max-width: 925px) {
        .header nav a {
            padding: 0px;
            margin: 10px 8px 5px 10px;
        }

        .foto_banner {
            max-width: 70%;
        }
        .solicite {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            align-content: center;
            margin-bottom: 10px;
            padding: 0 40px;
        }

        .solicite img {
            max-width: 80%;
        }

        .solicite h1 {
            margin: 5px 10px 5px 10px;
            text-align: center;
        }

        .solicite p {
            text-align: center;
            margin: 0;
            padding: 0;
        }

        .solicite a {
            text-align: center;
            margin: 0 0 30px 0;
            padding: 0 80px;
        }

        .solicite a:hover {
            margin: 0;
            padding: 30px;
        }
    }

    @media (max-width: 725px) {
        .titulo_banner {
            font-size: 4rem;
            margin: 90px 10px 10px 10px;
        }
        .subtitulo_banner{
            margin: 10px 50px;
        }
        .btn_banner{
           align-self:center;
           margin: 10px 0 20px 0;
        }

        .foto_banner{
            max-width: 80%;
        }
        .caixa1, .caixa2, .caixa3 {
            max-width: 550px;
        }

        }

@media (max-width: 545px) {
    .header{
        padding: 5px 15px;
    }
    .logo {
        max-width: 145px;
    }

    .conteudo_banner h1{
        font-size: 2.5rem;
        line-height: 2.8rem;
        margin:125px 3px 35px 3px;
    }
    .foto_banner{
        margin-top:33px;
        max-width: 80%;
    }

    .titulo_banner {
        margin-top: 45px !important;
        margin-bottom: 55px !important;
    }

    .subtitulo_banner{
        margin: 1px 45px 15px 45px;
        line-height: 1.5rem;
        font-size: 1.1rem;
    }

    .btn_banner {
        margin: 15px 0 0 0;
        align-self: center;
        padding: 15px 70px;
        max-width: 400px;
    }

    .caixa1, .caixa2, .caixa3 {
        max-width: 550px;
        margin: 10px 0 30px 0;
    }

    .solucoes_lista p{
        line-height: 1.4rem;
    }
    .btn_azul{
        margin: 0;
        text-align: center;
        letter-spacing: 1px;
        padding: 20px 10px;
    }

    .imagem_destaque {
        max-width: 100%;
    }

    .conteudo_destaque h1 {
        font-size: 2.1rem !important;
        margin-top: 20px;
    }

    .conteudo_destaque {
        padding: 0 20px;
    }

    .conteudo_destaque p{
        margin-top: 20px;
        line-height: 1.4rem;
    }

    .solicite{
        padding: 0 20px;
    }

    .solicite h1 {
        font-size: 2.2rem;
    }

    .solicite img {
      max-width: 90%;
    }

    .solicite a{
      padding: 0 60px;
    }

    .solicite p{
         line-height: 1.4rem;
    }
}

    @media (max-width: 385px) {
        .conteudo_banner h1 {
            font-size: 3.2rem;
            line-height: 3.2rem;
            padding: 10px;
        }
        .btn_banner {
            padding: 20px 40px;
            max-width: 300px;
        }

        .subtitulo_banner {
            font-size: 1.1rem;
            margin: 0 25px 15px 25px; 
        }
      
        .subtitulo_home {
            max-width: 250px;
            margin: 0 auto;
            padding: 10px 0 30px 0;
        }
        .modulo_titulo{
            text-align: center;
        }

        .descricao_erp {
            margin: 0;
        }

        .solucoes_lista p {
            padding: 0 10px 10px 10px;
        }

        .btn_azul {
            margin: 10px;
        }

        .solicite img {
            max-width: 100%;
        }

        .solicite h1 {
  
            font-size: 3.6em;
            margin: 10px 0 0 0;
        }

        .solicite p {
            margin: 0 0 0 0;
            line-height: 1.3em;
        }

    }

    /*Footer*/
.footer {
    grid-area: footer;
    display: flex;
    justify-content: center;
    background: #070761;
    padding: 30px 0 30px 0;
}

    .conteudo_footer {
        max-width: 1280px;
        display: grid;
        padding: 10px 30px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 30px 1fr;
        column-gap: 30px;
    }

    .menu_principal {
        grid-column: 1;
    }

    .menu_principal a {
        color: white;
        font-size: 1em;
        line-height: 2em;
        text-transform: uppercase;
        font-weight: 500;
    }

    .menu_principal a:hover {
        color: #4E75E1;
    }

    .sub_modulos {
        grid-column: 2;
        line-height: 2em;
        color: white;
        text-transform: uppercase;
        font-weight: 500;
    }

    .sub_modulos:hover {
        color: #4E75E1;
    }

    .menu_modulos {
        grid-column: 2;
        display: grid;
        grid-template-columns: 150px 200px;
    }

    .menu_modulos a {
        color: white;
        line-height: 1.5em;
    }

    .menu_modulos a:hover {
        color: #4E75E1;
    }

    .contato_redes {
        grid-column: 5;
        grid-row: 1 / -1;
        text-align: right;
        display: grid;
        grid-template-columns: 300px 35px 1fr;
        justify-content: end;
        color: white;
    }

    .contato_redes h2 {
        grid-column: 1/4;
        font-family: Raleway;
        text-transform: capitalize;
        font-weight: 800;
        color: white;
    }

    .contato_redes p {
        grid-column: 1/4;
        color: white;
    }

        .contato_redes a {
            color: #4E75E1;
            font-weight: 500;
            line-height: 1.5em;
            justify-self: end;
        }

    .contato_redes a:hover {
        color: white;
    }

    .icones_redes {
        display: flex;
        grid-column: 1/ 4;
        justify-content: end;
    }

    .contato_redes img {
        margin-top: 20px;
        max-width: 30px;
    }


    @media (max-width: 787px) {
        .footer {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align:center;
           
        }

        .conteudo_footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .menu_modulos{
            display:flex;
            flex-direction: column;
            text-align: center;
        }

        .contato_redes {
            display: flex;
            flex-direction: column;
            text-align: center;
            align-items: center;
            margin-top: 40px;
        }

        .contato_redes:before {
            display: block;
            content: "";
            max-width: 30px;
            height: 1px;
            background: white;
            margin: 0;
        }

        .contato_redes img {
            max-width: 30px;
        }

        .icones_redes {
            display: flex;
            justify-content: flex-start;
        }
    }


