/* ============================================================
   CONTACT BAR - Top bar with social media links
   ============================================================ */

.contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 44px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-bar__left {
  display: flex;
  align-items: center;
}

.contact-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-bar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-bar__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.contact-bar__link:hover {
  color: var(--orange);
}

.contact-bar__link svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-bar__inner {
    padding: 0 1.5rem;
  }
  
  .contact-bar__label {
    display: none;
  }
  
  .contact-bar__links {
    gap: 1rem;
    margin: 0 auto;
  }
  
  .contact-bar__link span {
    display: none;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
