@charset "UTF-8";
/* MONTSERRAT THIN (100) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
/* EXTRALIGHT (200) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
/* LIGHT (300) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
/* REGULAR (400) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* MEDIUM (500) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/* SEMIBOLD (600) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
/* BOLD (700) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* EXTRABOLD (800) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
/* BLACK (900) */
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("./fonts/Montserrat/Montserrat-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Xelo;
  src: url("./fonts/Xelo/Xelo.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-color-green: #2BD6BA;
  --bg-color-blue: #4988DE;
  --bg-color-blueblack: #242F40;
  --bg-color-white: #fff;
  --bg-color-gradient-green-blue: linear-gradient(180deg, #2BD6BA 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-blue: linear-gradient(180deg, #000 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-green: linear-gradient(180deg, #242F40 0%, #2BD6BA 100%);
  --header-height: 100px;
}
@media (max-width: 1050px) {
  :root {
    --header-height: 68px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
}

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

.top-0 {
  top: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.3;
}

.hidden {
  display: none;
}

.contenedor {
  width: 1350px;
  max-width: 90%;
  margin: 0 auto;
}

section {
  width: 100%;
  padding: 2.5rem 0;
}

.texto-base {
  color: var(--3, #1F1E22) !important;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}

.titulo-base {
  color: var(--1, #A41D2B);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 100% */
}

.boton-base {
  /* --- Estructura y Texto (Se mantiene igual) --- */
  border: none;
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  cursor: pointer;
  /* Texto */
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* --- CONFIGURACIÓN DE LA TRANSICIÓN --- */
  position: relative; /* Necesario para contener el efecto */
  z-index: 1; /* Asegura que el texto quede encima del fondo */
  overflow: hidden; /* Para que el gradiente respete el border-radius */
  /* 1. Fondo Base (Estado normal) */
  /* Como tu gradiente inicial era el mismo color (#A41D2B), usamos un color plano base */
  background-color: #a41d2b;
  transition: all 0.3s ease;
  /* 2. Capa invisible con el gradiente del Hover */
}
.boton-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Aquí aplicamos tu variable o el gradiente oscuro */
  background: var(--degradado-rojo, linear-gradient(180deg, #a41d2b 0%, #780c17 100%));
  /* Configuración inicial: invisible y detrás del texto */
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease; /* Esta es la magia de la suavidad */
}
.boton-base {
  /* 3. Activación al pasar el mouse */
}
.boton-base:hover::before {
  opacity: 1;
}

.fondo-bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.fondo-bg2 {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 161.949px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

header {
  background: #fff;
  z-index: 9999;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
}
header .contenedor {
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
header .contenedor .left a {
  width: 134px;
  height: 47.081px;
  display: flex;
}
header .contenedor .left a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .contenedor .center #menu-header {
  display: flex;
  align-items: center;
  gap: 75px;
}
header .contenedor .center #menu-header .movil {
  display: none;
}
header .contenedor .center #menu-header li {
  position: relative;
  text-align: center;
}
header .contenedor .center #menu-header li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--1, #a41d2b);
  transform: scaleX(0);
  transition: all 0.3s ease;
}
header .contenedor .center #menu-header li a {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
  transition: all 0.3s ease;
}
header .contenedor .center #menu-header li:hover a {
  color: var(--1, #a41d2b);
}
header .contenedor .center #menu-header li:hover::after {
  transform: scaleX(1);
}
header .contenedor .right {
  display: flex;
  align-items: center;
  gap: 25px;
}
header .contenedor .right .buscador,
header .contenedor .right .minicart {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #f3f3f3;
}
header .contenedor .right .buscador svg,
header .contenedor .right .minicart svg {
  flex-shrink: 0;
}
header .contenedor .right .perfil {
  display: flex;
  height: 30px;
  justify-content: flex-start;
  align-items: center;
  max-width: 150px; /* Ajusta este ancho según tu diseño */
  white-space: nowrap; /* Evita que el nombre salte a otra línea */
  overflow: hidden; /* Esconde lo que exceda el ancho */
  text-overflow: ellipsis; /* Agrega los "..." al final */
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
header .contenedor .right .perfil svg {
  flex-shrink: 0;
}

.overlay-burger {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.burger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 90%;
  width: 590px;
  height: 100vh;
  background: #fff;
  transition: 0.4s ease;
  z-index: 99999;
  padding: 30px;
  border-radius: 40px 0 0 40px;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
.burger-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/textura-burger.webp);
  z-index: -1;
}
.burger-menu #close-burger {
  position: absolute;
  cursor: pointer;
  top: 40px;
  right: 40px;
}
.burger-menu .center {
  overflow-y: auto;
  max-height: 80vh;
}
.burger-menu .center .menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin: 20px 0;
}
.burger-menu .center .menu .desktop {
  display: none;
}
.burger-menu .center .menu li {
  position: relative;
}
.burger-menu .center .menu li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--1, #a41d2b);
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.burger-menu .center .menu li a {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  transition: all 0.3s ease;
}
.burger-menu .center .menu li:hover a {
  color: var(--1, #a41d2b);
}
.burger-menu .center .menu li:hover::after {
  transform: scaleX(1);
}

/* ACTIVO */
.overlay-burger.active {
  opacity: 1;
  visibility: visible;
}

.burger-menu.active {
  right: 0;
}

/* Quitar iconos nativos del input search */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

#search-overlay {
  position: fixed;
  top: 79px; /* altura real de tu header */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.35s ease;
}

#search-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

.search-box.contenedor {
  width: 980px;
  margin: auto;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.search-box.contenedor .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.search-box.contenedor .top .search-label {
  color: var(--3, #84838A);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.search-box.contenedor form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding-bottom: 10px;
  border-bottom: 1px solid #201F2C;
}
.search-box.contenedor form input {
  color: var(--2, #201F2C);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  border: none;
  outline: none;
  width: 100%;
}
.search-box.contenedor form input::-moz-placeholder {
  color: var(--2, #201F2C);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
}
.search-box.contenedor form input::placeholder {
  color: var(--2, #201F2C);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
}
.search-box.contenedor form input:focus {
  border: none;
  outline: none;
}
.search-box.contenedor form svg {
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  header .contenedor .center #menu-header {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  header .contenedor .center #menu-header {
    display: none;
  }
  .burger-menu .center .menu .desktop {
    display: block;
  }
  .burger-menu .center .menu {
    gap: 35px;
  }
}
@media (max-width: 500px) {
  .search-box.contenedor form input {
    font-size: 20px;
  }
  .search-box.contenedor form input::-moz-placeholder {
    font-size: 20px;
  }
  .search-box.contenedor form input::placeholder {
    font-size: 20px;
  }
  header .contenedor .left a {
    width: 90px;
    height: 32.081px;
  }
}
footer.section-footer {
  background: linear-gradient(180deg, #c12535 0%, #a41d2b 100%);
  padding: 60px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
footer.section-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 336px;
  background: url(../../images/footer-fondo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  aspect-ratio: 333/336;
}
footer.section-footer .contenedor.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 30px;
  z-index: 0;
}
footer.section-footer .contenedor.top .center {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 30px;
  z-index: 2;
}
footer.section-footer .contenedor.top .left {
  display: flex;
  width: 314px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
}
footer.section-footer .contenedor.top .left .logo {
  width: 186px;
  height: 65.351px;
  display: flex;
}
footer.section-footer .contenedor.top .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer.section-footer .contenedor.top .left .text-footer {
  color: var(--4, #fff) !important;
}
footer.section-footer .contenedor.top .center-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer.section-footer .contenedor.top .center-left h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer.section-footer .contenedor.top .center-left #menu-footer {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer.section-footer .contenedor.top .center-left #menu-footer li {
  margin-bottom: 10px;
}
footer.section-footer .contenedor.top .center-left #menu-footer li a {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 120% */
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
footer.section-footer .contenedor.top .center-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer.section-footer .contenedor.top .center-right h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer.section-footer .contenedor.top .center-right .datos {
  display: flex;
  height: 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer.section-footer .contenedor.top .center-right .datos a {
  color: var(--4, #fff) !important;
}
footer.section-footer .contenedor.top .right {
  display: flex;
  width: 237px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer.section-footer .contenedor.top .right .link-verificar {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--2, #201f2c);
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 122.222% */
}
footer.section-footer .contenedor.top .right .redes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
footer.section-footer .contenedor.top .right .redes .texto-base {
  color: var(--4, #fff) !important;
}
footer.section-footer .contenedor.top .right .redes .cont-redes {
  display: flex;
  align-items: center;
  gap: 16.555px;
  align-self: stretch;
  flex-wrap: wrap;
}
footer.section-footer .contenedor.top .right .redes .cont-redes a {
  width: 34.156px;
  height: 34.156px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer.section-footer .contenedor.bottom {
  z-index: 2;
  padding-top: 25px;
  margin-top: 25px;
  border-top: #fff 1px solid;
}
footer.section-footer .contenedor.bottom #menu-footerlegal {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}
footer.section-footer .contenedor.bottom #menu-footerlegal li a {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}

.whatsapp-button {
  position: fixed;
  bottom: 60px;
  right: 20px; /* Ajusta esto en lugar de usar el right negativo en el icono */
  z-index: 10;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  pointer-events: none; /* El contenedor base no detecta mouse... */
}

/* Solo el icono y el texto (cuando sea visible) detectarán el mouse */
.whatsapp-icon, .whatsapp-text {
  pointer-events: auto;
}

.whatsapp-text {
  background: #fff;
  color: #b21f2d;
  border: #b21f2d 3px solid;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  font-family: Xelo;
  font-size: 23.277px;
  line-height: 29.096px;
  /* CAMBIOS CRÍTICOS AQUÍ */
  transition: all 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap; /* Evita que el texto se amontone al cerrar */
  max-width: 0; /* Ocupa 0 espacio horizontal */
  padding: 6px 0; /* Padding vertical sí, horizontal 0 */
  position: relative;
  right: -45px;
  top: -3px;
}

.whatsapp-icon {
  position: relative;
  width: 60px;
  height: 60px; /* Asegura un área cuadrada */
  transition: 0.4s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover: Activamos el texto y el contenedor */
.whatsapp-button:hover .whatsapp-text {
  transform: scaleX(1);
  opacity: 1;
  visibility: visible;
  max-width: 300px; /* Un valor suficiente para tu texto */
  padding: 10px 60px 10px 30px; /* Recupera el padding al abrir */
}

.whatsapp-button:hover .whatsapp-icon {
  transform: translateX(-5px);
}

.woocommerce form .form-row::before, .woocommerce form .form-row::after, .woocommerce-page form .form-row::before, .woocommerce-page form .form-row::after {
  display: none !important;
}

@media (max-width: 1180px) {
  footer.section-footer .contenedor.top .center-left #menu-footer {
    -moz-columns: 1;
         columns: 1;
  }
}
@media (max-width: 1000px) {
  footer .contenedor.top .center {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  footer .contenedor.top {
    flex-direction: column;
  }
  footer.section-footer .contenedor.top .right {
    align-items: center;
  }
  footer.section-footer .contenedor.top .right .redes {
    align-items: center;
  }
  .whatsapp-button {
    right: 20px;
    bottom: 20px;
  }
  footer .contenedor.top .right {
    margin: auto;
    align-items: center;
  }
  footer .contenedor.top .right .redes {
    align-items: center;
  }
  footer.section-footer .contenedor.bottom #menu-footerlegal {
    flex-direction: column;
    gap: 20px;
  }
  footer .contenedor.top .left {
    width: 100%;
  }
}
.banner-principal {
  padding: 0;
  position: relative;
  aspect-ratio: 1366/688;
  min-height: 550px;
  width: 100%;
  max-height: calc(100vh - 79px);
}
.banner-principal .banner-splide {
  height: 100%;
}
.banner-principal .banner-splide .splide__track {
  height: 100%;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide.fondo1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(129.52% 68.94% at 67.28% 50%, #163369 0%, #201f2c 100%);
  opacity: 0.95;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide.fondo2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(129.52% 68.94% at 67.28% 50%, #201f2c 0%, #a41d2b 100%);
  opacity: 0.95;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide.fondo3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(186.1% 94.62% at 95.64% 50%, rgba(32, 31, 44, 0) 15.5%, #201f2c 79.82%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 50%;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 110% */
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left p {
  color: var(--4, #fff);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a {
  /* --- Estructura y Layout (Igual que antes) --- */
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  /* Color del texto */
  color: var(--2, #201f2c);
  text-decoration: none; /* Buena práctica en links */
  /* Tipografía */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* --- LA MAGIA DE LA TRANSICIÓN --- */
  position: relative; /* Necesario para posicionar el efecto */
  z-index: 1; /* Asegura que el texto quede arriba */
  overflow: hidden; /* Para que el color no se salga de los bordes redondos */
  /* 1. Fondo base (El estado inicial) */
  /* Nota: Tu gradiente inicial era el mismo color de inicio a fin, así que es un color sólido */
  background-color: #f8b03b;
  transition: all 0.3s ease; /* Transición para otras propiedades como color */
  /* 2. Creamos una capa invisible con el gradiente del hover */
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* El gradiente final que quieres */
  background: linear-gradient(180deg, #f8b03b 0%, #c97f06 100%);
  /* Empieza invisible */
  opacity: 0;
  z-index: -1; /* Se pone detrás del texto */
  /* Esta es la transición suave de opacidad */
  transition: opacity 0.3s ease;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a {
  /* 3. Al hacer hover, hacemos visible la capa */
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a:hover::before {
  opacity: 1;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right {
  height: 100%;
  position: absolute;
  right: 0;
  max-width: 50%;
  display: flex;
  align-items: center;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right.center {
  align-items: center;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right.top {
  align-items: flex-start;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right.bottom {
  align-items: flex-end;
}
.banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

body .splide__pagination {
  gap: 12px;
}

body .splide__pagination__page {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: #fff;
  opacity: 0.2;
  transition: all 0.1s ease;
}

body .splide__pagination__page.is-active {
  opacity: 1;
  transform: none;
}
body .splide__pagination__page.is-active:hover {
  opacity: 1;
}

body .splide__pagination__page:hover {
  opacity: 0.5;
}

body .splide__arrow {
  display: flex;
  width: 35px;
  height: 35px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13.429px;
  border-radius: 25.514px;
  background: var(--1, #a41d2b);
  opacity: 1;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow::before {
  content: "";
  width: 12.177px;
  height: 17px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Flecha izquierda */
.splide__arrow--prev::before {
  background-image: url(../../images/arrow-splide.svg);
}

/* Flecha derecha */
.splide__arrow--next::before {
  background-image: url(../../images/arrow-splide.svg);
  transform: rotate(180deg);
}

.section-bienvenida {
  padding-top: 0;
  position: relative;
}
.section-bienvenida .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.section-bienvenida .contenedor .left {
  width: 50%;
  position: relative;
  height: 480px;
}
.section-bienvenida .contenedor .left .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 84%;
  height: 80%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.section-bienvenida .contenedor .left .img1::before {
  content: "";
  position: absolute;
  width: 293.411px;
  height: 707.59px;
  transform: rotate(42.113deg) translateX(-50%);
  opacity: 0.6;
  background: var(--2, #201f2c);
  mix-blend-mode: hard-light;
  left: 88%;
  bottom: -80%;
}
.section-bienvenida .contenedor .left .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: relative;
}
.section-bienvenida .contenedor .left .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 243px;
  height: 243px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #fff;
}
.section-bienvenida .contenedor .left .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.section-bienvenida .contenedor .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section-bienvenida .contenedor .right h2 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 112.5% */
}
.section-bienvenida .contenedor .right h2 strong {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 110% */
}
.section-bienvenida .contenedor .right p {
  color: var(--3, #84838a);
  margin-bottom: 20px;
}

.section-testimonio {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}
.section-testimonio .bg-azul {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 634px 634px 0 0;
  background: linear-gradient(180deg, #201f2c 0%, #163369 35.5%, #1e1a44 51.5%);
  z-index: -1;
  max-height: 80%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.section-testimonio .bg-azul .testimonio-bg {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.05;
  /* 🔥 DIFUMINADO SUPERIOR */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}
.section-testimonio::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -200px;
  width: 1102px;
  height: 768px;
  background: url(../../images/fondo-lineas.webp) center/cover no-repeat;
  z-index: -1;
}
.section-testimonio .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 130px;
}
.section-testimonio .contenedor .top {
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
  width: 100%;
  height: 500px;
}
.section-testimonio .contenedor .top .left {
  max-width: 30%;
}
.section-testimonio .contenedor .top .left .titulo h2 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 32.213px;
  font-style: normal;
  font-weight: 600;
  line-height: 32.213px; /* 100% */
}
.section-testimonio .contenedor .top .left .titulo h3 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 45.099px;
  font-style: normal;
  font-weight: 500;
  line-height: 45.099px; /* 100% */
}
.section-testimonio .contenedor .top .left .titulo h4 {
  display: flex;
  gap: 20px;
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 45.099px;
  font-style: normal;
  font-weight: 500;
  line-height: 45.099px; /* 100% */
}
.section-testimonio .contenedor .top .left .titulo h4 strong {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 62.198px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.section-testimonio .contenedor .top .center {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 65%;
  height: 100%;
  transform: translateX(-50%);
}
.section-testimonio .contenedor .top .center img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}
.section-testimonio .contenedor .top .right {
  max-width: 30%;
  width: 414px;
}
.section-testimonio .contenedor .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.section-testimonio .contenedor .bottom div h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 100% */
}
.section-testimonio .contenedor .bottom div h2 strong {
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 100% */
}
.section-testimonio .contenedor .bottom .testimonio-splide {
  width: 100%;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__pagination {
  display: flex;
  bottom: -40px;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno {
  display: flex;
  padding: 30px;
  flex-direction: column;
  max-width: 459px;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  background: #fff;
  height: 100%;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno .datos-alumno {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno .datos-alumno img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno .datos-alumno .datos-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno .datos-alumno .datos-texto .nombre {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 105% */
}
.section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno .datos-alumno .datos-texto .curso {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 15px; /* 100% */
}

.section-articulos {
  background: var(--5, #f6f9fe);
  position: relative;
  padding: 80px 0 160px 0;
  overflow: hidden;
}
.section-articulos::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 1202px;
  height: 768px;
  background: url(../../images/fondo-lineas-2.webp) center/cover no-repeat;
  z-index: 0;
}
.section-articulos .contenedor {
  display: flex;
  width: 1267px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.section-articulos .contenedor .cont-titulo {
  display: flex;
  max-width: 667px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-articulos .contenedor .articulos-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.articulo-card {
  display: flex;
  flex: 1 0 0; /* 👈 clave */
  min-width: 301px;
  max-width: 389px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  border: 0.5px solid #e7e7e7;
  background: #fff;
}
.articulo-card .img {
  position: relative;
  border-radius: 5px;
  height: 164px;
  overflow: hidden;
  width: 100%;
}
.articulo-card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.articulo-card .img .categoria {
  position: absolute;
  top: 9px;
  left: 6px;
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px 12px 12px 5px;
  background: var(--1, #a41d2b);
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px; /* 100% */
  display: inline-block; /* 🔥 clave */
  text-transform: lowercase;
}
.articulo-card .img .categoria::first-letter {
  text-transform: uppercase;
}
.articulo-card .contenido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.articulo-card .contenido h3 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.articulo-card .contenido .acciones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.articulo-card .contenido .acciones .btn-ver {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  border-radius: 24px;
  background: var(--2, #201f2c);
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
}
.articulo-card .contenido .acciones .icono {
  display: flex;
  width: 35px;
  height: 35px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13.429px;
  border-radius: 25.514px;
  background: var(--1, #a41d2b);
}
.articulo-card .contenido .acciones .icono svg {
  transition: all 0.3s ease;
}
.articulo-card:hover .img img {
  transform: scale(1.1);
}
.articulo-card:hover .contenido .acciones .icono svg {
  transform: rotate(-45deg);
}

.section-contacto {
  position: relative;
  padding: 0;
  display: flex;
}
.section-contacto .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}
.section-contacto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: var(--2, #201f2c);
  z-index: -1;
}
.section-contacto .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-contacto .contenedor .info {
  width: 50%;
  margin: 2.5rem 0;
  display: flex;
  max-width: 591px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 0.5px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}
.section-contacto .contenedor .info .titulo {
  width: 100%;
}
.section-contacto .contenedor .info .titulo h2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 39.491px;
  font-style: normal;
  font-weight: 500;
  line-height: 39.491px; /* 100% */
}
.section-contacto .contenedor .info .titulo h2 strong {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 70.928px;
  font-style: normal;
  font-weight: 500;
  line-height: 70.928px; /* 100% */
  margin-right: 0;
  margin-left: auto;
}
.section-contacto .contenedor .info p {
  color: var(--4, #fff) !important;
  margin-bottom: 20px;
}
.section-contacto .contenedor .imagen-persona {
  position: relative;
  width: 50%;
  height: 100%;
}
.section-contacto .contenedor .imagen-persona img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 140%;
}

.bloque-diplomados.cambio {
  position: relative;
  background: var(--5, #f6f9fe);
}
.bloque-diplomados.cambio .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
  position: relative;
}
.bloque-diplomados.cambio .contenedor h2 {
  color: var(--1, #a41d2b);
  text-align: center;
  /* Texto 40 */
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 100% */
}
.bloque-diplomados.cambio .contenedor .tabs-productos {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 103px;
  background: #b41727;
  transition: all 0.3s ease;
}
.bloque-diplomados.cambio .contenedor .tabs-productos .tab-btn {
  display: flex;
  padding: 13px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
  transition: all 0.3s ease;
}
.bloque-diplomados.cambio .contenedor .tabs-productos .tab-btn.active {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  color: var(--1, #a41d2b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
}
.bloque-diplomados.cambio .contenedor .tabs-productos.curso {
  background: #1b1928;
}
.bloque-diplomados.cambio .contenedor .tabs-productos.curso .tab-btn.active {
  color: var(--2, #201f2c);
}
.bloque-diplomados.cambio .contenedor .grid-productos {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 25px 48px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria {
  position: relative;
  display: inline-flex;
  height: 38px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  color: var(--4, #fff);
  overflow: hidden;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  /* fondo base */
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #201f2c 0%, #201f2c 100%);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria {
  /* fondo hover */
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #201f2c 0%, #274d94 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria span, .bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria {
  position: relative;
  z-index: 1;
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria:hover::after {
  opacity: 1;
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria {
  /* 🔴 variante diplomado */
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria.boton-diplomado::before {
  background: linear-gradient(180deg, #a41d2b 0%, #a41d2b 100%);
}
.bloque-diplomados.cambio .contenedor .ver-mas .botones-categoria.boton-diplomado::after {
  background: linear-gradient(180deg, #a41d2b 0%, #780c17 100%);
}

.woocommerce-notices-wrapper {
  display: none;
}

@media (max-width: 1000px) {
  .section-contacto .contenedor .info .titulo h2 {
    font-size: 35.491px;
  }
  .section-contacto .contenedor .info .titulo h2 strong {
    font-size: 66.928px;
  }
}
@media (max-width: 800px) {
  .section-testimonio .contenedor .bottom .testimonio-splide .splide__track .splide__list .splide__slide .comentario-alumno {
    margin: auto;
  }
  .banner-principal {
    height: 773px;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor {
    flex-direction: column;
    padding: 50px 0 0 0;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right {
    position: relative;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left, .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right {
    max-width: 100%;
    width: 100%;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a {
    font-size: 15px;
    line-height: 20px;
  }
  .banner-principal .banner-splide .splide__track .splide__list .splide__slide .contenedor .left h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .section-bienvenida .contenedor {
    flex-direction: column;
  }
  .section-bienvenida .contenedor .left, .section-bienvenida .contenedor .right {
    width: 100%;
  }
  .section-bienvenida .contenedor .left .img2 {
    width: 160px;
    height: 160px;
    border: 5px solid #fff;
    bottom: 20px;
    right: 10px;
  }
  .section-bienvenida .contenedor .right h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .section-bienvenida .contenedor .right h2 strong {
    font-size: 35px;
    line-height: 40px;
  }
  .boton-base {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .bloque-diplomados.cambio .contenedor h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .bloque-diplomados.cambio .contenedor .tabs-productos .tab-btn {
    font-size: 15px !important;
  }
  .bloque-diplomados.cambio .contenedor {
    gap: 20px !important;
  }
  .diplomado-card {
    padding: 24px 12px !important;
  }
  .titulo-base {
    font-size: 30px !important;
    line-height: 35px !important;
  }
  .diplomado-card .card-content .top h3 {
    font-size: 18px !important;
  }
  .section-contacto .contenedor {
    flex-direction: column;
  }
  .section-contacto .contenedor .info {
    width: 100%;
  }
  .section-contacto .contenedor .info .titulo h2 {
    font-size: 25px !important;
    line-height: 25px !important;
    max-width: 300px !important;
  }
  .section-contacto .contenedor .info .titulo h2 strong {
    font-size: 45px !important;
    line-height: 45px !important;
  }
  .section-contacto .contenedor .imagen-persona {
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }
  .section-testimonio .contenedor .top {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .section-testimonio .contenedor .top .center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    order: 3;
  }
  .section-testimonio .contenedor .top .left {
    max-width: 100%;
  }
  .section-testimonio .contenedor .top .right {
    width: 100%;
    max-width: 100%;
  }
  .section-testimonio .bg-azul {
    max-height: 65%;
  }
  .section-testimonio .contenedor {
    gap: 30px;
  }
  .section-testimonio .contenedor .bottom div h2 {
    font-size: 25px;
    line-height: 25px;
  }
  .section-testimonio .contenedor .bottom div h2 strong {
    font-size: 30px;
    line-height: 30px;
  }
  .section-testimonio .contenedor .top .left .titulo h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .section-testimonio .contenedor .top .left .titulo h3 {
    font-size: 33px;
  }
  .section-testimonio .contenedor .top .left .titulo h4 {
    font-size: 33px;
  }
  .section-testimonio .contenedor .top .left .titulo h4 strong {
    font-size: 67px;
  }
  body .splide__pagination__page {
    width: 8px !important;
    height: 8px !important;
  }
  body .splide__pagination {
    gap: 6px !important;
  }
  .bloque-diplomados.cambio .contenedor .tabs-productos {
    gap: 0;
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .diplomado-card {
    min-width: 100% !important;
  }
  .diplomado-card .card-content .bottom .certificaciones {
    position: absolute !important;
    right: 12px;
    flex-direction: column;
    bottom: 70px;
  }
	
  .diplomado-card .card-content .bottom .btn-info {
    width: 100%;
  }
  .diplomado-card .card-content .center .precio del {
    display: none;
  }
  .articulo-card {
    min-width: 100%;
  }
}
.banner-second {
  position: relative;
  padding: 0;
  height: 249px;
}
.banner-second::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background: url(../../images/fondo-banner2.webp) center/cover no-repeat;
  z-index: -1;
}
.banner-second .img-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.05;
}
.banner-second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #201f2c 1.85%, #163369 50.12%, #1e1a44 68.75%);
  z-index: -2;
}
.banner-second .contenedor {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner-second .contenedor .breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-second .contenedor .breadcrumb a,
.banner-second .contenedor .breadcrumb span {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}
@media (max-width: 800px) {
  .banner-second .contenedor .breadcrumb {
    display: none;
  }
}
.banner-second .contenedor h2 {
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 100% */
}

.section-historia {
  padding-top: 0;
  position: relative;
}
.section-historia .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}
.section-historia .contenedor .left {
  width: 50%;
  position: relative;
  height: 580px;
}
.section-historia .contenedor .left .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 84%;
  height: 80%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.section-historia .contenedor .left .img1::before {
  content: "";
  position: absolute;
  width: 293.411px;
  height: 707.59px;
  transform: rotate(42.113deg) translateX(-50%);
  opacity: 0.6;
  background: var(--2, #201f2c);
  mix-blend-mode: hard-light;
  left: 88%;
  bottom: -80%;
}
.section-historia .contenedor .left .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: relative;
}
.section-historia .contenedor .left .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 243px;
  height: 243px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #fff;
}
.section-historia .contenedor .left .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.section-historia .contenedor .right {
  padding: 80px 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section-historia .contenedor .right h2 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 112.5% */
}
.section-historia .contenedor .right h2 strong {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px; /* 110% */
}
.section-historia .contenedor .right p {
  color: var(--3, #84838a);
  margin-bottom: 20px;
}

#us_galeria {
  padding: 60px 0 100px 0;
  background: var(--5, #f6f9fe);
}
#us_galeria .splide__pagination {
  display: flex;
  bottom: -40px;
}
#us_galeria .splide__pagination .splide__pagination__page {
  background: var(--1, #a41d2b);
  opacity: 0.2;
}
#us_galeria .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}
#us_galeria .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
#us_galeria .contenedor .cont-titulo {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
#us_galeria .mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, clamp(10rem, 18vw, 18rem));
}
#us_galeria .mosaic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
#us_galeria .mosaic .m1 {
  grid-area: 1/1;
}
#us_galeria .mosaic .m2 {
  grid-area: 1/2;
}
#us_galeria .mosaic .m3 {
  grid-area: 2/1/3/3;
}
#us_galeria .mosaic .m4 {
  grid-area: 1/3/3/4;
}
#us_galeria .mosaic .m5 {
  grid-area: 1/4/2/6;
}
#us_galeria .mosaic .m6 {
  grid-area: 2/4/3/5;
}
#us_galeria .mosaic .m7 {
  grid-area: 2/5/3/6;
}

/* MODAL */
.galeria-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.galeria-modal .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria-modal.is-open {
  display: flex;
}
.galeria-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  background: none;
  color: #fff;
  border: 0;
  cursor: pointer;
}
.galeria-modal img {
  max-height: 80vh;
  border-radius: 20px;
  width: 80%;
  max-width: 900px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* MODAL SOPORTE ACADÉMICO */
.soporte-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 31, 44, 0.95);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}
.soporte-modal.active {
  display: flex;
}
.soporte-modal-content {
  width: 90%;
  max-width: 1000px;
  position: relative;
}
.soporte-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  line-height: 1;
}
.soporte-modal .slide-inner {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .soporte-modal .slide-inner {
    flex-direction: row;
  }
}
.soporte-modal .video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
@media (min-width: 768px) {
  .soporte-modal .video-container {
    width: 65%;
  }
}
.soporte-modal .video-container iframe {
  width: 100%;
  height: 100%;
}
.soporte-modal .video-container .no-embed {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soporte-modal .info-container {
  padding: 25px;
  width: 100%;
}
@media (min-width: 768px) {
  .soporte-modal .info-container {
    width: 35%;
    overflow-y: auto;
    max-height: 500px;
  }
}
.soporte-modal .info-container h3 {
  color: var(--2, #201F2C);
  margin-bottom: 10px;
  font-size: 20px;
  font-family: Montserrat;
}
.soporte-modal .info-container .desc {
  color: var(--3, #84838A);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.soporte-modal .info-container .btn-descargar {
  display: inline-block;
  padding: 10px 20px;
  background: var(--1, #A41D2B);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.soporte-modal .info-container .btn-descargar:hover {
  background: #8a1622;
}

.section-misionvision {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-misionvision .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.section-misionvision .contenedor .mision {
  border-radius: 10px;
  height: 383px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.section-misionvision .contenedor .mision:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 25, 40, 0.1) 0%, #1b1928 100%);
  z-index: -1;
  opacity: 1;
  transition: all 0.2s ease;
}
.section-misionvision .contenedor .mision:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(164, 29, 43, 0.1) 0%, #a41d2b 100%);
  z-index: -1;
  opacity: 1;
  transition: all 0.2s ease;
}
.section-misionvision .contenedor .mision:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 25, 40, 0.5) 0%, #1b1928 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease;
}
.section-misionvision .contenedor .mision:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(164, 29, 43, 0.5) 0%, #a41d2b 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease;
}
.section-misionvision .contenedor .mision img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.section-misionvision .contenedor .mision h3 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 100% */
}
.section-misionvision .contenedor .mision p {
  color: var(--4, #fff) !important;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.section-misionvision .contenedor .mision:hover p {
  max-height: 400px;
}
.section-misionvision .contenedor .mision:hover:nth-child(1)::after {
  opacity: 1;
}
.section-misionvision .contenedor .mision:hover:nth-child(2)::after {
  opacity: 1;
}
.section-misionvision .contenedor .mision:hover:nth-child(1)::before {
  opacity: 0;
}
.section-misionvision .contenedor .mision:hover:nth-child(2)::before {
  opacity: 0;
}

.section-alianzas {
  padding: 40px 0 100px 0;
  background: var(--5, #f6f9fe);
}
.section-alianzas .splide__pagination {
  bottom: -40px;
}
.section-alianzas .splide__pagination .splide__pagination__page {
  background: var(--1, #a41d2b);
  opacity: 0.2;
}
.section-alianzas .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}
.section-alianzas .contenedor .titulo-cont {
  display: flex;
  max-width: 935px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto;
  margin-bottom: 50px;
  text-align: center;
}
.section-alianzas .splide__slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-alianzas .splide__slide img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.section-alianzas .splide__slide:hover img {
  transform: scale(1.1);
}

.section-autoridades {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-autoridades .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-autoridades .contenedor .titulo-cont {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-autoridades .contenedor .autoridades-splide {
  width: 100%;
}
.section-autoridades .contenedor .autoridad-card {
  display: flex;
  height: 471px;
  padding: 20px 14px;
  align-items: flex-end;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.section-autoridades .contenedor .autoridad-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--6, #000);
  z-index: -1;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}
.section-autoridades .contenedor .autoridad-card .autoridad-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-autoridades .contenedor .autoridad-card .autoridad-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.section-autoridades .contenedor .autoridad-card .autoridad-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.section-autoridades .contenedor .autoridad-card .autoridad-info .autoridad-desc {
  color: #fff;
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-autoridades .contenedor .autoridad-card .autoridad-info .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.section-autoridades .contenedor .autoridad-card .autoridad-info .bottom h3 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* ⬇️ una sola línea */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-autoridades .contenedor .autoridad-card .autoridad-info .bottom span {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
  letter-spacing: 0.75px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-autoridades .contenedor .autoridad-card:hover::before {
  opacity: 0.9;
}
.section-autoridades .contenedor .autoridad-card:hover .autoridad-img {
  height: 100%;
}
.section-autoridades .contenedor .autoridad-card:hover .autoridad-info .autoridad-desc {
  max-height: 400px;
  opacity: 1;
}
.section-autoridades .contenedor .autoridad-card:hover .autoridad-info .bottom h3,
.section-autoridades .contenedor .autoridad-card:hover .autoridad-info .bottom span {
  color: #fff;
  -webkit-line-clamp: 4;
}

@media (max-width: 800px) {
  .section-historia .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-historia .contenedor .left, .section-historia .contenedor .right {
    width: 100%;
    padding: 0;
  }
  .section-historia .contenedor .right h2 {
    font-size: 30px;
  }
  #galeria-modal .splide__arrows {
    position: absolute;
    bottom: 60px;
    left: 50%;
  }
  #galeria-modal .splide__arrows .splide__arrow--prev {
    right: 2em;
    left: auto;
  }
  #galeria-modal .splide__arrows .splide__arrow--next {
    left: 2em;
    right: auto;
  }
  .section-misionvision .contenedor {
    flex-direction: column;
  }
}
.section-blog {
  position: relative;
  background: #f5f5f5;
}
.section-blog .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-blog .contenedor .texto-base {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}
.section-blog .contenedor .blog-layout {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.section-blog .contenedor .blog-layout .filtro {
  display: flex;
  width: 267px;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  background: #fff;
}
.section-blog .contenedor .blog-layout .filtro .toggle-categorias {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 100% */
  padding-bottom: 10px;
  border-bottom: 1px #84838a solid;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
}
.section-blog .contenedor .blog-layout .filtro .lista-categorias {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section-blog .contenedor .blog-layout .filtro .lista-categorias li a {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 15px; /* 100% */
  display: inline-block;
  text-transform: lowercase;
}
.section-blog .contenedor .blog-layout .filtro .lista-categorias li a::first-letter {
  text-transform: uppercase;
}
.section-blog .contenedor .blog-layout .filtro .lista-categorias li a.active {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
  text-transform: capitalize;
}
.section-blog .contenedor .blog-layout .blog-contenido {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
  width: 100%;
}
.section-blog .contenedor .blog-layout .blog-contenido .grid-articulos {
  display: flex;
  justify-content: center;
  gap: 30px 20px;
  flex-wrap: wrap;
  width: 100%;
}
.section-blog .contenedor .blog-layout .blog-contenido .paginador .paginador-simple {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-blog .contenedor .blog-layout .blog-contenido .paginador .paginador-simple button {
  display: flex;
  width: 35px;
  height: 35px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 65px;
  background: rgba(129, 129, 129, 0.2);
}
.section-blog .contenedor .blog-layout .blog-contenido .paginador .paginador-simple .paginador-prev:disabled,
.section-blog .contenedor .blog-layout .blog-contenido .paginador .paginador-simple .paginador-next:disabled {
  display: none;
  cursor: not-allowed;
}
.section-blog .contenedor .blog-layout .blog-contenido .paginador .paginador-simple .paginador-texto {
  color: var(--3, #84838a);
  text-align: right;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}

.autoridad-card {
  cursor: pointer;
  display: flex;
  height: 471px;
  padding: 20px 14px;
  align-items: flex-end;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.autoridad-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6901960784);
  z-index: -1;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}
.autoridad-card .autoridad-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.autoridad-card .autoridad-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.autoridad-card .autoridad-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.autoridad-card .autoridad-info .oculto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.autoridad-card .autoridad-info .oculto button {
  display: flex;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 19px;
  background: var(--6, #f8b03b);
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.2s ease;
}
.autoridad-card .autoridad-info .oculto .autoridad-desc {
  color: #fff;
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  text-align: justify;
}
.autoridad-card .autoridad-info .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.autoridad-card .autoridad-info .bottom h3 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* ⬇️ una sola línea */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.autoridad-card .autoridad-info .bottom span {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
  letter-spacing: 0.75px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.autoridad-card:hover::before {
  opacity: 0.9;
}
.autoridad-card:hover .autoridad-img {
  height: 100%;
}
.autoridad-card:hover .autoridad-info .oculto {
  max-height: 800px;
  opacity: 1;
  margin-top: 10px;
}
.autoridad-card:hover .autoridad-info .bottom h3,
.autoridad-card:hover .autoridad-info .bottom span {
  color: #fff;
  -webkit-line-clamp: 4;
}

@media (max-width: 800px) {
  .section-blog .contenedor .blog-layout {
    flex-direction: column;
  }
  .section-blog .contenedor .blog-layout .filtro {
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}
.section-single-post .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-single-post .contenedor .imagen-principal {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 500px;
}
.section-single-post .contenedor .imagen-principal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-single-post .contenedor .layout-single {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.section-single-post .contenedor .layout-single .sidebar-relacionados {
  display: flex;
  width: 30%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  position: sticky;
  top: 100px;
}
.section-single-post .contenedor .layout-single .sidebar-relacionados h4 {
  color: #818181;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 114.286% */
}
.section-single-post .contenedor .layout-single .sidebar-relacionados .articulo-card {
  flex: auto;
}
.section-single-post .contenedor .layout-single .sidebar-relacionados .articulo-card .contenido .acciones {
  display: none;
}
.section-single-post .contenedor .layout-single .contenido-post {
  width: 70%;
}
.section-single-post .contenedor .layout-single .contenido-post h1 {
  color: #818181;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 114.286% */
  margin-bottom: 20px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal h2,
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal h3,
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal h4 {
  padding-top: 20px;
  color: #1b1928;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal p {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal p strong {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal p a {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  border-bottom: 1px solid #818181;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ul {
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ul li {
  margin-left: 25px;
  list-style: disc;
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ul li strong {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ol {
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ol li {
  margin-left: 25px;
  list-style: decimal;
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal ol li strong {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal figure {
  width: 100%;
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .contenido-principal figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info h3 {
  color: #1b1928;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info .texto-base ul {
  margin-left: 25px;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info .texto-base ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info .img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 908/309;
}
.section-single-post .contenedor .layout-single .contenido-post .bloques-informacion .bloque-info .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .compartir {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  position: fixed;
  top: 100px;
  z-index: 10;
  width: 94%;
  left: 50%;
  max-width: 1420px;
  transform: translateX(-50%);
  pointer-events: none;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .compartir p {
  color: #4d4d4d;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: none;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .compartir .redes {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
  pointer-events: all;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .compartir .redes a {
  display: flex;
  width: 27.566px;
  height: 27.566px;
  justify-content: center;
  align-items: center;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista h3 {
  color: #818181;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #4d4d4d;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-avatar {
  height: 19px;
  border-radius: 50%;
  overflow: hidden;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body .comentario-header strong {
  color: #1b1928;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body .comentario-contenido {
  color: #818181;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  width: 100%;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond {
  width: 100%;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond h3 {
  color: #818181;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form {
  width: 100%;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form .logged-in-as {
  display: none;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form textarea,
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form input {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 1px solid #b0b0b0;
  background: rgba(167, 167, 167, 0.2);
  margin-bottom: 20px;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form .comment-form-cookies-consent {
  display: none;
}
.section-single-post .contenedor .layout-single .contenido-post .blog-comentarios .comentarios-form .comment-respond .comment-form .form-submit .submit {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background: #6f6f6f;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 100% */
  cursor: pointer;
}

@media (max-width: 800px) {
  .section-single-post .contenedor .layout-single {
    flex-direction: column;
    width: 100%;
  }
  .section-single-post .contenedor .layout-single .sidebar-relacionados {
    max-width: 100%;
    display: none;
  }
  .section-single-post .contenedor .layout-single .contenido-post {
    width: 100%;
  }
}
.wp-block-image {
  display: grid;
  gap: 10px;
}
.wp-block-image img {
  border-radius: 5px;
}

/* 1 imagen */
.wp-block-image img:only-child {
  grid-column: 1/-1;
  width: 100%;
}

/* 2 imágenes */
.wp-block-image:has(img:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.wp-block-image:has(img:nth-child(2):last-child) img {
  width: 100%;
}

/* 3 imágenes */
.wp-block-image:has(img:nth-child(3):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.wp-block-image:has(img:nth-child(3):last-child) img:nth-child(3) {
  grid-column: 1/-1; /* la tercera ocupa toda la fila */
}

@media (max-width: 600px) {
  .wp-block-image {
    grid-template-columns: 1fr !important;
  }
  .wp-block-image img {
    grid-column: auto !important;
  }
}
.section-titulo-docentes .contenedor .titulo-cont {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  margin: auto;
}

.section-docentes-cat .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.section-docentes-cat .contenedor .docentes-categorias {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 15px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-docentes-cat .contenedor .docentes-categorias .categoria-btn {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  border-radius: 24px;
  border: 1px solid var(--2, #201f2c);
  color: var(--2, #201f2c);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  transition: all 0.3s ease;
}
.section-docentes-cat .contenedor .docentes-categorias .categoria-btn:hover {
  background: var(--degradado-rojo, linear-gradient(180deg, #a41d2b 0%, #780c17 100%));
  color: var(--4, #fff);
  border: 1px solid rgba(255, 255, 255, 0);
}
.section-docentes-cat .contenedor .mas-cat-docentes {
  color: var(--1, #a41d2b);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: auto;
}

.section-docentes-general {
  padding: 2.5rem 0 200px 0;
}
.section-docentes-general .contenedor .docentes-secciones {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.section-docentes-general .contenedor .docentes-secciones .splide__pagination {
  display: flex;
  bottom: -30px;
}
.section-docentes-general .contenedor .docentes-secciones .splide__pagination .splide__pagination__page {
  background: var(--1, #a41d2b);
  opacity: 0.2;
}
.section-docentes-general .contenedor .docentes-secciones .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}
.section-docentes-general .contenedor .docentes-secciones .docente-cat-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-docentes-general .contenedor .docentes-secciones .docente-cat-section h2 {
  color: var(--2, #201f2c);
  /* Texto 30 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 100% */
}

.section-programas-house {
  background: var(--5, #f6f9fe);
}
.section-programas-house .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-programas-house .contenedor .titulo-cont {
  display: flex;
  max-width: 641px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-programas-house .contenedor .promogramas-cont {
  display: inline-flex;
  align-items: flex-start;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-programas-house .contenedor .promogramas-cont .programa {
  flex: 1;
  min-width: 301px;
  display: flex;
  max-width: 389px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-programas-house .contenedor .promogramas-cont .programa img {
  width: 100%;
  height: 242px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.section-programas-house .contenedor .promogramas-cont .programa h3 {
  color: var(--2, #201f2c);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
}
.section-programas-house .contenedor .promogramas-cont .programa p {
  color: var(--3, #84838a);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px; /* 135.714% */
}

.section-objetivo {
  position: relative;
}
.section-objetivo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.5;
}
.section-objetivo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(164, 29, 43, 0.6) 0%, rgba(120, 12, 23, 0.6) 100%);
  z-index: -1;
}
.section-objetivo .contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.section-objetivo .contenedor h2 {
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 100% */
}
.section-objetivo .contenedor p {
  color: var(--4, #fff) !important;
  max-width: 747px;
  text-align: center;
}

.section-capacitacion {
  background: var(--5, #f6f9fe);
}
.section-capacitacion .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-capacitacion .contenedor .titulo-cont {
  display: flex;
  max-width: 641px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-capacitacion .contenedor .promogramas-cont {
  display: inline-flex;
  align-items: flex-start;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-capacitacion .contenedor .promogramas-cont .programa {
  flex: 1;
  min-width: 301px;
  display: flex;
  max-width: 389px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-capacitacion .contenedor .promogramas-cont .programa img {
  width: 100%;
  height: 242px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.section-capacitacion .contenedor .promogramas-cont .programa h3 {
  color: var(--2, #201f2c);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
}
.section-capacitacion .contenedor .promogramas-cont .programa p {
  color: var(--3, #84838a);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px; /* 135.714% */
}

.section-contacto-2 {
  position: relative;
  padding: 0;
  display: flex;
}
.section-contacto-2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}
.section-contacto-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: var(--2, #201f2c);
  z-index: -1;
}
.section-contacto-2 .contenedor {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section-contacto-2 .contenedor .info {
  width: 60%;
  margin: 2.5rem 0;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 0.5px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}
.section-contacto-2 .contenedor .info .titulo h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 35.491px;
  font-style: normal;
  font-weight: 500;
  line-height: 35.491px; /* 100% */
}
.section-contacto-2 .contenedor .info .titulo h2 strong {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 58.928px;
  font-style: normal;
  font-weight: 500;
  line-height: 70.928px; /* 100% */
}
.section-contacto-2 .contenedor .info p {
  color: var(--4, #fff) !important;
  margin-bottom: 20px;
}
.section-contacto-2 .contenedor .info .formulario-wrapper {
  width: 100%;
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col {
  width: 100%;
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col p {
  margin: 0;
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col p span input {
  display: flex;
  width: 100%;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  border: 1px solid rgba(32, 31, 44, 0.1);
  background: var(--4, #FFF);
  border: none;
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col p span input::-moz-placeholder {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col p span input::placeholder {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row .form-col p span input:focus {
  border: none;
  outline: none;
}
.section-contacto-2 .contenedor .imagen-persona {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
}
.section-contacto-2 .contenedor .imagen-persona img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 110%;
}

@media (max-width: 800px) {
  .section-contacto-2 .contenedor {
    flex-direction: column;
  }
  .section-contacto-2 .contenedor .info {
    width: 100%;
  }
  .section-contacto-2 .contenedor .info .titulo h2 {
    font-size: 25px !important;
    line-height: 25px !important;
    max-width: 300px !important;
  }
  .section-contacto-2 .contenedor .info .titulo h2 strong {
    font-size: 45px !important;
    line-height: 45px !important;
  }
  .section-contacto-2 .contenedor .imagen-persona {
    position: relative;
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }
  .section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .section-contacto-2 .contenedor .info .formulario-wrapper .form-contacto {
    gap: 20px;
  }
}
@media (max-width: 350px) {
  .section-programas-house .contenedor .promogramas-cont .programa, .section-capacitacion .contenedor .promogramas-cont .programa {
    min-width: 100%;
  }
}
.wpcf7-not-valid-tip {
  color: #fff !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #a41d2b !important;
  color: #fff !important;
}

.section-datos-contacto {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-datos-contacto .contenedor {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 50px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(32, 31, 44, 0.1);
  background: var(--4, #fff);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  gap: 30px;
}
.section-datos-contacto .contenedor .dato {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.section-datos-contacto .contenedor .dato .icono {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.section-datos-contacto .contenedor .dato .texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-datos-contacto .contenedor .dato .texto h3 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.35px; /* 129.72% */
}
.section-datos-contacto .contenedor .dato .texto p {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.35px;
}

.section-contact-form {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-contact-form .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.section-contact-form .contenedor .left {
  width: 45%;
}
.section-contact-form .contenedor .left img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-contact-form .contenedor .right {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.section-contact-form .contenedor .right .wpcf7 {
  width: 100%;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group {
  width: 100%;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span {
  width: 100%;
  position: relative;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span input, .section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span select {
  display: flex;
  width: 100%;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 28px;
  border: 1px solid rgba(32, 31, 44, 0.1);
  background: var(--4, #fff);
  border: none;
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  width: 100%;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span input::-moz-placeholder, .section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span select::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span input::placeholder, .section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span select::placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span input:focus, .section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span select:focus {
  border: none;
  outline: none;
}
.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group p span .wpcf7-not-valid-tip {
  position: absolute;
}
.section-contact-form .contenedor .right .wpcf7 .wpcf7-response-output {
  display: none;
}

.section-form-post {
  position: relative;
  overflow: hidden;
}
.section-form-post .contenedor {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  gap: 20px;
}
.section-form-post .contenedor .left {
  width: 45%;
}
.section-form-post .contenedor .left img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-form-post .contenedor .right {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.section-form-post .contenedor .right .texto-base {
  color: #818181;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.section-form-post .contenedor .right .wpcf7 {
  width: 100%;
}
.section-form-post .contenedor .right .wpcf7 .contact-form {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group {
  width: 100%;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span {
  width: 100%;
  position: relative;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span select.input-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 40px 12px 15px; /* espacio para la flecha */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span input, .section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span select {
  display: flex;
  width: 100%;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 28px;
  border: 1px solid rgba(32, 31, 44, 0.1);
  background: var(--5, #F6F9FE);
  border: none;
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  width: 100%;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span input::-moz-placeholder, .section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span select::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span input::placeholder, .section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span select::placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span input:focus, .section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span select:focus {
  border: none;
  outline: none;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group p span .wpcf7-not-valid-tip {
  position: absolute;
}
.section-form-post .contenedor .right .wpcf7 .contact-form .form-group-2 p {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
}
.section-form-post .contenedor .right .wpcf7 .wpcf7-response-output {
  display: none;
}

.mapa-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 438px;
}

.mapa-img {
  width: 100%;
  min-height: 100%;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}

/* OVERLAY OSCURO */
.mapa-overlay {
  position: absolute;
  inset: 0;
  background: #1d1d1d;
  opacity: 0.2;
  z-index: 1;
}

/* CÍRCULO TRANSPARENTE */
.mapa-focus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* PIN */
.mapa-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.mapa-actions {
  position: absolute;
  top: 35px;
  left: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mapa-actions a {
  border-radius: 5px;
  background: #fff;
  height: 60px;
  min-width: 60px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.mapa-actions a .texto-link {
  max-width: 0;
  opacity: 0;
  transform: translateX(-10px);
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}
.mapa-actions a .texto-link p {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.mapa-actions a:hover {
  background: linear-gradient(180deg, #201f2c 0%, #274d94 100%);
}
.mapa-actions a:hover .texto-link {
  max-width: 300px;
  opacity: 1;
  transform: translateX(0);
  margin-right: 20px;
}
.mapa-actions a.waze:hover svg path {
  fill: #fff;
}

.section-contact-form .contenedor .right .wpcf7 .contact-form .form-group .wpcf7-spinner {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .section-datos-contacto .contenedor {
    padding: 20px 10px;
  }
  .section-datos-contacto .contenedor .dato .texto h3, .section-datos-contacto .contenedor .dato .texto p {
    font-size: 15px;
  }
  .section-datos-contacto .contenedor .dato .icono {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .section-contact-form .contenedor {
    flex-direction: column;
  }
  .section-contact-form .contenedor .left, .section-contact-form .contenedor .right {
    width: 100%;
  }
  .section-form-post .contenedor {
    flex-direction: column;
  }
  .section-form-post .contenedor .right {
    width: 100%;
  }
  .section-form-post .contenedor .left {
    display: none;
  }
}
@media (max-width: 350px) {
  .section-datos-contacto .contenedor .dato .texto h3, .section-datos-contacto .contenedor .dato .texto p {
    font-size: 12px;
  }
}
.curso-single-banner {
  padding: 0;
  position: relative;
  height: 527px;
}
.curso-single-banner .imagen-destacada {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -2;
}
.curso-single-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(69.39% 67.6% at 77.05% 38.05%, rgba(27, 25, 40, 0) 0%, rgba(27, 25, 40, 0.9) 100%);
  z-index: -1;
}
.curso-single-banner .contenedor {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.curso-single-banner .contenedor .breadcrumb {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.curso-single-banner .contenedor .breadcrumb a,
.curso-single-banner .contenedor .breadcrumb span {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}
.curso-single-banner .contenedor .bottom {
  margin: 0 auto;
  position: relative;
  display: flex;
  width: 954px;
  max-width: 90%;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #fff;
  margin-bottom: 45px;
}
.curso-single-banner .contenedor .bottom .dato {
  display: flex;
  padding: 0 2.781px;
  align-items: center;
  gap: 10px;
}
.curso-single-banner .contenedor .bottom .dato img {
  display: flex;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.curso-single-banner .contenedor .bottom .dato .texto p {
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.curso-single-banner .contenedor .bottom .dato .texto p strong {
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.curso-single-banner .contenedor .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 45px;
}
.curso-single-banner .contenedor .left .badge {
  display: flex;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px 12px 12px 5px;
  background: var(--4, #fff);
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}
.curso-single-banner .contenedor .left h1 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 100% */
}
.curso-single-banner .contenedor .left .descripcion {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  max-width: 50%;
}
.curso-single-banner .contenedor .left .botones {
  display: flex;
  align-items: center;
  gap: 20px;
}
.curso-single-banner .contenedor .left .botones .btn {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
}
.curso-single-banner .contenedor .left .botones .btn.btn-brochure {
  border-radius: 24px;
  background: var(--1, #a41d2b);
}
.curso-single-banner .contenedor .left .botones .btn.btn-avance {
  border-radius: 24px;
  background: var(--6, #f8b03b);
  color: var(--2, #201f2c);
}
.curso-single-banner .contenedor .left .botones .btn.btn-avance svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-product-info {
  background: var(--5, #f6f9fe);
  position: relative;
}
.section-product-info .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.section-product-info .contenedor .left {
  display: flex;
  width: 60%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-radius: 20px;
  background: #fff;
}
.section-product-info .contenedor .left .bloque-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  width: 100%;
  padding-bottom: 50px;
  border-bottom: #d9d9d9 1px solid;
}
.section-product-info .contenedor .left .bloque-info .contenido {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 25px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-product-info .contenedor .left .bloque-info .contenido div {
  width: 46%;
  min-width: 250px;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 9px;
  flex: 1 0 0;
  border-radius: 10px;
  background: rgba(27, 25, 40, 0.02);
}
.section-product-info .contenedor .left .bloque-info .contenido div img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  background: #a41d2b;
  padding: 4px;
}
.section-product-info .contenedor .left .bloque-info .contenido div {
  color: #4d4d4d;
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .left .bloque-info h2 {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 100% */
}
.section-product-info .contenedor .left .bloque-info {
  color: #4d4d4d;
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .left .bloque-info p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-product-info .contenedor .left .bloque-info ul{
  padding-left: 20px;

}
.section-product-info .contenedor .left .bloque-info ul li {
list-style: disc;
}
.section-product-info .contenedor .left .bloque-info p img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex: 1;
}
.section-product-info .contenedor .left .bloque-info.b2 {
  border-bottom: none;
  padding-bottom: 0;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos {
  display: flex;
  padding: 15px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(32, 31, 44, 0.1);
  background: rgba(27, 25, 40, 0.02);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.05);
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .modulo-item {
  width: 100%;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top h3 {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 120% */
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top .svg {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 74px;
  background: rgba(164, 29, 43, 0.1);
  flex-shrink: 0;
  position: relative;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top .svg .linea {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3.2px;
  border-radius: 4.8px;
  background: var(--1, #a41d2b);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top .svg .linea.l2 {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top.active {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .top.active .svg .linea.l2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom {
  max-height: 1000px;
  transition: all 0.3s ease;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom .texto {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom .texto h3 {
  color: var(--2, #201f2c);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom .texto ul {
  margin-left: 25px;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom .texto ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.section-product-info .contenedor .left .bloque-info.b2 .contenido-modulos .bottom.active {
  max-height: 0;
  overflow: hidden;
}
.section-product-info .contenedor .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 40%;
  position: sticky;
  top: 100px;
}
.section-product-info .contenedor .right .form {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: var(--2, #201f2c);
  width: 100%;
}
.section-product-info .contenedor .right .form h3 {
  color: var(--6, #f8b03b);
  text-align: center;
  /* Texto 30 */
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 100% */
}
.section-product-info .contenedor .right .form p {
  color: var(--4, #fff);
  text-align: center;
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .right .form .whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-product-info .contenedor .right .form .whatsapp a {
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  background: linear-gradient(180deg, #57d163 0%, #23b33a 100%);
  color: var(--4, #fff);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .right .form .whatsapp a svg {
  flex-shrink: 0;
}
.section-product-info .contenedor .right .form .wpcf7 {
  width: 100%;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form {
  display: flex;
  align-items: center;
  align-content: center;
  align-self: stretch;
  flex-wrap: wrap;
  flex-direction: column;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 15px;
  align-self: stretch;
  flex-wrap: wrap;
  flex-direction: column;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p {
  position: relative;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p .wpcf7-spinner {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span {
  width: 100%;
  position: relative;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span input {
  width: 100%;
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 28px;
  border: 1px solid var(--4, #fff);
  background: rgba(255, 255, 255, 0.1);
  color: var(--4, #fff);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span input::-moz-placeholder {
  color: var(--4, #fff);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span input::placeholder {
  color: var(--4, #fff);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span input:focus {
  border: 1px solid var(--4, #fff);
  outline: none;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form div p span .wpcf7-not-valid-tip {
  position: relative;
  width: auto;
  color: #fff;
}
.section-product-info .contenedor .right .form .wpcf7 .wpcf7-form .wpcf7-response-output {
  display: none;
}
.section-product-info .contenedor .right .pricing-wrapper {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.section-product-info .contenedor .right .pricing-wrapper .lorem-text {
  color: var(--3, #84838a);
  text-align: center;
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .pricing-wrapper .selected-mode-box .btn-selected-installment-red span {
  color: var(--3, #84838a);
  text-align: center;
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .pricing-wrapper .price-display .precio {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.section-product-info .contenedor .right .pricing-wrapper .price-display .precio span bdi {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 100% */
}
.section-product-info .contenedor .right .pricing-wrapper .price-display .precio span bdi span {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 100% */
}
.section-product-info .contenedor .right .pricing-wrapper .price-display .precio del span bdi {
  color: var(--3, #84838a);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  text-decoration-line: line-through;
}
.section-product-info .contenedor .right .pricing-wrapper .price-display .precio del span bdi span {
  color: var(--3, #84838a);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  text-decoration-line: line-through;
}
.section-product-info .contenedor .right .pricing-wrapper .btn-membership-black,
.section-product-info .contenedor .right .pricing-wrapper .btn-buy-now-black {
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--2, #201f2c);
  color: var(--4, #fff);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .right .pricing-wrapper .footnote {
  color: var(--3, #84838a);
  text-align: center;
  font-family: Montserrat;
  font-size: 10px;
  font-style: italic;
  font-weight: 300;
  line-height: 12px; /* 120% */
}
.section-product-info .contenedor .right .pricing-wrapper .separator {
  background: var(--2, #201f2c);
  width: 100%;
  height: 1px;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .titulo-has-access {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .single-pay-link-underline,
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .back-to-prices-container a {
  color: var(--1, #a41d2b);
  text-align: center;
  /* Texto 14 Bold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: var(--1, #a41d2b);
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown .dropdown-toggle-red {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--4, #fff);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown .dropdown-toggle-red span {
  display: flex;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown .installments-list-red {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown .installments-list-red li a {
  color: var(--4, #fff);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-product-info .contenedor .right .pricing-wrapper .pricing-section-container .custom-installments-dropdown .installments-list-red li a span {
  color: var(--4, #fff);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}

.section-docentes-general .docentes-slider .splide__slide {
  max-width: 350px;
  width: 100%;
}

.section-docentes-general .splide__pagination {
  display: flex !important;
  bottom: -40px;
}
.section-docentes-general .splide__pagination .splide__pagination__page {
  background: var(--1, #a41d2b);
  opacity: 0.2;
}
.section-docentes-general .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}
.section-docentes-general .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.section-docentes-general .contenedor .docentes-header {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.diplomados-recomendados {
  position: relative;
}
.diplomados-recomendados .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.diplomados-recomendados .contenedor .section-header {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.diplomados-recomendados .contenedor .diplomados-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  align-self: stretch;
  justify-content: center;
}

.diplomado-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 254px;
  max-width: 544px;
  padding: 20px 25px;
  display: flex;
  min-width: 420px;
  flex: 1 0 0;
  z-index: 1;
}
.diplomado-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}
.diplomado-card .card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: all 0.3s ease;
}
.diplomado-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: var(--2, #201f2c);
  mix-blend-mode: multiply;
  z-index: -2;
}
.diplomado-card[data-cat=diplomado]::before {
  background: var(--1, #a41d2b);
  opacity: 0.6;
}
.diplomado-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../images/textura-producto.webp);
  z-index: -1;
  width: 272px;
  height: 200.343px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.diplomado-card .card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.diplomado-card .card-content .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  align-self: stretch;
}
.diplomado-card .card-content .top .badge {
  display: flex;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px 12px 12px 5px;
  background: var(--4, #fff);
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px; /* 100% */
}
.diplomado-card .card-content .top h3 {
  color: var(--4, #fff);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}
.diplomado-card .card-content .center {
  display: flex;
  width: 357px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.diplomado-card .card-content .center .precio {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5px;
}
.diplomado-card .card-content .center .precio span bdi {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
}
.diplomado-card .card-content .center .precio span bdi span {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
}
.diplomado-card .card-content .center .precio ins {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
}
.diplomado-card .card-content .center .precio del span bdi,
.diplomado-card .card-content .center .precio del span bdi span {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 20px; /* 100% */
  text-decoration-line: line-through;
}
.diplomado-card .card-content .center .horas {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}
.diplomado-card .card-content .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}
.diplomado-card .card-content .bottom .certificaciones {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  align-self: stretch;
	position: relative;
}
.diplomado-card .card-content .bottom .certificaciones img {
  width: auto;
  height: 100%;
}
.diplomado-card .card-content .bottom .certificaciones p{
	position: absolute;
    top: -20px;
    color: var(--4, #FFF);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
	min-width: max-content;
}
.diplomado-card .card-content .bottom .btn-info {
  display: flex;
  height: 35px;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  background: var(--6, #f8b03b);
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
}
.diplomado-card:hover .card-bg img {
  transform: scale(1.1);
}
.diplomado-card:hover::after {
  transform: scale(1.2);
}

.page-template-diplomados .diplomado-card::before {
  background: var(--1, #a41d2b) !important;
}

.curso-docentes {
  padding: 2.5rem 0 4rem 0 !important;
}

.testimonios-section {
  position: relative;
  padding: 80px 0;
}
.testimonios-section .splide__pagination {
  display: flex !important;
  bottom: -2.5em;
}
.testimonios-section .fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -1;
  opacity: 0.05;
}
.testimonios-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #201f2c 0%, #163369 35.5%, #1e1a44 51.5%);
  z-index: -1;
}
.testimonios-section .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.testimonios-section .contenedor .testimonios-title p {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 100% */
  text-align: center;
}
.testimonios-section .contenedor .testimonios-title p strong {
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 100% */
}
.testimonios-section .contenedor .testimonios-slider {
  width: 100%;
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  background: #fff;
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card .testimonio-texto {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card .testimonio-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card .testimonio-footer img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card .testimonio-footer div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 105% */
}
.testimonios-section .contenedor .testimonios-slider .testimonio-card .testimonio-footer div span {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}

.boton-info-movil {
  display: flex;
  width: 100%;
  padding: 25px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px 40px 0 0;
  background: var(--degradado-azul, linear-gradient(180deg, #201f2c 0%, #274d94 100%));
  color: var(--4, #fff);
  text-align: center;
  /* Texto 25 */
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 100% */
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
}

.boton-cerrar-datos {
  display: none;
}

.pricing-section-container .titulo-tipo {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 800px) {
  .boton-cerrar-datos {
    display: flex;
  }
  .curso-single-banner .contenedor .left .descripcion {
    max-width: 90%;
    font-weight: 300;
  }
  .curso-single-banner .contenedor .left .botones {
    flex-direction: column;
  }
  .curso-single-banner .contenedor .left {
    gap: 30px;
	  align-items: center;
  }
	.curso-single-banner .contenedor .left h1{
		text-align: center;
	}
  .curso-single-banner {
    height: 100%;
  }
  .curso-single-banner .contenedor .bottom {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .curso-single-banner .contenedor .bottom .dato {
    width: 100%;
  }
  .curso-single-banner .contenedor .breadcrumb {
    display: none;
  }
  .curso-single-banner .contenedor {
    padding-top: 40px;
    gap: 30px;
  }
  .section-product-info .contenedor {
    flex-direction: column-reverse;
  }
  .section-product-info .contenedor .right,
  .section-product-info .contenedor .left {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    position: relative;
    top: 0;
  }
  .splide.docentes-slider {
    width: 100%;
  }
  .boton-info-movil {
    display: flex;
  }
  .section-product-info .contenedor .right .pricing-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    display: none;
    border-radius: 20px 20px 0 0;
    background: #fff;
    box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  }
  .section-product-info .contenedor .right .pricing-wrapper.is-open {
    display: flex;
  }
  .section-product-info .contenedor .right .form {
    display: none;
  }
}
.section-galeria-productos {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-galeria-productos .contenedor.titulo {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 80px;
}
.section-galeria-productos .diplomados-container.contenedor {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 25px;
  justify-content: space-between;
  position: relative;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar {
  display: flex;
  min-width: 267px;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  border-radius: 10px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .movil-aside {
  gap: 28px;
  display: flex;
  flex-direction: column;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding-bottom: 5px;
  width: 100%;
  border-bottom: 1px solid #201f2c;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box input {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  border: none;
  outline: none;
  width: 100%;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box input::-moz-placeholder {
  color: var(--2, rgba(32, 31, 44, 0.4862745098));
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box input::placeholder {
  color: var(--2, rgba(32, 31, 44, 0.4862745098));
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box input:focus {
  border: none;
  outline: none;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .search-box #search-submit {
  display: flex;
  flex-shrink: 0;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group .accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 100% */
  padding-bottom: 10px;
  border-bottom: 1px solid #84838a;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group .accordion-toggle svg {
  transition: all 0.3s ease-in-out;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group .filter-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  max-height: 1000px;
  overflow: hidden;
  opacity: 1;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group .filter-list li a {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
  transition: all 0.3s ease-in-out;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group .filter-list li a.active {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 100% */
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group.hide .accordion-toggle svg {
  transform: rotate(-180deg);
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .filter-group.hide .filter-list {
  opacity: 0;
  max-height: 0;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-main .products-grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 25px 18px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-main .custom-pagination .pagination-text {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--1, #a41d2b);
  text-align: right;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-main .custom-pagination .pagination-text .nav-arrow {
  margin: 0 10px;
}
.section-galeria-productos .diplomados-container.contenedor .diplomados-main .custom-pagination .pagination-text .nav-arrow.disabled {
  display: none;
}

.section-preguntas {
  position: relative;
}
.section-preguntas .contenedor {
  display: flex;
  max-width: 754px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-preguntas .contenedor .titulo-cont {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-preguntas .contenedor .preguntas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-preguntas .contenedor .preguntas .pregunta {
  display: flex;
  padding: 15px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: rgba(27, 25, 40, 0.02);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-preguntas .contenedor .preguntas .pregunta .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--3, #84838a);
  transition: all 0.3s ease;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 120% */
  cursor: pointer;
}
.section-preguntas .contenedor .preguntas .pregunta .top .boton {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 10px;
  border-radius: 74px;
  background: rgba(164, 29, 43, 0.1);
  flex-shrink: 0;
}
.section-preguntas .contenedor .preguntas .pregunta .top .boton .linea {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3.2px;
  border-radius: 4.8px;
  background: var(--1, #a41d2b);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.section-preguntas .contenedor .preguntas .pregunta .top .boton .linea.l2 {
  transform: translate(-50%, -50%) rotate(0);
}
.section-preguntas .contenedor .preguntas .pregunta .bottom {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.section-preguntas .contenedor .preguntas .pregunta.active .top {
  color: var(--2, #201f2c);
  margin-bottom: 10px;
}
.section-preguntas .contenedor .preguntas .pregunta.active .top .boton .linea.l2 {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.section-preguntas .contenedor .preguntas .pregunta.active .bottom {
  max-height: 1000px;
}

.svg-movil {
  display: none;
}

.svg-vista-movil {
  display: none;
}

@media (max-width: 800px) {
  .svg-movil {
    display: flex;
  }
  .svg-vista-movil {
    display: flex;
  }
  .section-galeria-productos .diplomados-container.contenedor {
    flex-direction: column;
  }
  .section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 10px;
    min-width: 100%;
  }
  .section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .movil-aside {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background: #fff;
    box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
    padding: 40px 30px;
    z-index: 99999;
    display: none;
  }
  .section-galeria-productos .diplomados-container.contenedor .diplomados-sidebar .movil-aside.is-open {
    display: flex;
  }
  .section-preguntas .contenedor .preguntas .pregunta .top {
    font-size: 20px;
    line-height: 25px;
  }
}
.section-legal {
  background: var(--5, #f6f9fe);
}
.section-legal .contenedor {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor h2,
.section-legal .contenedor h3,
.section-legal .contenedor h4 {
  color: var(--1, #a41d2b);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}
.section-legal .contenedor p {
  margin-bottom: 10px;
}
.section-legal .contenedor ul {
  margin-left: 25px;
}
.section-legal .contenedor ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.section-legal .contenedor .link-inicio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.section-legal .contenedor .link-inicio a {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  color: #201f2c;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  /* Posicionamiento relativo para el pseudo-elemento */
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Fondo inicial */
  background: #f8b03b;
  transition: color 0.3s ease;
}
.section-legal .contenedor .link-inicio a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Gradiente del Hover */
  background: linear-gradient(180deg, #f8b03b 0%, #c97f06 100%);
  z-index: -1;
  /* Aquí ocurre la magia: transicionamos la opacidad */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-legal .contenedor .link-inicio a:hover {
  color: #201f2c; /* Mantener color de texto */
}
.section-legal .contenedor .link-inicio a:hover::before {
  opacity: 1; /* Mostramos el gradiente oscuro suavemente */
}
.section-legal .contenedor form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-legal .contenedor form .libro-reclamaciones {
  display: flex;
  max-width: 935px;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-legal .contenedor form .libro-reclamaciones p {
  margin-bottom: 0;
}
.section-legal .contenedor form .libro-reclamaciones .campo {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones .campo .input-fecha {
  text-align: center;
}
.section-legal .contenedor form .libro-reclamaciones .campo input,
.section-legal .contenedor form .libro-reclamaciones .campo textarea {
  display: flex;
  width: 100%;
  min-width: 300px;
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #f6f9fe);
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .campo input::-moz-placeholder, .section-legal .contenedor form .libro-reclamaciones .campo textarea::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .campo input::placeholder,
.section-legal .contenedor form .libro-reclamaciones .campo textarea::placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .campo input:focus,
.section-legal .contenedor form .libro-reclamaciones .campo textarea:focus {
  border: 1px solid rgba(27, 25, 40, 0.1);
  outline: none;
}
.section-legal .contenedor form .libro-reclamaciones .titulo {
  width: 100%;
  color: var(--1, #a41d2b);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  margin-left: 0;
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 20px;
  align-self: stretch;
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p span {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p span input {
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #f6f9fe);
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p span input::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p span input::placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-legal .contenedor form .libro-reclamaciones .grid-2 p span input:focus {
  border: 1px solid rgba(27, 25, 40, 0.1);
  outline: none;
}
.section-legal .contenedor form .libro-reclamaciones .radios {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones .radios label span::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  transition: 0.2s;
}
.section-legal .contenedor form .libro-reclamaciones .radios input:checked + span::before {
  border-color: #1b1928;
  background: #1b1928;
}
.section-legal .contenedor form .libro-reclamaciones .radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.section-legal .contenedor form .libro-reclamaciones .radios label input {
  display: none;
}
.section-legal .contenedor form .libro-reclamaciones .radios label span {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 17.595px;
  font-weight: 400;
  line-height: 21.994px;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}
.section-legal .contenedor form .libro-reclamaciones .radios label input:checked + span {
  color: #1b1928;
  font-weight: 600;
}
.section-legal .contenedor form .libro-reclamaciones .nota {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones p {
  width: 100%;
}
.section-legal .contenedor form .libro-reclamaciones .boton {
  position: relative;
}
.section-legal .contenedor form .libro-reclamaciones .boton p .wpcf7-spinner {
  position: absolute;
}
.section-gracias {
  position: relative;
  padding: 0;
  width: 100%;
  height: calc(100vh - 79px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-gracias .bg-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -1;
  opacity: 0.05;
}
.section-gracias::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #201F2C 1.85%, #163369 50.12%, #1E1A44 68.75%);
  z-index: -2;
}
.section-gracias .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-gracias .contenedor .gracias-title {
  color: var(--4, #FFF);
  text-align: center;
  font-family: Xelo;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 70px; /* 100% */
}
.section-gracias .contenedor .gracias-text {
  color: var(--4, #FFF);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
}
.section-gracias .contenedor .btn-gracias {
  margin-top: 50px;
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%);
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.section-gracias .contenedor .btn-gracias:hover {
  background: linear-gradient(180deg, #F8B03B 0%, #C97F06 100%);
}
.section-gracias .contenedor .redes {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.section-gracias .contenedor .redes .texto-base {
  color: var(--4, #fff);
}
.section-gracias .contenedor .redes .cont-redes {
  display: flex;
  align-items: center;
  gap: 16.555px;
  align-self: stretch;
}
.section-gracias .contenedor .redes .cont-redes a {
  width: 34.156px;
  height: 34.156px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
}

@media (max-width: 800px) {
  .section-gracias .contenedor .gracias-title {
    font-size: 35px;
    line-height: 40px;
  }
}
.titulo-membresias {
  background: var(--5, #f6f9fe);
  padding-top: 100px;
}
.titulo-membresias .contenedor {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.section-membresias {
  background: var(--5, #f6f9fe);
}
.section-membresias .contenedor .membresias-grid {
  display: flex;
  align-items: flex-start;
  gap: 43px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-membresias .contenedor .membresias-grid .membresia-card {
  justify-content: center;
  display: flex;
  max-width: 353px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  border-radius: 20px;
  border: 1px solid var(--2, #201f2c);
  background: #fff;
  width: 100%;
}
.section-membresias .contenedor .membresias-grid .membresia-card .badges {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
.section-membresias .contenedor .membresias-grid .membresia-card .badges .badge {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid var(--2, #201f2c);
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 100% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .cantidades-header {
  width: 100%;
  text-align: center;
}
.section-membresias .contenedor .membresias-grid .membresia-card .cantidades-header .cantidad-titulo {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}
.section-membresias .contenedor .membresias-grid .membresia-card .cantidades-header .subtitulo-eleccion {
  color: var(--2, #201F2C);
  text-align: center;
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .cantidades-header .separador {
  margin-top: 29px;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto {
  display: flex;
  flex-direction: row;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto del {
  display: none;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto del span bdi {
  color: var(--3, #84838A);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  text-decoration-line: line-through;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto del span bdi span {
  color: var(--3, #84838A);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  text-decoration-line: line-through;
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto span bdi,
.section-membresias .contenedor .membresias-grid .membresia-card .precio .monto span bdi span {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px; /* 100% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .precio .texto {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 100% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .estudiantes {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  background: var(--2, #201f2c);
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 100% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .beneficios {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: stretch;
  padding-left: 25px;
}
.section-membresias .contenedor .membresias-grid .membresia-card .beneficios li {
  list-style: disc;
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.section-membresias .contenedor .membresias-grid .membresia-card .accion {
  width: 100%;
}
.section-membresias .contenedor .membresias-grid .membresia-card .accion .btn-elegir {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: var(--6, #f8b03b);
  width: 100%;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 100% */
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado {
  border-radius: 20px;
  border: 1px solid var(--1, #a41d2b);
  background: linear-gradient(180deg, #A41D2B 0%, #A41D2B 100%), #FFF;
  box-shadow: 0 1px 35px 0 rgba(164, 29, 43, 0.25);
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .cantidad-titulo {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .subtitulo-eleccion {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .badges .badge {
  color: #fff;
  border: 1px solid #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .precio .monto {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .precio .monto span bdi,
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .precio .monto span bdi span {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .precio .texto {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .beneficios li {
  color: #fff;
}
.section-membresias .contenedor .membresias-grid .membresia-card.destacado .accion .btn-elegir {
  background: var(--6, #f8b03b);
}

.section-detalles {
  position: relative;
  background: var(--5, #f6f9fe);
  padding-bottom: 100px;
}
.section-detalles .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-detalles .contenedor .titulo-cont {
  display: flex;
  max-width: 557px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-detalles .contenedor .tabla-membresias {
  display: flex;
  width: 100%;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid var(--2, #201f2c);
  background: #1b1928;
}
.section-detalles .contenedor .tabla-membresias .tabla-header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 5px;
}
.section-detalles .contenedor .tabla-membresias .tabla-header .col-label {
  width: 64%;
}
.section-detalles .contenedor .tabla-membresias .tabla-header .col-plan {
  width: 12%;
  text-align: center;
  color: var(--6, #f8b03b);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.section-detalles .contenedor .tabla-membresias .tabla-row {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-label {
  width: 64%;
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-label .info {
  display: flex;
  position: relative;
  align-items: center;
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-label .info .tooltip-text {
  position: absolute;
  bottom: 200%;
  left: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  width: 217px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--1, #a41d2b);
  color: var(--4, #FFF);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px; /* 130% */
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-label .info .tooltip-text::before {
  content: "";
  position: absolute;
  bottom: -8px; /* ajusta según tu tooltip */
  left: 0;
  width: 20px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22' fill='none'%3E%3Cpath d='M4.57345 21.3921C2.54211 22.6433 -0.0662043 21.1376 0.00136519 18.7528L0.449992 2.91915C0.514332 0.648353 2.98121 -0.729781 4.94863 0.405953L17.987 7.93263C19.9545 9.06836 19.9947 11.8938 18.0605 13.0852L4.57345 21.3921Z' fill='%23A41D2B'/%3E%3C/svg%3E");
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-label .info:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}
.section-detalles .contenedor .tabla-membresias .tabla-row .col-value {
  width: 12%;
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 133.333% */
}

@media (max-width: 800px) {
  .section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-membresias .contenedor .membresias-grid .membresia-card .precio .monto span bdi, .section-membresias .contenedor .membresias-grid .membresia-card .precio .monto span bdi span {
    font-size: 60px;
  }
  .section-membresias .contenedor .membresias-grid .membresia-card .estudiantes {
    font-size: 20px;
  }
  .section-membresias .contenedor .membresias-grid .membresia-card .accion .btn-elegir {
    font-size: 20px;
  }
  .contenedor {
    max-width: 90% !important;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-header .col-label {
    display: none;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-header .col-plan {
    width: auto;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-row {
    gap: 20px;
    justify-content: space-between;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-header {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-row .col-label .info .tooltip-text {
    left: 0;
    width: 120px;
  }
  .col-value {
    display: none;
    width: 36% !important;
  }
  .col-plan-1 {
    display: block;
  }
  .col-plan {
    cursor: pointer;
  }
  .col-plan.is-active {
    font-weight: bold;
    opacity: 1;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-header .col-plan {
    color: var(--4, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 111.111% */
    transition: all 0.3s ease;
  }
  .section-detalles .contenedor .tabla-membresias .tabla-header .col-plan.is-active {
    color: var(--6, #F8B03B);
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 111.111% */
  }
  .section-detalles .contenedor .tabla-membresias .tabla-row .col-label {
    width: auto;
  }
}
.search-productos .contenedor, .search-posts .contenedor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.search-productos .contenedor h2, .search-posts .contenedor h2 {
  color: var(--2, #201F2C);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
}
.search-productos .contenedor .grid-productos, .search-posts .contenedor .grid-productos {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 25px 48px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.search-productos .contenedor .grid-posts, .search-posts .contenedor .grid-posts {
  display: flex;
  width: 100%;
  align-items: center;
  align-content: center;
  gap: 30px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

section .contenedor .no-resultados {
  color: var(--2, #201F2C);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
}

.section-checkout {
  position: relative;
  background: var(--5, #f6f9fe);
}
.section-checkout .contenedor form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.section-checkout .contenedor form .checkout-main-col {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  flex: 1 0 0;
}
.section-checkout .contenedor form .checkout-main-col .checkout-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}
.section-checkout .contenedor form .checkout-main-col .checkout-header h1 {
  color: var(--1, #a41d2b);
  /* Texto 30 */
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
}
.section-checkout .contenedor form .checkout-main-col .checkout-header p {
  color: var(--2, #201f2c);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section {
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .section-title {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0edff;
  gap: 10px;
  color: var(--2, #201f2c);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .section-title .icon-billing {
  flex-shrink: 0;
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper {
  width: 100%;
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields h3 {
  display: none;
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields p label {
  display: none;
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields p span input {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #f6f9fe);
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields p span input::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields p span input::placeholder {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-main-col .custom-billing-section .billing-fields-wrapper .woocommerce-billing-fields p span input:focus {
  border: 1px solid rgba(27, 25, 40, 0.1);
  outline: none;
}
.section-checkout .contenedor form .checkout-main-col .custom-payment-section {
  display: flex;
  padding: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
}
.section-checkout .contenedor form .checkout-main-col .custom-payment-section .section-title {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0edff;
  gap: 10px;
  color: var(--2, #201f2c);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-checkout .contenedor form .checkout-main-col .custom-payment-section .section-title .icon-billing {
  flex-shrink: 0;
}
.section-checkout .contenedor form .checkout-main-col .custom-payment-section #payment ul li label {
  color: var(--Texto-sutil, #64748B);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-checkout .contenedor form .checkout-sidebar-col {
  width: 35%;
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #fff;
}
.section-checkout .contenedor form .checkout-sidebar-col h3 {
  color: var(--1, #a41d2b);
  /* Texto 30 */
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0edff;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review {
  width: 100%;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list {
  width: 100%;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-image-wrapper {
  width: 66px;
  height: 61px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-category-label {
  color: var(--1, #a41d2b);
  /* Texto 08 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px; /* 162.5% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-title-label {
  color: var(--2, #201f2c);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-total-label {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid rgba(74, 140, 255, 0.2);
  background: rgba(74, 140, 255, 0.1);
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-total-label .label-txt {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-total-label .amount-txt span bdi {
  color: var(--2, #201f2c);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-product-list .custom-cart-item .product-details-wrapper .product-total-label .amount-txt span bdi span {
  color: var(--2, #201f2c);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .modalidad-box {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  background: rgba(100, 116, 139, 0.1);
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .modalidad-box .modalidad-header {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--Texto-sutil, #64748b);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .modalidad-box .modalidad-header .info-icon {
  display: flex;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .modalidad-box .modalidad-content {
  color: var(--2, #201f2c);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper input {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 25px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #f6f9fe);
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper input::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper input::placeholder {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper input:focus {
  border: 1px solid rgba(27, 25, 40, 0.1);
  outline: none;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-coupon-wrapper button {
  color: var(--4, #FFF);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section {
  width: 100%;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-label {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-value {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-value span bdi {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-value span bdi span {
  color: var(--2, #201f2c);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row.final-total-row {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #201f2c;
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row.final-total-row .row-label {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-value strong span bdi {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-checkout .contenedor form .checkout-sidebar-col #order_review .custom-order-review-wrapper .custom-totals-section .totals-rows .totals-row .row-value strong span bdi span {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49%;
  flex-direction: column;
}

.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment {
  background: transparent;
}

.woocommerce-NoticeGroup {
  display: none;
}

.boton-abrir-checkout {
  cursor: pointer;
  display: flex;
  width: 390px;
  padding: 25px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px 40px 0 0;
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  color: var(--4, #FFF);
  text-align: center;
  /* Texto 25 */
  font-family: Xelo;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 100% */
  display: none;
}

.boton-cerrar-checkout {
  display: none;
}

.woocommerce-cart .checkout .checkout-inline-error-message, .woocommerce-checkout .checkout .checkout-inline-error-message, #add_payment_method .checkout .checkout-inline-error-message {
  position: absolute;
}

.woocommerce-terms-and-conditions-wrapper {
  color: var(--2, #201F2C);
  /* Texto 10 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 150% */
}

.custom-place-order-container .custom-orange-button {
  display: flex !important;
  height: 43px !important;
  padding: 10px 20px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  align-self: stretch !important;
  border-radius: 35px !important;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%) !important;
  float: none !important;
  width: 100% !important;
  margin-top: 20px !important;
  color: var(--2, #201F2C) !important;
  /* Texto 15 Medium */
  font-family: Montserrat !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 20px !important; /* 133.333% */
}

@media (max-width: 800px) {
  .boton-cerrar-checkout {
    display: flex;
  }
  .section-checkout .contenedor form .checkout-sidebar-col {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 99999;
  }
  .section-checkout .contenedor form .checkout-sidebar-col.is-open {
    display: flex;
  }
  .boton-abrir-checkout {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
}
.section-thankyou {
  background: var(--5, #f6f9fe);
}
.section-thankyou .contenedor {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.section-thankyou .contenedor .custom-thankyou {
  max-width: 658px;
  width: 100%;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .icon-clock {
  display: flex;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending h1 {
  color: var(--1, #a41d2b);
  text-align: center;
  /* Texto 40 */
  font-family: Xelo;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 100% */
  margin-bottom: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending p {
  color: var(--2, #201f2c);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-bottom: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions {
  display: flex;
  width: 100%;
  padding: 25px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  margin-top: 40px;
  margin-bottom: 40px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions h3 {
  color: var(--2, #201f2c);
  text-align: center;
  /* Texto 30 */
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  margin-bottom: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0edff;
  color: var(--2, #201f2c);
  text-align: right;
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div span {
  color: var(--2, #201f2c);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  text-align: left;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong .copy-btn {
  display: flex;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong .copy-btn svg,
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong .copy-btn svg path {
  transition: all 0.3s ease;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong .copy-btn.copied svg {
  transform: scale(1.2);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div strong .copy-btn.copied svg path {
  fill: #a41d2b;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .amount-box {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  background: rgba(100, 116, 139, 0.1);
  width: 100%;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .amount-box small {
  color: var(--Texto-sutil, #64748b);
  text-align: center;
  /* Texto 14 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .amount-box strong {
  color: var(--2, #201f2c);
  text-align: center;
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .send-proof {
  color: var(--2, #201f2c);
  text-align: center;
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .btn-green {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: #414141;
  color: var(--4, #fff);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .btn-back {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #f8b03b 0%, #f8b03b 100%);
  transition: all 0.3s ease;
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-pending .btn-back:hover {
  background: linear-gradient(180deg, #f8b03b 0%, #c97f06 100%);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success h1 {
  color: var(--1, #a41d2b);
  text-align: center;
  /* Texto 40 */
  font-family: Xelo;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 100% */
  margin-bottom: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success p {
  color: var(--2, #201f2c);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-bottom: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card {
  margin: 40px 0;
  display: flex;
  padding: 20px;
  align-items: flex-start;
  gap: 27px;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-image {
  width: 30%;
  max-width: 163px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info {
  width: 100%;
  display: flex;
  width: 428px;
  flex-direction: column;
  align-items: flex-start;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info .badge {
  color: var(--1, #a41d2b);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info h3 {
  color: var(--3, #84838a);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-bottom: 15px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 48%;
  color: var(--3, #84838a);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info ul li strong {
  color: var(--1, #a41d2b);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info ul li.total-paid {
  color: var(--2, #201f2c);
  /* Texto 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps h3 {
  color: var(--2, #201f2c);
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 116.667% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos {
  display: flex;
  align-items: center;
  gap: 28px;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a {
  display: flex;
  width: 300px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  border-radius: 20px;
  border-radius: 20px;
  background: var(--4, #FFF);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a h4 {
  color: var(--Texto-sutil, #64748B);
  /* Texto 20 */
  font-family: Xelo;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a p {
  color: var(--Texto-sutil, #64748B);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
  text-align: left;
  margin-bottom: 0;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a span {
  display: flex;
  padding: 8px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a.dark {
  background: var(--2, #201F2C);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a.dark h4, .section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a.dark p {
  color: var(--5, #F6F9FE);
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .btn-back {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%);
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.section-thankyou .contenedor .custom-thankyou .thankyou-success .btn-back:hover {
  background: linear-gradient(180deg, #F8B03B 0%, #C97F06 100%);
}

@media (max-width: 800px) {
  .section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions {
    padding: 25px 10px;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .bank-data div span {
    font-size: 12px;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-pending h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-pending .payment-instructions .btn-green {
    padding: 12px;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-info {
    width: 100%;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success .order-card .order-image {
    width: 100%;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos {
    flex-direction: column;
  }
  .section-thankyou .contenedor .custom-thankyou .thankyou-success .next-steps .cont-pasos a {
    width: 100%;
    max-width: 500px;
  }
}
.main-single-lesson {
  background: var(--5, #f6f9fe);
}
.main-single-lesson .lesson-header {
  padding: 2.5rem 0 0 0;
}
.main-single-lesson .lesson-header .contenedor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.main-single-lesson .lesson-header .contenedor .back-link {
  color: var(--1, #a41d2b);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 15px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav .progress-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav .progress-content .lesson-progress {
  color: var(--3, #84838a);
  text-align: right;
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav .progress-content .lesson-nav-arrows {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav .progress-content .lesson-nav-arrows .nav-arrow {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--1, #a41d2b);
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-progress-nav .progress-content .lesson-nav-arrows .nav-arrow.disabled {
  background: #C5C5C5;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media {
  width: 100%;
  display: inline-flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: var(--4, #fff);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  position: relative;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .lesson-video {
  width: 100%;
  display: flex;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .lesson-video .sensei-video-embed {
  width: 100%;
  display: flex;
  aspect-ratio: 16/9;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .lesson-video .sensei-video-embed img,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .lesson-video .sensei-video-embed video,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .lesson-video .sensei-video-embed iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--4, #fff);
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content {
  width: 100%;
  display: inline-flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: var(--4, #fff);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content h1,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content h2,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content h3 {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content h4,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content h5 {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px; /* 141.667% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content p {
  color: var(--3, #84838a);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 150% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content .aviso {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content .aviso svg {
  flex-shrink: 0;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content .locked-body .locked-message {
  color: var(--3, #84838a);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content figure div {
  width: 100%;
  height: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content figure div iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions .lesson-meta {
  padding: 0;
  margin: 0;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions footer p a {
  display: flex;
  width: 100%;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: var(--6, #f8b03b);
  border: none;
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  cursor: pointer;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions footer form input {
  display: flex;
  width: 100%;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: var(--6, #f8b03b);
  border: none;
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  cursor: pointer;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs {
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  border-radius: 20px;
  background: #fff;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  align-self: stretch;
  overflow: auto;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-nav .tab-btn {
  display: flex;
  width: 249px;
  padding: 12px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  border: 1px solid var(--2, #201f2c);
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-nav .tab-btn.active {
  border: 1px solid var(--2, #201f2c);
  background: var(--2, #201f2c);
  color: var(--4, #fff);
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios {
  flex-direction: column;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista h3 {
  display: none;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #84838a;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-avatar {
  height: 19px;
  width: 19px;
  flex-shrink: 0;
  border-radius: 9.5px;
  background: rgba(164, 29, 43, 0.1);
  overflow: hidden;
  margin-top: 4px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body .comentario-header {
  color: var(--3, #84838a);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-lista .lista li .comentario-item .comentario-body .comentario-contenido {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .compartir {
  display: none;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form h3 {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
  margin-bottom: 30px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form .logged-in-as {
  display: none;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form input,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form textarea {
  display: flex;
  width: 100%;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #f6f9fe);
  margin-bottom: 10px;
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form input::-moz-placeholder, .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form textarea::-moz-placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form input::placeholder,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form textarea::placeholder {
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form input:focus,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form textarea:focus {
  border: 1px solid rgba(27, 25, 40, 0.1);
  outline: none;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#comments .blog-comentarios .comentarios-form .comment-respond form .form-submit .submit {
  margin-top: 20px;
  display: flex;
  padding: 12px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: var(--6, #f8b03b);
  color: var(--2, #201f2c);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  width: -moz-fit-content;
  width: fit-content;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#desc {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#desc h1,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#desc h2,
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#desc h3 {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#desc p {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .no-resources {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .resources-list {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .resources-list .resource-item {
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #84838a;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .resources-list .resource-item a .resource-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .resources-list .resource-item a .resource-info .resource-icon {
  flex-shrink: 0;
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel#resources .resources-list .resource-item a .resource-info .resource-name {
  color: var(--3, #84838a);
  /* Texto 18 regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-tabs .tabs-content .tab-panel.active {
  display: flex;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .lesson-header-row {
  min-height: 100px;
  display: flex;
  align-items: flex-end;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .lesson-header-row .course-title {
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 125% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections {
  width: 100%;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--3, #84838a);
  transition: all 0.3s ease;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--degradado-azul, linear-gradient(180deg, #201f2c 0%, #274d94 100%));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson h2,
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list {
  position: relative;
  z-index: 2;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson.active::before, .main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson.mod-finished::before {
  opacity: 1;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson.active .lesson-list {
  max-height: 1000px;
  margin-top: 13px;
  opacity: 1;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson h2 {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson h2 svg {
  margin: 0 0 0 auto;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list li .title-wrapper .lesson-name-side a {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list li .title-wrapper .lesson-duration {
  display: flex;
  padding: 0 10px;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  color: var(--4, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 100% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list li.is-locked .title-wrapper .lesson-name-side span {
  color: #c7c7c7;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list li.completed-lesson .title-wrapper .lesson-name-side a {
  color: #c7c7c7;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons .container-lections .accordion .name-lesson .lesson-list li.active-lesson .title-wrapper .lesson-name-side a {
  color: var(--4, #fff);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.main-single-lesson .lesson-layout .contenedor .lesson-sidebar {
  width: 35%;
}

#open-modules {
  display: none;
}

#close-modules {
  display: none;
}

@media (max-width: 800px) {
  .main-single-lesson .lesson-layout .contenedor {
    flex-direction: column;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main {
    width: 100%;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media {
    padding: 20px;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-media .sensei-video-embed {
    aspect-ratio: 16/9;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-content {
    padding: 12px;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions footer p a {
    width: 100%;
    padding: 20px;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-actions form input {
    width: 100%;
    padding: 20px;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-sidebar {
    width: 100%;
    order: -1;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-sidebar .lesson-progress-nav {
    min-height: auto;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-main .lesson-header-row {
    min-height: auto;
  }
  #close-modules {
    display: flex;
    cursor: pointer;
  }
  #open-modules {
    border-radius: 10px;
    background: var(--6, #F8B03B);
    box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
    display: flex;
    width: 38px;
    height: 39px;
    padding: 9px;
    justify-content: center;
    align-items: center;
    gap: 28px;
    display: flex;
    cursor: pointer;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons {
    position: fixed;
    bottom: -120%;
    z-index: 11;
    width: 100%;
    left: 0;
    padding: 30px 15px;
    border-radius: 20px 20px 0 0;
    background: #FFF;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    display: flex;
    transition: all 0.3s ease;
  }
  .main-single-lesson .lesson-layout .contenedor .lesson-sidebar .list-modules-lessons.active {
    bottom: 0;
  }
}
.hegel-quiz-wrapper {
  background: var(--5, #f6f9fe);
}
.hegel-quiz-wrapper .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1136px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-top-nav {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-top-nav a {
  color: var(--1, #a41d2b);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-main-title {
  color: var(--2, #201f2c);
  text-align: center;
  font-family: Xelo;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 100% */
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .sensei-message.info {
  display: none;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-info-card {
  width: 100%;
  display: flex;
  padding: 20px 30px;
  align-items: center;
  gap: 27px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-info-card .hegel-info-icon {
  flex-shrink: 0;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-info-card .hegel-info-text ul {
  margin-left: 25px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-info-card .hegel-info-text ul li {
  list-style: disc;
  color: var(--2, #201f2c);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form {
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form > P {
  display: none;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form #sensei-quiz-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form #sensei-quiz-list li {
  width: 100%;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form #sensei-quiz-list li .hegel-question-header {
  color: var(--1, #a41d2b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d9d9d2;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form #sensei-quiz-list li .hegel-question-desc {
  color: var(--3, #84838a);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 15px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form #sensei-quiz-list li .hegel-question-body div .answers li {
  color: var(--2, #201f2c);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap {
  width: 100%;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-secondary {
  width: 100%;
  gap: 20px !important;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-secondary .sensei-quiz-action {
  flex: 1;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-secondary .sensei-quiz-action button {
  display: flex;
  padding: 14px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 28px;
  background: var(--6, #f8b03b);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  width: 100%;
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  border: none;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-primary {
  width: 100%;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-primary .sensei-quiz-action {
  width: 100%;
}
.hegel-quiz-wrapper .contenedor .hegel-quiz-container .hegel-styled-form .hegel-submit-wrap .sensei-quiz-actions .sensei-quiz-actions-primary .sensei-quiz-action button {
  display: flex;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 28px;
  background: var(--6, #f8b03b);
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  width: 100%;
  color: var(--2, #201f2c);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}

.section-my-account {
  background: var(--5, #F6F9FE);
}
.section-my-account .contenedor {
  position: relative;
  padding: 40px 0;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.section-my-account .contenedor .header-cuenta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--1, #A41D2B);
  text-align: center;
  /* Texto 30 */
  font-family: Xelo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul {
  float: none;
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  align-self: stretch;
  color: var(--3, #84838A);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li a .hegel-icon-wrapper {
  display: flex;
  width: 19px;
  height: 19px;
  justify-content: center;
  align-items: center;
  border-radius: 11.4px;
  background: #F3F3F3;
  flex-shrink: 0;
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li a .hegel-icon-wrapper svg path {
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li a .hegel-label {
  color: var(--3, #84838A);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  /* 141.667% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li.is-active a .hegel-icon-wrapper {
  background: rgba(164, 29, 43, 0.1);
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li.is-active a .hegel-icon-wrapper svg path {
  fill: #A41D2B;
}
.section-my-account .contenedor .woocommerce-MyAccount-navigation ul li.is-active a .hegel-label {
  color: var(--1, #A41D2B);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content {
  float: none;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats {
  display: flex;
  width: 100%;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .avatar-container {
  position: relative;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .avatar-container img {
  width: 77px;
  height: 77px;
  border-radius: 77px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .avatar-container .edit-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .name-id {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .name-id h2 {
  color: var(--2, #201F2C);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .profile-info .name-id span {
  display: flex;
  padding: 3px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  background: rgba(180, 23, 39, 0.1);
  color: var(--1, #A41D2B);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper {
  display: flex;
  padding: 17px 30px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 20px;
  border-radius: 100px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  background: rgba(100, 116, 139, 0.1);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper .stat-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper .stat-pill .stat-num {
  color: var(--1, #A41D2B);
  /* Texto 40 */
  font-family: Xelo;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper .stat-pill .stat-icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper .stat-pill .stat-icon-text p {
  color: var(--2, #201F2C);
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 138.462% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards {
  display: flex;
  width: 100%;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--1, #A41D2B);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .section-title .icon-circle {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: rgba(164, 29, 43, 0.1);
  flex-shrink: 0;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid .field-group {
  width: 49%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid .field-group input {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid .field-group input::-moz-placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid .field-group input::placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .alert-box {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  background: rgba(100, 116, 139, 0.1);
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .alert-box strong {
  color: var(--Texto-sutil, #64748B);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .btn-save {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%);
  color: var(--2, #201F2C);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .btn-save:hover {
  background: linear-gradient(180deg, #F8B03B 0%, #C97F06 100%);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .form-vertical-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .form-vertical-grid .pass-field {
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .form-vertical-grid .pass-field input {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .form-vertical-grid .pass-field::-moz-placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .form-vertical-grid .pass-field::placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .btn-save {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%);
  color: var(--2, #201F2C);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form-pass .btn-save:hover {
  background: linear-gradient(180deg, #F8B03B 0%, #C97F06 100%);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section {
  width: 100%;
  display: flex;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .mis-pedidos-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--1, #A41D2B);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .video-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 15px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .video-filters .filter-btn {
  display: flex;
  padding: 7px 15px;
  align-items: center;
  gap: 5px;
  border-radius: 24px;
  border: 1px solid var(--2, #201F2C);
  color: var(--2, #201F2C);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .video-filters .filter-btn.active {
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  color: var(--4, #FFF);
  border: none;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card {
  display: flex;
  min-width: 291px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
  border-radius: 10px;
  background: var(--5, #F6F9FE);
  max-width: 315px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-thumbnail-wrapper {
  height: 157px;
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-thumbnail-wrapper .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-info .video-category-label {
  color: var(--3, #84838A);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card .video-info h4 {
  color: var(--2, #201F2C);
  /* Texto 14 Bold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .load-more-container {
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .load-more-container .ver-mas-pedidos {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  border: 1px solid var(--1, #A41D2B);
  margin: auto;
  color: var(--1, #A41D2B);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px; /* 141.667% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .load-more-container .ver-mas-pedidos:hover {
  color: var(--4, #FFF);
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
}
.section-my-account .contenedor .woocommerce-MyAccount-content {
  width: 100%;
  display: flex;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .my-team-section .woocommerce-account-my-teams {
  color: #818181;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams {
  width: 100%;
  overflow: auto;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table {
  min-width: 670px;
  border: none;
  margin: 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table thead {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--2, #201F2C);
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table thead tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 4;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table thead tr th {
  flex: 1;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table thead tr th.team-actions {
  flex: none;
  min-width: 100px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table thead tr th span {
  color: var(--4, #FFF);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr {
  width: 100%;
  display: flex;
  min-width: 360px;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  row-gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
  flex: 4;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr td {
  flex: 1;
  border-top: none;
  color: var(--3, #84838A);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr td a {
  color: var(--3, #84838A);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr td .button {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 35px;
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  color: var(--4, #FFF);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .woocommerce-account-my-teams .shop_table tbody tr td.team-actions {
  flex: none;
  min-width: 100px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor {
  width: 100%;
  display: flex;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-header-title, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-header-title h3, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-header-title h3 {
  color: var(--1, #A41D2B);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-header-title span, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-header-title span {
  display: flex;
  align-items: center;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-pills-wrapper .hegel-pills a, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-pills-wrapper .hegel-pills a {
  color: var(--4, #FFF);
  text-align: center;
  /* Texto 14 Bold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  /* 135.714% */
  padding: 10px 15px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-pills-wrapper .hegel-pills a.active, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-pills-wrapper .hegel-pills a.active {
  color: var(--Texto-sutil, #64748B);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-tabs a, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-tabs a {
  color: var(--Texto-sutil, #64748B);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  /* 135.714% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-tabs a.active, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-tabs a.active {
  color: var(--Texto-sutil, #64748B);
  /* Texto 14 Bold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  /* 135.714% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid {
  padding: 4px 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card {
  max-width: 470px;
  width: 100%;
  margin: auto;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card.certificado, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card.certificado {
  max-width: 310px;
  margin: auto;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-img, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-img {
  height: 214px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-img .hegel-badge, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-img .hegel-badge {
  display: inline-flex;
  padding: 4px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--4, #FFF);
  color: var(--1, #A41D2B);
  /* Texto 10 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-img .hegel-badge span, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-img .hegel-badge span {
  display: flex;
  align-items: center;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: var(--5, #F6F9FE);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body h4, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body h4 {
  color: var(--2, #201F2C);
  /* Texto 14 Bold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  /* 135.714% */
  margin: 0;
  min-height: auto;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container {
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-labels span, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-labels span {
  color: var(--3, #84838A);
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 138.462% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-bar-bg, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-bar-bg {
  background: #D9D9D9;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-bar-bg .hegel-bar-fill, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-progress-container .hegel-bar-bg .hegel-bar-fill {
  background: var(--degradado-azul, linear-gradient(180deg, #201F2C 0%, #274D94 100%));
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-footer-text, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-footer-text {
  color: var(--Texto-sutil, #64748B);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  width: 100%;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-btn-guinda, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-btn-guinda {
  width: 100%;
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  align-self: stretch;
  border-radius: 20px;
  background: var(--1, #A41D2B);
  color: var(--4, #FFF);
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 138.462% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--1, #A41D2B);
  /* Texto 20 */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container h2 svg {
  flex-shrink: 0;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container p {
  color: #818181;
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  /* 135.714% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar {
  width: 100%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar .search-form-orders {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar .search-form-orders input {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  flex: 1 0 0;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar .search-form-orders input::-moz-placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar .search-form-orders input::placeholder {
  color: var(--2, #201F2C);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-header-container .order-search-bar .search-form-orders button {
  border-radius: 24px;
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 5px;
  color: var(--4, #FFF);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 138.462% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll {
  width: 100%;
  overflow-y: auto;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper {
  min-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-thead {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--2, #201F2C);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-thead .hegel-th {
  color: var(--4, #FFF);
  /* Texto 14 Bold Mayúsculas */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  /* 135.714% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  width: 16%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-thead .hegel-th.principal {
  width: 30%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item {
  width: 100%;
  display: flex;
  min-width: 360px;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  row-gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col {
  width: 16%;
  color: var(--3, #84838A);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col.principal {
  width: 30%;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col.col-curso {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  color: var(--3, #84838A);
  /* Texto 12 Regular */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col.col-curso .product-name {
  color: var(--3, #84838A);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .status-badge {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 24px;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 138.462% */
  width: -moz-fit-content;
  width: fit-content;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .status-badge.badge-completed {
  background: rgba(60, 141, 85, 0.2);
  color: #3C8D55;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .status-badge.badge-cancelled {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .status-badge.badge-on-hold {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .order-button.btn-view {
  display: none;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .order-button.btn-invoice {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 35px;
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  color: var(--4, #FFF);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
  width: -moz-fit-content;
  width: fit-content;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-scroll .hegel-orders-wrapper .hegel-orders-tbody .hegel-order-item .hegel-order-col .order-button.btn-cancel {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 35px;
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
  color: var(--4, #FFF);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-footer .ver-mas-pedidos {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  border: 1px solid var(--1, #A41D2B);
  color: var(--1, #A41D2B);
  /* Texto 12 Bold */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 141.667% */
  transition: all 0.3s ease;
}
.section-my-account .contenedor .woocommerce-MyAccount-content .orders-footer .ver-mas-pedidos:hover {
  color: var(--4, #FFF);
  background: var(--degradado-rojo, linear-gradient(180deg, #A41D2B 0%, #780C17 100%));
}

@media (max-width: 940px) {
  .section-my-account .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .user-header-stats .pills-wrapper {
    flex-direction: column;
    align-items: flex-start;
    background: none;
    border: none;
    padding: 17px 0;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-dashboard .account-cards .account-card .hegel-form .form-grid .field-group {
    width: 100%;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-pills-wrapper .hegel-pills a, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-pills-wrapper .hegel-pills a {
    font-size: 12px;
    padding: 7px 12px;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-tabs a.active, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-tabs a.active {
    font-size: 12px;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-tabs a, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-tabs a {
    font-size: 12px;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid .hegel-card .hegel-card-body .hegel-btn-guinda, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid .hegel-card .hegel-card-body .hegel-btn-guinda {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .section-my-account .contenedor .woocommerce-MyAccount-content .hegel-container .hegel-grid, .section-my-account .contenedor .woocommerce-MyAccount-content .order-contenedor .hegel-grid {
    grid-template-columns: 1fr;
  }
  .section-my-account .contenedor .woocommerce-MyAccount-content .soporte-academico-section .videos-grid .video-card {
    min-width: 100px;
  }
}
.hegel-results-wrapper {
  background: var(--5, #F6F9FE);
}
.hegel-results-wrapper .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hegel-results-wrapper .contenedor .top-nav {
  width: 100%;
  margin: 0 auto 30px;
  text-align: left;
}
.hegel-results-wrapper .contenedor .top-nav a {
  color: #a42129;
  text-decoration: none;
  font-size: 14px;
}
.hegel-results-wrapper .contenedor .top-nav a:hover {
  text-decoration: underline;
}
.hegel-results-wrapper .contenedor .results-main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hegel-results-wrapper .contenedor .results-main-content .category-label {
  color: var(--2, #201F2C);
  text-align: center;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 100% */
  margin-bottom: 10px;
}
.hegel-results-wrapper .contenedor .results-main-content .course-title {
  color: var(--1, #A41D2B);
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  /* 125% */
}
.hegel-results-wrapper .contenedor .results-main-content .result-card {
  display: inline-flex;
  padding: 30px;
  align-items: center;
  gap: 47px;
  border-radius: 20px;
  background: #FFF;
  margin-top: 50px;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .grade-section {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  /* 100% */
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .grade-section span {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 127.407px;
  font-style: normal;
  font-weight: 800;
  line-height: 127.407px;
  /* 100% */
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .congrats-text {
  display: flex;
  width: 271px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .congrats-text h2 {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  /* 133.333% */
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .congrats-text p {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 133.333% */
}
.hegel-results-wrapper .contenedor .results-main-content .result-card .linea-result {
  width: 6px;
  height: 147px;
  border-radius: 3px;
  background: #D9D9D9;
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .progress-box {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .progress-box .percentage-val {
  width: 110px;
  height: 110px;
  background: #f8fbff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4D4D4D;
  text-align: center;
  font-family: Montserrat;
  font-size: 38.408px;
  font-style: normal;
  font-weight: 500;
  line-height: 45.408px; /* 100% */
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .hits-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .hits-box .hits-numbers {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 41.754px;
  font-style: normal;
  font-weight: 500;
  line-height: 62.632px; /* 150% */
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .hits-box .hits-numbers .current-hits {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 41.754px;
  font-style: normal;
  font-weight: 800;
  line-height: 62.632px;
}
.hegel-results-wrapper .contenedor .results-main-content .stats-container .hits-box p {
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 100% */
}
.hegel-results-wrapper .contenedor .results-main-content .action-footer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
  margin-top: 50px;
}
.hegel-results-wrapper .contenedor .results-main-content .action-footer .btn-home {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 28px;
  background: var(--1, #A41D2B);
  color: var(--4, #FFF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.hegel-results-wrapper .contenedor .results-main-content .action-footer .btn-cert {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: var(--6, #F8B03B);
  color: var(--2, #201F2C);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}

/* TODOS los radios de métodos de pago */
.woocommerce-checkout input[type=radio][name=payment_method] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 10px 0 0 !important; /* Aumenté un poco el margen para que respire */
  width: 18px; /* Un poquito más grande para que el check luzca mejor */
  height: 18px;
  background-color: #ffffff;
  border: 2px solid #64748B;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  display: inline-block;
}

/* Cuando está seleccionado */
.woocommerce-checkout input[type=radio][name=payment_method]:checked {
  background-color: #64748B;
  border-color: #64748B;
}

/* El Checkmark (aparece solo cuando está :checked) */
.woocommerce-checkout input[type=radio][name=payment_method]:checked::after {
  content: "";
  position: absolute;
  /* Posicionamiento para centrar el check */
  top: -1px;
  left: 2px;
  /* Dibujamos el check con bordes */
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 4px 4px 0; /* Solo borde derecho e inferior */
  transform: rotate(45deg); /* Rotamos para crear la forma de "V" */
}

#payment div.payment_box::before {
  display: none !important;
}

.woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box, #add_payment_method #payment div.payment_box {
  background: rgba(100, 116, 139, 0.1) !important;
}

@media (max-width: 800px) {
  .hegel-results-wrapper .contenedor .results-main-content .result-card {
    flex-direction: column;
    margin-top: 25px;
  }
  .hegel-results-wrapper .contenedor .results-main-content .result-card .linea-result {
    height: 2px;
    width: 80%;
  }
  .hegel-results-wrapper .contenedor .results-main-content .result-card .grade-section {
    text-align: center;
  }
  .hegel-results-wrapper .contenedor .results-main-content .result-card .congrats-text {
    align-items: center;
    text-align: center;
  }
  .hegel-results-wrapper .contenedor .results-main-content .stats-container {
    flex-direction: column;
    margin-top: 25px;
  }
  .hegel-results-wrapper .contenedor .results-main-content .stats-container .hits-box {
    align-items: center;
  }
  .hegel-results-wrapper .contenedor .results-main-content .action-footer {
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }
}
.section-verificador {
  padding: 70px 0;
  background: var(--5, #F6F9FE);
}
.section-verificador .contenedor .input-verificador-container .card-busqueda {
  display: flex;
  max-width: 495px;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  margin: auto;
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .form-title {
  color: var(--1, #A41D2B);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 100% */
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search input {
  display: flex;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search input::-moz-placeholder {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search input::placeholder {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #201F2C 0%, #201F2C 100%);
  color: var(--4, #FFF);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .box-search button:hover {
  background: var(--degradado-azul, linear-gradient(180deg, #201F2C 0%, #274D94 100%));
}
.section-verificador .contenedor .input-verificador-container .card-busqueda .error-msg {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-verificador .contenedor .resultados-verificador .card-resultado {
  display: flex;
  max-width: 875px;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
  margin: auto;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .nombre-estudiante {
  color: var(--1, #A41D2B);
  text-align: center;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 85.714% */
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tabs-container .tabs-switch {
  display: flex;
  max-width: 330px;
  height: 64px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 103px;
  background: #B41727;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tabs-container .tabs-switch .tab-btn {
  display: flex;
  padding: 13px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  color: var(--4, #FFF);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
  transition: all 0.3s ease;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tabs-container .tabs-switch .tab-btn.active {
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  color: var(--1, #A41D2B);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-label {
  color: var(--3, #84838A);
  text-align: center;
  /* Texto 18 regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content {
  display: none;
  width: 100%;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content .lista-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 100%;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content .lista-items .item-row {
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 28px;
  border: 1px solid rgba(27, 25, 40, 0.1);
  background: var(--5, #F6F9FE);
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content .lista-items .item-row span {
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content .lista-items .vacio {
  color: var(--3, #84838A);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .tab-content.active {
  display: flex;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .btn-volver {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #F8B03B 0%, #F8B03B 100%);
  color: var(--2, #201F2C);
  /* Texto 15 regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.section-verificador .contenedor .resultados-verificador .card-resultado .btn-volver:hover {
  background: linear-gradient(180deg, #F8B03B 0%, #C97F06 100%);
}

@media (max-width: 768px) {
  .section-verificador .contenedor .resultados-verificador .card-resultado .tabs-container .tabs-switch .tab-btn {
    font-size: 16px;
    padding: 12px 18px;
  }
  .section-verificador .contenedor .resultados-verificador .card-resultado .tabs-container .tabs-switch .tab-btn.active {
    font-size: 16px;
  }
}/*# sourceMappingURL=app.css.map */


.splide.docentes-slider{
    width: 100% !important;
}