* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 80px; /* espaço da navbar fixa */
    overflow-x: hidden;
}

/* CANVAS FUNDO */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* NAVBAR */
.navbar {
    background-color:transparent !important;
    padding: 15px 60px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.menu a {
    display: inline-block;
    padding: 10px 22px;
    margin-left: 10px;
    background: linear-gradient(45deg, #FF0096, #FF4DB8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 150, 0.6);
}

.menu a:hover {
    transform: scale(1.08);
}

/* CARD CENTRAL */
#card {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
    padding: 50px 30px;
    max-width: 600px;
    width: 90%;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 150, 0.6);
    box-shadow:
        0 0 10px #FF0096,
        0 0 25px rgba(255, 0, 150, 0.7),
        0 0 40px rgba(255, 0, 150, 0.4);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

#text {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

#frase {
    font-size: 18px;
    color: #ccc;
    font-weight: normal;
    letter-spacing: 5px;
}

/* FOOTER */
footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: white;
    position: relative;
    z-index: 2;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 15px;
        justify-content: center;
    }

    .menu {
        display: flex;
        flex-direction: row; /* mantém lado a lado */
        flex-wrap: wrap; /* quebra só se realmente precisar */
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .menu a {
        margin-left: 0;
        padding: 10px 22px;
        font-size: 13px;
        flex: 0 1 auto;
        width: auto; /* remove largura de 80% */
    }

    #card {
        padding: 40px 20px;
    }

    #text {
        font-size: 28px;
    }

    #frase {
        font-size: 15px;
    }
}
footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.footer-link {
    color: #FF0096;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.footer-link:hover {
    text-shadow: 0 0 8px #FF0096;
}

