@charset "UTF-8";

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: justify;

    background: url("./imagens/MiaBackGroundOfficial.png") no-repeat center center;
    background-size: cover;
}

/* ===== BANNER ===== */
.banner {
    width: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* FADE */
.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(to bottom, rgba(0,0,0,0), #000);
    pointer-events: none;
}

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    background: #0000007c;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.marquee-track {
    display: flex;
    width: max-content;

    /* ANIMAÇÃO CORRIGIDA */
    animation: scroll 12s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    padding: 10px 40px;
    color: #ff2c75;
    font-size: 14px;
    text-shadow: 0 0 8px #ff2c75;
}

/* ANIMAÇÃO AJUSTADA (DE PONTA A PONTA) */
@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ===== CONTEÚDO ===== */
.content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.text-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.text-box p {
    line-height: 1.7;
    font-size: 15px;
    color: #ccc;
}

/* ===== BOTÃO ===== */
.voltar-container {
    margin-top: 40px;
}

.voltar {
    display: inline-block;
    background: #ff2c75;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.voltar:hover {
    background: #ff4c8f;
    transform: scale(1.05);
}

/* ===== RODAPÉ ===== */
.footer {
    text-align: center;
    padding: 25px;
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #222;
}

/* ===== SCROLL CUSTOM (DESKTOP) ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-thumb {
    background: #ff2c75;
    border-radius: 10px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4c8f;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {

    .text-box {
        grid-template-columns: 1fr;
    }

    .banner::after {
        height: 80px;
    }

    .marquee-track span {
        font-size: 12px;
        padding: 8px 25px;
    }

    /* SCROLL OCULTO REAL */
    html, body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }
}