/* FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@400&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
.Logo-index{
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;    /* Centra verticalmente */
  height: 200px; /* Ejemplo: necesario para que el centrado vertical funcione */

}

/* HEADER */
header {
  width: 100%;
  background: linear-gradient(90deg, #0066FF, #00C2FF, #2EF2A0); /* degradado Azul→Cyan→Verde agua */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* LOGO */
.logo img {
  height: 50px; /* Ajusta el tamaño de tu logo */
}

/* MENÚ HORIZONTAL PC */
.menu-pc ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-pc ul li {
  margin-left: 20px;
}

.menu-pc ul li a {
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}

.menu-pc ul li a:hover {
  color: #FFD700; /* efecto hover, dorado por ejemplo */
}

/* BOTÓN HAMBURGUESA (MÓVIL) */
.hamburguesa {
  font-size: 28px;
  color: white;
  display: none;
  cursor: pointer;
}

/* MENÚ LATERAL MÓVIL */
.menu-movil {
  position: fixed;
  top: 0;
  right: -250px; /* fuera de la pantalla */
  width: 250px;
  height: 100%;
  background: linear-gradient(180deg, #0066FF, #00C2FF, #2EF2A0);
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 999;
}

.menu-movil ul {
  list-style: none;
  padding: 0;
}

.menu-movil ul li {
  margin: 20px 0;
  text-align: center;
}

.menu-movil ul li a {
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.menu-movil ul li a:hover {
  color: #FFD700;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .menu-pc {
    display: none;
  }
  .hamburguesa {
    display: block;
  }
}
