* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    transition: all 0.2s;
}

/*HEADER*/

.Header {
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 99;
    background: linear-gradient(rgb(0, 0, 0) -60%, rgba(105, 73, 0, 0) 60%);
}

.LogoName {
    display: flex;
    gap: 10px;
    align-items: center;
}

.LogoIcon {
    color: #ffe500;
    border: solid 2px #ffd7006e;
    border-radius: 500px;
    width: 39px;
    text-align: center;
    font-size: 30px;
}

.NameTitle {
    font-size: 27px;
}

.TextsAbout {
    display: flex;
    gap: 10px;
}

.Pabout {
    opacity: 0.8;
    cursor: pointer;
}

.Pabout:hover {
    opacity: 1;
    text-shadow: 0 0 15px white;
}

.Buttoncontact {
    border: solid 2px rgba(255, 255, 255, 0.332);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.Buttoncontact:hover {
    border: solid 2px rgba(255, 204, 0, 0.332);
    text-shadow: 0 0 15px white;
    ;

}

/*Secion1*/

.Section1 {
    height: 100vh;
    background-image: url(./imgs/BackgroundHero.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position-y: -104px;
}

.BackgroundDark {
    position: absolute;
    height: 100%;
    width: 100%;

    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.5) 35%,
            rgba(0, 0, 0, 0.8) 65%,
            rgba(0, 0, 0, 0.8) 100%);
}

.DivSec1 {
    position: absolute;
    z-index: 99;
    left: 150px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 25px;
    width: 45%;
}

.PointGold {
    color: #ffc100;
    font-size: 20px;
    margin-right: 5px;
}

.Psubtitle {
    opacity: 0.7;
    background-color: #3f3f3f78;
    padding: 5px 20px;
    border-radius: 500px;
    color: #ffffffe0;
    border: solid 1px #ffffff66;
    display: flex;
    align-items: center;
}

.Sec1h1 {
    font-family: "Instrument Serif", serif;
    letter-spacing: 5px;
    font-size: 70px;
    line-height: 60px;
    color: white;

}

.Bgold {
    font-family: "Instrument Serif", serif;
    background: linear-gradient(138deg,
            rgba(255, 221, 140, 1) 0%,
            rgba(247, 173, 0, 1) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}

.Sec1p1 {
    color: #9e9e9e;
    font-size: 20px;
    width: 80%;
}

.ButtonAgendar {
    height: 50px;
    width: 250px;
    border-radius: 25px;
    background: linear-gradient(138deg, rgba(255, 221, 140, 1) 0%, rgba(247, 173, 0, 1) 100%);
    cursor: pointer;
    border: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ButtonAgendar:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(247, 173, 0, 0.556);
}

@keyframes Fadeloop {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 15px white;
    }

    100% {
        opacity: 0.3;
    }
}

.Sec1p2 {
    color: white;
    font-weight: 500;
    z-index: 99;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;

    animation: Fadeloop 3.5s ease-in-out infinite;
}

/*SecionPortifolio*/

.SectionPortfolio {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 100px 50px;

    text-align: center;
    background: linear-gradient(138deg, rgba(0, 0, 0, 1) 75%, rgba(105, 73, 0, 1) 100%);
}

/* Grade sutil */
.SectionPortfolio::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;
}

/* Faixa de luz dourada */
.SectionPortfolio::after {
    content: "";

    position: absolute;

    width: 800px;
    height: 2px;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    background: linear-gradient(90deg,
            transparent,
            rgba(247, 173, 0, 0.8),
            transparent);

    box-shadow:
        0 0 20px rgba(247, 173, 0, 0.5),
        0 0 40px rgba(247, 173, 0, 0.2);

    pointer-events: none;
}

.H1Portfolio {
    color: white;
    font-family: "Lobster Two", sans-serif;
    font-size: 40px;
}

.pSecPortfolio {
    margin-top: 25px;
    font-size: 20px;
    width: 500px;
    color: gray;
}

.DivWorks {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 50px;
    gap: 30px;
}

.WorksLeft {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

.WorksRight {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.WorkImagediv {
    background-color: gray;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.8s;
}
.WorkImagediv:hover{
    transform: scale(1.1);
}

.WorkTexts {
    text-align: start;
    position: absolute;
    bottom: 15px;
    left: 25px;
}

.TitleWork {
    color: #ffc100;
}

.NameWork {
    color: white;
}

#Work1 {
    width: 600px;
    height: 250px;
    background-image: url(./imgs/Work1.jpg);
    background-size: cover;
    background-position-y: center;

}

#Work2 {
    width: 350px;
    height: 250px;
    background-image: url(./imgs/Work2.jpg);
    background-size: cover;
    background-position-y: center;
}

#Work3 {
    width: 600px;
    height: 250px;
    background-image: url(./imgs/Work3.jpg);
    background-size: cover;
    background-position-y: center;
}

#Work4 {
    width: 500px;
    height: 200px;
    background-image: url(./imgs/Work4.jpg);
    background-size: cover;
    background-position-y: center;
}

#Work5 {
    width: 350px;
    height: 450px;
    background-image: url(./imgs/Work5.jpg);
    background-size: cover;
    background-position-y: center;
}

#Work6 {
    width: 300px;
    height: 250px;
    background-image: url(./imgs/Work6.jpg);
    background-size: cover;
    background-position-y: center;
}



/*Secion2*/

.Section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 100px 20px;
    color: white;
    background: linear-gradient(32deg, rgba(0, 0, 0, 1) 73%, rgba(105, 73, 0, 1) 100%);
}

.IconBox {
    color: #ffc100;
    margin-bottom: 15px;
    font-size: 30px;
}

.Checkicon {
    color: #ffc100;
}

.Sec2Div1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    width: 700px;
}


.Sec2H1 {
    font-family: "Instrument Serif", serif;
    letter-spacing: 5px;
    font-size: 45px;
}

.BGray {
    font-family: "Instrument Serif", serif;
    letter-spacing: 5px;
    color: gray;
}

.Sec2Boxes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.Sec2Box {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: justify;
    border: solid 1px #8080805c;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
}
.Sec2Box:hover{
    border: solid 1px #f0d0005c;
    transition: all 0.8s;
}

.Sec2pbox1 {
    font-family: "Lobster Two", sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.Sec2pbox2 {
    font-size: 13px;
    margin-top: 10px;
    color: gray;
    letter-spacing: 1px;
}

.Sec2Div2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 700px;
}


.Sec2H2 {
    font-family: "Instrument Serif", serif;
    letter-spacing: 5px;
    font-size: 25px;
}

.Sec2Boxps {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.Sec2ps {
    border-radius: 20px;
    border: solid 1px #bebebe2b;
    padding: 8px 15px;
    background-color: #8080801c;
    color: white;
}

/*Section3*/

.Section3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    color: white;
    background-color: black;
}

.Sec3Main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 80%;
    align-items: center;
}

.TextsSec3 {
    position: relative;
    left: -100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.TitleSec3 {
    font-family: "Instrument Serif", serif;
    font-size: 40px;
    margin-bottom: 25px;
}


.BoxSec3 {
    display: flex;
    flex-wrap: wrap;
    width: 998px;
    align-items: center;
    justify-content: center;
    gap: 1px;
    background-color: gray;
}

.BoxDifferent {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 332px;
    background-color: black;
    padding: 25px;
}
.BoxDifferent:hover{
    background-color: rgb(21, 15, 0);
    transition: all 0.5s;
}

.IconGold {
    color: #ffc100;
    font-size: 30px;
}

.TitleDiffe {
    font-family: 'Instrument Serif';
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}

.TextDiffe {
    opacity: 0.7;
}

/*SectionFinal*/

.SectionFinal {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;
    background: #000;
}

/* Esfera 1 */
.SectionFinal::before {
    content: "";

    position: absolute;
    width: 300px;
    height: 300px;

    background: radial-gradient(circle,
            rgba(247, 173, 0, 0.45) 0%,
            rgba(247, 173, 0, 0) 70%);

    filter: blur(50px);

    top: 15%;
    left: 10%;

    animation: FloatOne 18s ease-in-out infinite alternate;
}

/* Esfera 2 */
.SectionFinal::after {
    content: "";

    position: absolute;
    width: 400px;
    height: 400px;

    background: radial-gradient(circle,
            rgba(255, 221, 140, 0.3) 0%,
            rgba(255, 221, 140, 0) 70%);

    filter: blur(70px);

    bottom: 10%;
    right: 5%;

    animation: FloatTwo 25s ease-in-out infinite alternate;
}

@keyframes FloatOne {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(520px, 500px);
    }
}

@keyframes FloatTwo {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-500px, -520px);
    }
}

.MainSectionF {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 500px;
}

.pGold {
    color: #ffc100;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 12px;
}

.H1SecF {
    color: white;
    font-family: "Lobster Two", sans-serif;
    font-size: 50px;
}

.SecFp1 {
    color: #ffffff8c;
}

.SecFp2 {
    color: #ffffff82;
    font-size: 15px;
}

/*MOBILE*/

@media screen and (max-width: 1000px) {

    .TextsAbout {
        display: none;
    }

    .Buttoncontact {
        display: none;
    }

    /*SECTION1*/
    .DivSec1 {
        left: 0;
        width: 100%;
        align-items: center;
        padding: 0 20px;
    }

    .Sec1h1 {
        font-size: 52px;
        line-height: 42px;
        text-align: center;
    }

    .Sec1p1 {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .Sec1p2 {
        text-align: center;
        font-size: 15px;
    }

    /*SECTIONPORTIFOLIO*/

    .SectionPortfolio {
        padding: 100px 15px;
    }

    .pSecPortfolio {
        width: 100%;
    }

    .DivWorks {
        justify-content: flex-start;
        overflow-x: scroll;
        align-items: center;
    }

    .WorksLeft {
        flex-direction: row;
    }

    .WorksRight {
        flex-direction: row;
    }

    /*SECTION2*/

    .Sec2Div1 {
        width: 100%;
    }

    .Sec2H1 {
        font-size: 35px;
    }

    .Sec2Boxes {
        flex-direction: column;
    }

    .Sec2Div2 {
        width: 100%;
    }


    /*SECTION3*/

    .TextsSec3 {
        left: 0;
        text-align: center;
    }

    .Sec3Main {
        width: 100%;
    }

    .BoxSec3 {
        width: 100%;
    }



    /*SECTIONFINAL*/

    .H1SecF {
        line-height: 37px;
        font-size: 35px;
    }

    .SecFp1 {
        font-size: 17px;
    }
}