:root {
  --main-color: #fbdf19;
  --secondary-color: #020304;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
}
body {
  font-family: "Arial", sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.nav-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #fbdf19;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: #fbdf19;
}
.nav-link.active {
  color: #fbdf19;
  font-weight: bold;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.nav-link.active::after {
  width: 100%;
}
.nav-link.active:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}
.header {
  background-color: #fbdf19;
  color: #020304;
  text-align: center;
  padding: 50px 0;
}
.header h1 {
  font-size: 3rem;
  font-weight: bold;
}
.footer {
  background-color: #020304;
  color: rgba(255, 255, 255, 0.87);
  padding: 20px;
  text-align: center;
}
.footer a {
  color: #fbdf19;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.desarrollado-por {
  text-align: center;
}

.desarrollado-por p,
.desarrollado-por img {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.desarrollado-por img {
  width: 80px;
  height: auto;
  margin-left: 10px;
}
.mainCarousel {
  max-height: 80vh;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
#gal {
  text-align: center;
  margin: 20px;
  color: #fbdf19;
}