/* Estilo do botão de instalação */
.install-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Inicialmente escondido */
}

.install-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.install-button:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.install-button:active {
    transform: translateY(0);
}

.install-button i {
    margin-right: 8px;
    font-size: 20px;
}

/* Para dispositivos móveis */
@media (max-width: 768px) {
    .install-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .install-button i {
        font-size: 18px;
    }
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.install-button.pulse {
    animation: pulse 1.5s infinite;
}
