.nav-link {
  .social-icon-footer div {
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .social-icon-footer:hover div {
    transform: translateY(-3px);
  }

  .social-icon-footer i {
    font-size: 1.1rem;
  }
  @apply relative text-gray-700 hover:text-blue-600 transition-all font-medium;
}
.nav-link::after {
  @apply content-[''] absolute bottom-0 left-0 w-0 h-0.5 bg-blue-600 transition-all duration-300;
}
.nav-link:hover::after {
  @apply w-full;
}

#mobile-menu {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}

#mobile-menu.show {
  opacity: 1;
  transform: translateX(0);
}

.social-icon {
  @apply transition-transform duration-300 hover:scale-110;
}
.text-ujc-blue {
  color: #1a76d1;
}

.border-ujc-blue {
  border-color: #1a76d1;
}

.bg-ujc-blue {
  background-color: #1a76d1;
}
.carousel-container {
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
}

.carousel-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  color: white;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s 0.3s ease-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide.active .carousel-content {
  transform: translateY(0);
  opacity: 1;
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transform: translateY(-50px);
  transition: all 0.6s 0.5s ease-out;
}

.carousel-slide.active .carousel-title {
  transform: translateY(0);
}

.carousel-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s 0.7s ease-out;
}

.carousel-slide.active .carousel-description {
  transform: translateY(0);
  opacity: 1;
}

.carousel-buttons {
  display: flex;
  gap: 1rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s 0.9s ease-out;
}

.carousel-slide.active .carousel-buttons {
  transform: translateY(0);
  opacity: 1;
}

.carousel-button {
  padding: 0.8rem 2rem;
  background: #1a76d1;
  color: white;
  border-radius: 9999px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  transform: translateY(-50%);
}

.carousel-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #1a76d1;
  transform: scale(1.3);
}
/* Animações de Scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1a76d1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #1d4ed8;
  transform: translateY(-3px) scale(1.1);
}

/* 404 */
.astronaut-animation {
    animation: float 4s ease-in-out infinite;
    left: 15%;
    top: 20%;
  }

  .planet-animation {
    animation: spin 40s linear infinite;
    transform-origin: 75% 25%;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .btn-primary {
    box-shadow: 0 4px 12px rgba(26, 118, 209, 0.25);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
  }