*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --vermelha: #d2001a;
    --roxa: #7462ff;
    --azul: #2c7edb;
    --roza: rgb(248, 34, 255);
}

body{
    background-color: #b362ff;
}

/* CÓDIGO DO VÍDEO, POR FAVOR NÃO MECHER POIS NEM EU SEI OQ EU FIZ */

.video-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(10px);
}

/* Para telas largas (ex: desktop, tablet deitado) */
@media (min-aspect-ratio: 16/9) {
    .video-back {
        width: 100%;
        height: auto;
    }
}

/* Para telas estreitas (ex: celular em pé) */
@media (max-aspect-ratio: 16/9) {
    .video-back {
        width: auto;
        height: 100%;
        left: calc(-300px + 10vw);
    }
}

@media (max-width: 770px){
    /* .video-back{
        width: auto;
        height: auto;
        left: -700px;
    } */
     .video-back{
        display: none;
     }
}


html, body{
    width: 100%;
    height: 100%;
}

main{
    width: 100%;
}

/* PERFIL */

.perfil{
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-perfil{
    width: 70%;
    max-width: 1200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    margin-right: 100px;
    padding: 20px;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.192);
    border-radius: 12px;
    border: solid 1px white;
}

.perfil-img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfil-img img{
    width: 300px;
    border: solid 1px white;
    border-radius: 12px;
}

.perfil-text{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfil-text p{
    font-size: 1.3rem;
}

.social-media{
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    gap: 10px;
}

@media (max-width: 1245px){
    .box-perfil{
        width: 90%;
        margin-left: 0px;
        margin-right: 0px;
        margin: 10px;
    }

    .perfil-text p{
        font-size: 1rem;
    }
}

@media (max-width: 700px){
    .box-perfil{
        display: grid;
    }

    .perfil-text{
        text-align: center;
    }

    .perfil-img img{
        width: 90%;
    }
}

/* ICONES DE REDES SOCIAIS */

.social-media-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-title h2{
    font-family: "Tagesschrift", system-ui;
    color: white;
}

.social-media-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media-icons img{
    width: 50px;
    filter: opacity(50%);
    transition: 300ms; 
}

.social-media-icons img:hover{
    transform: translateY(-10px);
    filter: opacity(100%);
    transition: 300ms;
}

/* PROJETOS */

.projetos{
    width: 100%;
    display: grid;
    align-items: center;
    margin-top: 100px;
}

.projetos-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projetos-title h1{
    font-family: "Tagesschrift", system-ui;
    font-size: 80px;
    color: transparent; /* Interior transparente */
    -webkit-text-stroke: 1px white; /* Borda branca */
    text-stroke: 2px white; /* Para navegadores que suportam sem prefixo */
    margin-bottom: 100px;
}

.projetos-video{
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 100px; 
    /* REMOVER O CÓDIGO A CIMA FUTURAMENTE */
}

.vi{
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vi-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vi-title h2{
    font-family: "Tagesschrift", system-ui;
    color: white;
    animation: glow 1.5s infinite alternate;
}

@media (max-width: 750px){
    .vi-title h2{
        animation: none;
    }
}

.video-container {
    max-width: 100%;
    aspect-ratio: 697 / 523;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

.computer-video1{
    aspect-ratio: 697 / 523;
    width: 90vw;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px black;
}

.computer-video2{
    aspect-ratio: 930 / 523;
    width: 90vw;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px black;
}

.phone-video{
    aspect-ratio: 362 / 643;
    width: 90vw;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px black;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

/* MEU CANAL */

.my-canal{
    width: 100%;
    display: grid;
    align-items: center;
    margin-top: 100px;
}

.mycanal-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mycanal-title h1{
    font-family: "Tagesschrift", system-ui;
    font-size: 80px;
    color: transparent; /* Interior transparente */
    -webkit-text-stroke: 1px white; /* Borda branca */
    text-stroke: 2px white; /* Para navegadores que suportam sem prefixo */
    margin-bottom: 100px;
}

.display{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display iframe{
    aspect-ratio: 930 / 523;
    width: 90vw;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px black;
}

/* FOOTER COPY */

footer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer h6{
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.486);
}
