* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter"
}

::selection {
    background-color: #02fbfa;
    color: #fff
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0
}

button, input {
    border: 0;
    font-family: "Inter"
}

button:focus, input:focus {
    border: 0
}

body {
    font-family: "Inter";
    background-color: #fff;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background-color: #121212
}

::-webkit-scrollbar-thumb {
    background-color: #02fbfa;
    border-radius: 8px
}

header {
    padding: 0px 50px;
    background: #171717;
    border-bottom: 1px solid #242424;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0
}

@media screen and (max-width: 992px) {
    header {
        padding: 0px 24px
    }
}

header .grid-layout nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100px;
    padding: 0px 8px
}

header .grid-layout nav h1 {
    color: #02fbfa;
    font-size: 24px;
    font-family: "Red Hat Display";
    font-weight: 500
}

header .grid-layout nav .nav-list {
    list-style: none;
    display: flex
}

header .grid-layout nav .nav-list li {
    margin-left: 48px
}

@media screen and (max-width: 992px) {
    header .grid-layout nav .nav-list li {
        margin-left: 0px
    }
}

header .grid-layout nav .nav-list li a {
    color: #fff;
    position: relative;
    font-size: 1.8rem
}

header .grid-layout nav .nav-list li a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    background: linear-gradient(270deg, #02fbfa 0%, #17161d 100%);
    transform-origin: bottom right;
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1)
}

header .grid-layout nav .nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

header .grid-layout nav .nav-list li a:hover {
    color: #fff
}

.mobile-menu {
    display: none
}

.mobile-menu div {
    width: 32px;
    height: 1px;
    background-color: #fff;
    margin: 8px;
    transition: .4s
}

.nav-list.active {
    visibility: initial;
    transition: 1s all ease
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(100px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px)
}

.mobile-menu.active .line2 {
    opacity: 0
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -5px)
}

@media screen and (max-width: 992px) {
    body {
        overflow-x: hidden
    }

    .nav-list {
        text-align: center;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background-color: #171717;
        flex-direction: column;
        padding-top: 96px;
        visibility: hidden
    }

    header .grid-layout nav .nav-list li {
        opacity: 0;
        margin-bottom: 48px
    }

    header .grid-layout nav .nav-list li a {
        font-size: 2.4rem
    }

    .mobile-menu {
        display: block
    }
}

#s-home {
    padding: 0px 50px;
    background-color: #171717;
    position: relative
}

@media screen and (max-width: 992px) {
    #s-home {
        padding: 100px 20px 0px 20px
    }
}

#s-home .grid-layout #home {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 200px 0px;
    overflow: hidden;
    width: 100%
}

@media screen and (max-width: 992px) {
    #s-home .grid-layout #home {
        padding: 0px
    }
}

#s-home .grid-layout #home #home-container-text {
    width: 60%;
    flex-direction: column
}

@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
        padding: 0px
    }
}

#s-home .grid-layout #home #home-container-text h2 {
    font-family: "Red Hat Display";
    color: #02fbfa;
    max-width: 650px;
    line-height: 140%;
    font-size: 4.8rem;
    font-weight: 500
}

@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-text h2 {
        font-size: 4rem
    }
}

#s-home .grid-layout #home #home-container-text p {
    color: #fff;
    font-size: 2.4rem;
    max-width: 600px;
    margin: 8px 0px;
    font-weight: 400;
    line-height: 160%
}

#s-home .grid-layout #home #home-container-text a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #02fbfa;
    color: #121212;
    padding: 20px 32px;
    max-width: 300px;
    border-radius: 4px;
    transition: all .4s ease;
    margin-top: 48px;
    font-size: 18px;
    font-weight: 600
}

#s-home .grid-layout #home #home-container-text a:hover {
    padding: 20px 45px;
    max-width: 325px
}

#s-home .grid-layout #home #home-container-image {
    width: 40%
}

@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-image {
        display: none
    }
}

#s-about {
    padding: 120px 0px;
    background-color: #121212
}

@media screen and (max-width: 1216px) {
    #s-about {
        padding: 72px 20px
    }
}

#s-about .grid-layout>div {
    background-color: #171717;
    border: 2px solid #1d1d1d;
    padding: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    height: 700px
}

@media screen and (max-width: 1216px) {
    #s-about .grid-layout>div {
        flex-wrap: wrap;
        gap: 32px;
        height: auto
    }
}

#s-about .grid-layout>div #creator-photo {
    width: 47%;
    background-image: url("../image/perfil.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #02fbfa;
    background-size: cover;
    border-radius: 4px;
    height: 85%;
    position: relative
}

@media screen and (max-width: 1216px) {
    #s-about .grid-layout>div #creator-photo {
        width: 100%;
        height: 400px
    }
}

@media screen and (max-width: 992px) {
    #s-about .grid-layout>div #creator-photo {
        height: 350px
    }
}

@media screen and (max-width: 768px) {
    #s-about .grid-layout>div #creator-photo {
        height: 300px
    }
}

#s-about .grid-layout>div #creator-photo .social-media {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 6px;
    background-color: #1d1d1d;
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translate(-50%, 0%)
}

@media screen and (max-width: 768px) {
    #s-about .grid-layout>div #creator-photo .social-media {
        display: none
    }
}

#s-about .grid-layout>div .container-text-resume {
    width: 49%
}

@media screen and (max-width: 1216px) {
    #s-about .grid-layout>div .container-text-resume {
        width: 100%
    }
}

#s-about .grid-layout>div .container-text-resume h2 {
    font-size: 4rem;
    font-weight: 500;
    margin: 16px 0px;
    color: #fff;
    font-family: "Red Hat Display"
}

@media screen and (max-width: 992px) {
    #s-about .grid-layout>div .container-text-resume h2 {
        font-size: 3.2rem
    }
}

#s-about .grid-layout>div .container-text-resume p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 160%;
    margin: 32px 0px 8px 0px
}

#s-about .grid-layout>div .container-text-resume a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #02fbfa;
    color: #121212;
    padding: 16px;
    max-width: 250px;
    border-radius: 4px;
    transition: all .4s ease;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 600
}

#s-about .grid-layout>div .container-text-resume a:hover {
    padding: 16px 24px;
    max-width: 275px
}

#s-about .indicators {
    margin-top: 24px
}

@media screen and (max-width: 992px) {
    #s-about .indicators {
        margin-top: 32px
    }
}

#s-about .dot {
    height: 20px;
    width: 20px;
    margin-right: 20px;
    background-color: #5d5d5d;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer
}

@media screen and (max-width: 992px) {
    #s-about .dot {
        height: 26px;
        width: 26px;
        margin-right: 26px
    }
}

#s-about .active {
    background-color: #02fbfa
}

#s-projects {
    width: 100%;
    height: auto;
    background-color: #171717;
    color: #fff;
    padding: 120px 20px
}

#s-projects .grid-layout>h2 {
    font-size: 4.8rem;
    text-align: center;
    font-weight: 500;
    font-family: "Red Hat Display"
}

@media screen and (max-width: 992px) {
    #s-projects .grid-layout>h2 {
        font-size: 4rem
    }
}

@media screen and (max-width: 992px) {
    #s-projects .grid-layout .project-inverse {
        flex-direction: column-reverse
    }
}

#s-projects .grid-layout>div {
    background-color: #121212;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #1d1d1d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    margin-top: 64px
}

@media screen and (max-width: 1216px) {
    #s-projects .grid-layout>div {
        flex-wrap: wrap;
        gap: 32px
    }
}

#s-projects .grid-layout>div img {
    width: 47%;
    background-color: #02fbfa;
    border-radius: 4px;
    height: 500px
}

@media screen and (max-width: 1216px) {
    #s-projects .grid-layout>div img {
        width: 100%;
        height: 400px
    }
}

@media screen and (max-width: 992px) {
    #s-projects .grid-layout>div img {
        height: 350px
    }
}

@media screen and (max-width: 768px) {
    #s-projects .grid-layout>div img {
        height: 300px
    }
}

#s-projects .grid-layout>div div {
    width: 49%
}

@media screen and (max-width: 1216px) {
    #s-projects .grid-layout>div div {
        width: 100%
    }
}

#s-projects .grid-layout>div div h2 {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 16px 0px;
    color: #fff;
    font-family: "Red Hat Display"
}

@media screen and (max-width: 992px) {
    #s-projects .grid-layout>div div h2 {
        font-size: 3.2rem
    }
}

#s-projects .grid-layout>div div>p {
    font-size: 1.8rem;
    color: #fff;
    line-height: 160%;
    margin: 32px 0px 8px 0px
}

#s-projects .grid-layout>div div a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #02fbfa;
    color: #121212;
    padding: 20px 20px;
    max-width: 200px;
    border-radius: 4px;
    transition: all .4s ease;
    margin-top: 48px;
    font-size: 18px;
    font-weight: 600
}

#s-projects .grid-layout>div div a:hover {
    padding: 20px 25px;
    max-width: 220px
}

#s-projects .grid-layout>div div span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 48px
}

#s-projects .grid-layout>div div span>p {
    font-size: 1.8rem;
    background-color: #242424;
    border-radius: 16px;
    padding: 6px 20px
}

#s-skills {
    width: 100%;
    height: auto;
    background-color: #121212;
    color: #fff;
    padding: 120px 20px
}

#s-skills h2 {
    font-size: 4.8rem;
    text-align: center;
    font-weight: 500;
    font-family: "Red Hat Display"
}

@media screen and (max-width: 992px) {
    #s-skills h2 {
        font-size: 4rem
    }
}

#s-skills .technologies {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 64px;
    gap: 48px 24px
}

#s-skills .technologies div {
    width: 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column
}

@media screen and (max-width: 992px) {
    #s-skills .technologies div {
        width: 18%
    }
}

#s-skills .technologies div img {
    width: 100%
}

#s-skills .technologies div h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 16px
}

#s-contact {
    width: 100%;
    height: auto;
    background-color: #171717;
    color: #fff;
    padding: 120px 0px;
    text-align: center
}

#s-contact .grid-layout h2 {
    font-size: 4.8rem;
    font-weight: 500;
    font-family: "Red Hat Display"
}

@media screen and (max-width: 992px) {
    #s-contact .grid-layout h2 {
        font-size: 4rem
    }
}

#s-contact .grid-layout>div {
    margin: 56px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

#s-contact .grid-layout>div h3 {
    margin: 16px 0;
    font-size: 3.2rem;
    font-weight: 500;
    background-color: #121212;
    border: 2px solid #1d1d1d;
    padding: 12px 40px;
    border-radius: 32px
}

@media screen and (max-width: 992px) {
    #s-contact .grid-layout>div h3 {
        font-size: 2.4rem
    }
}

#s-contact .grid-layout p {
    font-size: 2rem
}

@media screen and (max-width: 992px) {
    #s-contact .grid-layout p {
        font-size: 1.8rem
    }
}

footer {
    width: 100%;
    height: auto;
    background-color: #121212;
    color: #fff;
    padding: 24px 0px
}

footer p {
    font-size: 1.8rem;
    text-align: center
}

@media screen and (max-width: 1216px) {
    footer .grid-layout {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 48px
    }

    footer .grid-layout div {
        display: none
    }
}

.grid-layout {
    max-width: 1140px;
    margin: 0 auto
}

/*# sourceMappingURL=style.css.map */