.pwa-download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #003366 0%, #001a3a 100%);
    color: #fff;
    min-height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}

.pwa-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagem/pwa/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.download-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f2b139);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(242,177,57,0.3);
}

.download-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #f2b139;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.download-area {
    margin-top: 40px;
}

.btn-install-pwa {
    background: linear-gradient(45deg, #f2b139, #ff6a00);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(242,177,57,0.3);
}

.btn-install-pwa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242,177,57,0.4);
}

.btn-install-pwa i {
    font-size: 1.2rem;
}

.install-note {
    margin-top: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.app-preview {
    position: relative;
    text-align: center;
}

.app-preview-image {
    max-width: 80%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,51,102,0) 0%, rgba(0,51,102,0.2) 100%);
    border-radius: 30px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .pwa-download-section {
        padding: 60px 0;
    }

    .download-title {
        font-size: 3rem;
    }

    .download-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-preview {
        margin-top: 50px;
    }

    .app-preview-image {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2.5rem;
    }

    .app-preview-image {
        max-width: 80%;
    }
} 