.highlight-red {
  color: #ff5a5f;
}
.shadow-card {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-block;
  margin: 0 4px;
}
.carousel-dot.active {
  background: #6b7280;
}
.nav-menu {
  display: flex;
  background-color: white;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.nav-menu a {
  padding: 0.5rem 1.25rem;
  margin: 0 0.25rem;
  color: #4b5563;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0.375rem;
}
.nav-menu a:hover {
  color: #1d4ed8;
  background-color: rgba(237, 242, 255, 0.7);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  display: none;
}
.nav-menu a:hover::after {
  width: 70%;
}
.nav-menu .title {
  margin-right: 1rem;
  font-weight: 800;
  font-size: 1.5rem;
  padding-left: 1.5rem;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
.logo-container {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nav-menu .title:hover {
  transform: scale(1.05);
  background-color: transparent;
}
.nav-menu .title::after {
  display: none;
}
.nav-links {
  display: flex;
  padding-right: 1rem;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.animate-fade-in {
  animation: fade-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: #4b5563;
  border-radius: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-links.active {
    max-height: 350px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu {
    justify-content: space-between;
  }
}
