.header{
    width:100%;
    position:sticky;
    top:0;
    left:0;
    z-index:1000;
    background: var(--color900);
    color: var(--standardWhite);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.headBar{
    width: 96%;
    margin:auto;
    padding:1.8rem 2.4rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    height:45px;
}

.navList{
    display:flex;
    gap:4rem;
    list-style:none;
    font-size: 4rem;
}

.navListItem a{
    color: var(--standardWhite);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navListItem a:hover{
    border-bottom: 2px solid var(--mainPurple);
}

.hamburger{
    display:none;
    width:4rem;
    height:4rem;
    border:none;
    background:none;
    cursor:pointer;
    padding:0;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:0.6rem;
}

.hamburger span{
    width:2.8rem;
    height:0.3rem;
    background: var(--color900);
    border-radius:1rem;
    transition:.3s;
}

.heroBanner{
    background-color: var(--color900);
    position: relative;
    overflow: hidden;
    min-height: 20rem;
}

.heroBanner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.heroBannerContent{
    position: absolute;
    left: 6%;
    top: 20%;
    z-index: 2;
    max-width: 50%;
}

.heroBannerTitle{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--standardWhite);
    font-size: clamp(1rem, 3.5dvw, 5rem);   
}

.heroBannerTitle span{
    font-size: clamp(1rem, 3.5dvw, 5rem);
    color: var(--mainPurple);
}

.heroBannerImg{
    width: 100%;
    height: 100%;
}

.heroBannerImg img{
    display: block;
    width: 65%;
    margin-left: auto;
}

.heroButtons{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.mainButton, .secondaryButton{
    min-width: fit-content;
    font-size: clamp(1rem, 3dvw, 1.6rem);
    padding: clamp(1rem, 2dvw, 2rem) clamp(2rem, 2dvw, 3rem);
    color: var(--standardWhite);
    background-color: var(--mainPurple);
    border: none;
    border-radius: 0.4rem;
    margin: 2rem 1rem;
    text-decoration: none;
}

.mainButton:hover, .secondaryButton:hover{
    background-color: var(--secondPurple);
}

.solutionSection{
    padding: 3rem 0;
    background-color: var(--color900);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solutionTitle{
    color: var(--standardWhite);
    margin: 3rem;
    font-size: 3rem;
    text-align: center;
}

.solutionListHolder{
    color: var(--standardWhite);
}

.solutionList{
    width: 98%;
    margin: auto;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.solutionItem{
    width: 25%;
    max-width: 35rem;
    text-align: center;
    border: 2px solid var(--standardWhite);
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--color800);
}

.itemTitle{
    font-size: 2rem;
    margin: 1rem 0.6rem;
}

.itemtext{
    font-size: clamp(1.2rem, 3dvw, 1.6rem);
    color: var(--color600)
}

.aboutUs{
    padding: 2rem 0;
    background-color: var(--color900);
    position: relative;
    overflow: hidden;
}

.aboutUsHolder{
    max-width: 128rem;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.aboutUsBanner{
    width: 50%;
    flex-shrink: 0;
}

.aboutUsBanner img{
    width: 100%;
}

.aboutUsContent{
    color: var(--standardWhite);
    padding: 2rem;
}


.aboutUsTitle{
    font-size: 2rem;
    color: var(--mainPurple);
    margin: 2rem auto;
}

.aboutUsSubtitle{
    font-size: clamp(2.6rem, 3dvw, 4rem);
}

.aboutUsText{
    font-size: clamp(1.4rem, 2dvw, 2rem);
    margin: 2rem auto;
}

.buttonHolder{
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 90%;
    margin: auto;
}

.aboutUsButton{
    text-decoration: none;
    color: var(--mainPurple);
    border: 2px solid var(--mainPurple);
    border-radius: 0.8rem;
    min-width: fit-content;
    font-size: clamp(1rem, 2.5dvw, 1.6rem);
    padding: clamp(1rem, 2dvw, 2rem) clamp(2rem, 2dvw, 3rem);
    background-color: transparent;
    transition: 0.2s;
}

.aboutUsButton:hover{
    background-color: var(--mainPurple);
    color: var(--color900);
}

.contact{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
    45deg,
    var(--secondPurple) 0%,
    var(--color900) 12%,
    var(--color900) 50%,
    var(--color900) 88%,
    var(--mainPurple) 100% );
}

.contactHolder{
    max-width: 80rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.contactContent{
    width: 50%;
}

.contactTitle{
    color: var(--standardWhite);
    font-size: 3rem;
    text-align: center;
    margin: 2rem auto;
}

.contactText{
    color: var(--color500);
    font-size: 1.6rem;
    text-align: center;
    margin: 2rem auto;
}

.ourProjects{
    background-color: var(--color900);
    color: var(--standardWhite);
    padding: 3rem;
}

.ourProjectsHolder{
    max-width: 128rem;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.ourProjectsTitle{
    font-size: 3rem;
}

.ourProjectsDescription{
    font-size: 1.6rem;
    color: var(--color500);
    margin: 1.4rem auto;
}

/*carrossel*/

.ourProjectsSlider {
    position: relative;
    width: 100%;
    max-width: 60rem;
    margin: 4rem auto 0;
    flex-shrink: 0;
}

.ourProjectsCards {
    position:relative;
    width:100%;
    height: 300px;
}

.projectCard{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:22px;
    background:#13162B;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 40px rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    transform:
        perspective(1200px)
        translateX(80px)
        rotateY(8deg)
        scale(.96);
    transition:
        transform .7s cubic-bezier(.22,.61,.36,1),
        opacity .7s,
        visibility .7s;
}

.projectCard.active{
    opacity:1;
    visibility:visible;
    transform:
        perspective(1200px)
        translateX(0)
        rotateY(0)
        scale(1);
    z-index:2;
}

.projectDetails{
    width:38%;
    height:100%;
    padding: 1rem 0 0 1rem;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background:
        linear-gradient(
            180deg,
            #171B35,
            #111426
        );
         opacity:0;
    transform:translateX(-30px);
    transition:
        transform .6s ease .2s,
        opacity .6s ease .2s;
}

.projectCard.active .projectDetails{
    opacity:1;
    transform:translateX(0);
}

.projectCategory{
    display:inline-flex;
    width:max-content;
    padding:6px 14px;
    border-radius:999px;
    background:rgba(122,95,255,.15);
    color:#8D7CFF;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:18px;

}

.projectTitle{
    color:#FFF;
    font-size:2.6rem;
    line-height:1.1;
    margin-bottom:20px;
}

.projectDescription{
    color:#B9BED4;
    line-height:1.2;
    margin-bottom:35px;
    text-align: center;
    font-size: 1rem;
}

.projectTechs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:35px;
}

.projectTechs span{
    padding:8px 15px;
    border-radius:50px;
    background:#1E2340;
    color:#EAEAEA;
    font-size:.9rem;
}

.projectImage{
    width:62%;
    height:100%;
    padding:25px;
}

.projectImage img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    transform:scale(1.12);
    transition:
        transform 1s ease;
}

.projectCard.active .projectImage img{
    transform:scale(1);
}

/* Botões */

.sliderButton {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#ffffff3d;
    font-size:2rem;
    z-index:10;
}

.sliderButton:hover {
    scale:1.1;
}

.prev {
    left:-30px;
}

.next {
    right:-30px;
}

.footer {
    border-top: 1px solid var(--color700);
    background-color: var(--color900);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0.5rem;
}

.footerBoxA{
    width: 25%;
    padding: 1rem;
}

.footerLogo{
    width: 30%;
    min-width: 10rem;
    margin: auto;
}

.footerLogo img{
    display: block;
    width: 100%;
}

.footerText{
    max-width: 45rem;
    margin: 1rem auto;
    color: var(--color500);
    text-align: center;
    font-size: 1.8rem;
}

.logosList{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    margin: auto;
}

.logosItem{
    max-width: 2rem;
}

.logosItem img{
    width: 100%;
}

.FooterBigBox{
    width: 40%;
    max-width: 45rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footerTitle{
    color: var(--color500);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 2rem auto;
}

.footerList{
    list-style: none;
    color: var(--color500);
    font-size: 1.2rem;
}

.footerItem{
    margin: 1rem 0;
}

.footerItem a{
    text-decoration: none;
    color: var(--color500);
    font-size: 1.2rem;
}

.footerBoxB:nth-child(2){
    text-align: end;
}

.footerLastTitle{
    color: var(--color500);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 3rem auto;
    text-align: center;
}

.footerItem div{
    margin: auto;
    display: flex;
    gap: 1rem;
    flex-direction: row;
}

.footerItem img{
    width: 2rem;
}

.footerItem p{
    font-size: 1.2rem;
}

.miniFooter{
    background-color: var(--color900);
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--color700);
    color: var(--color500);
    padding: 2rem;
    font-size: 1.8rem;
}



/*<!---------------------- MOBILE ----------------------->*/

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .hamburger span{
        background-color: var(--standardWhite);
    }

    .headNav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background: var(--standardWhite);
        max-height:0;
        overflow:hidden;
        transition:max-height .35s ease;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
    }

    .headNav.active{
        max-height: 100rem;
    }

    .navList{
        background-color: var(--color900);
        flex-direction:column;
        gap:0;
        padding:1.6rem 0;
    }

    .navListItem{
        width:100%;
    }

    .navListItem a{
        display:block;
        padding:1.6rem 2.4rem;
    }

    .hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:translateY(-9px) rotate(-45deg);
    }

    .heroBannerContent{
        text-align: center;
        max-width: 100%;
        top: 25%;
        left: 0;
    }

    .heroBannerTitle{
        max-width: 100%;
    }

    .heroBannerTitle span{
        font-size: clamp(1rem, 3.5dvw, 5rem);
        color: var(--mainPurple);
    }

    .heroButtons{
        justify-content: center;
    }

    .heroBannerImg{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .heroBannerImg img{
        display: block;
        width: 100%;
    }

    .heroBanner::before{
        background: rgba(0, 0, 0, .5);
    }

    .solutionList{
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 3rem;
    }

    .solutionItem{
        width: 80%;
        margin: auto;
        max-width: 40rem;
    }

    .itemIcon{
        width: 40%;
        margin: auto;
    }

    .itemIcon img{
        width: 100%;
    }

    .aboutUsHolder::before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 1;
    }

    .aboutUsBanner{
        width: 100%;
    }

    .aboutUsBanner img{
        width: 100%;
    }

    .aboutUsContent{
        padding: 0;
        position: absolute;
        top: 15%;
        left: 5%;
    }

    .aboutUsTitle{
        position: relative;
        font-size: 1.4rem;
        z-index: 2;
        color: var(--mainPurple);
        margin: 0 0 2rem;
    }

    .aboutUsSubtitle{
        margin: auto;
        font-size: clamp(2rem, 6.5dvw, 4rem);
        position: relative;
        z-index: 2;
        max-width: 90%;
        white-space: nowrap;
    }

    .aboutUsText{
        color: var(--color500);
        margin: calc(4dvw) auto;
        position: relative;
        z-index: 2;
        font-size: clamp(1rem, 3dvw, 2rem);
        width: 90%;
    }

    .aboutUsButton{
        position: relative;
        z-index: 2;
    }

    .contactHolder{
        max-width: 50rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contactContent{
        width: 96%;
    }

    .ContactbuttonHolder{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .ourProjectsContent{
        text-align: center;
        margin: 0;
    }
    
    .ourProjectsHolder{
        flex-direction: column;
        gap: 0;
    }

    .ourProjectsSlider {
    width: 100%;
    max-width: 100%;
    }

    .ourProjectsCards {
        height: auto;
        max-width: 40rem;
        margin: auto;
        min-height: 450px;
    }

    .projectCard {
        position: absolute;
        flex-direction: column;
        height: auto;
        min-height: 450px;
        border-radius: 18px;
    }

    .projectDetails {
        width: 100%;
        height: auto;
        padding: 2rem;
        order: 2;
        text-align: center;
    }

    .projectCategory {
        margin-bottom: 1rem;
    }

    .projectTitle {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .projectDescription {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .projectTechs {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .projectImage {
        width: 100%;
        height: 220px;
        padding: 1.5rem;
        order: 1;
    }

    .projectImage img {
        transform: scale(1);
        border-radius: 14px;
    }

    .sliderButton {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
    }

    .footerBoxA{
        padding: 2rem;
        width: initial;
    }

    .footerLogo{
        min-width: 20rem;
    }

    .footerText{
        margin: 3rem auto;
    }

    .logosList{
        gap: 3rem;
    }

    .logosItem{
        max-width: 2.5rem;
    }

    .FooterBigBox{
        width: 100%;
        justify-content: space-around;
    }
}

@media (min-width: 769px) and (max-width:1279px){
    .solutionList{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr); 
    }

    .solutionItem{
        width: 100%;
    }

    .ourProjectsContent{
        text-align: center;
        margin: 0;
    }
    
    .ourProjectsHolder{
        flex-direction: column;
        gap: 0;
    }
}