@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

:root {
    --cor-principal: #f2a900;
    --cor-fundo: #3D3D3D;
    --cor-fundo-content: #1F1F1F;
    --cor-txt: #FFFFFF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html {
    background-color: var(--cor-fundo-content);
    width: 100vw;
    min-height: 100dvh;
    position: relative;
    display: grid;
    place-content: center;
    overflow: auto;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

#pattern {
    width: 100vw;
    height: 100dvh;
    position: absolute;
    top: -44px;
    left: -50px;
    right: 0;
    bottom: 0;
}

#gradient {
    background: radial-gradient(#F2A900, transparent 50%);
    width: 400px;
    height: 400px;
    position: fixed;
    top: -200px;
    left: -200px;
    transform: translate(200px, 200px);
    pointer-events: none;
    will-change: transform;
}

#errorModalEmailBanido h2 {
    font-family: sans-serif;
    color: red;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

#errorModalEmailBanido p {
    font-family: sans-serif;
    position: initial;
    color: black;
    font-size: 1rem;
    margin-bottom: 10px;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 95%;
    height: 800px;
    padding: 40px;
    margin: 0 auto;
    background-color: #0d0c0f15;
    backdrop-filter: blur(10px);
    border: 1px solid #f2a90011;
    border-radius: 25px;
}

.content .introducao {
    height: 50%;
    font-size: 2rem;
    font-family: "Orbitron", serif;
    text-align: center;
    color: white;
}

.introducao #animado {
    color: var(--cor-principal);
    border-right: 10px solid var(--cor-principal);
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;

    animation: mark .5s step-end infinite, write 3s steps(22, end) infinite;
}

@keyframes mark {
    50% {
        border-right-color: transparent;
    }
}

@keyframes write {
    20% {
        width: 7ch;
    }
    70% {
        width: 7ch;
    }
    85% {
        width: 0;
    }
    100% {
        width: 0;
    }
}

.img-edu {
    position: absolute;
    bottom: 0;
    right: 0;
}

.img-content {
    position: relative;
}

p {
    right: 100px;
    bottom: 205px;
    position: absolute;
    font-size: 0.8rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.img-content img {
    width: 200px;
    filter: drop-shadow(2px 0px 6px #F2A900);
}

.links {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 5px;
}

.links a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    margin: 40px 0;
    color: #ffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 2px;
    overflow: hidden;
    font-family: "Orbitron", serif;
}

.links a:hover {
    background: rgb(242, 169, 0);
    color: #050801;
    box-shadow: 0 0 2px rgb(242, 169, 0),
                0 0 22px rgb(242, 169, 0),
                0 0 30px rgb(242, 169, 0),
                0 0 80px rgb(242, 169, 0);
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}

.links a span {
    position: absolute;
    display: block;
}

.links a span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,rgb(242, 169, 0));
    animation: animate1 1s linear infinite;
}

@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}

.links a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,rgb(242, 169, 0));
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
.links a span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,rgb(242, 169, 0));
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}

@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}

.links a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,rgb(242, 169, 0));
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}