/* ============================================
   PÁGINA DE DOWNLOAD - ESTILOS EXCLUSIVOS
   ============================================ */

/* Hero Section */
.download-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(56,189,248,0.1), transparent);
    border-radius: 30px;
    margin-bottom: 3rem;
}

.download-hero h2 {
    font-size: 3rem;
    color: var(--sky);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(56,189,248,0.5);
}

.download-hero h2 i {
    margin-right: 15px;
}

.download-hero p {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Cards - UM EMBAIXO DO OUTRO COM LARGURA AUMENTADA */
.download-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px; /* AUMENTADO de 600px para 800px */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 1rem;
}

/* Cards de Download - LARGURA AUMENTADA */
.download-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Para telas grandes, aumentar ainda mais */
@media (min-width: 1200px) {
    .download-grid {
        max-width: 900px; /* AINDA MAIOR em telas grandes */
    }
    
    .download-card {
        padding: 3rem; /* Mais padding interno */
    }
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--sky);
    box-shadow: 0 20px 40px rgba(56,189,248,0.2);
}

/* Ícone do Card */
.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(56,189,248,0.2), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--sky);
    border: 2px solid rgba(56,189,248,0.3);
}

/* Títulos e Versões */
.download-card h3 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.download-card .version {
    color: var(--sky);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

/* Informações do Arquivo */
.download-card .file-info {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.download-card .file-info p {
    color: var(--muted);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.download-card .file-info i {
    color: var(--sky);
    width: 25px;
    font-size: 1rem;
}

/* Botão de Download */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #0b1220;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 20px rgba(56,189,248,0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56,189,248,0.5);
}

.download-btn i {
    font-size: 1.2rem;
}

/* Info do Google Drive */
.drive-info {
    color: var(--muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.drive-info i {
    color: #34a853;
    margin-right: 5px;
}

/* Seção de Instruções - TAMBÉM AUMENTADA */
.instructions-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    max-width: 800px; /* AUMENTADO de 600px para 800px */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .instructions-section {
        max-width: 900px; /* AINDA MAIOR em telas grandes */
        padding: 3rem;
    }
}

.instructions-section h3 {
    font-size: 2rem;
    color: var(--sky);
    text-align: center;
    margin-bottom: 2rem;
}

.instructions-section h3 i {
    margin-right: 10px;
}

/* Passos da Instalação */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #0b1220;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(56,189,248,0.5);
}

.step h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Aviso */
.warning-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(56,189,248,0.1);
    border-radius: 12px;
    border: 1px solid rgba(56,189,248,0.2);
}

.warning-box i {
    color: var(--sky);
    margin-right: 10px;
    font-size: 1.1rem;
}

.warning-box span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Botão Voltar - SEM SUBLINHADO */
.back-home {
    text-align: center;
    margin-top: 3rem;
}

.back-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #0b1220;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(56,189,248,0.6);
}

.back-home .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(56,189,248,0.9);
    text-decoration: none;
}

.back-home .btn i {
    font-size: 1rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .download-hero h2 {
        font-size: 2.2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .download-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .instructions-section {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .download-card {
        padding: 1.5rem;
    }

    .download-card h3 {
        font-size: 1.5rem;
    }

    .instructions-section {
        padding: 1.5rem;
    }
}