.download-section {
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: center; /* Centraliza os títulos */
}

.download-section h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #fff !important; /* Força a cor branca */
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: center; /* Centraliza os cards */
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.download-card {
    background-color: #fff;
    border: 2px solid #444;
    padding: 20px;
    width: 150px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.download-card:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}
