/* Modal de promoção do app */
.app-promotion-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.app-promotion-content {
    background: linear-gradient(135deg, #1a1f26 0%, #2d3748 100%);
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalAppear 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.app-promotion-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-image: url('../assets/images/MakireCloud.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.app-promotion-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #00e676;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.app-promotion-text {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.5;
}

.app-promotion-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-download-app {
    background: linear-gradient(to right, #00e676, #00c853);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-download-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
}

.btn-later {
    background: transparent;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-later:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Indicador de instalação */
.install-prompt {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #1a1f26;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    animation: slideUp 0.3s ease;
    max-width: 300px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.install-prompt img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.install-prompt-text {
    flex: 1;
}

.install-prompt-text strong {
    display: block;
    font-size: 0.9rem;
}

.install-prompt-text span {
    font-size: 0.8rem;
    color: #aaa;
}

.install-btn {
    background: #00e676;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
}

.install-btn:hover {
    background: #00c853;
}

.close-install {
    background: transparent;
    border: none;
    color: #777;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
}

.close-install:hover {
    color: white;
}