*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
@font-face {
    font-family: "clash";
    src: url(./asset/font/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Regular.otf);
    font-weight: 400;
}@font-face {
    font-family: "clash";
    src: url(./asset/font/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Medium.otf);
    font-weight: 500;
}@font-face {
    font-family: "clash";
    src: url(./asset/font/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Semibold.otf);
    font-weight: 600;
}@font-face {
    font-family: "clash";
    src: url(./asset/font/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Bold.otf);
    font-weight: 700;
}

body{
    background-color: #020315;
    color: rgba(255, 255, 255, 0.9);
    font-family: "poppins", sans-serif;
}

header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3vw 5vw;
    margin-bottom: 80px;

    img{
        width: 48px;
        height: 48px;
    }
    ul{
        display: flex;
        gap: 28px;
    }
}

button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 8px 8px;
    border-radius: 40px;
    font-size: 16px;
    border: none;
    outline: none;
    font-family: "poppins", sans-serif;
    font-weight: 500;
}

section{
    padding: 20px;
    width: 100%;
}

h2{
    font-family: "clash";
    font-weight: 600;
    font-size: 6vw;
}

.text_Blend{
    color: #828181;
    mix-blend-mode: color-dodge;
}

.div_Gradient{
    width: 100%;
    border-radius: 40px;
    background: radial-gradient(123.18% 107.26% at 50% 0%, #020315 42.14%, #5b2cd2 66.11%, #e5deff 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 4vw;
}

.hero{
    
    .div_Text_Hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1{
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 500;
        }
        .title_1{
            font-size: 5vw;
        }
        h2{
            font-size: 7vw;
        }
        h3{
            margin: 48px 0 250px 0;
            text-align: center;
            font-size: 18px;
            font-weight: 400;
        }
    }
}

.div_space{
    width: 100%;
    padding: 2vw 5vw;
}

.servicos{
    display: flex;

    .div_Gradient{
        flex-direction: row;
        align-items: stretch;
        padding: 120px 4vw 120px;
        background: radial-gradient(114.84% 100% at 50% 100%, #020315 42.14%, #5b2cd2 66.11%, #e5deff 100%);
    }

    .left{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        width: 280px;
        margin-right: 60px;

        h2{
            position: absolute;
            top:  0;
            font-size: 7vw;
        }

        p{
            margin-bottom: 20px;
        }

        button{
            padding: 8px 16px 8px 32px;
            color: rgba(0, 0, 0, 0.8);
            background-color: rgba(255, 255, 255, 0.822);
        }
    }

    .right{
        flex: 1;
        display: flex;
        flex-wrap: wrap;

        .gradient{
            background: linear-gradient(263deg, rgba(255,255,255, 0.20) 3.87%, rgba(255,255,255, 0.00) 97.72%);
        }

        .small{
            width: 30%;
        }
        .large{
            width: 40%;
        }

        .cards{
            border-radius: 32px;
            padding: 20px 20px;

            h3{
                margin: 24px 0px 8px;
            }
        }
    }
}

.trabalho{
    display:flex;
    flex-direction: column;
    padding: 5.3vw;
    align-items: center;

    h2{
        margin-bottom: 32px;
    }

    .img_Trabalhos{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;

        img{
            filter: saturate(0);
            transition: all .3s;

            &:hover{
                filter: saturate(1);
            }
        }
    }
}

.sobre_Mim{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;

    .about_left{
        width: 45%;
        display: flex;
        justify-content: end;
        img{
            border-radius: 32px;
        }
    }

    .about_right{
        width: 55%;
        padding-right: 5vw;
        h2{
            font-size: 3vw;
        }
        p{
            padding: 12px 0;
        }

        button{
            margin-top: 24px;
            padding: 8px 16px 8px 32px;
            color: rgba(255, 255, 255, 0.8);
            background-color: #ffffff33;
        }
    }
}

.contatos{
    position: relative;

    .div_Gradient{
        padding: 120px 4vw 120px;
        background: radial-gradient(125.31% 94.09% at 67.53% 17.57%, #020315 34.21%, #5b2cd2 65.24%, #e5deff 100%);
    }

    footer{
        display: flex;
        position: absolute;
        bottom: 160px;
        right: 4vw;
        gap: 24px;

        .orcamento{
            padding: 8px 16px 8px 32px;
            background-color: rgba(0, 0, 0, 0.8);
            color: rgba(255, 255, 255, 0.8);
        }

        .contato{
            padding: 8px 16px 8px 16px;
            background-color: rgba(255, 255, 255, 0.314);
            color: rgba(255, 255, 255, 0.75);
        }
    }
}


/* =========================
   MOBILE — até 768px
   ========================= */
@media (max-width: 768px) {
    header{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 180px !important;

        img{
            width: 32px;
            height: 32px;
        }

        ul{
            font-size: 14px;
        }
    }

    .div_Text_Hero{
        h1{
            font-size: 16px !important;
        }

        .title_1{
            font-size: 9vw !important;
        }
        .text_Blend{
            font-size: 11vw !important;
        }

        h3{
            font-size: 14px !important;
            margin: 48px 0 30vh 0 !important; 
        }
    }

    .div_Gradient{
        flex-direction: column !important;
        background: radial-gradient(114.84% 110% at 50% 100%, #020315 42.14%, #5b2cd2 66.11%, #e5deff 100%) !important;
    }
    .left{
        width: 100% !important;
        align-items: center !important;
        margin-right: 0px !important;

        h2{
            font-size: 10vw !important;
            position: relative !important;
            padding: 12px 0px !important;
        }

        p{
            font-size: 14px !important;
        }
    }

    .right{
        p{
            font-size: 14px !important;
        }

        .small{
            width: 100% !important;
        }
        .large{
            width: 100% !important;
        }
    }

    .trabalho{
        h2{
            font-size: 10vw !important;
        }

        .img_Trabalhos{
            grid-template-columns: 1fr;

            img{
                width: 95% !important;
            }
        }
    }

    .sobre_Mim{
        flex-direction: column;
        flex-direction: column-reverse;

        .about_left{
            width: 90% !important;
            justify-content: center !important;
        }

        .about_right{
            width: 100% !important;

            h2{
                font-size: 10vw !important;
                text-align: center;
            }
            p{
                font-size: 14px !important;
            }
        }
    }

    .contatos{
        display: flex;
        flex-direction: column;
        h2{
            font-size: 10vw !important;
            text-align: center;
            margin-bottom: 20px !important;
        }
        footer{
            position:static;
            bottom: 0px !important;
            display: flex;
            flex-direction: column;

            .orcamento{
                width: 350px !important;
                padding: 8px 12px 8px 18px !important;
            }
        }
    }
}
