.abrz-floating-contact { position: fixed; top: 50%; right: 20px; transform: translateY(-50%); display: block; z-index: 999999; font-family: sans-serif; }
.abrz-floating-btn { display: table; width: 54px; height: 54px; border-radius: 50%; color: #ffffff; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); margin: 12px 0; position: relative; cursor: pointer; border: none; }
.abrz-floating-btn-cell { display: table-cell; vertical-align: middle; text-align: center; }
.abrz-floating-btn svg { width: 24px; height: 24px; vertical-align: middle; }
.abrz-btn-info { background-color: #f6c71d; animation: abrzPulseInfo 2.5s infinite; }
.abrz-btn-whatsapp { background-color: #25D366; }
.abrz-btn-email { background-color: #0052cc; }
.abrz-floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.abrz-floating-btn .abrz-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background-color: #1e293b; color: #ffffff; padding: 7px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.abrz-floating-btn .abrz-tooltip::after { content: ""; position: absolute; top: 50%; left: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent transparent #1e293b; }
.abrz-floating-btn:hover .abrz-tooltip { opacity: 1; visibility: visible; }
@keyframes abrzPulseInfo { 0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); } 70% { box-shadow: 0 0 0 14px rgba(99, 102, 241, 0); } 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); } }

/* CSS do Modal */
.abrz-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); z-index: 1000000; display: none; align-items: center; justify-content: center; }
.abrz-modal-card { background-color: #ffffff; width: 100%; max-width: 680px; max-height: 90vh; border-radius: 16px; display: flex; flex-direction: column; overflow: hidden; position: relative; animation: abrzModalSlide 0.3s ease-out; }
@keyframes abrzModalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.abrz-modal-header { padding: 20px 24px; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }
.abrz-modal-header h3 { margin: 0; color: #0f172a; font-size: 18px; font-weight: 700; }
.abrz-modal-close { background: transparent; border: none; color: #64748b; font-size: 24px; cursor: pointer; }
.abrz-progress-bar-container { width: 100%; height: 6px; background-color: #e2e8f0; }
.abrz-progress-bar-fill { height: 100%; width: 16%; background-color: #f6c71d; transition: width 0.3s; }
.abrz-modal-body { padding: 24px; overflow-y: auto; flex: 1; }
.abrz-step-panel { display: none; }
.abrz-step-panel.active { display: block; }
.abrz-form-title { font-size: 16px; color: #475569; margin-bottom: 20px; font-weight: 600; }
.abrz-form-group { margin-bottom: 16px; }
.abrz-form-group label { display: block; font-size: 14px; color: #334155; font-weight: 600; margin-bottom: 6px; }
.abrz-form-group input, .abrz-form-group textarea, .abrz-form-group select { width: 100%; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px; box-sizing: border-box; }
.abrz-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.abrz-profile-option { border: 2px solid #e2e8f0; border-radius: 12px; padding: 16px; text-align: center; cursor: pointer; transition: all 0.2s; }
.abrz-profile-option.selected { border-color: #f6c71d; background-color: #eff6ff; }
.abrz-profile-option h4 { margin: 0 0 6px 0; color: #0f172a; }
.abrz-profile-option p { margin: 0; font-size: 12px; color: #64748b; }
.abrz-modal-footer { padding: 16px 24px; background-color: #f8fafc; border-top: 1px solid #e2e8f0; display: flex; justify-content: space-between; }
.abrz-btn-nav { padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 8px; cursor: pointer; border: none; }
.abrz-btn-prev { background-color: #e2e8f0; color: #475569; }
.abrz-btn-next { background-color: #f6c71d; color: #ffffff; }
.abrz-btn-submit { background-color: #25D366; color: #ffffff; display: none; }
@media (max-width: 768px) { .abrz-profile-grid { grid-template-columns: 1fr; } .abrz-floating-btn .abrz-tooltip { display: none; } }
.ti {
    display: inline-flex;
}
/* 1. Mudamos de table-cell para flexbox para garantir centralização real */
.abrz-floating-btn-cell {
    display: flex;
    align-items: center;     /* Centraliza verticalmente */
    justify-content: center;  /* Centraliza horizontalmente */
    width: 100%;
    height: 100%;
}

/* 2. Ajuste fino na classe do ícone para resetar desalinhamentos */
.ti {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.abrz-floating-btn {
    display: flex; /* Garante que o flexbox funcione */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 12px 0;
    position: relative;
    cursor: pointer;
    border: none;
    text-decoration: none !important; /* <--- ADICIONE ESTA LINHA AQUI */
}
/* Estilo para o novo botão de Agentes */
.abrz-btn-agents {
    background-color: #6366f1; /* Cor Roxa/Indigo tecnológica */
}
