* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Archivo"
}

::selection {
    background-color: #ff8009de;
    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 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8009de; /* cor do botão */
    color: white; /* cor do texto */
    text-decoration: none; /* remove o sublinhado */
    border-radius: 5px; /* bordas arredondadas */
}
button,
input {
    border: 0;
    font-family: "Archivo"
}

button:focus,
input:focus {
    border: 0
}

body {
    font-family: "Archivo";
    background-color: #fff;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background-color: #040405
}

::-webkit-scrollbar-thumb {
    background-color: #ff8009de;
    border-radius: 8px
}

header {
    padding: 0px 50px;
    background: #040405;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid #101013;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0
}
.logo {
    max-width:64px;
    height: 64px;
    display: block
}
  .btgithub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #6e40c9;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .btgithub:hover {
    background-color: #8247e5;
    transform: translateY(-2px);
  }
  
  .btgithub:active {
    transform: translateY(0);
    background-color: #5a34a5;
  }
  
  .btgithub svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
@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 img {
    width: 150px
}

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: #d8d8d8;
    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, #ff8009de 0%, #17161d 100%);
    transform-origin: bottom right;
    transition: transform 0.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: 0.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: #09090b;
        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: #040405;
    position: relative
}

@media screen and (max-width: 992px) {
    #s-home {
        padding: 100px 20px
    }
}

#s-home .grid-layout #home {
    display: flex;
    align-items: center;
    height: 90vh;
    overflow: hidden;
    width: 100%
}

#s-home .grid-layout #home #home-container-text {
    width: 100%;
    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 h1 {
    color: #fff;
    max-width: 700px;
    line-height: 140%;
    font-size: 4rem;
    font-weight: 500
}

@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-text h1 {
        font-size: 3.2rem
    }
}

#s-home .grid-layout #home #home-container-text h1 span {
    color: #ff8009de
}

#s-home .grid-layout #home #home-container-text p {
    color: #d8d8d8;
    font-size: 2rem;
    max-width: 600px;
    margin: 40px 0px;
    font-weight: 400;
    line-height: 140%
}

#s-home .grid-layout #home #home-container-text a {
    background: #ff8009de;
    color: #fff;
    backdrop-filter: blur(10px);
    padding: 20px 32px;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500
}

#s-home .grid-layout #home #home-container-text a:hover {
    padding: 20px 45px;
    max-width: 270px
}

#s-home .grid-layout #home #logo {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translate(0%, -50%)
}

@media screen and (max-width: 1200px) {
    #s-home .grid-layout #home #logo {
        display: none
    }
}

#s-about {
    padding: 96px 48px;
    background-color: #09090b
}

@media screen and (max-width: 992px) {
    #s-about {
        padding: 48px 24px
    }
}

#s-about .grid-layout #about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

#s-about .grid-layout #about-photo {
    width: 50%;
    padding-right: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 1s all ease
}

#s-about .grid-layout #about-photo #photo-Matheuscode {
    width: 400px
}

#s-about .grid-layout #about-photo:hover {
    transform: scale(1.1)
}

#s-about .grid-layout #about-photo div {
    display: flex;
    justify-content: center;
    align-items: center
}

#s-about .grid-layout #about-photo div img {
    width: 48px
}

#s-about .grid-layout #about-photo .about-figure {
    position: absolute;
    background-color: #040405;
    border-radius: 4px;
    width: 72px;
    height: 72px
}

#s-about .grid-layout #about-photo .figure-one {
    top: 40px;
    right: 430px
}

#s-about .grid-layout #about-photo .figure-two {
    top: 100px;
    right: 150px
}

#s-about .grid-layout #about-photo .figure-three {
    top: 250px;
    right: 450px
}

#s-about .grid-layout #about-photo .icon-one {
    animation: icon-move 3s ease 2.9s infinite alternate
}

#s-about .grid-layout #about-photo .icon-two {
    animation: icon-move 3s ease 1.9s infinite alternate
}

#s-about .grid-layout #about-photo .icon-three {
    animation: icon-move 3s ease 0.6s infinite alternate
}

@keyframes icon-move {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(10px, -40px, 0)
    }
}

#s-about .grid-layout #about-photo img {
    width: 100%;
    max-width: 400px
}

@media screen and (max-width: 1200px) {
    #s-about .grid-layout #about-photo {
        display: none
    }
}

#s-about .grid-layout #about-text {
    width: 50%
}

@media screen and (max-width: 1200px) {
    #s-about .grid-layout #about-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 0px
    }
}

#s-about .grid-layout #about-text h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500
}

#s-about .grid-layout #about-text h2 span {
    color: #ff8009de
}

#s-about .grid-layout #about-text p {
    line-height: 3.2rem;
    color: #d8d8d8;
    font-size: 2rem;
    font-line-height: 160%;
}

#s-experience {
    background-color: #040405;
    color: #fff;
    padding: 96px 48px
}

@media screen and (max-width: 992px) {
    #s-experience {
        padding: 48px 24px
    }
}

#s-experience .grid-layout h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500
}

#s-experience .grid-layout h2 span {
    color: #ff8009de
}

#s-experience .grid-layout #experience {
    margin-top: 32px;
    display: flex;
    gap: 40px
}

@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience {
        flex-wrap: wrap
    }
}

#s-experience .grid-layout #experience .option-experience {
    display: flex;
    width: 25%;
    flex-direction: column
}

@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .option-experience {
        width: 100%
    }
}

#s-experience .grid-layout #experience .option-experience .activeExperience {
    border-left: 4px solid #ff8009de;
    color: #ff8009de
}

#s-experience .grid-layout #experience .option-experience>div {
    padding: 24px 32px;
    text-align: left;
    background-color: #09090b;
    border-left: 4px solid #040405
}

#s-experience .grid-layout #experience .option-experience>div:hover {
    cursor: pointer
}

#s-experience .grid-layout #experience .option-experience>div h3 {
    font-size: 1.8rem;
    font-weight: 400
}

#s-experience .grid-layout #experience .text-experience {
    width: 75%
}

@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .text-experience {
        width: 100%
    }
}

#s-experience .grid-layout #experience .text-experience>div {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .text-experience>div {
        flex-wrap: wrap;
        gap: 32px
    }
}

#s-experience .grid-layout #experience .text-experience>div h4 {
    font-size: 2.4rem;
    font-weight: 400
}

#s-experience .grid-layout #experience .text-experience>div p {
    font-size: 1.8rem;
    color: #d8d8d8
}

#s-experience .grid-layout #experience .text-experience h5 {
    font-size: 1.8rem;
    margin: 32px 0px;
    font-weight: 400;
    color: #ff8009de
}

#s-experience .grid-layout #experience .text-experience p {
    font-size: 1.8rem;
    line-height: 160%;
    color: #d8d8d8
}

#s-course {
    padding: 96px 48px;
    text-align: center;
    background-color: #09090b
}

@media screen and (max-width: 992px) {
    #s-course {
        padding: 48px 24px
    }
}

#s-course .grid-layout h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500
}

#s-course .grid-layout h2 span {
    color: #ff8009de
}

#s-course .grid-layout #projects {
    margin: 24px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: left
}

#s-course .grid-layout #projects .teslabank {
    border: 1px solid #ff8009de
}

#s-course .grid-layout #projects .teslabank:hover {
    border: 1px solid #ff8009de
}

#s-course .grid-layout #projects .naped {
    border: 1px solid #00a3ff
}

#s-course .grid-layout #projects .naped:hover {
    border: 1px solid #00a3ff
}

#s-course .grid-layout #projects>article {
    background-color: #040405;
    height: auto;
    padding: 32px;
    margin: 8px;
    flex-basis: calc(33% - 20px);
    flex-grow: 1;
    border: 1px solid #040405;
    transition: 1s all ease;
    min-height: 275px
}

#s-course .grid-layout #projects>article:hover {
    border: 1px solid #ff8009de
}

@media screen and (max-width: 1200px) {
    #s-course .grid-layout #projects>article {
        flex-basis: calc(50% - 20px)
    }
}

@media screen and (max-width: 768px) {
    #s-course .grid-layout #projects>article {
        flex-basis: calc(100% - 20px)
    }
}

#s-course .grid-layout #projects>article h3 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500
}

#s-course .grid-layout #projects>article p {
    line-height: 24px;
    margin: 24px 0px;
    color: #d8d8d8;
    line-height: 3.2rem;
    font-size: 1.8rem
}

#s-course .grid-layout #teslabank {
    color: #ff8009de
}

#s-course .grid-layout #teslabank::after {
    background: linear-gradient(270deg, #ff8009de 0%, #17161d 100%)
}

#s-course .grid-layout #naped {
    color: #00a3ff
}

#s-course .grid-layout #naped::after {
    background: linear-gradient(270deg, #00a3ff 0%, #17161d 100%)
}

#s-course .grid-layout a {
    color: #ff8009de;
    position: relative;
    font-size: 1.8rem;
    font-weight: 400
}

#s-course .grid-layout a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    background: linear-gradient(270deg, #ff8009de 0%, #17161d 100%);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1)
}

#s-course .grid-layout a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

#s-course .grid-layout a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1)
}

#s-course .grid-layout a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

#s-projects {
    padding: 96px 48px;
    background-color: #040405
}

@media screen and (max-width: 992px) {
    #s-projects {
        padding: 48px 24px
    }
}

#s-projects .grid-layout h2 {
    text-align: center;
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500
}

#s-projects .grid-layout h2 span {
    color: #ff8009de
}

#s-projects .grid-layout #services {
    display: flex;
    height: auto;
    flex-wrap: wrap;
    margin: 24px 0px
}

#s-projects .grid-layout #services article {
    background-color: #09090b;
    height: auto;
    padding: 32px;
    margin: 8px;
    flex-basis: calc(33% - 20px);
    flex-grow: 1;
    border: 1px solid #040405;
    transition: 1s all ease
}

#s-projects .grid-layout #services article:hover {
    border: 1px solid #ff8009de
}

@media screen and (max-width: 1200px) {
    #s-projects .grid-layout #services article {
        flex-basis: calc(50% - 20px)
    }
}

@media screen and (max-width: 768px) {
    #s-projects .grid-layout #services article {
        flex-basis: calc(100% - 20px)
    }
}

#s-projects .grid-layout #services article div {
    height: 90px
}

#s-projects .grid-layout #services article div img {
    width: 70px
}

#s-projects .grid-layout #services article h3 {
    padding: 24px 0px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500
}

#s-projects .grid-layout #services article p {
    line-height: 3.2rem;
    color: #d8d8d8;
    font-size: 1.8rem
}

#s-store {
    padding: 96px 48px;
    background-color: #09090b;
    padding-bottom: 32px
}

@media screen and (max-width: 992px) {
    #s-store {
        padding: 48px 24px
    }
}

#s-store .grid-layout #store {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    padding: 8px
}

#s-store .grid-layout #store div,
#s-store .grid-layout #store article {
    width: 50%
}

@media screen and (max-width: 1200px) {

    #s-store .grid-layout #store div,
    #s-store .grid-layout #store article {
        width: 100%
    }
}

#s-store .grid-layout #store #store-text {
    min-height: 300px
}

#s-store .grid-layout #store #store-text h2 {
    margin-bottom: 32px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500
}

#s-store .grid-layout #store #store-text h2 span {
    color: #ff8009de
}

#s-store .grid-layout #store #store-text .changeDescription {
    transition: 2s all ease
}

#s-store .grid-layout #store #store-text p {
    max-width: 500px;
    line-height: 3.2rem;
    color: #d8d8d8;
    font-size: 1.8rem
}

#s-store .grid-layout #store #store-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

@media screen and (max-width: 1200px) {
    #s-store .grid-layout #store #store-cards {
        margin-top: 48px
    }
}

#s-store .grid-layout #store #store-cards article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 20%;
    flex-grow: 1;
    height: 130px;
    background-color: #040405;
    position: relative;
    border: 1px solid #040405;
    transition: 1s all ease
}

#s-store .grid-layout #store #store-cards article:hover {
    border: 1px solid #ff8009de
}

#s-store .grid-layout #store #store-cards article:hover .store-cards-name,
#s-store .grid-layout #store #store-cards article:hover .store-cards-name-high,
#s-store .grid-layout #store #store-cards article:hover .store-cards-name-low {
    display: block;
    text-align: center
}

@media screen and (max-width: 768px) {
    #s-store .grid-layout #store #store-cards article {
        width: 40%;
        margin: 20px 0px
    }
}

#s-store .grid-layout #store #store-cards article .store-cards-name,
#s-store .grid-layout #store #store-cards article .store-cards-name-high,
#s-store .grid-layout #store #store-cards article .store-cards-name-low {
    left: 50%;
    height: auto;
    position: absolute;
    padding: 5px;
    transform: translate(-50%, 0%);
    background-color: #040405;
    width: 125px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    font-size: 1.8rem
}

#s-store .grid-layout #store #store-cards article .store-cards-name-high {
    top: -50px
}

#s-store .grid-layout #store #store-cards article .store-cards-name-low {
    bottom: -50px
}

#s-store .grid-layout #store #store-cards article .aumento-hover {
    bottom: -75px
}

#s-store .grid-layout #store #store-cards article .store-icons {
    width: 60px
}

footer {
    text-align: center;
    margin-top: 72px
}

footer .grid-layout {
    border-top: 1px solid rgba(114, 114, 126, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    padding: 8px
}

@media screen and (max-width: 768px) {
    footer .grid-layout {
        justify-content: center
    }
}

footer .grid-layout #direitos-autorais {
    margin-top: 24px
}

footer .grid-layout p {
    color: #d8d8d8;
    text-align: center;
    font-size: 1.8rem
}

footer .grid-layout div {
    margin-top: 24px;
    display: flex;
    align-items: center
}

footer .grid-layout div img {
    width: 24px;
    margin-left: 8px
}

@media screen and (max-width: 768px) {
    footer .grid-layout div {
        width: 100%;
        justify-content: center
    }
}

.typewriter:after {
    content: "|";
    margin-left: 8px;
    opacity: 1;
    animation: blink 1s infinite;
    color: #ff8009de
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.grid-layout {
    max-width: 1140px;
    margin: 0 auto
}

/*# sourceMappingURL=style.css.map */