* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8faff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Cabeçalho */
.header {
    background: #0077ff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
}

.header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.header nav a:hover {
    color: #ffdd00;
}

/* Hero */
.hero {
    background: linear-gradient(to bottom, #0077ff, #005ec2);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Sobre */
.sobre {
    padding: 40px 0;
    text-align: center;
}

.sobre-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.sobre-item img {
    width: 300px;
    max-width: 100%;
    border-radius: 10px;
}

.sobre-item p {
    flex: 1;
    font-size: 1.1rem;
}

/* Discord */
.discord {
    background: #5865f2;
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px auto;
}

.discord-logo {
    width: 100px;
    margin-bottom: 15px;
}

.btn-discord {
    display: inline-block;
    background: white;
    color: #5865f2;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-discord:hover {
    background: #e3e3e3;
}

/* Download */
.download {
    background: #e8f0ff;
    padding: 40px 0;
    text-align: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    background: #0077ff;
    color: white;
    padding: 12px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #005ec2;
}

.icon {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

/* Animação de subir/descer */
.bounce {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Rodapé */
.footer {
    background: #0077ff;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .header nav {
        margin-top: 10px;
    }
    .sobre-item {
        flex-direction: column;
    }
}
