.pwa-install-banner {
    position: fixed;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    animation: slideIn 0.3s ease-out;
}

/* Estilos para Desktop */
@media (min-width: 769px) {
    .pwa-install-banner {
        top: 20px;
        right: 20px;
        max-width: 300px;
        border-radius: 8px;
        padding: 12px;
    }

    .banner-content {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .banner-content img {
        width: 32px;
        height: 32px;
    }

    .banner-text strong {
        font-size: 14px;
    }

    .banner-text p {
        font-size: 12px;
    }

    .banner-buttons {
        margin-top: 8px;
    }

    .install-button,
    .close-button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Estilos para Mobile */
@media (max-width: 768px) {
    .pwa-install-banner {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px;
        border-top: 1px solid #eee;
    }

    .banner-content {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .banner-content img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .banner-text {
        flex: 1;
    }

    .banner-text strong {
        font-size: 16px;
        color: #333;
        margin-bottom: 4px;
        display: block;
    }

    .banner-text p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }

    .banner-buttons {
        display: flex;
        gap: 10px;
        margin-top: 12px;
    }

    .install-button,
    .close-button {
        flex: 1;
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
}

/* Estilos Comuns */
.install-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.install-button:hover {
    background-color: #45a049;
}

.close-button {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-button:hover {
    background-color: #f5f5f5;
}

/* Estilos específicos para iOS */
.ios .banner-text p {
    color: #007AFF;
}

.ios .install-button {
    display: none;
}

.ios .close-button {
    border-color: #007AFF;
    color: #007AFF;
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ícones no texto */
.banner-text i {
    color: #007AFF;
    margin: 0 2px;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-content img {
        margin-bottom: 12px;
    }

    .banner-text {
        text-align: center;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .install-button,
    .close-button {
        width: 100%;
    }
}
