body{
    font-family: Arial, sans-serif;
    background: #ccc;
    margin: 0;
}

/* HERO */
.hero{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* VÍDEO */
.video-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* CAMADA ESCURA */
.hero::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 1;
}

/* TEXTO */
.hero-content,
.hero nav,
.il{
    position: relative;
    z-index: 2;
}

/* POSIÇÃO DO NOME */
.hero-content{
    text-align: center;
    color: white;
    margin-top: 130px;
}

/* NOME */
.hero-content h1{
    text-transform: uppercase;
    font-size: 42px;
    text-shadow: 4px 3px 5px red;
    color: antiquewhite;
    margin: 0;
}

/* BOTÃO */
.hero-content p{
    margin-top: 10px;
    text-align: center;
}

.hero-content a{
    display: inline-block;
    background: black;
    color: red !important;
    padding: 8px 12px;
    border: 1px solid red;
    font-size: 13px;
}

/* MENU */
.hero nav ul{
    text-align: right;
    margin: 20px 40px 0 0;
    padding: 0;
}

.hero nav li{
    display: inline-block;
    list-style: none;
    margin-left: 10px;
    border: 1px solid white;
}

.hero nav a{
    background: rgba(0,0,0,0.3);
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

/* CONTEÚDO */
main{
    width: 80%;
    margin: auto;
}

.content-section{
    background: white;
    padding: 15px;
    margin-top: 15px;
    overflow: hidden;
}

/* HEADER */
.content-header{
    border-bottom: 2px solid #ccc;
    padding: 10px;
    background: #eee;
    text-align: center;
}

/* CARDS */
.card{
    width: 32%;
    float: left;
    box-sizing: border-box;
    text-align: center;
}

.card-1, .card-2{
    margin-right: 2%;
}

.card img{
    width: 100%;
    border-radius: 5px;
}

/* TEXTO */
marquee{
    color: red;
}

.il{
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* IMAGENS */
.image{
    float: right;
    margin: 10px;
}

/* RODAPÉ */
.rodape{
    background: #000;
    padding: 15px 0;
    text-align: center;
}

/* NEON FORTE */
.neon-rodape{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;

    text-shadow:
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff0000;

    animation: neonPulse 0.7s infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 40px #ff0000;
    }
    to {
        text-shadow:
            0 0 40px #ff0000,
            0 0 80px #ff0000,
            0 0 120px #ff0000;
    }
}

/* PLAYER */
.player-musica{
    position: fixed;
    bottom: 70px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    padding: 6px;
    border-radius: 6px;
    display: flex;
    gap: 5px;
    z-index: 9999;
}

#btnMusica{
    background: red;
    color: white;
    border: none;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    border-radius: 4px;
}

.player-musica input{
    width: 60px;
}

/* IMAGENS GERAIS */
img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 768px){

    .hero{
        height: 300px;
    }

    /* SOBE O NOME */
    .hero-content{
        margin-top: 80px;
    }

    .hero-content h1{
        font-size: 20px;
    }

    /* BOTÃO MAIS PRÓXIMO */
    .hero-content a{
        font-size: 11px;
        padding: 6px 8px;
    }

    /* ESCONDE TEXTO EXTRA */
    .il{
        display: none;
    }

    /* MENU */
    .hero nav ul{
        text-align: center;
        margin: 10px 0;
    }

    .hero nav li{
        display: block;
        width: 80%;
        margin: 6px auto;
    }

    /* CARDS */
    .card{
        width: 100%;
        float: none;
        margin-bottom: 15px;
        text-align: center;
    }

    main{
        width: 95%;
    }

    /* CENTRALIZA IMAGENS */
    .card img,
    .image,
    img{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .image{
        float: none;
    }

    /* CENTRALIZA TEXTO */
    .content-section{
        text-align: center;
    }

    .player-musica{
        bottom: 60px;
        right: 5px;
    }
}