h1, h2, h3, h4, h5, body {
  margin: 0 auto; 
  padding: 0;
  @font-face {
      font-family:"Roboto Condensed";
      src: url(/fonts/RobotoCondensed-Black.ttf);

  }
  font-family: Roboto Condensed;
  font-weight: 900;
}

h1, h2, h3, h4, h5, body {
  font-family: "Roboto Condensed";
}

p {
  font-weight: 400;
}

/* --- ESTILOS GENERALES (ESCRITORIO) --- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  border-radius: 10px;
  z-index: 10;
  font-size: 1.2rem;
  font-family: "Roboto Condensed", sans-serif;
  background-color: #fff3;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
}

header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 2rem;
}

header nav {
  background-color: #000;
  border-radius: 10px;
  padding: 1rem;
}

header #logo img {
  width: 20vw;
  padding: 1rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  padding: 2rem;
}

header nav a:hover,
header nav a:last-child {
  color: #DD3792;
}

header nav a:last-child:hover {
  color: #fff;
}

/* --- DESPLEGABLE DE IDIOMA --- */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: "Roboto Condensed";
  font-weight: 900;
  color: #DD3792;
}

.language-btn:hover {
  color: #fff;
}

.language-options {
  display: none;
  position: absolute;
  border-radius: 8px;
  z-index: 100;
  flex-direction: column;
  right: 0;
  top: 100%;
}

.language-options a {
  color: #000;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  display: block;
  color: #DD3792;
}

.language-options a:hover {
  background-color: #000;
  color: #DD3792;
  border-radius: 8px;
}

/* Mostrar desplegable activo */
.language-dropdown.active .language-options {
  display: flex;
}

/* --- ESTILOS MÓVIL / RESPONSIVE --- */
#menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  header div {
    padding: 0.5rem 1rem;
  }

  #logo img {
    width: 40vw;
    padding: 0.5rem;
  }

  /* Botón hamburguesa visible en móvil */
  #menu-btn {
    display: block;
    z-index: 20;
  }

  /* Menú lateral oculto por defecto */
  header nav {
    position: fixed;
    top: 0;
    left: -350px;
    width: 250px;
    height: 100vh;
    background-color: #000;
    border-radius: 0;
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: left 0.3s ease;
  }

  header nav a {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }

  /* Menú visible cuando tiene la clase "active" */
  header nav.active {
    left: 0;
  }
}

footer {
  bottom: 0;
  border-radius: 10px;
  z-index: 10;
  font-size: 1.2rem;
  font-family: "Roboto Condensed";
  background-color: #000;
  margin: 0rem 1rem 0rem 1rem;
}

footer nav {
  background-color: #000;
  border-radius: 10px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

footer nav a {
  color:#fff;
  text-decoration:none;
  padding:1rem;
}
@media (max-width: 768px) {
  footer nav {
    flex-direction:column;
  }
  footer nav div:last-of-type {
    display:flex;
    flex-direction:column;
  }
}

.principal{
  color: #E1C4F1;
}

.rosa {
  color: #DD3792;
}

.morado {
  color: #5028A5;
}

.lila {
  color: #EC64FA;
}

.amarillo {
  color: #F4F29F;
}