@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: #001524;
    --second-bg-color: #041d2e;
    --text-color: #ededed;
    --main-color: #00f064;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: .6s;
}

.header.sticky {
    background: var(--bg-color);
}

.logo {
    position: relative;
    color: var(--main-color);
    font-weight: 700;
}

.logo img {
    width: 70px;
}

.logo span {
    color: var(--main-color);
}

.navbar {
    position: relative;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .5s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}

#menu-icon {
    position: relative;
    font-size: 3.5rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.home {
    display: flex;
    align-items: center;
    padding: 0 9%;
    background-size: cover;
    background-position: center;
}

.img-box {
    border: .2rem solid var(--main-color);
    border-radius: 25%;
    width: 500px;
    height: 500px;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10%;
}

.img-box img {
    display: flex;
    position: relative;
    width: 100%;
    background: transparent;
    transition: 2.3s;
    margin-top: -35%;
}

.img-box img:hover {
    opacity: 50%;
}

.home-content {
    max-width: 70rem;
}

.home-content h1 {
    position: relative;
    display: inline-block;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
}

.home-content h1 span {
    color: var(--text-color);
}

.home-content .text-animate {
    position: relative;
    width: 46.5rem;
}

.home-content .text-animate h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: .7px var(--main-color);
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: homeBgText 6s linear infinite;
    animation-delay: 1.97s;
}

.home.show-animate .home-content .text-animate h3 {
    animation: homeBgText 6s linear infinite;
    animation-delay: 2s;
}

.home-content .text-animate h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-right: 2px solid var(--main-color);
    z-index: -1;
    animation: homeCursorText 6s linear infinite;
    animation-delay: 2s;
}

.home.show-animate .home-content .text-animate h3::before {
    animation: homeCursorText 6s linear infinite;
    animation-delay: 2s;
}

.home-content p {
    position: relative;
    font-size: 1.6rem;
    margin: 2rem 0 4rem;
    max-width: 600px;
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 40rem;
    height: 6rem;
}

.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .7s;
}

.btn-box .btn:hover {
    color: var(--main-color);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}

.btn-box .btn:nth-child(2):hover {
    color: var(--bg-color);
}

.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}

.btn-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .7s;
}

.btn-box .btn:hover::before {
    width: 100%;
}

.home-sci {
    position: absolute;
    bottom: 4rem;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 23px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .6s;
}

.home-sci a:hover {
    color: var(--bg-color);
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .6s;
}

.home-sci a:hover::before {
    width: 100%;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--second-bg-color);
    padding-bottom: 6rem;
}

.heading {
    position: relative;
    font-size: 5rem;
    margin-bottom: 2.5%;
    text-align: center;
}

span {
    color: var(--main-color);
}

.about-img {
    position: relative;
    width: 200px;
    height: 300px;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: -2%;
}

.about-img img {
    width: 200px;
    height: 300px;
    margin-bottom: 0;
    margin-left: -5%;
}

.about-content {
    text-align: center;
}

.about-content h3 {
    position: relative;
    display: inline-block;
    font-size: 2.6rem;
}

.about-content p {
    position: relative;
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.btn-box.btns {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 40rem;
    height: 6rem;
    left: 42%;
}

.btn-box.btns a::before {
    background: var(--second-bg-color);
}

.experience-row {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
}

.video-pitch {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.video-pitch video {
    width: 40%;
}

.link-caderno {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.link-caderno h1 {
    font-size: 22px;
}

.link-caderno .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .7s;
}

.link-caderno .btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.link-programacao {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.link-circuito {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.qrcode-banner {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.link-programacao h1 {
    font-size: 22px;
}

.link-programacao .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .7s;
}

.link-programacao .btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.qrcode-banner .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .7s;
}

.qrcode-banner .btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.qrcode-banner h1 {
    font-size: 22px;
}

.link-circuito h1 {
    font-size: 22px;
}

.link-circuito .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .7s;
}

.link-circuito .btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.equipe {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    background: var(--second-bg-color);
    padding-bottom: 5rem;
}

.equipe .equipe-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.equipe-content .content {
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 3.3%;
    z-index: 1;
}

.equipe-content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    transition: .6s;
    z-index: -1;
}

.equipe-content .content:hover::before {
    width: 100%;
}

.equipe-content .content .description-project {
    color: var(--main-color);
}

.equipe-content .content h2 {
    font-size: 2.5rem;
}

.equipe-content .content h3 {
    font-size: 2rem;
}

.equipe-content .content p {
    font-size: 1.5rem;
}

.conclusion {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--bg-color);
    margin-top: 1%;
}

.conclusion .experience-conclusion-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.experience-conclusion-row .experience-conclusion-column {
    flex: 1 1 40rem;
    position: relative;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    padding: .5rem 1.5rem;
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    z-index: 1;
}

.experience-conclusion-row .experience-conclusion-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .6s;
}

.experience-conclusion-row .experience-conclusion-column:hover::before {
    width: 100%;
}

.experience-conclusion-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    color: var(--main-color);
} 

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    margin-top: -1%;
    background: var(--second-bg-color);
}

.footer-img,
.footer-iconTop {
    position: relative;
}

.footer-img {
    text-align: left;
    align-items: left;
    justify-content: left;
}

.footer-img img {
    width: 70px;
}

span .footer-text p {
    color: var(--main-color);
}

.footer-iconTop a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    z-index: 1;
    overflow: hidden;
}

.footer-iconTop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .6s;
}

.footer-iconTop a:hover::before {
    width: 100%;
}

.footer-iconTop a i {
    font-size: 3.3rem;
    color: var(--bg-color);
    transition: .6s;
}

.footer-iconTop a:hover i {
    color: var(--main-color);
}

/* ANIMATE RELOAD AND SCROLL */
.animate {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 98;
}

.animate.home-img {
    width: 50%;
}

.logo .animate,
.navbar .animate,
#menu-icon .animate,
.home.show-animate .animate {
    animation: showRight 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
}

.animate.scroll {
    transition: 1s ease;
    transition-delay: calc(.3s / var(--i));
    animation: none;
}

section:nth-child(odd) .animate.scroll,
.footer .animate.scroll {
    background: var(--second-bg-color);
}

.about.show-animate .animate.scroll,
.experience.show-animate .animate.scroll,
.equipe.show-animate .animate.scroll,
.conclusion.show-animate .animate.scroll,
.footer.show-animate .animate.scroll {
    transition-delay: calc(.3s * var(--i));
    width: 0;
}

/* BREAKPOINTS */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }

    .footer {
        padding: 2rem 4%;
    }
}

@media (max-width: 850px) {
    .animate.home-img {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .header {
        background: var(--bg-color);
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        z-index: 1;
        transition: .3s ease;
        transition-delay: .3s;
    }

    .navbar.active {
        transition-delay: 0s;
        left: 0;
    }

    .navbar .active-nav {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .3s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav {
        transition-delay: .3s;
        left: 0;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .3s ease;
        transition-delay: 0s;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .3s;
    }
}

@media (max-width: 520px) {
    html {
        font-size: 50%;
    }

    .home-content h1 {
        display: flex;
        flex-direction: column;
    }

    .home-sci {
        width: 160px;
    }

    .home-sci a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 462px) {
    .home-content h1 {
        font-size: 5.2rem;
    }

    .btn-box.btns {
        text-align: center;
        align-items: center;
        margin-left: -11%;
    }

    #menu-icon {
        display: flex;
        margin-right: 15%;
    }

    .education {
        padding: 10rem 4% 5rem 5%;
    }

    .video-pitch {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
    
    .video-pitch video {
        width: 60%;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 371px) {
    .home .home-content .text-animate {
        justify-content: center;
        text-align: center;
    }

    .home .home-content h1 {
        font-size: 35px;
        text-align: center;
        margin-left: -5.75%;
    }

    .home-content .text-animate h3 {
        font-size: 25px;
        text-align: center;
        margin-left: -8%;
    }

    .home-content p {
        font-size: 15px;
        text-align: center;
        margin-left: -5%;
        max-width: 300px;
    }

    .btn-box.btns {
        text-align: center;
        align-items: center;
        margin-left: -12.5%;
    }

    #menu-icon {
        display: flex;
        margin-right: 22%;
    }

    .home-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .btn-box {
        display: flex;
        align-items: center;
        text-align: center;
        margin-left: -6.8%;
    }

    .btn-box.btns {
        display: flex;
        align-items: center;
        text-align: center;
        margin-left: -13%;
    }
}
/* BREAKPOINTS */

/* KEYFRAMES ANIMATION */
@keyframes homeBgText {
    0%,
    10%,
    100% {
        background-position: -46.5rem 0;
    }

    65%,
    85% {
        background-position: 0 0;
    }
}

@keyframes homeCursorText {
    0%,
    10%,
    100% {
        width: 0;
    }

    65%,
    78%,
    82% {
        width: 100%;
        opacity: 1;
    }

    75%,
    81% {
        opacity: 0;
    }
}

@keyframes showRight {
    100% {
        width: 0;
    }
}
/* KEYFRAMES ANIMATION */