*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: rgb(253, 255, 142);
    color: black;  
    font-family: "Poppins"; 
}

button{
    font-family: "Poppins";
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    opacity: 2.5;
    transition: all 1.3s;
}

button:hover{
    opacity: 3;
}

p{
    opacity: 0.8;
}

a{
    color: rgb(20, 20, 20);
    opacity: 7;
    transition: all 1.3s;
    text-decoration: none;

    &:hover{
        opacity: 1;
    }
}


header{
    width: 100%;
    display: flex;
    padding: 4%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 99;

    ul{
        display: flex;
        gap: 24px;
        list-style-type: none;
        background-color: rgba(45, 94, 255, 0.5);
        padding: 16px 20px;
        border-radius: 12px;
        backdrop-filter: blur(20px);

    }
}

.logotipoAgili{
    width: 60px;
}

section{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4%;
}

.secao1{
    background-image: url("imagens/Foto.fundo.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    justify-content: center;
    align-items: center;

    h2{
        font-size: 10vw;
        color: rgb(175, 175, 175);
        mix-blend-mode: color-dodge;
    }

}

.conteudoPrincipal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    h1 {
        text-align: center;
        font-size: 50px;
        font-weight: 600;
    }

    .divBotoes{
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 28px ;
    }
}

.botaoPrimario{
    background-color: rgba(255, 255, 255, 0.767);
    gap: 12px;
    padding: 16px 16px 16px 32px;

    img{
        width: 44px;
    }
}

.botaoSecundario{
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.342);

}

.tituloSecao{
    font-size: 52px;
    font-weight: 500;

}

.secao2{
    align-items: center;
    background-image: url(imagens/ChatGPT\ Image\ Jul\ 3\,\ 2026\,\ 02_14_09\ AM.png);
    position: relative;
}

.secao2::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#ff7920 10%, #ff6600, #fd3b00);
    position: absolute;
    top: 0;
    left: 0;

}

.divCards{
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0px 120px;

}

.card{
    width: 32%;
    padding: 32px 20px;


    3{
        font-size: 24px;
        font-weight: 500;
        margin: 20px 0px 4 px;
    }
}

.branco{
    background-color: rgba(255, 255, 255, 0.288);
    border-radius: 20px;
    padding: 32px 20px;
}

.divImagens{
    display: flex;
    flex-wrap: wrap;
    margin: 52px 0px 120px;
    gap: 8px .5%;

    img{
        width: 24.5%;
        filter: saturate(0);
        transition: all .3s;
        
        &:hover{
            filter: saturate(1);
        }
    }

}

.tituloSecao, .divCards{
    z-index: 2;
}



.secao3{
    background: linear-gradient(#ff7920, #ff6600, #fd3b00);
    
}

.tituloSecao3{
    color: rgba(255, 255, 255, 0.712);
    text-align: start;
    padding: ;
}

ol{
    list-style-type: none;
    color: rgba(255, 255, 255, 0.877);
}