/* Importa a fonte do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Configurações Globais e Fundo Escuro */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Fundo escuro profundo, retirado do seu banner */
    background-color: #120a1c;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho e Logo */
.page-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    /* Linha com o gradiente neon */
    border-bottom: 2px solid #4a00e0;
}

.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    /* Efeito de "brilho" leve no logo */
    filter: drop-shadow(0 0 15px rgba(74, 0, 224, 0.6));
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    /* Gradiente de texto "ORIONGSM" 
      Baseado no seu logo (Roxo -> Azul)
    */
    background: linear-gradient(90deg, #d400ff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header p {
    font-size: 1.1rem;
    color: #aaa;
}

/* Seção de Downloads */
.download-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    /* Cor azul neon do seu logo */
    color: #00bfff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cartão de Item de Download */
.download-item {
    background-color: #1f1a2c; /* Um pouco mais claro que o fundo */
    border: 1px solid #3a2d4d; /* Borda roxa sutil */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    /* Sombra neon sutil */
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 198, 255, 0.2);
}

.download-item h3 {
    font-size: 1.6rem;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.download-item p {
    color: #ccc;
    margin-bottom: 20px;
}

/* Botão de Download (Estilo Neon) */
.download-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 5px;
    /* Gradiente roxo/azul para o botão */
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Efeito 'hover' (passar o mouse) */
.download-btn:hover {
    background: transparent;
    /* Borda aparece com o gradiente */
    border-image: linear-gradient(90deg, #8e2de2, #4a00e0) 1;
    color: #f0f0f0;
    /* Efeito de brilho */
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.7);
}


/* Rodapé */
footer {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #3a2d4d;
    color: #777;
    font-size: 0.9rem;
}