@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&family=Passion+One:wght@400;700;900&display=swap');
@font-face {
    font-family: "minecraft";
    src: url("../MinecraftRegular-Bmg3.otf") format("opentype");
}
:root{
    --fonte1: verdana, geneva, tahoma, sans-serif;
    --fonte2:"Passion One", sans-serif;
    --fonte3:"Gelasio", cursive, serif;
    --fonte4:"minecraft";
    }
* {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  margin: 0px;
  padding: 0px;
}
body{
    background-color: aliceblue;
    background-image: linear-gradient(90deg, cyan, rgb(24, 24, 255));
}

img{
    display: block;
    margin: auto;
    width: 350px;
    -webkit-user-drag: none;
}
.zonewhite{
    background-color: aliceblue;
    width: 100%;
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.231);
    padding: 0px 0px 10px 0px;
}
h1{
    font-size: 2em;
    margin: 30px 10px 10px 10px;
}
h1, h2{
        font-family: var(--fonte1);
        text-align: center;
}
.h2a{
    margin: 0;
    padding: 15px;
    font-family: var(--fonte4);
}
h2{
    margin: 10px 10px 10px 10px;
}
h3{
    font-family: var(--fonte4);
    font-size: 2em;
    text-align: center;
}
p{
    font-family: var(--fonte4);
    text-align: center;
    font-size: 1.2em;
}
span{
    font-family: var(--fonte4);
    font-size: 2em;
}
a{
    text-decoration: none;
    -webkit-user-drag: none;
}
a:active{
    text-decoration: none;
}
div.video{
    background-color: black;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 57.5%;
    position: relative;
    transform: scale(0.9);
    border-radius: 20px;
}
div.video > iframe{
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 10px;

}
.glow {
  color: #fff;
  transition: text-shadow 0.3s ease; /* suavidade */

}

.glow:hover {
  /* brilho forte */
  text-shadow:
    0 0 1px rgb(255, 255, 255),
    0 0 16px rgb(255, 255, 255),
    0 0 32px rgb(255, 255, 255),
    0 0 48px rgb(255, 255, 255);
}
.glowdefinitive{
  color: #fff;
  transition: text-shadow 0.3s ease; /* suavidade */
  text-shadow:
    0 0 1px rgb(255, 255, 255),
    0 0 16px rgb(255, 255, 255),
    0 0 32px rgb(255, 255, 255),
    0 0 48px rgb(255, 255, 255);

}














.gradient-text2{
font-size:2em;
font-weight:800;

background:linear-gradient(270deg,#00f0ff,#9333ea,#22c55e);
background-size:400% 400%;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
.gradient-text{
font-size:3em;
font-weight:800;

background:linear-gradient(270deg,#00f0ff,#9333ea,#22c55e);
background-size:400% 400%;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
.gradient-text3{
font-size:1em;
font-weight:800;

background:linear-gradient(270deg,#00f0ff,#9333ea,#22c55e);
background-size:400% 400%;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
.gradient-text{
font-size:3em;
font-weight:800;

background:linear-gradient(270deg,#00f0ff,#9333ea,#22c55e);
background-size:400% 400%;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}







.contributors{
overflow:hidden;
max-width: 100%;
padding:10px 0;
margin: 2px auto;
background:#ffffff2c;
border-radius: 20px;
border: 2px solid rgba(0, 0, 0, 0.21);
}

.contributors-track{
display:flex;
gap:40px;
width:max-content;
animation: scrollContributors 20s linear infinite;
}

.contributor{
display:flex;
align-items:center;
gap:0px;
color:rgb(255, 255, 255);
background-color: rgb(0, 0, 0);
padding: 20px;
border-radius: 20px;
transition: transform 0.3s ease;
}
.contributor:hover{
    transform: scale(1.05);
}

.contributor img{
width:40px;
height:40px;
border-radius:50%;
}

@keyframes scrollContributors{
from{
transform:translateX(0);
}
to{
transform:translateX(-50%);
}
}


.glow-card{
position:relative;
padding:30px;
border-radius:20px;
margin: 10px 10px 10px 10px;
background:#0f172a;
color:white;
z-index:1;
}

/* camada brilhante */
.glow-card::before{
content:"";
position:absolute;
inset:-2px;
border-radius:inherit;

background:linear-gradient(
45deg,
#00f0ff,
#9333ea,
#22c55e,
#00f0ff
);

background-size:300% 300%;

animation:glowMove 6s linear infinite;

z-index:-1;
filter:blur(10px);
opacity:0.8;
}

@keyframes glowMove{
0%{
background-position:0% 50%;
}
50%{
background-position:100% 50%;
}
100%{
background-position:0% 50%;
}
}
.glow-card2{
position:relative;
padding:30px;
border-radius:16px;
background:#0f172a;
color:white;
z-index:1;
}

/* camada brilhante */
.glow-card2::before{
content:"";
position:absolute;
inset:-2px;
border-radius:inherit;

background:linear-gradient(
45deg,
#000000,
#242424,
#2f2f2f,
#000000
);

background-size:300% 300%;

animation:glowMove 6s linear infinite;

z-index:-1;
filter:blur(10px);
opacity:0.8;
}

@keyframes glowMove{
0%{
background-position:0% 50%;
}
50%{
background-position:100% 50%;
}
100%{
background-position:0% 50%;
}
}

.glow-card3{
position:relative;
padding:30px;
border-radius:20px;
margin: 10px 10px 10px 10px;
background:#0f172a;
color:white;
z-index:1;
}

/* camada brilhante */
.glow-card3::before{
content:"";
position:absolute;
inset:-2px;
border-radius:inherit;

background:linear-gradient(
45deg,
#ffffff,
#ffffff,
#bdc4ff,
#c3b5ff
);

background-size:300% 300%;

animation:glowMove 6s linear infinite;

z-index:-1;
filter:blur(10px);
opacity:0.8;
}

@keyframes glowMove{
0%{
background-position:0% 50%;
}
50%{
background-position:100% 50%;
}
100%{
background-position:0% 50%;
}
}

/*FOOTER-----------------------------------------------------*/
footer{
    max-width: 800px;
    margin: auto;
    padding: 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.333);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.146);
    border: 5px solid rgba(255, 255, 255, 0.242);
}
footer p{
    text-align: center;
    padding: 0px;
    margin: 0px;
    color: white;
    font-family: var(--fonte4);
}
footer a{
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}

.caixa{
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    color: white;
    box-shadow: 2px 1px 1px 0px black;
}
.caixa input{
    display: none;
}

.titulo{
    display: block;
    background: #222;
    color: white;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

.conteudo{
    max-height: 0;
    overflow: hidden;
    background: #000000;
    color: white;
    padding: 0 12px;
    margin: 10px 0px 0px 0px;
    border-radius: 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* quando clicar */

#SOBRE:checked ~ .conteudo{
    max-height: 200px;
    padding: 12px;
}

#BASIC:checked ~ .conteudo{
    max-height: 200px;
    padding: 12px;
}

.glowcard:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #000;
}