@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

:root {
--corPrimaria: #266E43;
--corSecundaria: #DAFFED;
--corTexto: #000000;
}

*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins';
}

body{
    background-color: white;
}

.container {
display: flex;
max-width: 1440px !important;
width: 100%;
margin: 0 auto;
padding: 0 2% !important;
justify-content: center;
}


header{
    position: relative;
    background-color: #266E43;
    padding: 15px 0;
}

.header-container{
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 150px;
    margin-right: 35px
}

.menu-desktop {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.menu-mobile {
    display: none;
    position: absolute;
    z-index: 9999;
}

.menu-desktop nav ul {
    margin: 0 20px;
}

.menu-desktop nav ul li {
    display: inline-block;
    padding-right: 20px;
}

.menu-desktop nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 5px;
}

.menu-desktop nav ul li a:hover{
    color: rgb(206, 206, 206);
    transition: color 300ms;
    transition-timing-function: ease-in;
}

.menu-desktop nav ul li button:hover {
    padding: 0 5px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3)
}

/*BANNER */

#banner {
    position: relative;
    width: 100%;
}

.image-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-banner img {
    width: 100%;
    height: 100%;
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 2 !important;  
}

.banner-text {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.banner-text h2 {
    color: white;
    font-size: 30px;
}

.banner-text p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.banner-text button {
    width: 200px;
    background-color: var(--corPrimaria);
    border: 0;
    padding: 5px 10px;
    transition: 1.5s;
    border-radius: 10px;
    cursor: pointer;
}

.banner-text button a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold; 
}

.glider-prev, .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.glider-prev {
    left: 0;
}

.glider-next {
    right: 0;
}

.dots {
    text-align: center;
    margin-top: -30px;
}

.dots button {
    background: #ffffff;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
}

.dots button.active {
    background: #333;
    opacity: 1;
}

/* #banner {
    position: relative;
    width: 100%;
}

.image-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-banner img {
    width: 100%;
    height: 100%;
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 2 !important;  
}

.banner-text{
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.banner-text h2 {
    color: white;
    font-size: 30px;
}

.banner-text p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom:20px;
    color: white;
}

.banner-text button{
    width: 200px;
    background-color: var(--corPrimaria);
    border: 0;
    padding: 5px 10px;
    transition: 1.5s;
    border-radius: 10px;
    cursor: pointer;
}

.banner-text button a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold; 
} */

#solucao {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column !important;
    align-items: center;
}

#solucao .container{
    display: block;
}

.sbr{
    width: 100%;
    margin-top: 30px;
    text-align: center;
    padding-bottom: 20px;
}

.sbr p{
    text-align: justify;
    font-size: 18px;
    padding: 0 20px;
}

.sbr h3{
    font-size: 30px;
    color: var(--corPrimaria);
    margin-bottom: 20px;
}

.sbr video{
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 10px;
    border: 3px solid var(--corPrimaria);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.initialText {
    margin-top: 30px;
    text-align: center;
}

.initialText h3{
    font-size: 30px;
    color: var(--corPrimaria);
    margin-bottom: 20px;
}

.initialText p{
    text-align: justify;
    font-size: 18px;
    padding: 0 20px;
}

.imgFluxo{
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.imgFluxo img{
    width: 100%;
    max-width: 1000px;
    margin-left: 30px;
}



#caracteristicas {
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
}

/* #caracteristicas .container {
    max-width: 1200px;
    margin: 0 auto;
} */

#caracteristicas h3 {
    font-size: 30px;
    color: var(--corPrimaria);
    position: relative;
}

.imgCaracteristicas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--corPrimaria);
}

.iconCaracteristicas{
    cursor: pointer;
}

.imgCaracteristicas .wraperImg {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.imgCaracteristicas .wraperImg p{
    font-size: 18px;
}   

.imgCaracteristicas .wraperImg img {
    max-width: 100%;
}

.cardsCaracterísticas{
    display: none;
    padding: 10px 10px;
    font-size: 18px;
    border: 2px solid var(--corPrimaria);
    border-radius: 10px;
    margin-top: 30px;
}

.cardsCaracterísticas .pCards{
    text-align: justify;
}

.verTelas{
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.verTelas:hover{
    background: transparent;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px;
    text-align: center;
}

.modal .telas {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border: 3px solid var(--corPrimaria);
}

.modal img {
    width: 100%;
    max-width: 1000px;
    border: 2px solid var(--corPrimaria);
    margin-bottom: 20px;
}

.closeBtn {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeBtn:hover,
.closeBtn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*Mosaico */

section.objetivos{
    display: flex;
    text-align: center;
    margin-bottom: 150px;
    flex-direction: column;
    padding-top: 40px;
}

section.objetivos h3{
    color: var(--corPrimaria);
    font-size: 30px;
    margin-bottom: 40px;
}

.containerMosaico{
    display: flex;
    max-width: 1440px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 2% !important;
    justify-content: center;
    flex-direction: column
}

.box-objetivos  {
    width: 100%;
    display: flex;
    border-bottom: 2px solid var(--corPrimaria);
    padding-bottom: 35px;
    margin-bottom: 40px;
}


.item-1-mosaico{
    width: 40%;
}


.item-1-mosaico img{
    width: 100%;
    max-width: 400px;
}

.item-2-mosaico{
    width: 60%;
    padding: 40px;
    display: flex;
    align-items: center;
    text-align: justify;
}

.item-2-mosaico p{

    color: black;
    font-size: 22px;
    padding: 0 20px;
}

/* INTEGRAÇÃO */

.integracao{
    padding-bottom: 40px;
}

.integracao .container{
    width: 100%;
    max-width: 1000px !important;
}

.integracao p{
    text-align: center;
    color: #555555;
}

.workers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--corPrimaria);
}

.wraperWorkes {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid var(--corPrimaria);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    width: 30%;
}

.function {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #266E43;
}

.function p{
    color: var(--corPrimaria);
    font-weight: 600;
}

.function img {
    width: 40px;
    height: 40px;
    margin-right: 20px; 
}

.title {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.list {
    margin: 0;
    padding: 10px 0 0 10px;
    list-style: none;
}

.list ul{
    list-style-type: disc;
    color: var(--corPrimaria);
    font-weight: 500;
}

.list li {
    font-size: 16px;
    margin-bottom: 10px;
}

/*bolg Integração*/

.blogIntegracao{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid var(--corPrimaria);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.blogIntegracao h3{
    color: var(--corPrimaria);
    margin-bottom: 20px;
    font-size: 30px;
}

.blogIntegracao img{
    width: 100%;
    max-width: 1440px !important;
    height: 100%;
    max-height: 600px;
    border-radius: 22px;
    margin-bottom: 30px;
}

.blogIntegracao .videoCont{
    width: 100%;
    display: flex;
    margin-right: 20px;
}

.blogIntegracao video {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    margin: 30px auto;
    border-radius: 10px;
    border: 2px solid var(--corPrimaria);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }

.blogIntegracao p{
    padding: 0 2%;
    font-size: 20px;
    text-align: justify;
}


/*CONTATO*/

.contato {
    width: 100%;
    margin-bottom: 150px;
    text-align: center;
}

.contato h3{
    margin: 40px 0;
    color: var(--corPrimaria);
    font-size: 30px;
}
.boxContato {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.wraperMaps {
    flex: 1;
    margin-right: 20px;
}

.wraperMaps img{
    width: 100%;
    max-width: 600px;
    border: 3px solid var(--corPrimaria);
    border-radius: 10px;
}

.wraperMaps .socialMedia {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center ;
}

.wraperMaps a {
    display: block;
    margin: 15px 8px;
    padding: 5px 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--corPrimaria);
    text-decoration: none;
    border: 3px solid var(--corPrimaria);
    border-radius: 20px;
    transition: 1.5s;
}

.wraperMaps a:hover{
    background-color: var(--corPrimaria);
    color: white;
}

.wraperMaps a i {
    margin-right: 8px;
}

.formpageContato {
    flex: 1;
    display: flex;
    flex-direction: column;
}
form {
    display: flex;
    flex-direction: column;
}
input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 3px solid var(--corPrimaria);
    border-radius: 5px;
    resize: vertical;
    outline: none;
}
.formpageContato form button {
    padding: 10px;
    background-color: var(--corPrimaria);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}


/*SISTEMA*/

.telaBlogSistema{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.wraperBlogSistema{
    width: 100%;
    max-width: 1440px !important;
    padding-bottom: 20px;
    margin-top: 20px    ;
    border-bottom: 2px solid var(--corPrimaria);
    overflow: hidden;
    position: relative;
}

.wraperBlogSistema h3{
    color: var(--corPrimaria);
    margin-bottom: 20px;
    font-size: 30px;
}

.wraperBlogSistema img{
    width: 100%;
}

.wraperBlogSistema p,ul{
    font-size: 20px;
}

.texto{
    width: 100%;
    padding: 0 15px;
}

.texto p{
    font-size: 18px;
    margin: 20px 0;
    padding: 0 20px;
}

.texto ul{
    padding: 0 15px;
    list-style-type: disc;
    
}

.texto ul li{
    padding: 10px 0;
}


/* PARCEIROS */

.logoParceiros {
    margin: 100px;
}

.logoParceiros h3 {
    font-size: 30px;
    color: var(--corPrimaria);
    margin-bottom: 40px;
    text-align: center;
}

.logoParceiros .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logoParceiros .boxImg {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
}

.logoParceiros .boxImg img {
    width: 100%;
    max-width: 300px;
    border: 2px solid var(--corPrimaria);
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s ease;
    margin-bottom: 30px
}

.logoParceiros .boxImg img:hover {
    transform: scale(1.2);
}


    /*FOOTER*/

footer{
    width: 100%;
    background-color: rgba(15, 23, 42);
}

.textFooter{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 2%;
    color: white;
    padding: 20px 0;
}

.textUp{
    margin-bottom: 30px;
}

.pickingUp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
}

.pickingUp p {
    margin-bottom: 10px; 
}

.pickingUp img {
    width: 100%;
    max-width: 137px;
    margin: 5px;    
}

.logosSolucoes img{
    margin-right: 40px;
}

.redes{
    display: flex;
    flex-direction: column;
    margin: 80px 30px 0 30px;
}

.redes img{
    width: 200px;
}

.formContato{
    padding: 0 20px;
    margin-bottom: 30px;
    color: white;
}

.formContato h4{
    margin: 10px 0;
}

.formContato form{
    display: flex;
    flex-direction: column;
}

.formContato form input[type=text]{
    outline: none;
    width: 330px;
    padding: 5px 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 10px;  
}

.formContato form input[type=email]{
    outline: none;
    width: 330px;
    padding: 5px 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 10px;  
}

.formContato form input[type=tel]{
    outline: none;
    width: 330px;
    padding: 5px 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 10px;  
}

.formContato form textarea{
    outline: none;
    width: 330px;
    height: 100px;
    padding: 5px 5px;
    resize: vertical;
    border-radius: 5px;
    border: 0;
    margin-bottom: 10px;  
}

.formContato form button{
    width: 100px;
    border-radius: 5px;
    border: 0;
    font-size: 17px;
    background-color: white;
    transition: 1.5s;
}

.formContato form button:hover{
    background-color: #5b5353;
    border: 1px solid white;
    color: white;
}

.termos {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 10px 0;
}

.termos p,
.termos a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
}

.termos a:hover {
    text-decoration: underline;
}


/* PARCEIROS */

.logoParceiros {
    margin: 80px;
}

.logoParceiros h3 {
    font-size: 30px;
    color: var(--corPrimaria);
    margin-bottom: 40px;
    text-align: center;
}

.logoParceiros .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.logoParceiros .boxImg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.logoParceiros .boxImg img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    border: 2px solid var(--corPrimaria);
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s ease;
}

.logoParceiros .boxImg img:hover {
    transform: scale(1.2);
}



@media screen and (max-width: 1120px) {
    .redes{
        display: none;
    }
}

@media screen and (max-width: 930px){
    .banner-text{
        width: 50%;
    }

    .banner-text p {
        font-size: 16px;    
    }

    .banner-text button{
        width: 160px;
    }

    .banner-text button a{
        font-size: 16px;
    }

    .workers {
        flex-direction: column;
    }

    .wraperWorkes {
        width: 50%;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 830px) {
    .logo {
        margin: 0 auto;
    }
    .menu-desktop {
        display: none;
    }
    .menu-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .menu-mobile ul {
        display: none;
        list-style-type: none;
        margin-top: 64px;
        background-color: var(--corPrimaria);
        z-index: 9999;
    }
    .menu-mobile ul li {
        padding: 5px 0;
        border-bottom: 1px solid white;
        text-align: center;
    }
    .menu-mobile nav ul li a{
        text-decoration: none;
        color: white;
        font-size: 19px;
        font-weight: 500;
        cursor: pointer;
    }
    
    .menu-mobile h3 {
        font-size: 24px;
        display: block;
        color: white;
        position: absolute;
        left: 20px;
        top: 18px;
        cursor: pointer;
    }

    .box-objetivos{
        display: block;
        width: 100%;
        text-align: center;
        overflow: hidden;
        position: relative;
    }

    .item-1-mosaico{
        width: 100%;
    }

    .item-2-mosaico{
        width: 100%;
        padding: 15px;
    }

}

@media screen and (max-width: 770px) {

    .imgCaracteristicas{
        display: block;
        text-align: center;
        width: 100%;
    }

     .imgCaracteristicas .wraperImg {
        width: 100%;
    }
    /*
    .imgCaracteristicas .wraperImg .cardsCaracterísticas {
    } */

    .textUp{
       display: block;
       width: 100%;
       text-align: center;
    }

    .formContato{
        display: none;
    }

    .blogIntegracao .videoCont{
        flex-wrap: wrap;
        flex-direction: column;
    }

    .wraperMaps {
        width: 100%;
    }

    .boxContato{
        display: flex;
        flex-direction: column !important;
    }
}

@media screen and (max-width: 650px){

    
    .banner-text p {
        display: none;
        font-size: 15px;    
    }
    
    .banner-text button{
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .wraperWorkes {
        width: 100%;
        margin-bottom: 30px;
    }

    .termos {
        display: flex;
        flex-direction: column;
    }

    .termos p,
    .termos a {
        margin-top: 20px;
    }

    .logoParceiros {
        margin: 20px;
    }

    .logoParceiros h3 {
        font-size: 18px;
    }

    .logoParceiros .container {
        flex-direction: column;
        align-items: center;
    }

    .logoParceiros .boxImg {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }

    .logoParceiros .boxImg img {
        max-width: 100%;
    }

}

@media screen and (max-width: 450px){

    .wraperMaps .socialMedia {
        display: flex;
        flex-direction: column;
    }
    
}
