@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(contact.css);
@import url(projetos.css);
@import url(footer.css);

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

:root {
    --bg--color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: red;
    --tree-color: #1C1C1C;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg--color);
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header .sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.Logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

.Navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
    transition: .8s;

}

.Navbar a:hover,
.active {
    color: var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img {
    width: 35vw;

    animation: FloaImag 5s ease-in-out infinite;
}

@keyframes FloaImag {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2.4rem);
    }

    100% {
        transform: translateY(0);
    }
}

.home-content h3 {

    font-size: 3.2rem;
    font-weight: 700;

}

.home-content h3:nth-last-of-type(2) {
    margin-bottom: 2rem;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: 5.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;
}

.social-mida a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: ease .8s;

}

.social-mida a:hover {
    background: var(--main-color);
    box-shadow: 0 0 1rem var(--main-color);
    color: var(--second-bg-color);
}

.bnt {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.bnt:hover {
    box-shadow: none;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);

}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {

    font-size: 2.6rem;

}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

/*Minhas Habilidades*/
.Skill {
    min-height: auto;
    padding-bottom: 7rem;
}

.Skill .Skill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.Skill-row .skill-column {
    flex: 1 1 40rem;
}

.skill-column .title {
    font-size: 3.5rem;
    margin: 0 0 1.5rem;
    text-align: center;
}

.headin {
    font-size: 2.5rem;
    text-align: center;
}

.skill-box .Skill-content {
    position: relative;

    border-radius: .6rem;
    padding: .5rem 1.5rem;
}

.Skill-content .progress {
    padding: 1rem 0;
}

.Skill-content .progress h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress h3 span {
    color: var(--text-color);
}

.Skill-content .progress .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}



.skill-column:nth-child(1) .Skill-content .progress:nth-child(1) .bar span {
    width: 90%;
}


.Skill-content .progress2 {
    padding: 1rem 0;
}

.Skill-content .progress2 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress2 h3 span {
    color: var(--text-color);
}

.Skill-content .progress2 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress2 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}




.skill-column:nth-child(1) .Skill-content .progress2:nth-child(1) .bar span {
    width: 80%;
}

.Skill-content .progress3 {
    padding: 1rem 0;
}

.Skill-content .progress3 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress3 h3 span {
    color: var(--text-color);
}

.Skill-content .progress3 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress3 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}


.skill-column:nth-child(1) .Skill-content .progress3:nth-child(1) .bar span {
    width: 60%;
}



.Skill-content .progress4 {
    padding: 1rem 0;
}

.Skill-content .progress4 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress4 h3 span {
    color: var(--text-color);
}

.Skill-content .progress4 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress4 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}




.skill-column:nth-child(1) .Skill-content .progress4:nth-child(1) .bar span {
    width: 20%;
}



.Skill-content .progress5 {
    padding: 1rem 0;
}

.Skill-content .progress5 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress5 h3 span {
    color: var(--text-color);
}

.Skill-content .progress5 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress5 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}




.skill-column:nth-child(1) .Skill-content .progress5:nth-child(1) .bar span {
    width: 50%;
}



.Skill-content .progress6 {
    padding: 1rem 0;
}

.Skill-content .progress6 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress6 h3 span {
    color: var(--text-color);
}

.Skill-content .progress6 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress6 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}


.skill-column:nth-child(1) .Skill-content .progress7:nth-child(1) .bar span {
    width: 55%;
}



.Skill-content .progress7 {
    padding: 1rem 0;
}

.Skill-content .progress7 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress7 h3 span {
    color: var(--text-color);
}

.Skill-content .progress7 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress7 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}



.skill-column:nth-child(1) .Skill-content .progress6:nth-child(1) .bar span {
    width: 90%;
}



.Skill-content .progress8 {
    padding: 1rem 0;
}

.Skill-content .progress8 h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.Skill-content .progress8 h3 span {
    color: var(--text-color);
}

.Skill-content .progress8 .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.Skill-content .progress8 .bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}

.skill-column:nth-child(1) .Skill-content .progress8:nth-child(1) .bar span {
    width: 75%;
}




/*Minhas Habilidades fim*/

@media (max-width: 1200px) {

    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {

    .header {
        padding: 2rem 3%;

    }

    .Skill {
        padding-bottom: 7rem;
    }

    .portfolio {
        padding-bottom: 7rem;
    }

    .contact {
        min-height: auto;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .footer {
        padding: 2rem 3%;
    }
}


@media (max-width: 768px) {

    #menu-icon {
        display: block;
    }

    .Navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .Navbar .active {
        display: block;
    }

    .Navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img {
        width: 70vh;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about img {
        width: 70vh;
        margin-top: 4rem;
    }

    .Skill h2 {
        margin-bottom: 3rem;
    }

    .portfolio h2 {
        margin-bottom: 3rem;
    }

    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 617px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .contact form .input-box input {
        width: 100%;
    }
}

@media (max-width: 365px) {

    .home-img img {
        width: 90vw;
    }

    .about-img img {
        width: 90vw;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        align-items: center;
        margin-top: 2rem;
    }

}