/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background e fontes */
body {
    background: radial-gradient(circle at top left, #1e002d, #0a0015);
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    height: 60px;
    filter: drop-shadow(0 0 5px #a000ff);
}

.title {
    font-size: 2rem;
    color: #a000ff;
    text-shadow: 0 0 10px #a000ff;
    margin-top: 10px;
}

/* Título da seção */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #cc80ff;
    text-shadow: 0 0 6px #a000ff;
}

/* Grid de cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Card */
.card {
    background: rgba(60, 0, 80, 0.3);
    border: 1px solid #a000ff44;
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px #3f0073;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #a000ff;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #a000ff33;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 5px #a000ff;
}

.card-description {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

/* Botão */
.download-button {
    display: inline-block;
    background: #a000ff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px #a000ff;
    transition: background 0.3s, box-shadow 0.3s;
}

.download-button:hover {
    background: #c040ff;
    box-shadow: 0 0 20px #c040ff;
}
