 body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #111;
      color: #f4f4f4;
      line-height: 1.6;
    }
    header {
      background: #1a1a1a;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header h1 {
      margin: 0;
      font-size: 1.8rem;
      color: #e91e63;
    }
    .btn-login {
      background: #e91e63;
      border: none;
      color: #fff;
      padding: 0.7rem 1.2rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
    }
    .hero {
      text-align: center;
      padding: 4rem 2rem;
    }
    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    .section {
      padding: 3rem 2rem;
      background: #1c1c1c;
    }
    .section h3 {
      color: #e91e63;
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }
    .section a {
      color: #e91e63;
      text-decoration: underline;
    }
    footer {
      text-align: center;
      padding: 2rem;
      background: #000;
      font-size: 0.9rem;
    }
    .navegacion {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.navegacion {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 20px;
  flex-wrap: wrap;
}

.boton {
  padding: 8px 16px;
  background-color: #222;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background 0.2s ease;
}

.boton:hover {
  background-color: #444;
}
.select-idioma {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  padding: 6px 12px;
  font-size: 0.95em;
  border-radius: 6px;
  cursor: pointer;
}
.select-idioma:focus {
  outline: none;
  border-color: #e91e63;
}
.dropdown-idioma {
  position: relative;
  display: inline-block;
  font-size: 0.95em;
  cursor: pointer;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  border-radius: 6px;
  color: #f4f4f4;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 6px 0;
  display: none;
  min-width: 150px;
  z-index: 100;
}

.dropdown-menu li {
  list-style: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}

.dropdown-menu li:hover {
  background-color: #333;
}

    