.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.08);
}

.electric-gradient {
  background: linear-gradient(135deg, #712ae2 0%, #008ebf 100%);
}

.bg-mesh {
  background-color: #f7f9fb;
  background-image:
    radial-gradient(at 0% 0%, rgba(113, 42, 226, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(0, 142, 191, 0.1) 0px, transparent 50%);
}

/* Banner RGPD */
.rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px;
  transform: translateY(110%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.rgpd-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rgpd-banner__panel {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.14);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.rgpd-banner__content {
  flex: 1 1 320px;
  min-width: 0;
}

.rgpd-banner__title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #191c1e;
  margin: 0 0 0.35rem;
}

.rgpd-banner__text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #45464d;
  margin: 0;
}

.rgpd-banner__text a {
  color: #712ae2;
  font-weight: 600;
  text-decoration: underline;
}

.rgpd-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.rgpd-banner__btn {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.rgpd-banner__btn:active {
  transform: scale(0.97);
}

.rgpd-banner__btn--accept {
  background: linear-gradient(135deg, #712ae2 0%, #008ebf 100%);
  color: #fff;
}

.rgpd-banner__btn--accept:hover {
  opacity: 0.9;
}

.rgpd-banner__btn--reject {
  background: transparent;
  color: #191c1e;
  border: 1px solid rgba(113, 42, 226, 0.3);
}

.rgpd-banner__btn--reject:hover {
  background: rgba(113, 42, 226, 0.06);
}

@media (max-width: 640px) {
  .rgpd-banner__actions {
    width: 100%;
  }

  .rgpd-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Botão flutuante de contacto */
.contact-fab {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-fab__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.contact-fab.is-open .contact-fab__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-fab__item {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(113, 42, 226, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.contact-fab__item:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(113, 42, 226, 0.3);
}

.contact-fab__item--whatsapp {
  background: #712ae2;
  color: #fff;
}

.contact-fab__item--phone {
  background: #008ebf;
  color: #fff;
}

.contact-fab__item--email {
  background: rgba(255, 255, 255, 0.95);
  color: #712ae2;
  border: 1px solid rgba(113, 42, 226, 0.2);
}

.contact-fab__item svg {
  width: 26px;
  height: 26px;
  display: block;
}

.contact-fab__trigger-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.contact-fab__bubble {
  position: absolute;
  right: 58px;
  bottom: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: #191c1e;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(113, 42, 226, 0.15);
  box-shadow: 0 8px 24px rgba(113, 42, 226, 0.14);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-fab__bubble::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(113, 42, 226, 0.08);
}

.contact-fab.is-open .contact-fab__bubble {
  opacity: 0;
  transform: translateY(6px) scale(0.95);
}

.contact-fab__trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #712ae2 0%, #008ebf 100%);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(113, 42, 226, 0.4);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.contact-fab__trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(113, 42, 226, 0.5);
}

.contact-fab.is-open .contact-fab__trigger {
  opacity: 0.92;
  box-shadow: 0 8px 28px rgba(0, 142, 191, 0.4);
}

.contact-fab__trigger-icon {
  transition: transform 0.25s ease;
}

.contact-fab.is-open .contact-fab__trigger-icon {
  transform: rotate(45deg);
  font-size: 36px;
}

@media (max-width: 640px) {
  .contact-fab {
    right: 16px;
  }

  .contact-fab__bubble {
    font-size: 12px;
    padding: 8px 12px;
    right: 52px;
    bottom: 40px;
  }
}
