@charset "UTF-8";

/* media queries*/

:root {
    --primary: #4A4A4A; /*#191970*/
    --secondary: #0088CC;
    --tertiary: #FFFFFF;
    --quaternary: #25D366; /*#00FFFF*/
    --quintary: #E5E5E5;
    
}

:root {
    --font-primary: sans-serif;

    --font-texto: Nunito, sans-serif;
    --font-titulo: Asap, sans-serif;
    --font-destaque: Yellowtail, serif;
} 

* {
    font-size: 100%;
} 


@media (max-width: 1024px) {

    *{
        font-size: 90%;
    }

    /*header*/

    main header .banner h1 {
        font-size: 2rem;
    }

    /*Funcionalidades*/
    main .funcional #idioma {
        font-size: 0.9rem;
    }



    /*Produtos*/

    main div.produtos div.bloco div.card div.card-titulo h3{
        font-size: 1.1rem;
    }
    main div.produtos .bloco .card-informs h3{
        font-size: 0.9rem;
    }
    main div.produtos .bloco .card-btn {
        font-size: 1rem;
    }


    /*Nav footer*/

    main .nav_2 {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {

    * {
        font-size: 70%;
    }


    /*Menu Desativar*/

    main nav.nav_1 ul li{
        display: none;
    }

    /*Side Bar View*/

    .hamburguer {
        position: fixed;
        width: 2.5rem;
        height: 3rem;
    
        z-index: 20;

        top: 0.5rem;

        /*top: 1rem;*/
        right: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        cursor: pointer;
        transition: all 0.7s;
    }
    .show-menu .hamburguer {
        right: 62%;
        /*top: 1rem;*/
        transition: all 1.2s;
    }
    
    .line {
        width: 100%;
        height: 0.2rem;
        background-color: var(--quintary);
        /*box-shadow: 0.1rem 0.1rem 1px var(--tertiary);*/
        transition: transform 1s;
    
    }

    
    .show-menu #line1 {
        transform: rotate(45deg) translate(.3rem, 1.0rem);
    }
    .show-menu #line2 {
        opacity: 0;
        visibility: hidden;
    }
    .show-menu #line3 {
        transform: rotate(-45deg) translate(.1rem, -.8rem);
    }
    
    
    /*sidebar*/
    /*
    div.popup-wrapper-sidebar{
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 15;
       
    }*/
    
    .sidebar {
        display: flex;
        flex-direction: column;

        width: 73%;
        height: 100vh;
        background-color: var(--primary);
        position: fixed;
        top: 0;
        right: -50rem;
        transition: all 1s;
        z-index: 15;
        box-shadow: 1px 1px 3px #000;
    }
    .show-menu .sidebar {
        right: 0;
    }
    
    main .sidebar div.img-wrapper {
        width: 7rem;
        position: relative;
        top: 5%;
        left: 3.7rem;

    } 

    main .sidebar .img-wrapper img{
        width: 100%;

    }



    main .sidebar nav .menu {
        position: relative;
        top: 60%;
        left: 0rem;
        list-style: none;
        /*transform: translate(-50%, -50%);*/
    }
    
    main .sidebar nav li.menu-item {
        text-decoration: none;
        
        
    }
    
    main .sidebar nav ul li.menu-item a.menu-link {
        text-decoration: none;
        position: relative;
        
        font-size: 1.5rem;

        color: var(--quintary);
        transition: color 1s;

        
        
    }
    main .sidebar nav li a.menu-link:hover {

        color: var(--secondary);
    }
    

    /*
    .social-media {
        font-size: 5rem;
    }
    
    .social-media i {
        background-color: var(--secondary);
        color: var(--quaternary);
        
        transition: background-color 1s;
    }
    
    .social-media i:hover {
        background-color: var(--secundary);
    }
    */

    main .social-media {
        display: flex;
        flex-direction: column;

        position: relative;
        top: 10%;
    }



    main .sidebar .social-media a {
        font-size: 1.5rem;
        color: var(--tertiary);
    }
    main .sidebar .social-media a .btn {
        padding: 0rem .7rem 0rem 0.7rem;
        border-radius: 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        height: 3rem;
        border: none;
        box-shadow: 0px 0.5px 2px #000;
        margin: 0.5rem 1rem 1rem 3.7rem;


    
    }
    main .sidebar .social-media a .btn-whatsapp {
        background-color: var(--quaternary);
        color: var(--tertiary);
        cursor: pointer;

        width: 13rem;

        margin-top: 2.5rem;

    }
    main .sidebar .social-media a .btn-telegram {
        background-color: var(--secondary);
        color: var(--tertiary);
        position: relative;
        padding: 0rem 1.1rem 0rem 1.1rem;
        cursor: pointer;

        width: 13rem;
    }
    
    
    main .sidebar .social-media a i{
        font-size: 1.3rem;
        padding: 0rem 0.2rem 0rem 0rem;
        
    }




























    .content{ 
        /*
        height: 520px;
        width: 935px;
        */
        position: fixed;
        height: 75%;
        width: 100%;

        border-radius: 20px;
        overflow: hidden;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /*background-color: var(--primary);*/
        
    }
    
    .content .navigation {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%);
        display: flex;
    }
    
    .content .bar {
        position: relative;
        width: 24px;
        height: 24px;
        border: 2px solid hsl(0, 100%, 48%);
        margin: 14px;
        margin-bottom: 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: .4s;
    }
    .content .bar {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--tertiary);
        color: #F40000;
        font-size: 1.3rem;
    }
    
    .content .bar:hover {
        margin-top: 13px;
        width: 28px;
        height: 28px;
        background-color: #F40000;
        color: var(--tertiary);
        border: 2px solid var(--tertiary);
    }
    
    .content input {
        display: none;
    }
    
    .content .slides {
        display: flex;
        width: 400%;
        height: 100%;
    }
    
    .content .slide {
        width: 25%;
        transition: 1.4s;
    }
    
    .content .slide img {
        /*
        width: 100%;
        height: 100%;
        */
        margin: 20px auto 0px 15%;
        max-width: 248px;
    }
    
    #slide1:checked ~ .s1 {
        margin-left: 0;
    }
    #slide2:checked ~ .s1 {
        margin-left: -25%;
    }
    #slide3:checked ~ .s1 {
        margin-left: -50%;
    }
    #slide4:checked ~ .s1 {
        margin-left: -75%;
    }

    /*
    #slide5:checked ~ .s1 {
        margin-left: -80%;
    }*/
    





















    




    /*Milink na Mídia*/

    .wrapper-popup-conteudo {
        display: none;
    }


















    /*header*/

    header {
        height: 18rem;
    }

    main header .banner h1 {
        font-size: 1.4rem;
        font-weight: normal;
        max-width: 70%;
    }

    header .banner{
        position: absolute;
        top: 6rem;
        left: 5%;
        z-index: 2;
        max-width: 100%;

        display: flex;
        flex-direction: column;
    }

    .banner .btn {
        width: 14rem;
        height: 2.5rem;
        margin: 0;
    }
    .banner .btn-whatsapp {
        font-size: 1.3rem;
    }
    .banner .btn-telegram {
        font-size: 1.3rem;
        left: 0;
        top: 1rem;
    }
    .banner i {
        font-size: 1.6rem;
        position: relative;
        right: 0.3rem;
    }





    /*Funcionalidades*/
    main .funcional #idioma {
        font-size: 0.9rem;
    }






    /*Soluções*/

    main#container div.solucoes h2 {
        width: 70%;
        font-weight: 500;
        font-size: 1.3rem;
    }

    main#container div.solucoes h3 {
        font-size: 1.5rem;
        margin-top: 4rem;
    }

    main#container div.solucoes div.painel-solucoes {
        margin-top: 0rem;
        margin-bottom: 3rem;
        width: 90%;
    }
    main#container div.solucoes div.painel-solucoes div.elemento {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        width: 10rem;
        margin-top: 2rem;
        /* box-shadow: 0.2rem 0.2rem #4a4a4a; */
    }

    main#container div.solucoes div.painel-solucoes div.elemento div{
        
        height: 6rem;
        width: 2.5rem;
        /*box-shadow: 0.2rem 0.2rem #4A4A4A;*/
        margin: 0;
    }

    main#container div.solucoes div.painel-solucoes div.elemento h4{
        font-size: 1rem;
    }





    /*Produtos*/

    div.produtos div.prod-1 {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    div.produtos div.bloco {

        width: 17.50%;
        width: 16rem;
        max-width: 40%;
        height: 23rem;
        margin: 1rem;
        /*box-shadow: 0.1rem 0.1rem white;*/
        box-shadow: 1px 15px 6px rgba(0, 0, 0, 0.4);
    }

    main div.produtos div.bloco div.card div.card-titulo h3{
        font-size: 1rem;
        text-align: center;
        max-width: 70%;
    }
    main div.produtos .bloco .card-informs h3{
        font-size: .9rem;
        text-align: justify;
        max-width: 90%;
    }
    main div.produtos .bloco .card-btn {
        font-size: 1.5rem;
    }


    .popup a {
        color: var(--tertiary);
        text-decoration: underline;
        cursor: pointer;
        font-size: 1.2rem;
        text-align: left;
    }



    button.card-btn {
        display: block;
    }

    .popup-wrapper {
        display: none;
        background-color: rgba(0, 0, 0, 0.0);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        
    }
    .popup {
        font-family: arial;
        text-align: center;
        width: 65%;
        max-width: 65%;
        margin: 40% auto;
        padding: 20px;
        background-color: var(--primary);
        position: relative;
    }

    


    
.popup-wrapper-clientes {
    display: none;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.popup-clientes {
    font-family: arial;
    text-align: center;
    width: 100%;
    height: 87%;
    max-width: 80%;
    margin: 10% auto;
    padding: 20px;
    background-color: var(--primary);
    position: relative;

    box-shadow: 1px 1px 3px #000;
    overflow-y: scroll;
    
}

.popup-clientes h5{ 
    margin: 1rem 0rem 0rem 0rem;
    z-index: 100;
    color: var(--tertiary);
    text-align: left;
    font-size: 1.4rem;
}

.popup-clientes div {
    display: flex;
    flex-direction: row;
    
}
.popup-clientes div div{
    max-width: 50%;
    margin-top: 2rem;
}
.popup-clientes div p{
    margin: 0rem 2rem 0.5rem 0rem;
    color: var(--tertiary);
    font-size: 0.95rem;
    text-align: left;
    
}


/*
    div.produtos div.bloco div.card div.card-btn {
        display: none;
    }
    div.produtos div.bloco div.card div.card-btn h3 {
        display: none;
    }
*/


    /*Clientes*/


    div.clientes div.bloco-cliente {
        width: 99%;
    }

    div.clientes div.bloco-marca {
        width: 40%;
        height: 14rem;

        margin: 1.0rem;
    }

    div.clientes div.bloco-marca img {
        width: 80%;
    }
        



    /*Nav footer*/

    .footer nav.nav_2{
        width: 100%;
        max-width: 30%;
    }
    
    .footer nav.nav_2 ul.lista {
        list-style: none;
        margin-top: 0rem;
    
    }
    .footer nav.nav_2 ul.lista li.link {
        margin: 1.5rem 0rem 0rem 0.5rem;
        font-size: 1.2rem;
    }
    







    footer div.contato div.break {
        flex-basis: 100%;
        width: 0;
    }


    footer div.contato button.btn {
        background-color: var(--secondary);
        color: var(--tertiary);
        border: none;
        border-radius: 25rem;
        font-size: 1.2rem;
        font-weight: bold;
        width: 8rem;
        height: 2rem;
    }


    /*Formulário Footer*/
    
    footer div.contato div.input-group .field {
        border: none;
        max-width: 15rem;
        
        border-radius: 10px;
        margin-bottom: 0.8rem;
    
        padding: 0.1rem 0.1rem 0.1rem 0.4rem;
    }
    
    footer div.contato div.input-group #mensagem{
        max-width: 15rem;
        
    }



}
