:root {
    --bg-color: #121313;
    --hero-bg: #121313;
    --text-color: #ffffff;
    --btn-download: #ffffff;
    --btn-download-text: #23272a;
    --btn-secondary: #23272a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

.hero {
    background-color: var(--hero-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCI+PHBhdGggZmlsbD0iIzIzMjcyYSIgZmlsbC1vcGFjaXR5PSIwLjEiIGQ9Ik0wLDk2TDQ4LDExMi4zQzk2LDEyOCwxOTIsMTYwLDI4OCwxNjBDMzg0LDE2MCw0ODAsMTI4LDU3NiwxMTJDNjcyLDk2LDc2OCw5Niw4NjQsMTEyQzk2MCwxMjgsMTA1NiwxNjAsMTE1MiwxNjBDMTI0OCwxNjAsMTM0NCwxMjgsMTM5MiwxMTJMMTQ0MCw5NkwxNDQwLDMyMEwxMzkyLDMyMEMxMzQ0LDMyMCwxMjQ4LDMyMCwxMTUyLDMyMEMxMDU2LDMyMCw5NjAsMzIwLDg2NCwzMjBDNzY4LDMyMCw2NzIsMzIwLDU3NiwzMjBDNDgwLDMyMCwzODQsMzIwLDI4OCwzMjBDMTkyLDMyMCw5NiwzMjAsNDgsMzIwTDAsMzIwWiI+PC9wYXRoPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

p.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-download {
    background-color: var(--btn-download);
    color: var(--btn-download-text);
}

.btn-dark {
    background-color: var(--btn-secondary);
    color: white;
}

.btn-light {
    background-color: transparent;
    border: 2px gray solid;
    color: white;
    box-shadow: none;
}
.btn-light:hover {
    border: 2px rgb(255, 255, 255) solid;
}

/* --- Imagem Flutuante (estilo Discord) --- */
.floating-img {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 500px;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    /* Deixa clicar através dela */
}

.floating-img-left {
    position: absolute;
    bottom: 50px;
    left: -100px;
    width: 400px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    #downloadBtn {
        display: none;
    }

    /* Simplificado para mobile */
    .floating-img,
    .floating-img-left {
        display: none;
    }
}