@charset "UTF-8";
/* Filter */
.collapsible {
  background-color: var(--bs-gray);
  color: var(--negro);
  font-weight: 900;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px; /* Esquinas redondeadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}
.collapsible:hover {
  color: #fff;
  background: var(--bs-primary-opacity-8);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Sombra más intensa al hacer hover */
}
.collapsible:after {
  content: "+";
  color: black;
  font-weight: 900;
  float: right;
  margin-left: 5px;
  transition: transform 0.3s ease; /* Efecto de rotación */
}
.collapsible.active:after {
  transform: rotate(45deg); /* Gira el "+" al abrir */
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, background-color 0.3s ease;
  background-color: #f9f9f9; /* Color de fondo más claro */
  border-radius: 0 0 8px 8px; /* Bordes redondeados al final */
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05); /* Sombra interna sutil */
}

.filter-list {
  list-style-type: none; /* Elimina los estilos de lista */
  padding: 0;
  margin: 0;
}

.filter-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px 15px; /* Más espacio para mejorar la usabilidad */
  margin: 6px 0;
  font-size: 14px;
  border-radius: 6px; /* Esquinas redondeadas */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.filter-btn:hover {
  background-color: var(--bs-primary-opacity-5);
  color: var(--bs-primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera al hacer hover */
}
.filter-btn.active {
  background-color: var(--bs-primary-opacity-8);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Sombra más intensa cuando está activo */
}

/* Cards */
.filter {
  display: none;
}

.show {
  display: block;
}

.card-img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0; /* Bordes redondeados para la imagen */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave en la imagen */
}
.card-img:hover {
  transform: scale(1.05); /* Zoom suave al pasar el ratón */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra más fuerte */
}

.btn-block {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  background-color: var(--bs-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-block:hover {
  background-color: var(--bs-primary-opacity-8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

/* Estilos para los widgets de cursos y lecciones */
.widget-course-list,
.custom-lessons-widget {
  padding: 0;
  margin: 0;
  list-style: none;
}

.widget-course-list li,
.custom-lessons-widget li {
  margin-bottom: 10px;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.widget-course-list li:hover,
.custom-lessons-widget li:hover {
  background-color: var(--bs-primary-opacity-5);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.widget-course-list li a,
.custom-lessons-widget li a {
  text-decoration: none;
  color: var(--bs-gray-dark); /* Color del texto del enlace */
  font-weight: 600;
  transition: opacity 0.3s ease, color 0.3s ease; /* Transición de opacidad y color */
}

.widget-course-list li a:hover,
.custom-lessons-widget li a:hover {
  opacity: 0.8;
  color: var(--bs-primary); /* Cambia el color del enlace al pasar el ratón */
}/*# sourceMappingURL=lms-ev-styles.css.map */