@font-face {
  font-family: 'Akzidenz-Medium';
  src: url('../fonts/AkzidenzGrotConBQ-Medium.otf');
}

@font-face {
  font-family: 'Akzidenz-Cond';
  src: url('../fonts/AkzidenzGrotesk-Cond.otf');
}

html {
  scroll-behavior: smooth;
}

.swiper {
  width: 100%;
  height: auto;
}

#main-content {
  display: none;
}

/* Estilos para la página de carga */
#loading-page {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 50;
}

/* Spinner personalizado */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
}

.swal-button {
  background-color: #ff7400;
}

.swal-button:hover {
  background-color: #ff7400 !important;
  opacity: 0.8;
}

.swal-icon--warning {
  border-color: #ff7400 !important;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
  background-color: #ff7400;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
