section.contenido {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
section.contenido .contenedor {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  section.contenido .contenedor {
    grid-template-columns: minmax(0, 1fr);
  }
}
section.contenido .contenedor .contenido-menu {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.5rem;
  border-radius: 2rem 2rem 0 2rem;
  background: linear-gradient(to bottom, color(display-p3 0.09 0.5 0.44) 0%, color(display-p3 0.12 0.35 0.33) 100%);
}
@media (max-width: 1024px) {
  section.contenido .contenedor .contenido-menu {
    display: none;
  }
}
section.contenido .contenedor .contenido-menu > span {
  width: 100%;
  color: color(display-p3 0.89 0.78 0.36);
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
section.contenido .contenedor .contenido-menu > span::after {
  position: relative;
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEzIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMi43MyAwLjI3NDYzOUMxMi42NDM3IDAuMTg3NjE1IDEyLjU0MSAwLjExODU0MiAxMi40Mjc5IDAuMDcxNDA1M0MxMi4zMTQ3IDAuMDI0MjY4MyAxMi4xOTM0IDAgMTIuMDcwOCAwQzExLjk0ODIgMCAxMS44MjY5IDAuMDI0MjY4MyAxMS43MTM3IDAuMDcxNDA1M0MxMS42MDA2IDAuMTE4NTQyIDExLjQ5NzkgMC4xODc2MTUgMTEuNDExNiAwLjI3NDYzOUw3LjE1OTIxIDQuNTI3MDFDNy4wNzI5IDQuNjE0MDQgNi45NzAyMSA0LjY4MzExIDYuODU3MDcgNC43MzAyNUM2Ljc0MzkyIDQuNzc3MzggNi42MjI1NyA0LjgwMTY1IDYuNSA0LjgwMTY1QzYuMzc3NDMgNC44MDE2NSA2LjI1NjA4IDQuNzc3MzggNi4xNDI5MyA0LjczMDI1QzYuMDI5NzkgNC42ODMxMSA1LjkyNzEgNC42MTQwNCA1Ljg0MDc5IDQuNTI3MDFMMS41ODg0MSAwLjI3NDYzOUMxLjUwMjEgMC4xODc2MTUgMS4zOTk0MSAwLjExODU0MiAxLjI4NjI3IDAuMDcxNDA1M0MxLjE3MzEzIDAuMDI0MjY4MyAxLjA1MTc3IDAgMC45MjkyMDIgMEMwLjgwNjYzMyAwIDAuNjg1Mjc4IDAuMDI0MjY4MyAwLjU3MjEzNiAwLjA3MTQwNTNDMC40NTg5OTMgMC4xMTg1NDIgMC4zNTYzMDQgMC4xODc2MTUgMC4yNjk5OTEgMC4yNzQ2MzlDMC4wOTcwNjMzIDAuNDQ4NTk4IDAgMC42ODM5MiAwIDAuOTI5MjA3QzAgMS4xNzQ0OSAwLjA5NzA2MzMgMS40MDk4MiAwLjI2OTk5MSAxLjU4Mzc4TDQuNTMxNjUgNS44NDU0NEM1LjA1MzkyIDYuMzY3MDUgNS43NjE4NyA2LjY2MDA0IDYuNSA2LjY2MDA0QzcuMjM4MTMgNi42NjAwNCA3Ljk0NjA4IDYuMzY3MDUgOC40NjgzNSA1Ljg0NTQ0TDEyLjczIDEuNTgzNzhDMTIuOTAyOSAxLjQwOTgyIDEzIDEuMTc0NDkgMTMgMC45MjkyMDdDMTMgMC42ODM5MiAxMi45MDI5IDAuNDQ4NTk4IDEyLjczIDAuMjc0NjM5WiIgZmlsbD0iI0U0Qzk1QyIvPgo8L3N2Zz4K");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  display: flex;
}
section.contenido .contenedor .contenido-menu__nav {
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
section.contenido .contenedor .contenido-menu__nav.active {
  max-height: 40rem;
}
section.contenido .contenedor .contenido-menu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
section.contenido .contenedor .contenido-menu__nav ul li a {
  color: #eeeeee;
}
section.contenido .contenedor .contenido-menu__nav ul li:not(:last-child) {
  position: relative;
}
section.contenido .contenedor .contenido-menu__nav ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: color(display-p3 0.09 0.5 0.44);
}
section.contenido .contenedor .contenido-info {
  width: 100%;
  max-width: 100%;
}
section.contenido .contenedor .contenido-info > h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: color(display-p3 0.12 0.35 0.33);
}
@media (max-width: 1024px) {
  section.contenido .contenedor .contenido-info > h1 {
    font-size: 1.875rem;
    line-height: 1;
  }
}
section.contenido .contenedor .contenido-info > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1024px) {
  section.contenido .contenedor .contenido-info .contenido-menu {
    display: flex;
    position: relative;
    top: 0;
  }
}
section.contenido .contenedor .contenido-seccion h2 {
  font-size: 1.5625rem;
  font-weight: bold;
  color: color(display-p3 0.12 0.35 0.33);
  margin: 0.5rem 0;
}
section.contenido .contenedor .contenido-seccion__contenido * {
  color: #495f77;
  font-weight: 100;
  line-height: 130%;
  font-size: 1rem;
}
section.contenido .contenedor .contenido-seccion__contenido .has-text-align-center {
  text-align: center;
}
section.contenido .contenedor .contenido-seccion__contenido p {
  margin: 0.5rem 0;
}
section.contenido .contenedor .contenido-seccion__contenido strong,
section.contenido .contenedor .contenido-seccion__contenido b {
  color: color(display-p3 0.12 0.35 0.33);
  font-weight: 800;
}
section.contenido .contenedor .contenido-seccion__contenido h1,
section.contenido .contenedor .contenido-seccion__contenido h2,
section.contenido .contenedor .contenido-seccion__contenido h3,
section.contenido .contenedor .contenido-seccion__contenido h4, section.contenido .contenedor .contenido-seccion__contenido > strong {
  font-size: 1.563rem;
  font-weight: 800;
  color: color(display-p3 0.12 0.35 0.33);
}
section.contenido .contenedor .contenido-seccion__contenido h1 strong,
section.contenido .contenedor .contenido-seccion__contenido h2 strong,
section.contenido .contenedor .contenido-seccion__contenido h3 strong,
section.contenido .contenedor .contenido-seccion__contenido h4 strong, section.contenido .contenedor .contenido-seccion__contenido > strong strong {
  color: color(display-p3 0.09 0.5 0.44);
  font-size: 1.563rem;
  font-weight: 800;
}
section.contenido .contenedor .contenido-seccion__contenido h2,
section.contenido .contenedor .contenido-seccion__contenido h3,
section.contenido .contenedor .contenido-seccion__contenido h4 {
  margin: 1rem 0;
}
section.contenido .contenedor .contenido-seccion__contenido ul li,
section.contenido .contenedor .contenido-seccion__contenido ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
section.contenido .contenedor .contenido-seccion__contenido ul li::marker,
section.contenido .contenedor .contenido-seccion__contenido ol li::marker {
  color: #495f77;
}
section.contenido .contenedor .contenido-seccion__contenido ol li {
  list-style-type: decimal;
}
section.contenido .contenedor .contenido-seccion__contenido > ul, section.contenido .contenedor .contenido-seccion__contenido > ol {
  padding: 0.5rem 0;
}
section.contenido .contenedor .contenido-seccion__contenido > ul ol li,
section.contenido .contenedor .contenido-seccion__contenido > ul ul li, section.contenido .contenedor .contenido-seccion__contenido > ol ol li,
section.contenido .contenedor .contenido-seccion__contenido > ol ul li {
  padding: 0;
}
section.contenido .contenedor .contenido-seccion__contenido > p:has(img) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
section.contenido .contenedor .contenido-seccion__contenido img {
  width: 50%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 100%;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 780px) {
  section.contenido .contenedor .contenido-seccion__contenido img {
    border-radius: 0.8rem;
  }
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video, section.contenido .contenedor .contenido-seccion__contenido > video {
  width: 100% !important;
  height: auto;
  aspect-ratio: 15/8.25;
  border-radius: 1rem;
  overflow: hidden;
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-container, section.contenido .contenedor .contenido-seccion__contenido > video .mejs-container {
  width: 100% !important;
  height: 100% !important;
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-container video, section.contenido .contenedor .contenido-seccion__contenido > video .mejs-container video {
  width: 100% !important;
  height: 100% !important;
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-overlay, section.contenido .contenedor .contenido-seccion__contenido > video .mejs-overlay {
  background: linear-gradient(45deg, black, transparent);
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-overlay-button, section.contenido .contenedor .contenido-seccion__contenido > video .mejs-overlay-button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMjUiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuMiIvPgo8cGF0aCBkPSJNMzUgMjMuMjY4QzM2LjMzMzMgMjQuMDM3OCAzNi4zMzMzIDI1Ljk2MjMgMzUgMjYuNzMyMUwyMS41IDM0LjUyNjNDMjAuMTY2NyAzNS4yOTYxIDE4LjUgMzQuMzMzOCAxOC41IDMyLjc5NDJMMTguNSAxNy4yMDU4QzE4LjUgMTUuNjY2MiAyMC4xNjY3IDE0LjcwMzkgMjEuNSAxNS40NzM3TDM1IDIzLjI2OFoiIGZpbGw9IiNFRUVFRUUiLz4KPC9zdmc+Cg==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-controls, section.contenido .contenedor .contenido-seccion__contenido > video .mejs-controls {
  opacity: 1;
}
section.contenido .contenedor .contenido-seccion__contenido > .wp-video .mejs-controls:has(.mejs-play), section.contenido .contenedor .contenido-seccion__contenido > video .mejs-controls:has(.mejs-play) {
  display: none;
}
section.contenido .contenedor .contenido-compartir {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.8rem;
  border-radius: 1rem 1rem 0 1rem;
  background: linear-gradient(to bottom, color(display-p3 0.09 0.5 0.44) 0%, color(display-p3 0.12 0.35 0.33) 100%);
  color: color(display-p3 0.89 0.78 0.36);
  font-weight: bold;
}
section.contenido .contenedor .contenido-compartir ul li a {
  display: flex;
  border-radius: 50%;
  transition: all 0.3s ease;
}
section.contenido .contenedor .contenido-compartir ul li a svg path {
  transition: all 0.3s ease;
}
section.contenido .contenedor .contenido-compartir ul li a:hover {
  background-color: color(display-p3 0.89 0.78 0.36);
}
section.contenido .contenedor .contenido-compartir ul li a:hover svg path {
  fill: color(display-p3 0.89 0.78 0.36);
}
section.contenido .contenedor .contenido-compartir ul li a:hover svg path:first-child {
  fill: color(display-p3 0.12 0.35 0.33);
}
section.contenido .contenedor .contenido-return {
  margin: 2rem auto;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  color: color(display-p3 0.12 0.35 0.33);
  font-size: 0.875rem;
  font-weight: bold;
}/*# sourceMappingURL=index.css.map */