/* CONTENEDOR GENERAL */
.menu-curso {
  padding: 1rem;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  max-width: 100%;
}

/* TÍTULOS DE MÓDULO - ACORDEÓN */
.menu-curso .titulo-clases {
  color: #fff;
  font-weight: bold;
  padding: 20px 10px 5px;
  font-size: 11px;
  border-bottom: 1px solid #222;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.menu-curso .titulo-clases::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6210;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.menu-curso .titulo-clases.abierto::after {
  transform: translateY(-50%) rotate(180deg);
}

/* RESET DE LISTAS */
.menu-curso ul,
.menu-curso li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ESTADO DEL ACORDEÓN */
.menu-curso ul {
  display: none !important;
  transition: all 0.3s ease;
}

.menu-curso ul.activo {
  display: block !important;
}

/* ENLACES DE CLASES */
.menu-curso li a {
  color: #999;
  padding: 8px 10px;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #333;
  font-size: 13px;
  position: relative;
  transition: all 0.2s ease;
}

.menu-curso li a:hover {
  background-color: #111;
  color: #fff;
}

/* ENLACE ACTIVO */
.menu-curso li.clase-activa a {
  color: #ff6210;
  font-weight: bold;
  background-color: #111;
  padding-left: 20px;
}

.menu-curso li.clase-activa a::before {
  content: "▶";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff6210;
}

/* MENÚ DE CLASES - MÓVIL REFINADO */
.menu-clases-mobile {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1rem auto;
  padding: 8px 12px;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid #333;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M70 90 L30 50 H110 Z' fill='%23ff6210'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

.menu-clases-mobile:focus {
  background-color: #000;
  color: #fff;
}

.menu-clases-mobile option {
  background-color: #000;
  color: #fff;
  font-size: 13px;
  padding: 4px 6px;
}

.menu-clases-mobile optgroup {
  color: #888;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-curso h4 {
   color:#31225B; 
   font-size:14px;
   background-color:#fff;
   border-radius:10px;
   padding:10px;
   margin:0px;
   font-weight: 900;
	text-align:center;
}

