body {
  background-color: #11161c;
  color: #dcdcdc;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  margin-top: 50px;
}

h1 {
  color: #5aa0ff;
  font-size: 2.5em;
}

.proyectos {
  margin: 80px;
}

.proyectos h2 {
  color: #5aa0ff;
  border-left: 4px solid #5aa0ff;
  padding-left: 10px;
}

.proyectos a {
  color: #5aa0ff;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.proyectos a:hover {
  color: #9bcfff;
  text-decoration: underline;
}

.sobre-mi {
  margin: 80px;
  background: #1b222c;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px #5aa0ff44;
}

.sobre-mi h2 {
  color: #5aa0ff;
}

/* Carrusel */
.carrusel {
  text-align: center;
  margin: 80px 0;
}

.carousel-container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px #5aa0ff66;
}

.carousel {
  display: flex;
  animation: scroll 15s linear infinite;
}

.slide img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Menú lateral derecho */
.menu-derecho {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #1b222c;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px #5aa0ff55;
}

.menu-derecho h3 {
  color: #5aa0ff;
  text-align: center;
}

.menu-derecho ul {
  list-style: none;
  padding: 0;
}

.menu-derecho li {
  margin: 10px 0;
}

.menu-derecho a {
  color: #9bcfff;
  text-decoration: none;
  font-weight: bold;
}

.menu-derecho a:hover {
  color: #ffffff;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0d1117;
  color: #5aa0ff;
  margin-top: 50px;
}
