@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root{
    /* --bg-color: #fdfdfd; ORIGINAL */
    --bg-color: #efefef;
    --text-color: #333;
    --main-color: #754ef9;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

.dark-mode{
    --bg-color: #0b061f;
    /* --text-color: #fdfdfd; ORIGINAL */
    --text-color: #efefef;
    --shadow-color: rgba(0, 0, 0, 0.7);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}



/* 🠗🠗🠗 ALL SPANS 🠗🠗🠗 */
.span-about, .span-edu, .span-project, .span-skills, .span-contact{
    color: var(--main-color);
}

.span-logo-work{
    font-size: 1.5rem;
}
/* 🠕🠕🠕 ALL SPANS 🠕🠕🠕 */



/* 🠗🠗🠗 ALL STICKY 🠗🠗🠗 */
.header.sticky{
    background: var(--bg-color);
    box-shadow: 0 0.1rem 1rem var(--shadow-color);
}

.header.sticky .navbar a{
    color: var(--text-color);
}

.header.sticky .navbar a.active{
    color: var(--main-color);
}

.header.sticky .navbar a::before{
    background: var(--main-color);
    opacity: 0.7;
}

.header.sticky #darkMode-icon{
    color: goldenrod;
    opacity: 0.9;
}
/* 🠕🠕🠕 ALL STICKY 🠕🠕🠕 */



/* 🠗🠗🠗 HEADER 🠗🠗🠗 */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 7%;
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
    transition: 0.5s
}

.logo{
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: 600;
    cursor: default;
    margin-right: auto;
}

.navbar a{
    position: relative;
    font-size: 1.7rem;
    color: var(--white-color);
    /* color: var(--main-color); */
    font-weight: 500;
    margin-right: 3.5rem;
}

.navbar a.active::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 0.2rem;
    /* background: var(--main-color); */
    background: var(--white-color);
}

#darkMode-icon{
    font-size: 2.4rem;
    color: goldenrod;
    cursor: pointer;
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}
/* 🠕🠕🠕 HEADER 🠕🠕🠕 */



/* 🠗🠗🠗 HOME SECTION 🠗🠗🠗 */
section{
    min-height: 100vh;
    padding: 10rem 7% 2rem;
}

.home{  
    display: flex;
    align-items: center;
}

.home .home-content{
    /* max-width: 83rem; */
    max-width: 44rem;
}

.home-content h3{
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 0.3;
}

.home-content h1{
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.home-content p{
    font-size: 1.6rem;
    text-align: justify;
}

.home-content .social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
    font-size: 2rem;
    color: var(--main-color);
    margin: 2.5rem 1.5rem 3rem 0;
    transition: 0.5s ease;
}

.home-content .social-media a:hover{
    background: var(--main-color);
    color: var(--white-color);
}

.btn{
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--main-color);
    border-radius: 0.6rem;
    box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--white-color);
    letter-spacing: 0.1rem;
    font-weight: 600;
    border: 0.2rem solid transparent;
    transition: 0.5s ease;
    cursor: pointer;
}

.btn:hover{
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
}

.home .rotation-container{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 768px;
    height: 768px;
    overflow: hidden;
    pointer-events: none;
}

.home .rotation-container .rotation-box{
    position: absolute;
    top: 0;
    right: 0;
    width: 768px;
    height: 768px;
    border-radius: 50%;
    animation: skillRotate 13s ease-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .rotation-box .rotation-hobby{
    position: absolute;
    left: 0;
    color: var(--main-color);
    transform: rotate(calc(360deg / 4 * var(--i)));
    transform-origin: 384px;
    background: var(--bg-color);
    padding: 13px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.home .rotation-box .rotation-hobby:nth-child(1) {
    /* Back-end */
    margin-left: 23px;
}

.home .rotation-box .rotation-hobby:nth-child(2){
    /* Front-end */
    margin-top: 50px;
}

.home .rotation-box .rotation-hobby:nth-child(3){
    /* Traveling */
    margin-left: -28px;
}

.home .rotation-box .rotation-hobby:nth-child(4){
    /* Gaming */
    margin-bottom: 80px;
}

.home .rotation-hobby i{
    font-size: 3.8rem;
}

.home .rotation-hobby h3{
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 600;
}

.home .rotation-box .circle{
    width: 560px;
    height: 560px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
}

.home .rotation-container .overlay{
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 384px solid var(--main-color);
    border-right: 384px solid var(--main-color);
    border-bottom: 384px solid var(--main-color);
    border-left: 384px solid transparent;
}

@keyframes skillRotate{
    0%,20%{
        transform: rotate(0deg);
    }
    25%,45%{
        transform: rotate(-90deg);
    }
    50%,70%{
        transform: rotate(-180deg);
    }
    75%,95%{
        transform: rotate(-270deg);
    }
    100%{
        transform: rotate(-360deg);
    }
}

.home-img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.home-img img {
    width: 62.2vh;
    pointer-events: none;
}



/* 🠗🠗🠗 ONLY FOR THE CV BUTTON 🠗🠗🠗 */
#downloadMenu{
    display: none;
    position: absolute;
    background: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    text-align: center;
    left: 3rem;
    margin-top: 0.2rem;
    border-radius: 0.6rem;
    animation: openMenu 1s ease-in-out;
    animation-fill-mode: both;
}

#downloadMenu a{
    display: block;
    color: var(--white-color);
    background: var(--main-color);
}

#downloadMenu a:hover {
    background: transparent;
    color: #333;
    border-color: var(--main-color);
    border-radius: 0.6rem;
}

#downloadButton{
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#downloadMenu.open {
    animation-name: openMenu;
}

@keyframes openMenu {
    0% {
        transform: translateY(-3%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 🠕🠕🠕 ONLY FOR THE CV BUTTON 🠕🠕🠕 */
/* 🠕🠕🠕 HOME SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 ABOUT SECTION 🠗🠗🠗 */
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.about-img img{
    width: 40vw;
}

.heading{
    font-size: 4.5rem;
    text-align: center;
}

.about-content h2{
    text-align: left;
    line-height: 1.2;
}

.about-content h3{
    font-size: 2rem;
}

.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}
/* 🠕🠕🠕 ABOUT SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 EDUCATION SECTION 🠗🠗🠗 */
.education{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 7rem;
}

.education .heading{
    padding-bottom: 3rem;
}

.education .education-row{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.education-row .education-column{
    flex: 1 1 40rem;
}

.education-column .title{
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}

.education-column .education-box{
    position: relative;
    border-left: .2rem solid var(--main-color);
}

.education-column .content:hover{
    box-shadow: 0 0.1rem 2rem var(--shadow-color);
    transform: scale(1.02);
}

.education-box .education-content{
    position: relative;
    padding-left: 2rem;
}

.education-box .education-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--main-color);
    border-radius: 50%;
}

.education-content .content{
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: 0.5s ease;
}

.education-content .content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--shadow-color);
    z-index: -1;
    transition: .5s;
}

.education-content .content:hover::before{
    width: 100%;
}

.education-content .content .year{
    font-size: 2rem;
    color: var(--main-color);
    padding-bottom: .5rem;
}

.education-content .content .year i{
    padding-right: .5rem;
}

.education-content .content h3{
    font-size: 2rem;
}

.education-content .content p{
    font-size: 1.6rem;
    padding-top: .5rem;
}

.education-content .content ul{
    font-size: 1.6rem;
    padding-top: .5rem;
    padding-left: 2rem;
}


/* 🠕🠕🠕 EDUCATION SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 PORTFOLIO SECTION 🠗🠗🠗 */
.portfolio{
    padding-bottom: 10rem;
}

.portfolio h2{
    margin-bottom: 4rem;
}

.portfolio .portfolio-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.portfolio-container .portfolio-box{
    position: relative;
    display: flex;
    border-radius: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.portfolio-box img{
    width: 100%;
    transition: 0.5s ease;
}

.portfolio-box:hover img{
    transform: scale(1.1);
}

.portfolio-box .portfolio-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), var(--main-color));
    color: var(--white-color);
    text-align: center;
    padding: 0 4rem;
    opacity: 0;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-box:hover .portfolio-layer{
    opacity: 1;
}

.portfolio-layer h4{
    font-size: 3rem;
}

.portfolio-layer p{
    font-size: 1.6rem;
    margin: 0.3rem 0 1rem;
}

.portfolio-layer a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--white-color);
    border-radius: 50%;
}

.portfolio-layer a i{
    font-size: 2rem;
    color: #333;
}
/* 🠕🠕🠕 PORTFOLIO SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 SKILL SECTION 🠗🠗🠗 */
.skill-container{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 5rem 1rem;
}

.skill-container .skill-wrapper{
    position: relative;
    max-width: 90rem;
    width: 100%;
    padding: 5rem;
}

.skill-wrapper .skill-box{
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
}

.skill-content .skill-slide{
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--bg-color);
    border-radius: 2rem;
    box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
    padding: 3rem 5rem;
    border-top: 0.8rem solid var(--main-color);
    border-bottom: 0.8rem solid var(--main-color);
}

.skill-content .skill-slide .progress-bar{
    width: 100%;
}

.skill-content .skill-slide .progress-bar .progress{
    position: relative;
    width: 100%;
    height: 0.5rem;
    border-radius: 3rem;
    background: var(--main-color);
}

.skill-content .skill-slide .progress-bar .progress-title{
    position: relative;
    margin-bottom: 1rem;
}

.skill-content .skill-slide .progress-bar .progress-title span{
    display: block;
    position: absolute;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color);
    top: 50%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    margin-left: -1.9rem;
    transition: all 1s ease;
}

.skill-content .skill-slide .progress-bar .progress-title span::before,
.skill-content .skill-slide .progress-bar .progress-title span::after{
    content: "";
    position: absolute;
}

.skill-content .skill-slide .progress-bar .progress-title span::before{
    width: 4rem;
    height: 2rem;
    background-color: var(--bg-color);
    top: 0.2rem;
    left: -0.3rem;
    border-radius: 0.3rem;
    z-index: -1;
}

.skill-content .skill-slide .progress-bar .progress-title span::after{
    border-top: 1rem solid var(--main-color);
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    top: 2.14rem;
    left: 0.6rem;
}

.skill-content .skill-slide .progress-bar span{
    display: block;
    width: 0;
    height: 100%;
    border-radius: 3rem;
    background-color: var(--text-color);
    transition: all 1s ease;
}

.skill-slide img{
    width: 14rem;
    height: 14rem;
    object-fit: cover;
    border-radius: 50%;
    border: 0.5rem solid var(--bg-color);
    outline: 0.5rem solid var(--main-color);
}

.skill-slide h3{
    font-size: 1.5rem;
    margin: 2rem 0;
}

.skill-slide p{
    font-size: 1.4rem;
    text-align: center;
}

.skill-box .swiper-button-next, .skill-box .swiper-button-prev{
    color: var(--main-color);
}

.skill-box .swiper-button-next{
    right: 0;
}

.skill-box .swiper-button-prev{
    left: 0;
}

.skill-box .swiper-pagination-bullet{
    background: rgba(0, 0, 0, 0.8);
}

.skill-box .swiper-pagination-bullet-active{
    background: var(--main-color);
}
/* 🠕🠕🠕 SKILL SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 CONTACT SECTION 🠗🠗🠗 */
.contact h2{
    margin-bottom: 3rem;
}

.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input, .contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--bg-color);
    border-radius: 0.8rem;
    margin: 0.7rem 0;
    box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
}

.contact form .input-box input{
    width: 49%;
}

.contact form textarea{
    resize: none;
}

.contact form .btn{
    margin-top: 2rem;
    cursor: pointer;
}
/* 🠕🠕🠕 CONTACT SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 FOOTER SECTION 🠗🠗🠗 */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 7%;
    background: var(--main-color);
}

.footer-text p{
    font-size: 1.6rem;
    color: var(--white-color);
}

.footer-iconTop a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem;
    background: var(--white-color);
    border-radius: 0.8rem;
    border: 0.2rem solid var(--main-color);
    outline: 0.2rem solid transparent;
    transition: 0.5s ease;
}

.footer-iconTop a:hover{
    outline-color: var(--white-color);
}

.footer-iconTop a i{
    font-size: 2.4rem;
    color: var(--text-color);
}
/* 🠕🠕🠕 FOOTER SECTION 🠕🠕🠕 */



/* 🠗🠗🠗 BREAKPOINTS 🠗🠗🠗 */
/* tentar o 1200 */
@media (max-width: 1280px){
    html{
        font-size: 55%;
    }

    .home .rotation-container{
        height: 85.8rem;
    }

    .home .rotation-container .rotation-box{
        right: -12rem;
        height: 85.8rem;
    }

    .home .rotation-container .overlay{
        right: -9rem;
    }

    .home .rotation-box .rotation-hobby:nth-child(1){
        margin-left: 35px;
    }

    .home .rotation-box .rotation-hobby:nth-child(2){
        margin-top: 70px;
    }

    .home .rotation-box .rotation-hobby:nth-child(3){
        margin-left: -37px;
    }

    .home .rotation-box .rotation-hobby:nth-child(4){
        margin-bottom: 95px;
    }

    #downloadMenu{
        left: 2.2rem;
    }
}

/* tentar 1024 */
@media (max-width: 1115px){
    .header{
        padding: 2rem 3%;
    }

    section{
        padding: 10rem 6% 2rem;
    }

    .home .rotation-container .rotation-box{
        right: -22rem;
    }

    .home .rotation-container .overlay{
        right: -15rem;
    }

    .home-img img{
        width: 59vh;
    }
}

/* tentar 991 */
@media (max-width: 990px){
    .navbar a:nth-child(1),
    .navbar a:nth-child(2){
        color: var(--main-color);
    }

    .navbar a.active::before{
        background: var(--main-color);
        opacity: 0.7;
    }

    section{
        padding: 10rem 7% 2rem;
    }

    .home .home-content{
        max-width: 50rem;
    }

    .home .rotation-container .rotation-box{
        right: -45rem;
    }

    .home .rotation-container .overlay{
        right: -39.5rem;
    }

    .education, .portfolio{
        padding-bottom: 7rem;
    }

    .contact{
        min-height: auto;
    }

    .footer{
        padding: 2rem 3%;
    }

    .home-img img{
        display: none;
    }
}

@media (max-width: 924px){
    .logo{
        max-width: 30vw;
    }
}

/* tentar 768 */
@media (max-width: 840px){
    #downloadMenu{
        margin-left: 141px;
    }

    #menu-icon{
        display: block;
    }

    #darkMode-icon{
        position: absolute;
        right: 7rem;
        font-size: 2.6rem;
        color: goldenrod;
        margin-bottom: 0.1rem;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        display: none;
    }

    .navbar.active{
        display: block;
    }

    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: var(--text-color);
    }

    .navbar a:nth-child(1),
    .navbar a:nth-child(2){
        color: var(--text-color);
    }

    .navbar a.active{
        color: var(--main-color);
    }

    .navbar a::before{
        display: none;
    }

    .logo{
        max-width: 100%;
    }

    .home{
        padding: 0 3% 23rem;
        justify-content: center;
        text-align: center;
    }

    .home-content h3{
        font-size: 2.6rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-content .social-media a{
        margin: 2.5rem 0.75rem 3rem;
    }

    .home .rotation-container{
        left: 0;
        width: 100%;
        height: 100%;
    }

    .home .rotation-container .rotation-box{
        position: fixed;
        top: 60%;
        left: 0;
        border-radius: 0;
        width: 100%;
    }

    .home .rotation-box .rotation-hobby{
        padding: 0 13px;
        left: auto;
        transform-origin: 0;
    }

    .home .rotation-box .rotation-hobby:nth-child(1){
        /* Back-end */
        transform: rotate(-90deg) translate(-120px, -210px);
        margin-right: 85px;
        margin-bottom: 85px;
        border-radius: 5%;
    }

    .home .rotation-box .rotation-hobby:nth-child(1) i{
        margin-right: 0;
    }

    .home .rotation-box .rotation-hobby:nth-child(2){
        /* Front-end */
        transform: rotate(0deg) translate(0, -335px);
        margin-top: 30px;
        border-radius: 5%;
    }

    .home .rotation-box .rotation-hobby:nth-child(3){
        /* Traveling */
        transform: rotate(90deg) translate(-115px, -450px);
        margin-top: 80px;
        margin-right: 60px;
        border-radius: 5%;
    }

    .home .rotation-box .rotation-hobby:nth-child(4){
        /* Gaming */
        transform: rotate(180deg) translate(-220px, -335px);
        margin-top: 50px;
        margin-right: 160px;
        border-radius: 5%;
    }

    .home .rotation-box .circle{
        position: fixed;
        width: 670px;
        height: 670px;
        z-index: -1;
    }

    .home .rotation-container .overlay{
        position: fixed;
        top: 70rem;
        left: 50%;
        right: 0;
        transform: rotate(90deg) translate(-50%, 50%) scaleY(3);
        border-width: 23.9rem;
    }

    .about{
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content h2{
        text-align: center;
    }

    .about-img img{
        width: 70vw;
        margin-top: -2rem;
    }

    .education h2, .portfolio h2{
        margin-bottom: 3rem;
    }

    .portfolio .portfolio-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-container .skill-wrapper{
        padding: 5rem 0;
    }

    .skill-content .skill-slide{
        padding: 3rem 2rem;
    }

    .skill-box .swiper-button-next,
    .skill-box .swiper-button-prev{
        display: none;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 617px){
    .portfolio .portfolio-container{
        grid-template-columns: 1fr;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 465px){
    .logo{
        max-width: 50%;
    }

    #downloadMenu{
        margin-left: 141px;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 460px){
    #downloadMenu{
        margin-left: 133px;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 450px){
    html{
        font-size: 50%;
    }

    #darkMode-icon{
        right: 6rem;
    }

    #downloadMenu{
        margin-left: 123px;
    }

    .home{
        padding: 0 3% 30rem;
    }

    /* .home .rotation-box .rotation-hobby:nth-child(1){
        transform: rotate(-90deg) translate(-110px, -220px);
    }

    .home .rotation-box .rotation-hobby:nth-child(2){
        transform: rotate(0deg) translate(5px, -335px);
    }

    .home .rotation-box .rotation-hobby:nth-child(3){
        transform: rotate(90deg) translate(-105px, -440px);
        margin-left: -70px;
        margin-top: 60px;
    }

    .home .rotation-box .rotation-hobby:nth-child(4){
        transform: rotate(180deg) translate(-210px, -335px);
    } */

    .contact form .input-box input{
        width: 100%;
    }

    .skill-container .skill-wrapper{
        width: 100%;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 420px){
    #downloadMenu{
        margin-left: 120px;
    }
}

@media (max-width: 415px){
    #downloadMenu{
        margin-left: 120px;
    }
}

@media (max-width: 410px){
    #downloadMenu{
        margin-left: 115px;
    }
}

@media (max-width: 400px){
    #downloadMenu{
        margin-left: 110px;
    }
}

@media (max-width: 390px){
    #downloadMenu{
        margin-left: 105px;
    }
}

@media (max-width: 380px){
    #downloadMenu{
        margin-left: 100px;
    }
}

@media (max-width: 370px){
    #downloadMenu{
        margin-left: 95px;
    }
}

@media (max-width: 365px){
    .about-img img{
        width: 90vw;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 360px){
    #downloadMenu{
        margin-left: 93px;
    }
}

@media (max-width: 350px){
    #downloadMenu{
        margin-left: 88px;
    }
}
/* 🠕🠕🠕 BREAKPOINTS 🠕🠕🠕 */



/* 🠗🠗🠗 TIRAR AS SETINHAS DO INPUT NUMBER 🠗🠗🠗 */
    /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

    /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* 🠕🠕🠕 TIRAR AS SETINHAS DO INPUT NUMBER 🠕🠕🠕 */