/* ─── RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080c10;
  --surface: #0e1420;
  --surface2: #151c2a;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #A4F93F;
  --accent-hover: #bffb6e;
  --accent2: #ff3c5f;
  --text: #f0f4ff;
  --muted: #7a8aa0;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ─── WHATSAPP FLOATING WIDGET ────────────────────────── */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget:hover {
  transform: translateY(-5px);
}

.whatsapp-label {
  background: rgba(14, 20, 32, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 20px 4px 20px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-label span {
  font-size: 11px;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.whatsapp-widget:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-widget:hover .whatsapp-icon-wrap {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  transform: rotate(10deg);
}


.whatsapp-icon-wrap svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon-wrap {
    width: 54px;
    height: 54px;
  }
  .whatsapp-label {
    display: none;
  }
}
