body {
  background-color: #6c757d;
  color: #fff;
  font-family: 'League Gothic', sans-serif;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2b3e79;
  color: #d9b843;
}

header h1 {
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header h2 {
  font-family: 'League Gothic', sans-serif;
  letter-spacing: 2px;
}

nav ul li a {
  color: #d9b843;
}

section.activity {
  background: #2b3e79;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

section.activity h3 {
  color: #d9b843;
  font-size: 1.5rem;
}

section.activity p {
  font-family: Arial, sans-serif;
}

details summary {
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2b3e79;
  color: #fff;
}

footer .social {
  margin: 1rem 0;
}

footer a {
  margin: 0 10px;
  color: #d9b843;
  font-size: 1.5rem;
  text-decoration: none;
}

footer a:hover {
  color: #fff; /* Cambio de color al pasar el mouse */
}

footer .copy {
  font-size: 0.9rem;
  margin-top: 1rem;
}
/* --- Navegación centrada y botones destacados --- */
nav {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

nav ul {
  display: flex;
  gap: 4rem; /* más separación entre botones */
  list-style: none;
  padding: 0;
}

nav ul li a {
  color: #fff; /* texto blanco por defecto */
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.5rem; /* más grande, similar a header h2 */
  font-family: 'League Gothic', sans-serif;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: #d9b843; /* amarillo al pasar el cursor */
  background-color: rgba(255, 255, 255, 0.1); /* leve sombreado detrás */
  box-shadow: 0 4px 10px rgba(217, 184, 67, 0.5);
}
nav ul li a.activo {
  color: #d9b843; /* amarillo */
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(217, 184, 67, 0.5);
}


/* --- Estilos generales para reseñas --- */
.reviews-container {
  padding: 2rem 1rem;
}

.review-card {
  background-color: #2b3e79;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.review-card h3 {
  color: #d9b843;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.review-card h4 {
  color: #d9b843;
  margin: 0.5rem 0;
  font-size: 1.3rem;
  font-family: 'League Gothic', sans-serif;
}

.review-card p {
  font-family: Arial, sans-serif;
  margin: 0.5rem 0;
}

/* --- Estrellas de puntuación --- */
.stars {
  display: flex;
  gap: 0.3rem;
  margin: 0.5rem 0;
}

.stars span {
  font-size: 1.5rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
}

.stars span.active,
.stars span:hover,
.stars span:hover ~ span {
  color: #d9b843;
}

/* --- Caja de comentarios --- */
.comment-box {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  color: #2b3e79;
}

.comment-box h4 {
  margin-bottom: 0.5rem;
  color: #2b3e79;
}

.comment-box p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

