@charset "utf-8";
/* CSS Document */

/* Inicio codigo WhatsApp */
 #wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;

      display: flex;
      align-items: center;
      justify-content: center;

      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #25D366;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
      cursor: pointer;
      text-decoration: none;

      /* Transiciones suaves */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    #wa-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.60);
    }

    #wa-float:active {
      transform: scale(0.96);
    }

    #wa-float svg {
      width: 34px;
      height: 34px;
      fill: #ffffff;
    }

    /* Tooltip al pasar el cursor */
    #wa-float::before {
      content: '¡Escríbenos!';
      position: absolute;
      right: 72px;
      background: #1a1a1a;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.82rem;
      padding: 6px 12px;
      border-radius: 6px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    #wa-float:hover::before {
      opacity: 1;
    }

    /* Punto dorado de "disponible" */
    #wa-float::after {
      content: '';
      position: absolute;
      top: 4px;
      right: 4px;
      width: 12px;
      height: 12px;
      background: #C71A2F;
      border: 2px solid #fff;
      border-radius: 50%;
    }
#wa-float svg {
      width: 50px !important;
      height: 50px !important;
      max-height: 50px !important;
    }
	/* Fin codigo WhatsApp */

      