body {
    padding:0;
    margin:0;
    color:white;
    background-color:#02021C;
    font-family: 'Poppins';
}

/* Menu de navegação */

.nav-link {
    color:black;
    font-size:3vh;
    margin-left:20px;
    margin-right:20px;
}

.dropdown-menu {
    border: 0px;
}

.dropdown-item {
    color:gray;
    font-size:3vh;
}

/* Elementos */

.chamada {
    font-size: 4vw;
    font-style: normal;
    font-weight: bold;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, var(--color) 100%);
    background-clip:text;
    -webkit-background-clip: text;
    color: transparent;
}

footer {
    padding-top:50px;
    color:gray;
}

.bold {
    font-weight: bold;
}

.azul1 {
    color: #0C76F4;
}

.azul2{
    color:#020215;
}

/* Sections */

section {
    padding-top:10vh;
    padding-bottom:10vh;
}

.section2 {
    background-color:#020215;
}

.section-green {
    background: linear-gradient(266deg, #046431 0.35%, #00003F 90.69%), #02021C;
}

.bglightblue {
    background: linear-gradient(266deg, #000070 0.35%, #00003F 90.69%), #00003F;
}

.bgblack {
    background: black;
}

/* links */

.link-card {
    border: 2px solid #0F0F46;
    background-color:#020215;
    transition: transform 0.3s;
}

.link-card:hover {
    transform: scale(1.2);
    z-index: 1;
}

.link-card img {
    width:256px;
}

.cards a {
    text-decoration: none;
}

/* Imagens fixas */

.right-fixed {
    height:100%;
    border-radius:500px 0px 0px 500px;
    max-height:60vh;
}

.left-fixed {
    height:100%;
    border-radius:0px 500px 500px 0px;
}

/* Cores para os retângulos */

.rectangle {
    width:100%;
    height:7px;
    margin-top:10px;
    margin-bottom:10px;
    border-radius: 35px;
}

.bgpurple {
    background: linear-gradient(264deg, #00061A 10%, #9E00FF 100%), #D9D9D9;
}

.bgred {
    background: linear-gradient(264deg, #00061A 10%, #F00 100%), #D9D9D9;
}

.bgblue {
    background: linear-gradient(264deg, #000619 10%, #0064AC 100%), #D9D9D9;
}

.bgorange {
    background: linear-gradient(264deg, #000619 10%, #A44200 100%), #D9D9D9;
}

/* Gradientes para letras */

.gd {
    background: linear-gradient(90deg, var(--color) 10%, #FFF 100%), #D9D9D9; 
    background-clip:text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Botões */

.btn-curso {
    margin-top:7vh;
    margin-bottom:7vh;
    width:100%;
    height:6vh;
    color: white;
}

.btn {
    border: 1px solid var(--color);
}

/* Mega Botão */

.mega-ad-button {
    width:100%;
    border-radius: 25px;
    padding:3vw;
}

.mega-ad-button button{
    background-color: rgba(0, 0, 0, .5);
    border-radius: 25px;
    color:white;
}

.mega-ad-button button:hover{
    color:white;
    font-weight: bold;
}

.mega-purple {
    background: linear-gradient(266deg, #DF1396 0.35%, #880357 90.69%);
}

.mega-red {
    background: linear-gradient(266deg, #E0161A 0.35%, #7A0706 90.69%);
}

.mega-blue {
    background: linear-gradient(266deg, #000070 0.35%, #00003F 90.69%);
}

.mega-orange {
    background: linear-gradient(266deg, #F77A26 0.35%, #A44200 90.69%);
}

/* Focos brilhantes */

.foco {
    font-size:8vh;
    margin-bottom:10vh;
}

.glow {
    color: var(--color);
    padding:20px;
    text-shadow: 0 0 10px var(--color);
}

/* Animações */

.slideRight {
    animation: slideRight 1.5s forwards;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Vídeos */

.fixed-bg {
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}
.fixed-bg video {
    position:absolute;
    opacity: 0.3;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    pointer-events: none;
}

/* Elementos Experience */

.experience-border {
    border: 3px solid;
    border-image-slice: 1;
    transition: transform 0.3s;
    animation: rotateColors 5s linear infinite;
}

@keyframes rotateColors {
    0% { border-image-source: linear-gradient(to right, red, green, blue, red); }
    25% { border-image-source: linear-gradient(to right, green, blue, red, green); }
    50% { border-image-source: linear-gradient(to right, blue, red, green, blue); }
    75% { border-image-source: linear-gradient(to right, red, green, blue, red); }
    100% { border-image-source: linear-gradient(to right, green, blue, red, green); }
}

.experience-text {
    font-style: normal;
    font-weight: bold;
    background: linear-gradient(270deg, rgb(255, 0, 0) 16.67%, rgb(255, 255, 0) 33.33%, rgb(0, 255, 0) 50%, rgb(0, 255, 255) 66.67%, rgb(0, 0, 255) 83.33%, rgb(255, 0, 255) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: rainbowText 0.8s linear infinite;
}

@keyframes rainbowText {
    0% { background: linear-gradient(270deg, rgb(255, 0, 0) 16.67%, rgb(255, 255, 0) 33.33%, rgb(0, 255, 0) 50%, rgb(0, 255, 255) 66.67%, rgb(0, 0, 255) 83.33%, rgb(255, 0, 255) 100%); background-clip: text;-webkit-background-clip: text;}
    25% { background: linear-gradient(270deg, rgb(255, 255, 0) 16.67%, rgb(0, 255, 0) 33.33%, rgb(0, 255, 255) 50%, rgb(0, 0, 255) 66.67%, rgb(255, 0, 255) 83.33%, rgb(255, 0, 0) 100%); background-clip: text;-webkit-background-clip: text;}
    50% { background: linear-gradient(270deg, rgb(0, 255, 0) 16.67%, rgb(0, 255, 255) 33.33%, rgb(0, 0, 255) 50%, rgb(255, 0, 255) 66.67%, rgb(255, 0, 0) 83.33%, rgb(255, 255, 0) 100%); background-clip: text;-webkit-background-clip: text;}
    75% { background: linear-gradient(270deg, rgb(0, 255, 255) 16.67%, rgb(0, 0, 255) 33.33%, rgb(255, 0, 255) 50%, rgb(255, 0, 0) 66.67%, rgb(255, 255, 0) 83.33%, rgb(0, 255, 0) 100%); background-clip: text;-webkit-background-clip: text;}
    100% { background: linear-gradient(270deg, rgb(0, 0, 255) 16.67%, rgb(255, 0, 255) 33.33%, rgb(255, 0, 0) 50%, rgb(255, 255, 0) 66.67%, rgb(0, 255, 0) 83.33%, rgb(0, 255, 255) 100%); background-clip: text;-webkit-background-clip: text;}
}

/* Funcionamento Mobile */

@media (max-width: 800px) {

    .foco {
        font-size:8vw;
    }

    .link-card {
        margin: 0 0 0 0;
    }
    
    .chamada {
        font-size:6vh;
    }

}