/* Caotize PWA — CTA do menu e modal iOS */

.czpwa-install-trigger { display: none !important; }
.czpwa-install-trigger.czpwa-visible { display: inline-flex !important; }

/* Modal iOS */
.czpwa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: 'Lexend Deca', sans-serif;
    animation: czpwa-fade-in 0.2s ease-out;
}

@keyframes czpwa-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.czpwa-modal-card {
    background: #000;
    color: #fff;
    border: 1px solid #8b5cf6;
    border-radius: 12px;
    padding: 24px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.czpwa-modal-card h2 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #fff;
}

.czpwa-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.czpwa-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.czpwa-step-icon {
    flex: 0 0 28px;
    height: 28px;
    border-radius: 50%;
    background: #8b5cf6;
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.czpwa-modal-close {
    width: 100%;
    padding: 12px;
    background: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.czpwa-modal-close:hover {
    background: #7c3aed;
}
