/* El Vaso Verde — botón flotante de WhatsApp */
.evv-wa {
  position: fixed; z-index: 190;
  right: 1.5rem; bottom: 1.5rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(15, 42, 29, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, bottom .3s ease;
  text-decoration: none;
}
.evv-wa svg { width: 32px; height: 32px; display: block; }
.evv-wa:hover { transform: scale(1.06); box-shadow: 0 8px 26px rgba(15, 42, 29, 0.35); }
.evv-wa:focus-visible { outline: 3px solid #0F2A1D; outline-offset: 3px; }
.evv-wa__label {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translate(6px, -50%);
  background: #0F2A1D; color: #F4EFE6; white-space: nowrap;
  font: 500 .85rem/1 'DM Sans', system-ui, sans-serif; padding: .6rem .8rem;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.evv-wa:hover .evv-wa__label, .evv-wa:focus-visible .evv-wa__label { opacity: 1; transform: translate(0, -50%); }
/* Mientras el aviso de cookies está abierto, el botón sube para no taparlo */
body.evv-consent-open .evv-wa { bottom: calc(var(--evv-consent-h, 0px) + 2.25rem); }
body.menu-open .evv-wa { display: none; }
@media (max-width: 540px) {
  .evv-wa { right: 1rem; bottom: 1rem; width: 54px; height: 54px; }
  .evv-wa svg { width: 29px; height: 29px; }
  .evv-wa__label { display: none; }
  body.evv-consent-open .evv-wa { bottom: calc(var(--evv-consent-h, 0px) + 1.5rem); }
}
@media (prefers-reduced-motion: reduce) { .evv-wa, .evv-wa__label { transition: none; } }
@media print { .evv-wa { display: none; } }
