* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0f1c;
  color: #f0f0f0;
  line-height: 1.6;
  padding: 2rem;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.hero-content .logo-img img {
  width: 80px;
  display: none;
}
.nav {
  background-color: #10172a;
  position: relative;
}

nav button img {
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.menu-toggle img {
  width: 36px;
  height: 36px;
}
.nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  padding: 1rem;
}
.nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.nav a:hover {
  color: #1e90ff;
}
.slides-proyecto {
  max-width: 960px;
  margin: 0 auto;
}
.slides-title {
  text-align: center;
  color: #1e90ff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 4.5rem;
}
.slides-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.carousel {
  position: relative;
  overflow: hidden;
}
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}
.slide.active {
  opacity: 1;
}
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #1e90ff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
}
.carousel button:hover {
  color: #0077cc;
}
.prev {
  left: 1rem;
}
.next {
  right: 1rem;
}
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0d1224;
  color: #c0c0c0;
  font-size: 0.9rem;
  margin-top: 3rem;
}
.footer-links {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.footer-links a {
  color: #1e90ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links img.icono-red {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav ul {
    display: none;
    flex-direction: column;
    background-color: #10172a;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .nav ul.show {
    display: flex;
  }
  .nav ul li {
    padding: 0.5rem 0;
    text-align: center;
  }
  .slides-wrapper {
    height: 400px;
  }
  .carousel button {
    font-size: 1.5rem;
  }
}

/* Estilos para que el logo en pantallas mayores a 768px se vea */
@media (min-width: 769px) {
  .hero-content .logo-img img {
    display: block;
  }
}