/* Estilo do Botão Principal */
.pwa-install-button {
    background-color: #2563EB; /* Azul */
    color: white;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block; /* Garante que o botão seja exibido */
}

.pwa-install-button:hover {
    background-color: #1D4ED8; /* Azul mais escuro */
}

.pwa-button-icon {
    margin-right: 8px;
}

/* Estilos do Modal */
.pwa-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.pwa-modal-content {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pwa-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pwa-instructions {
    color: #4b5563;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pwa-instructions-box {
    text-align: left;
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.pwa-instructions-box p {
    margin-bottom: 0.5rem;
}
.pwa-instructions-box p:last-child {
    margin-bottom: 0;
}

.pwa-icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    height: 24px;
    width: 24px;
}
.pwa-plus-icon {
    display: inline-block;
    vertical-align: middle;
    color: #3b82f6;
    font-weight: bold;
    font-size: 20px;
    margin: 0 4px;
}

.pwa-modal-close-btn {
    margin-top: 2rem;
    background-color: #e5e7eb;
    color: #1f2937;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.pwa-modal-close-btn:hover {
    background-color: #d1d5db;
}