/* Luxury Jony Ive design adjustments & system styles */
:root {
  --primary: #0B3C5D;
  --accent: #D9534F;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.011em;
}

/* Elegant visual focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Premium smooth custom transitions */
.transition-all {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slider slides interaction */
.slide {
  pointer-events: none;
}
.slide.opacity-100 {
  pointer-events: auto;
}

/* Premium custom table alignments */
th, td {
  letter-spacing: -0.01em;
}

/* Floating WhatsApp dynamic custom effects */
#wa-float-btn {
  animation: floatPulse 3s infinite alternate ease-in-out;
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4), 0 8px 10px -6px rgba(16, 185, 129, 0.4);
    transform: translateY(0px);
  }
  100% {
    box-shadow: 0 20px 35px -5px rgba(16, 185, 129, 0.6), 0 12px 16px -6px rgba(16, 185, 129, 0.6);
    transform: translateY(-8px);
  }
}

/* Custom rounded corners for fluid premium tables */
table {
  border-collapse: separate;
  border-spacing: 0;
}
