.rotating-img {
  /*width: 100px;*/
  /*height: 100px;*/
  animation: rotation 5s infinite linear;
}

@keyframes rotation {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.effect_1 {
  transition: transform 0.5s ease;
}

.effect_1:hover {
  transform: scale(1.1);
}

/* Desactivar efecto en móviles */
@media (max-width: 768px) {
  .effect_1:hover {
    transform: none;
  }
}

.whiteCard {
  background: white;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.shadow1 {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.textColors {
  -webkit-background-clip: text;
  color: transparent;
}

a:focus, a:focus-visible {
  outline: none;
  box-shadow: none;
}

.spline-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.spline-container spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Ocultar el branding de Spline */
spline-viewer::part(branding) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 20%;
}

#logo {
  display: none !important;
}


