/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 10 2026 | 21:04:57 */
/* Hero de categorias WooCommerce (Cursos, Salud y Emergencias, Formacion Docente, Desarrollo
   Profesional, Idiomas):
   se ajusta la proporcion del contenedor a la proporcion real de la imagen institucional
   (version compacta) para mostrarla completa, sin recortar mascota/torre/texto,
   y ocupar menos espacio vertical para no tapar los cursos disponibles. */
body.tax-product_cat .hero-section {
  height: auto !important;
  aspect-ratio: 1672 / 593 !important;
}
body.tax-product_cat .hero-section figure,
body.tax-product_cat .hero-section .ct-media-container {
  transform: none !important;
}
body.tax-product_cat .hero-section .ct-media-container img {
  transform: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Titulo de categoria mas grande y legible sobre la imagen */
body.tax-product_cat .hero-section .page-title {
  font-size: 68px !important;
  line-height: 1.15 !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 4px 18px rgba(0,0,0,0.65) !important;
}
@media (max-width: 1024px) {
  body.tax-product_cat .hero-section .page-title {
    font-size: 50px !important;
  }
}
@media (max-width: 689px) {
  body.tax-product_cat .hero-section .page-title {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }
}

/* Titulos mas largos (3 palabras+): con 68/50/34px pasarian a 3 lineas y se solaparian
   con el subtitulo o el logo "EDUCACION CONTINUA" de la imagen. Se reduce el tamano
   solo para estas 2 categorias, verificado que asi quedan en 2 lineas sin solape. */
body.tax-product_cat.term-formacion-docente .hero-section .page-title,
body.tax-product_cat.term-desarrollo-profesional-personal .hero-section .page-title {
  font-size: 56px !important;
}
@media (max-width: 1024px) {
  body.tax-product_cat.term-formacion-docente .hero-section .page-title,
  body.tax-product_cat.term-desarrollo-profesional-personal .hero-section .page-title {
    font-size: 38px !important;
  }
}
@media (max-width: 689px) {
  body.tax-product_cat.term-formacion-docente .hero-section .page-title,
  body.tax-product_cat.term-desarrollo-profesional-personal .hero-section .page-title {
    font-size: 26px !important;
  }
}

/* Descripcion (subtitulo) del hero de categorias: banda azul institucional
   con sombra y ondas expansivas sutiles detras del texto, para que se lea
   bien sobre la imagen. Solo afecta a las 4 subcategorias porque la
   categoria raiz "cursos" no tiene descripcion de termino configurada. */
body.tax-product_cat .hero-section .page-description p {
  display: inline-block;
  position: relative;
  isolation: isolate;
  background-color: rgba(0, 33, 71, 0.9);
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
body.tax-product_cat .hero-section .page-description p::before,
body.tax-product_cat .hero-section .page-description p::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: rgba(0, 33, 71, 0.55);
  pointer-events: none;
  animation: educon-desc-wave 3.6s ease-out infinite;
}
body.tax-product_cat .hero-section .page-description p::after {
  animation-delay: 1.8s;
}
@keyframes educon-desc-wave {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  body.tax-product_cat .hero-section .page-description p::before,
  body.tax-product_cat .hero-section .page-description p::after {
    animation: none;
    display: none;
  }
}