.sociales{
  position: fixed !important;
  left: 0 !important;
  top: 190px !important;
  z-index: 3000 !important;
  display: block !important;
}

.sociales ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.sociales ul li a{
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;

  color: #fff;
  text-decoration: none;

  transition: width 250ms ease;
  overflow: hidden;
}

.sociales ul li:nth-child(1) a{ background:#3b5998; } /* Facebook */
.sociales ul li:nth-child(2) a{ background:#e130a3; } /* Instagram */
.sociales ul li:nth-child(3) a{ background:#000; }    /* TikTok */

.sociales ul li a:hover{ width: 70px; }

.sociales ul li a i{
  font-size: 22px;
  vertical-align: middle;
}



/* Estilos para el botón flotante de WhatsApp */

/* =========================
   CONTENEDOR GENERAL
========================= */
.floating-wpp{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  font-family: inherit;
}

/* =========================
   BOTÓN CIRCULAR (BOLITA)
========================= */
.floating-wpp-button{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-wpp-button:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.floating-wpp-button img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* =========================
   POPUP (cerrado por defecto)
========================= */
.floating-wpp-popup{
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow: hidden;

  /* estado cerrado */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

/* =========================
   POPUP ABIERTO
========================= */
.floating-wpp-popup.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================
   HEADER DEL POPUP
========================= */
.floating-wpp-head{
  background: #25D366;
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-wpp-head .close{
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* =========================
   MENSAJE
========================= */
.floating-wpp-message{
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  background: #f5f5f5;
}

/* =========================
   INPUT MENSAJE
========================= */
.floating-wpp-input-message{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #eee;
}

.floating-wpp-input-message textarea{
  flex: 1;
  resize: none;
  border: none;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 8px;
  background: #f1f1f1;
  outline: none;
  min-height: 36px;
}

/* =========================
   BOTÓN ENVIAR
========================= */
.floating-wpp-btn-send{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease;
}

.floating-wpp-btn-send:hover{
  background: #1ebe5d;
}

.floating-wpp-btn-send svg{
  fill: #fff;
}

