 body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #1a1a1a;
  color: #e8e8f7;
  background: linear-gradient(to bottom, #1a1a1a, #2c1f1f);
}

.modulo-curso {
  max-width: 800px;
  margin: 3rem auto;
  background-color: #222;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(33, 158, 188, 0.3);
  border-left: 4px solid #219ebc;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #219ebc;
  margin-bottom: 0.5rem;
}

.frase-ritual {
  font-size: 1rem;
  color: #8ecae6;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.video-reproductor {
  text-align: center;
}

.progreso-texto {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #8ecae6;
  opacity: 0.8;
}

.titulo-clase {
  font-family: 'Playfair Display', serif;
  color: #ffb347;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.banner-clase {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.3);
}

.encabezado-curso {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #1a1a1a;
}

.logo-curso {
  max-width: 180px;
  height: auto;
  border-radius: 12px;
}

.subtitulo-curso {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #ffb347;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
.descripcion-curso {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-top: 1rem;
  background: rgba(33, 158, 188, 0.08); /* tono azul para Community Manager */
  padding: 1rem;
  border-left: 3px solid #219ebc; /* borde azul */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.descripcion-curso:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(33, 158, 188, 0.4);
}

.lista-clases {
  list-style: none;
  padding: 0;
}

.boton-registro {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.8rem 1.5rem;
  background-color: #219ebc;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.boton-registro:hover {
  background-color: #264b6a;
  transform: translateY(-2px);
}
.video-reproductor {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-reproductor.visible {
  opacity: 1;
}

.lista-clases li {
  margin-bottom: 1em;
  padding: 0.5em;
  background: #5c5959;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-redes {
  background-color: #111;
  padding: 2rem 1rem;
  border-top: 2px solid #ffb347;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-titulo {
  color: #ffb347;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-redes .redes-iconos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.red-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
  text-align: center;
}

.icono-red {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icono-red:hover {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.5);
}

.red-descripcion {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #ccc;
  opacity: 0.8;
}

.footer-redes p.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}
