
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --primary: #ff3b8d;
    --primary-hover: #ff5aa3;
    --bg: #0b0b12;
}



.top-bar {
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 40px;

    background: rgba(10,10,15,0.75);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: all .3s ease;
}

/* quando scrolla */
.top-bar.scrolled {
    padding: 12px 40px;
    background: rgba(5,5,10,0.9);
}

/* LOGO */

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

/* MENU */

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;

    transition: all .25s ease;
}

.menu a.active {
    color: var(--primary);
}

.menu a:hover {
    color: white;
}

/* LINK ATIVO */

.menu a.active {
    color: #ff2a7f;
}

/* BOTÃO */

.submit-btn {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-hover)
    );
    /* Reduzi o primeiro valor (vertical) de 8px para 5px para ficar menos gordinho */
    padding: 8px 16px; 
    border-radius: 8px;
    color: white !important;
    
    /* Força o texto a ficar em uma linha só */
    white-space: nowrap; 
    
    /* Garante que o botão não estique mais que o necessário */
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem; /* Uma leve reduzida na fonte ajuda no mobile */
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 59, 141, 0.4);
}

/* Ajuste específico para telas bem pequenas se necessário */
@media (max-width: 480px) {
    .submit-btn {
        padding: 4px 12px;
        font-size: 0.85rem;
    }
}