﻿/* ==========================================================================
   FLOATING CONTACT
   Boton flotante reutilizado en todas las paginas.
   ========================================================================== */

.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 1400;
  display: inline-block;
  width: clamp(104px, 8.8vw, 148px);
  height: clamp(104px, 8.8vw, 148px);
  padding: 0;
  background: transparent;
  transform: scale(1.1);
  transform-origin: right bottom;
}

.floating-contact img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
    width: 78px;
    height: 78px;
  }
}
