/* Global reset - load FIRST to prevent CLS/FOUC */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --top-offset: 120px;
}

.main-wrapper {
  padding-top: var(--top-offset);
}

body {
  background: #020617;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

