@font-face {
  font-family: "handelGothicDBold";
  src: url("../fonts/handel_gothic_d_bold/handel_gothic_d_bold.otf");
}

@font-face {
  font-family: "rebrandDisBold";
  src: url("../fonts/dis_brand/rebrand_dis_bold.ttf");
}

@font-face {
  font-family: "rebrandDisExlight";
  src: url("../fonts/dis_brand/rebrand_dis_exlight.ttf");
}

@font-face {
  font-family: "rebrandDisHeavy";
  src: url("../fonts/dis_brand/rebrand_dis_heavy.ttf");
}

@font-face {
  font-family: "rebrandDisLight";
  src: url("../fonts/dis_brand/rebrand_dis_light.ttf");
}

@font-face {
  font-family: "rebrandDisMedium";
  src: url("../fonts/dis_brand/rebrand_dis_medium.ttf");
}

@font-face {
  font-family: "rebrandDisRegular";
  src: url("../fonts/dis_brand/rebrand_dis_regular.ttf");
}

@font-face {
  font-family: "rebrandDisSemibold";
  src: url("../fonts/dis_brand/rebrand_dis_semibold.ttf");
}

@font-face {
  font-family: "rebrandDisThin";
  src: url("../fonts/dis_brand/rebrand_dis_thin.ttf");
}

@font-face {
  font-family: "rebrandDisExbold";
  src: url("../fonts/dis_brand/rebrand_is_exbold.ttf");
}

html {
  scroll-behavior: smooth;
}

/* 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;
}

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

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

/* Ocultar el contenido principal inicialmente */
#main-content {
  display: none;
}

.menu-item.active a {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #213162;
}

.menu-item.active img {
  display: inline-block;
  margin-right: 8px;
  /* Ajusta el espacio entre el ícono y el texto según sea necesario */
}

.menu-item .img {
  display: none;
}

.section {
  scroll-margin-top: 120px;
  /* Ajusta esto al alto de tu menú */
}

.borde-difuminado::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* Grosor del borde */
  background: linear-gradient(
    90deg,
    #63de2e 0%,
    #3b6ea3 25%,
    #63de2e 50%,
    75%,
    #3b6ea3 100%
  );
}

.glide__bullet {
  background-color: #5fb0ff !important;
  width: 15px !important;
  height: 15px !important;
}

.glide__bullet--active {
  background-color: white !important;
}

.slider > .glide__track {
  height: 100%;
}

.slider > .glide__track > .glide__slides > .glide__slide {
  height: 100%;
}

.slider > .glide__track > .glide__slides > .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Esto asegura que la imagen cubra todo el contenedor sin deformarse */
}

.paralelogramo {
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}

.paralelogramo2 {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.shadow-right-bottom {
  box-shadow: 25px 15px 0 rgb(95, 176, 255);
}

.shadow-left-bottom {
  box-shadow: -25px 15px 0 rgba(0, 38, 75, 0.38);
}

.form-contacto {
  box-shadow: 0px 0px 10px 10px #e7e7e7;
}

.glide__arrow {
  border: none !important;
}

.glide__slide--active > div > .item-glide {
  box-shadow: 15px -1px 0 #fb5c1a;
  transition: box-shadow 0.3s ease-in-out;
}

.item-glide {
  box-shadow: 15px -1px 0 #5fb0ff;
  transition: box-shadow 0.3s ease-in-out;
}

.glide__slide--active > div > .btn-mas {
  background-color: #fb5c1a;
  color: white;
  transition: box-shadow 0.3s ease-in-out;
}

.btn-mas {
  background-color: #5fb0ff;
  color: #061a3f;
  transition: box-shadow 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .paralelogramo2 {
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg);
  }
}
