/* Sync icon animations - tutte le icone pulsano insieme */
#rec1250383263 img[id^="tuwidget"] {
  animation-delay: 0s !important;
}

/* Assicura che tutte le animazioni partano contemporaneamente */
#rec1250383263 .t-animate {
  animation-delay: 0s !important;
}

/* Hide Tilda badge */
#tilda-badge {
    display: none !important;
}
.t-badge {
    display: none !important;
}
.t-body__copyright,
.t-copyright,
a[href='https://tilda.cc/'],
a[href='http://tilda.cc/'],
div[class*='copyright'],
div[class*='badge'] {
    display: none !important;
}

/* ===== FLOATING WHATSAPP BUTTON (Claude) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: fixed;
  bottom: 38px;
  right: 100px;
  z-index: 9998;
  background: #1a1a2e;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-family: sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover + .whatsapp-tooltip {
  opacity: 1;
}