.download-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 20px;
}

.download-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.download-header p {
    font-size: 1.2rem;
    color: #f0f0f0;
}

.download-options {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.download-card {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.main-download {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 36, 0.2));
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.download-icon img {
    width: 30px;
    height: 30px;
    border-radius: 0px;
}

.download-info {
    flex: 1;
}

.download-info h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.download-info p {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.download-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-details span {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.download-actions {
    text-align: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 200px;
}

.download-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-alternatives {
    margin-top: 50px;
}

.download-alternatives h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.alternatives-grid .download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-bottom: 0;
}

.alternatives-grid .download-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.alternatives-grid .download-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.alternatives-grid .download-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.system-requirements {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.system-requirements h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.requirements-card {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
}

.requirements-card.recommended {
    border: 2px solid #2ed573;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(46, 213, 115, 0.05));
}

.requirements-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.requirements-card ul {
    list-style: none;
    padding: 0;
}

.requirements-card li {
    color: #f0f0f0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-card li:last-child {
    border-bottom: none;
}

.requirements-card strong {
    color: #fff;
}

.installation-guide {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.installation-guide h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
}

.step-number {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #f0f0f0;
    line-height: 1.6;
}

.download-help {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.download-help h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.help-card {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.help-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.help-card p {
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Modal de Download */
.download-progress {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .download-header h1 {
        font-size: 2.2rem;
    }
    
    .main-download {
        flex-direction: column;
        text-align: center;
    }
    
    .download-details {
        justify-content: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .download-options,
    .system-requirements,
    .installation-guide,
    .download-help {
        padding: 0 15px;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
}



.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

.discord-btn {
    background: linear-gradient(45deg, #7289DA, #5865F2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    text-decoration: none;
}

.discord-btn:hover {
    opacity: 0.9;
}

