/* ================================
   BOTÓN CONSULTAR (A LA IZQUIERDA)
================================= */
.btn-consultar {
    position: fixed;
    bottom: 20px;
    right: 100px; /* ← Se mueve a la izquierda del botón WhatsApp */
    background-color: #007bff; /* Azul profesional */
    border-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

/* Hover efecto igualito al WhatsApp */
.btn-consultar:hover {
    background-color: #0069d9;
    transform: scale(1.1);
    color: white;
}

/* Tooltip igual que el de WhatsApp */
.btn-consultar .tooltip-text {
    visibility: hidden;
    width: 170px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 6px 8px;
    position: absolute;
    bottom: 90px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-consultar:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}