.text-wrap {
  white-space: normal; 
  word-break: break-word;
  font-size: 0.85rem; 
  margin-top: 6px;
}
footer {
  background-color: #010A1A; 
}
/* libro de RECLAMACIONES*/

.libro-reclamaciones {
    width: 160px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    border-radius: 6px;
}

.libro-reclamaciones:hover {
    transform: scale(1.08);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* BOTON DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 80px; /* Ajusta según tu botón de scroll */
  right: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  font-size: 32px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}