.download-container {
    max-width: 1400px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
}

.download-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.download-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid para os cards lado a lado */
.download-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .download-cards-grid {
        grid-template-columns: 1fr;
    }
}

.download-card {
    background: rgba(10, 15, 25, 0.95);
    border: 2px solid rgba(120, 150, 180, 0.3);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.download-card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7896b4 0%, rgba(120, 150, 180, 0.3) 100%);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(120, 150, 180, 0.3);
}

.client-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(120, 150, 180, 0.3) 0%, rgba(120, 150, 180, 0.1) 100%);
    border: 2px solid rgba(120, 150, 180, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-icon i {
    font-size: 1.5rem;
    color: #7896b4;
}

.client-title {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-description {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.features-section {
    margin-bottom: 1.5rem;
}

.features-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #7896b4;
    font-size: 1rem;
    width: 20px;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.system-requirements {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(120, 150, 180, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.system-requirements-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.system-requirements-content i {
    color: #7896b4;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.system-requirements-content > div {
    flex: 1;
}

.system-requirements-content strong {
    color: #ffffff;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.3rem;
}

.system-requirements-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: block;
    line-height: 1.5;
}

.download-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7896b4 0%, #5a7a99 100%);
    color: #ffffff;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(120, 150, 180, 0.4);
    margin-bottom: 1rem;
}

.download-btn:hover {
    background: linear-gradient(135deg, #8aa5c4 0%, #6b8aa9 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(120, 150, 180, 0.6);
    border-color: rgba(120, 150, 180, 0.8);
    color: #ffffff;
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn-disabled {
    background: rgba(50, 50, 50, 0.5);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
    border: 2px solid rgba(120, 150, 180, 0.2);
}

.download-btn-disabled:hover {
    background: rgba(50, 50, 50, 0.5);
    transform: none;
    box-shadow: none;
    border-color: rgba(120, 150, 180, 0.2);
}

.download-btn i {
    margin-right: 0.75rem;
}

.download-fallback-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(120, 150, 180, 0.1);
    border: 1px solid rgba(120, 150, 180, 0.3);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.download-fallback-notice i {
    color: #7896b4;
    font-size: 0.9rem;
}

.download-fallback-notice span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.download-fallback-notice a {
    color: #7896b4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-fallback-notice a:hover {
    color: #8aa5c4;
    text-decoration: underline;
}

.terms-notice {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 1.5rem 0 0 0;
}

.terms-notice a {
    color: #7896b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-notice a:hover {
    color: #8aa5c4;
}

.antivirus-warning {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.warning-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 152, 0, 0.2) 100%);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon i {
    font-size: 1.8rem;
    color: #ffc107;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.warning-content {
    flex: 1;
    text-align: left;
}

.warning-title {
    color: #ffc107;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .antivirus-warning {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .warning-content {
        text-align: center;
    }
}

.additional-info {
    margin-top: 3rem;
    text-align: center;
}

.info-cards {
    display: inline-flex;
    gap: 3rem;
    padding: 2rem;
    background: rgba(10, 15, 25, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(120, 150, 180, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.info-card {
    text-align: center;
}

.info-card-icon {
    font-size: 2rem;
    color: #7896b4;
    margin-bottom: 0.5rem;
}

.info-card-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-card-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* APK Modal Styles */
#apkModal .modal-content,
.apk-modal .modal-content {
    background: #0a0f19 !important;
    background-color: #0a0f19 !important;
    border: 2px solid rgba(120, 150, 180, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

#apkModal .modal-header,
.apk-modal .modal-header {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(120, 150, 180, 0.3);
    padding: 1.5rem 2rem;
}

#apkModal .modal-body,
.apk-modal .modal-body {
    background-color: transparent !important;
    padding: 2rem;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#apkModal .modal-title,
.apk-modal .modal-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.apk-modal .modal-title i {
    color: #7896b4;
}

.apk-modal .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.apk-modal .btn-close:hover {
    opacity: 1;
}

.apk-modal .modal-body {
    padding: 2rem;
}

.modal-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.apk-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apk-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #141923 !important;
    border: 2px solid rgba(120, 150, 180, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apk-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 150, 180, 0.1), transparent);
    transition: left 0.5s ease;
}

.apk-option:hover {
    border-color: #7896b4;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(120, 150, 180, 0.3);
}

.apk-option:hover::before {
    left: 100%;
}

.apk-icon {
    position: relative;
    font-size: 2.5rem;
    color: #7896b4;
    min-width: 60px;
    text-align: center;
}

.apk-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #7896b4, #5a7a94);
    color: #ffffff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.apk-badge-32 {
    background: linear-gradient(135deg, #9aa6b8, #7896b4);
}

.apk-info {
    flex: 1;
}

.apk-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.apk-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.apk-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.apk-features span {
    color: #7896b4;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.apk-features i {
    font-size: 0.75rem;
}

.apk-download-icon {
    font-size: 1.5rem;
    color: #7896b4;
    transition: transform 0.3s ease;
}

.apk-option:hover .apk-download-icon {
    transform: translateY(3px);
    color: #b8d0e8;
}

.modal-help {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(120, 150, 180, 0.1);
    border-left: 3px solid #7896b4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-help i {
    color: #7896b4;
    font-size: 1.2rem;
}

.modal-help small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 576px) {
    .apk-option {
        flex-direction: column;
        text-align: center;
    }
    
    .apk-features {
        justify-content: center;
    }
}

