/* ==========================================================================
   WIDGET FLOTANTE NÁUTICO (CADENA, ANCLA Y BURBUJAS)
   ========================================================================== */

/* CONTENEDOR PRINCIPAL FIJO EN PANTALLA */
.anchor-widget {
  position: fixed !important;
  top: 0 !important;
  right: 5.5% !important;
  left: auto !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  pointer-events: none;
}

/* CADENA SVG QUE SE DESENREDA */
.anchor-chain {
  width: 80px;
  height: 60px;
  overflow: visible;
}

/* BOTÓN VERTICAL Y ANIMACIÓN DE BAMBOLEO */
.anchor-button {
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  animation: floatAnimation 3.5s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* PÍLDORA CON TEXTO DE CONTACTO */
.anchor-label {
  background-color: var(--color-card-bg, #FFFFFF);
  color: var(--color-text-body, #334155);
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  transition: transform 0.3s ease;
  text-align: center;
}

.anchor-label strong {
  color: var(--color-brand-blue, #288CCB);
  font-weight: 600;
}

.anchor-button:hover .anchor-label {
  transform: scale(1.03);
}

/* ÍCONO EN CÍRCULO ORO OXIDADO */
.anchor-icon {
  width: 58px;
  height: 58px;
  background-color: var(--color-gold, #C5A059);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.anchor-button:hover .anchor-icon {
  transform: scale(1.1) rotate(12deg);
  background-color: #B08C46;
}

/* CONTENEDOR Y ANIMACIÓN DE BURBUJAS NÁUTICAS */
.bubbles-container {
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.bubble {
  position: absolute;
  background: rgba(40, 140, 203, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: bubbleRise 3.5s ease-out forwards;
}

@keyframes bubbleRise {
  0% {
    opacity: 0.9;
    transform: translateY(0) scale(0.6);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-160px) scale(1.4);
  }
}

/* ADAPTACIÓN RESPONSIVE EN MÓVILES */
@media (max-width: 767px) {
  .anchor-widget {
    right: 20px !important;
  }
  .anchor-label {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
}