
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #ffffff;
}
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    
}
header {
   display: flex;
  gap: 20px;
  align-items: center;
  background-color: #e6ff00; /* amarillo flúo */
  color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
}
.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    object-fit: cover;
    border: 2px solid #1e1e1e;
}
.intro {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.badge {
    display: inline-block;
    border: 2px solid #1e1e1e;
    border-radius: 999px;
    padding: 5px 15px;
    font-style: italic;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.5em;
    margin-top: 40px;
    padding-bottom: 5px;
  border-bottom: 1px solid #e6ff00;
}
.cursiva {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.6em;
    vertical-align: middle;
}
ul {
    list-style: none;
    padding: 0;
}
li::before {
    content: "* ";
    color: #e6ff00;
}
details summary {
    font-weight: bold;
    background-color: #e6ff00;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}
details[open] summary {
    background-color: #e6ff00;
}
.barra-progreso {
  width: 100%;
  height: 30px;
  background-color: #ddd;
  border: 2px solid #1e1e1e;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #1e1e1e;
}

.relleno {
  height: 100%;
  background-color: #e6ff00; /* amarillo fluo */
  text-align: center;
  line-height: 30px;
}
details summary {
    font-weight: bold;
    background-color: #e6ff00;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
    color: #1e1e1e;
    list-style: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  padding-right: 25px;
}

details summary::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #1e1e1e;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.boton-clase {
  display: inline-block;
  border: 2px solid #1e1e1e;
  border-radius: 999px;
  padding: 5px 15px;
  font-style: normal;
  font-weight: bold;
  background-color: #e6ff00;
  color: #1e1e1e;
  text-decoration: none;
  margin: 5px 0;
  transition: background-color 0.3s ease;
}

.boton-clase:hover {
  background-color: #e6ff00;
}

.boton-clase.destacado {
  background-color: #1e1e1e;
  color: #e6ff00;
  border: 2px solid #e6ff00;
  cursor: default;
  pointer-events: none;
}

.boton-clase.destacado:hover {
  background-color: #1e1e1e;
}
.botones-superiores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.badge-link {
  display: inline-block;
  border: 2px solid #e6ff00;
  border-radius: 999px;
  padding: 5px 15px;
  font-style: Bold;
  background-color: #e6ff00;
  color: #1e1e1e;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* regular */
  transition: transform 0.2s ease;
}
.badge-link:hover {
  transform: scale(1.05);
  background-color: #d6e600; /* un amarillo apenas más oscuro */
}
.boton-clase:hover {
  transform: scale(1.05);
  background-color: #d6e600; /* un amarillo apenas más oscuro */
}
.botones-superiores {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
