@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Raleway", sans-serif;
  color: #000937; /* Dark Navy base */
  background-color: #f2f2f2; /* Porcelain base */
}

/* Brandbook Colors & Utility */
.text-banizar-aqua {
  color: #23dce1;
}
.bg-banizar-aqua {
  background-color: #23dce1;
  border-color: #23dce1;
}
.bg-banizar-aqua:hover {
  background-color: #1ebfc4;
  border-color: #1ebfc4;
}
.border-banizar-aqua {
  border-color: #23dce1;
}

/* Preserved Gold for Footer */
.text-banizar-gold {
  color: #e8ab30;
}
.bg-banizar-gold {
  background-color: #e8ab30;
  border-color: #e8ab30;
}
.bg-banizar-gold:hover {
  background-color: #d19a2b;
  border-color: #d19a2b;
}

.shadow-luxury {
  box-shadow: 0 10px 40px -10px rgba(0, 9, 55, 0.08); /* Navy shadow nuance */
}
.hover-shadow-luxury:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 87, 255, 0.15); /* Blue shadow nuance */
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Form inputs styling */
.input-banizar {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.input-banizar:focus {
  outline: none;
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

/* Glassmorphism Accents (Aqua Blue) */
.glass-aqua {
  background: rgba(35, 220, 225, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Light Luxury Tech: Efecto Glare en Imágenes */
.glare-effect {
  position: relative;
  overflow: hidden;
}

.glare-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  z-index: 20;
  pointer-events: none;
  transition: left 0.8s ease-in-out;
}

.glare-effect:hover::after {
  left: 200%;
}

/* Light Luxury Tech: Micro-interacciones */
.btn-tech-glow-blue {
  transition: all 0.3s ease;
}
.btn-tech-glow-blue:hover {
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.3);
  transform: translateY(-2px);
}

.btn-tech-glow-aqua {
  transition: all 0.3s ease;
}
.btn-tech-glow-aqua:hover {
  box-shadow: 0 0 20px rgba(35, 220, 225, 0.4);
  transform: translateY(-2px);
}

/* Light Luxury Tech: Enfriamiento visual */
.img-cool-tint {
  filter: saturate(0.9) contrast(1.02) tint(rgba(0, 87, 255, 0.05)); /* Subtle blue tint */
}
