@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&display=swap');
div{
    scroll-margin-top:200px;
}

#btnTopo{
    position:fixed;
    right:55px;
    bottom:150px;
    background-color: transparent;
    padding: 0;
    margin: 0;
    width:auto;
    height:auto;
    border:none;
    border-radius:50%;
    cursor:pointer;
    display:none;
    transition:.5s ease;
    z-index: 1000; 
}

#btnTopo svg{
    width: 50px;
    height: 50px;
    color: #fff;
}



#btnTopo:hover{
transform:translateY(-4px);
}


/*Whatsapp fixed*/
.whatsapp-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    animation: pulse-animation 1.5s infinite;
    background-color: #04AA6D;
    color: #ffffff
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.pulse {
    animation: pulse-animation 1.5s infinite;
}






@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #00948dca;
    }

    100% {
        box-shadow: 0 0 0 20px #00000000;
    }
}



*{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    background-color: #000B2E;
    color: #F2F2FF;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4 { font-weight: 600; }
h1 { font-size: clamp(1.5rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.25rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1rem, 3vw, 2rem); font-weight: 400; }
h4 { font-size: clamp(1rem, 2.5vw, 1.5rem); }
p { font-size: clamp(1rem, 2vw, 2rem); font-weight: 200; }

#status{
    color:#C7FF00;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.separador{
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(58, 63, 204, .6),
        transparent
    );
    margin: 12em 0;  
}
.container{
    width: 100%;
    height: auto;
}
.inner-container{
    width: 100%;
    max-width: 1495px;
    position: relative;
}

/* Header */
header{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    padding: 3em 0;
}
.header-logo{
    margin: 0;
    padding: 0;
}
.mobile-btn{
    display: none;
}
.menu-social{
    display: flex;
    gap: 2em;
    margin: 0;

}
.social-header{
    height: 100%;
    display: flex;
    align-items: center;
    gap: .5em;
}
.social-header svg{
    width: 30px;
    height: 30px;
    color:#ffffff;
    transition: 0.3s ease;

}
.social-header a:hover svg{
    color:#C7FF00
}
nav ul{
    height: 100%;
    list-style: none;
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 0;

}
nav ul a{
    text-decoration: none;
    font-size: 1em;
    color: #F2F2FF;
    font-weight: 500;
}
nav ul a:hover{
    color: #C7FF00
}
.overlay{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Safari */
    transition: .3s;
}

.hero-content{
    display: flex;
    height: fit-content;
    align-items: center;
    z-index: 1;
    position: relative;
}
.hero-inner{
    width: 560px;
    display: flex;
    flex-direction: column;
    row-gap: 2em;
    height: fit-content;
}

/* Estilo de todos os botões */
button{
    width: fit-content;
    height: 60px;
    gap: .5em;
    font-size: 2em;
    display: flex;
    background-color: #C7FF00;
    justify-content: center;
    align-items: center;
    margin:0;
    padding: 20px 30px;    
    border:none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}
button:hover{
    opacity: .8;
    transition: .5s all ease-in-out;
}
.hero-inner button span, img{
    margin: 0;
}

/* Texto animado */
.marquee-container{
    width: 100%;
    white-space: nowrap;
    pointer-events: none;
    overflow-x:hidden;
    display: inline-flex;
    gap: 3em;
    top: 50%;
    transform: translateY(-40%);
    z-index: 0;
}
.marquee-text{
    width: max-content;
    display: flex;
    gap: 4em;
    animation: scroll 20s linear infinite;
    will-change: transform;
}
/*
.marquee-text img{
    animation: scroll 2s linear infinite;
      
}*/
@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

/* Features */
.features-container{
    width: 100%;
    /*background-color: rebeccapurple;*/
    padding: 4em 0;

}
.features-text{
    display: flex;
    justify-content: space-between;
}
.features-text h2{
    width: 755px;
    
    margin: 0
}
.features-text p{
    width: 560px;
    font-size: 2em;
    text-align: right;
    margin: 0
}
.features-img-container{
    width: 100%;
    height: 440px;
    margin: 3em 0 0 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.features-img-item{
    width: 440px;
    height: 440px;
    border: 3px solid #3A3FCC;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4em;
}
/* Marketplace/e-commerce */
.platforms{
    width: 100%;
    height: fit-content;
    display: flex;
    /*background-color: rebeccapurple;*/
    padding: 4em 0;
    margin: 4em 0;
    flex-direction: row;
}
.platforms-text{
    width: 790px;
    flex-direction: column;
    display: flex;
    gap: 1.5em;
}
.platforms-imgs{
    width:700px;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}
.platform-row{
    width: 100%;
    height: 50%;
    display: flex;

    column-gap: .5em;
    margin:0;
    padding: 0;
    justify-content: space-evenly;
}
.platforms-item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0;
}
.platforms-item svg{
    width: 130px;
    height: 100%;
}

/* Dados e-commerce */
.data-e{
    width: 100%;
    min-height: 800px;
    background-image: url("/imgs/celular.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 900px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    padding-right: 8%;
}
.data-e-img{
    display: none;
}
.data-e-content{
    width: 728px;
    display: flex;
    flex-direction: column; 
    margin: 0;
    gap: 1em
}
.data-e-content strong{
    color:#C7FF00;
    font-weight: 700;
}
.data-e-content-imgs{
    display: flex;
    gap: 3em;
    margin: 0;
    padding: 2em 0;
}
.d-img{
    width: 137px;
    height: 137px;
    background-color: #3A3FCC;
    border-radius: 20px;
}

/* Nossos parceiros */
.partners{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4em;
    width: 100%;
}
.partners-grid{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 4em;
}
.row-logo{
    display: flex;
    column-gap: 4em;
    flex-wrap: wrap;
}
.partners-logo{
    width: 260px;
    height: 260px;
    /*background-color: #3A3FCC;*/
    border-radius: 20px;
    display: flex;
}

/* Perguntas frequentes */
.faq{
    display: flex;
    flex-direction: column;
    row-gap: 3.5em;
    width: 80%;
}
.faq-inner{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.question-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    row-gap: 2em;
}
.question{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    border: 1px solid #3A3FCC;
    border-radius: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
    margin-top:1em;
    cursor: pointer;
}
.question img{
    transition: transform 0.3s ease;
}
.rotation{
    transform: rotateX(180deg);
}
.question h3{
    margin: 0;
}
.answer{
    width: auto;
    
    flex-direction: column;
    
    padding-left: 2em;
    
    /*display: none;*/
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    display: flex;
    row-gap: 1em;
    


}
.answer.show-answer{

    
    padding-left:2em;
    padding-bottom: 1em;

    row-gap: 2em;
    
    max-height: 500px;
    opacity: 1;
    

}
.answer h4{
    margin: 0;
}
.answer p{
    font-size: 1.25em;
    line-height: 2;
}

/* Contato */
.contact{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    column-gap: 3em;

}
.contact-img{
    width: auto;
    margin: 0;
}
.contact-content{
    width: 727px;
    display: flex;
    flex-direction: column;
    margin: 0;
    justify-content: end;
    row-gap: 2em;
    padding-bottom: 1em;
}
.contact-content p{
    font-size: 1.5em;
}
.contact-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2em;

}
.contact-form input{
    width: 600px;
    height: 70px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #3A3FCC;
    padding: 0 1em;
    font-size: 1.5em;
    color: #F2F2FF;
    margin:0;
}

/* Footer */
footer{
    padding: 10em 0 2em 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer-brand{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2em;
}
.footer-brand img{
    width: 231px;
    height: 141px;
}
.footer-brand h2{
    width: 533px;
    margin: 0
}
.footer-subline{
    width: 100%;
    display: flex;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    padding-top: 4em;
}
.footer-subline p{
    margin: 0;
    font-size: 1.5em;
}
.footer-social{
    margin: 0;
    display: flex;
    gap: 1.25em
}
.footer-social svg{
    width: 35px;
    height: 35px;
    color:#ffffff;
    transition: 0.3s ease;
}

.footer-social a:hover svg{
    color:#C7FF00
}

/* Background */
.bg-header{
    width: 100%;
    background-image: url("/imgs/bg-header.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
}
.bg-middle{
    width: 100%;
    background-image: url("/imgs/bg-middle.png");
    background-position: center -200px;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-middle-2{
    width: 100%;
    background-image: url("/imgs/bg-middle-2.png");
    background-position: 0 -350px;
    background-repeat: no-repeat;
    background-size:cover;
}
.bg-footer{
    width: 100%;
    background-image: url("/imgs/bg-footer.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

/* Mobile daqui pra baixo*/
@media screen and (max-width: 480px){
    .bg-middle{
        background-size: cover;
    }
    /* 480 */
    .whatsapp-button{
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-button svg{
        width: 30px;
        height: 30px;
    }
    /* Mobile */
    #btnTopo{
        right: 37px ;
        bottom: 100px;
    }
    #btnTopo svg{
        width: 35px;
        height: 35px;
    }

    /* Gerais */
    .container{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    button{
        height: 40px;
        font-weight: 400;
        margin:0;
        align-items: center;
        width: fit-content;
        width: fit-content;
        gap: .5em;
        font-size: 1em;
        display: flex;
        background-color: #C7FF00;
        justify-content: center;
        align-items: center;
        border:none;
        border-radius: 50px;
        cursor: pointer;
    }
    button span{
        margin: 0;
        padding: 0;
    }
    button img{
        width: 30px !important;
        height: 29px;
        margin: 0;
        padding: 0;
    }
    .inner-container{
        width: 100%;
        padding: 0 1.5em;
    }

    /* Headers */
    header{
        width: 100%;
        padding-bottom: 1em;
    }
    .header-logo img{
        width: 125px;
        height: 67px;
    }

    .menu-social{
        position: fixed;
        flex-direction: column;
        top:0;
        left:0;
        width: 280px;
        height: 100%;
        padding-top: 80px;
        background-color: #010321;
        transform: translateX(-100%); /* Mudar pra -100%*/
        transition: .3s;
        z-index: 10001;
    }
    .menu-social.open{
        transform: translateX(0%);
    }
    .menu-social nav{
        
        width: 100%;
    }
    .menu-social nav ul{
        display: block;
        text-align: left;
        
        padding: 0 1.5em;
    }
    .menu-social nav ul li{
        padding: .5em 0;
        
    }
    .faq-m{
        display: none;
        margin:0 !important;
        padding:0 !important; 
    }
    .social-header{
        height: auto;
        width: fit-content;
        margin-left: 1.5em;
    }
    .social-header svg{
        height: auto;
    }
    .mobile-btn{
        display: flex;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

    .overlay.show{
        opacity: 1;
        visibility: visible;
    }


    .hero-content{
        flex-direction: column-reverse;
    }
    .hero-content img{
        width: 100%;
    }
    .hero-inner{
        width: 100%;
        row-gap: 1em;
        padding: 0em 0 0 0;
        
    }
    .marquee-container{
        
        transform: translateY(10%);
    }

    /* Backgrounds */
    .bg-header{
        width: 100%;
        background-image: url("/imgs/bg-header-m.jpg");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: auto;
    }
    .bg-middle{
    width: 100%;
    background-image: url("/imgs/bg-middle.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    }

    .bg-middle-2{
        width: 100%;
        background-image: url("/imgs/bg-middle-2-m.png");
        background-position: 0 -140px;
        background-repeat: no-repeat;
        background-size:auto;
    }

    .bg-footer{
        width: 100%;
        background-image: url("/imgs/bg-footer-m.jpg");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: auto;
    }





    /* Features */
    .features-container{
        padding: 1em 0 0 0;
        width: 100%;
        

    }
    .features-text{
        width: 100%;
        flex-direction: column;
        row-gap: 1em;
    }
    .features-text h2{
        width: 100%;
    }
    .features-text p{
        width: 100%;
        font-size: 1.25em;
        text-align: left;
    }

    .features-img-container{
    width: 100%;
    height: auto;
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .features-img-item{
        height: 150px;
        border:none;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding:0;
        margin:0;

    }
    .features-img-item svg{
        width: 100px;
        height: fit-content;
    }


    
    /* Marketplace/E-commerce */
    .platforms{
        width: 100%;
        height: auto;
        flex-direction: column;
        margin: 2em 0;;
        padding:0;
        
    }
    .platforms-text{
        width: 100%;
    }
    .platforms-text h2{
        font-size: 1.25em;
    }
    .platforms-text p{
        font-size: 1.25em;
    }
    .platforms-imgs{
    width:100%;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    margin: 2em 0 0 0;
    padding: 0;
    }
    .platform-row{
    width: 100%;
    height: 50%;
    display: flex;
    column-gap: 2em;
    margin:0;
    padding: 0;


    }
    .platforms-item{
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin:0;
    }
    .platforms-item svg{
        width: 80px;  
        margin: 0;
        padding: 0;  
    }

    .data-e{
        width: 100%;
        min-height: auto;
        background-image: none;
        flex-direction: column;
    
        justify-content: center;
        align-items: center;
        padding: 0;
        row-gap: 1.5em;
        margin: 4em 0 0 0;

    }
    .data-e-img{
        
        width: fit-content;
        display: flex;
        
    }
    .data-e-content{
        width: 100%;
        
    }
    .data-e-content h2, p{
        font-size: 1.25em;
    }
    .data-e-content-imgs{
        display: none;
    }
    .separador{
        margin: 5em 0;
    }

    .partners{
        width: 100%;
    }

    .partners h2{
        font-size: 1.25em;
    }

    .partners-grid{

        display: flex;
        width: 100%;
        row-gap: 1em;
    }

    .row-logo{
        display: flex;
        width: 100%;
        
        gap: 1em;
    }
    .partners-logo{
        width: 120px;
        height: 120px;
    }
    .partners-logo:nth-child(n+4){
        display: none;
    }
    .partners button{
        display: none;
    }

    /* Esconde o segundo separador */
    .bg-middle-2 .inner-container .separador:nth-child(2 of .separador) {
        display:none;
    }

    /*Oculta a seção faq inteira*/
    .faq{
        display: none;
    }
    /* Contato */
    .contact-content{
        width: 100%;
    }
    .contact-content h2{
        font-size: 1.25em;
    }
    .contact-content p{
        font-size: 1em;
    }
    /* Contatos removendo modelo */
    .contact-img{
        display: none;
    }
    .contact-form input{
        width: 100%;
        height: 55px;
        font-size: 1em;
    }
    .footer-brand{
        width: 100%;
        display: flex;
        align-items: center;
        row-gap: -1em;
    }
    .footer-brand img{
        width: 131px;
        height: 70px;
    }
    .footer-brand h2{
        width: 80%;
        font-size: 1.5em;
        text-align: center;
    }
    .footer-subline{
        padding: 2em 0 0 0;
        display: flex;
        justify-content: center;
    }
    .footer-subline p{
        font-size: .8em;
    }
    .footer-social{
        display: none;
    }
}

/* Mobile daqui pra cima*/
@media screen and (min-width: 481px){
    .features-text p{
        font-size: 1em;
    }
    .platforms-imgs{
        width: 100%;
        flex-wrap: wrap;
    }
    .platforms-item{
        width: 20%;
    }

    .bg-header{
        background-size: auto;
    }
    .hero-content{
        flex-direction: column-reverse;
    }
    .hero-img img{
        width: 100%;
    }
    .platforms{
        flex-direction: column;
    }

    .contact-img{
        display: none;
    }
}

/* Tablet-Desktop daqui pra cima (1368)*/
@media screen and (min-width: 769px){

    /* Globais */
    h1{
        font-size: 2.5rem;
        font-weight: 600;
    }
    h2{
        font-size: 2em;
        font-weight: 600;
    }
    h3{
        font-size: 1.5em;
        font-weight: 400;
    }
    h4{
        font-size: 1.25em;
        font-weight: 600;
    }
    p{
        font-size: 1.5rem;
        font-weight: 200;
    }
    button{
        font-size: 1.5em;
    }

    /* Mobile */
    #btnTopo{
        right: 38px;
        bottom: 120px;
    }

    /* Features */
    .features-text h2{
        width: 50%;
    }
    .features-text p{
        width: 40%;
        font-size: 1.75em;
    }
    .features-img-container{
        padding: 2em 0 0 0;

        justify-content: space-between;
    }
    .features-img-item{
        width: 300px;
        height: 300px;
        border: none;
        padding: 0;
        margin: 0;
    }

    .container{
        width: 100%;
    }
    .hero-content{
        flex-direction: row;
    }
    .bg-header{
        background-position: center -100px;
    }

    /* Regula resolução total */
    .inner-container{
        max-width: 1100px;
        
    }
    .hero-content{
        flex-direction: row;
    }
    .hero-img{
        width: 65%;
    }
    .hero-img img{
        width: 100%;
    }

    /* Marketplaces */
    .platforms{
        flex-direction: row;
        align-items: center;
        
    }

    .platforms-imgs{
        width: 100%;
        max-width: 500px;
        flex-wrap: nowrap;
     
    }
    .platform-row{
        justify-content: space-between;
    }
    .platforms-item{
        width: 23%;
    }
    .platforms-item svg{
        width: 100%;
    }
    .contact-img{
        display: none;
    }

    /* Data E-commerce */
    .data-e-img{
        display: block;
    }
    .data-e{
        display: flex;
        background-image: none;
        min-height: fit-content;
        align-items: center;

        
        padding: 0;
        

    }
    .data-e-img{
        width: 45%;
        
    }
    .data-e-img img{
        width: 100%;
    }
    .data-e-content{
        height: 100%;
        width: 55%;
    }

    /* Partners*/
    .partners h2{
        text-align: center;
    }
    .partners-logo{
        width: 220px;
        height: 220px;
        padding: 0;
        margin: 0;
    }

    /* Contato */
    .contact-form input{
        max-width: 600px;
        width: 100%;
    }
}

/* Desktop daqui pra cima (1920)*/
@media screen and (min-width: 1369px){
    /* 1368 - 1920 */
    .whatsapp-button{
        bottom: 50px;
        right: 50px;
        width: 60px;
        height: 60px;
    }

    /* Mobile */
    #btnTopo{
        right: 54px ;
        bottom: 150px;
    }
    
    /*Globais*/
    h1{
        font-size: 2.75rem;
    }
    h2{
        font-size: 2.25em;
    }
    h3{
        font-size: 2em;
    }
    h4{
        font-size: 1.5em;
    }
    p{
        font-size: 2rem;
    }
    button{
        font-size: 2em;
    }
    .inner-container{
        max-width: 1495px;
    }

    /* Menu itens */
    nav ul a{
        font-size: 1.25em;
    }
    .social-header{
        gap: 1em;
    }
    .social-header svg{
        width: 35px;
        height: 35px;
    }

    /* Features */
    .features-text{
        display: flex;
        justify-content: space-between;
    }
    .features-text p{
        width: 560px;
        font-size: 2em;
    }
    .features-img-container{
        justify-content: space-between;
    }
    .features-img-item{
        width: 440px;
        height: 440px;
        border: 3px solid #3A3FCC;
        padding: 4em;
    }

    /* Marketplace/e-commerce */
    .platforms-imgs{
        max-width: 700px;
        row-gap: 1em;
        padding: 0;
        margin: 0;
    }
    .platforms-item{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin:0;
    }
    .platforms-item svg{
        width: 130px;
        height: 100%;
    }

    /* Nossos parceiros */
    .partners{
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 0;
        width: 100%;
    }
    .partners-grid{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 0;
        padding: 5em 0 0 0
    }
    .row-logo{
        display: flex;
        column-gap: 4em;
        flex-wrap: wrap;
    }
    .partners-logo{
        width: 260px;
        height: 260px;
        /*background-color: #3A3FCC;*/
        border-radius: 20px;
        display: flex;
    }

    /* Contato */
    .contact{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        column-gap: 3em;

    }
    .contact-img{
        width: auto;
        margin: 0;
    }
    .contact-content{
        width: 100%;
        max-width: 727px;
        display: flex;
        flex-direction: column;
        margin: 0;
        justify-content: end;
        row-gap: 2em;
        padding-bottom: 1em;
    }
    .contact-content p{
        font-size: 1.5em;
    }
    .contact-form{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 2em;

    }
    .contact-form input{
        max-width: 100%;
        width: 100%;
        height: 70px;
        border-radius: 10px;
        background-color: transparent;
        border: 1px solid #3A3FCC;
        padding: 0 1em;
        font-size: 1.5em;
        color: #F2F2FF;
        margin:0;
    }
    .contact-img{
        display: block;
    }

    /* Footer */
    .footer-social svg{
        width: 45px;
        height: 45px;
    }
}

/* Desktops maiores daqui pra cima (2k)*/
@media screen and (min-width: 2559px) {
    /*Globais*/
    h1{
        font-size: 3.75rem;
    }
    h2{
        font-size: 3.25em;
    }
    h3{
        font-size: 3em;
    }
    h4{
        font-size: 2.5em;
    }
    p{
        font-size: 3rem;
    }
    button{
        font-size: 3em;
        padding:1em
    }

    .inner-container{
        max-width: 1920px;
    }
    .hero-inner{
        width: 50%;
    }
    .hero-img{
        width: 50%;
    }
    /* Backgrounds */
    .bg-header, .bg-middle, .bg-middle-2, .bg-footer {
        background-size: cover;
    }
    .bg-header{
        background-position: center -200px;
    }
    .bg-middle{
        background-position: center -300px;
    }

    /* Features */
    .features-text h2{
        width: 50%;
    }
    .features-text p{
        width: 50%;
        font-size: 3em;
    }
    .features-img-container{
        height: 100%;
        padding-top: 2em;
        justify-content: space-between;
    }
    .features-img-item{
        width: 540px;
        height: 540px;
        border: 3px solid #3A3FCC;
        padding: 4em;
    }

    /* Marketplace/e-commerce */
    .platforms{
        column-gap: 2em;
    }
    .platforms-text{
        width: 50%;
        row-gap: 2em;

    }
    .platforms-imgs{
        max-width: 50%;

        row-gap: 1em;
        padding: 0;
        margin: 0;
    }
    .platforms-item{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin:0;
    }
    .platforms-item svg{
        width: 230px;
        height: 100%;
    }

    /* Nossos parceiros */
    .partners{
        row-gap: 0;
        width: 100%;
    }
    .partners-grid{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 4em;
        padding: 7em 0 0 0;
    }
    .row-logo{
        width: 100%;
        justify-content: space-between;
    }
    .partners-logo{
        width: 360px;
        height: 360px;
    }

    /* Contato */
    .contact{
        width: 100%;
        max-width: 1920px;
        height: auto;
        display: flex;
        justify-content: space-between;
        column-gap: 1em;
        align-items: center;

    }
    .contact-img{
        width: 50%;
        margin: 0;
    }
    .contact-img img{
        width:80%
    }   
    .contact-content{
        max-width: 50%;

        
        display: flex;
        flex-direction: column;
        margin: 0;
        justify-content: end;
        row-gap: 2em;
        padding-bottom: 1em;
    }
    .contact-content p{
        font-size: 2em;
    }
    .contact-form{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 3em;

    }
    .contact-form input{

        height: 90px;
        border-radius: 10px;
        background-color: transparent;
        border: 1px solid #3A3FCC;
        padding: 1em;
        font-size: 2.5em;
        color: #F2F2FF;
        margin:0;
    }

    /* Faq */
    .faq{
        width: 100%;
    }
    .question-container{
        width: 100%;
        max-width: 1920px;
        row-gap: 3em;
    }
    .question{
        height: auto;
        padding: 2em 2em
    }
    .answer{
        font-size: 2em;
        padding: 0 2em;
    }
}

/* Desktops maiores daqui pra cima (acima de 2k (4k)) */
@media screen and (min-width: 2561px) {
    .bg-header{
        background-position: center -600px;
    }
    .bg-middle{
        background-image: none;
    }
    .bg-middle-2{
        background-image: none;
    }
    .bg-footer{
        background-position: center 300px;
    }
}
