@charset "UTF-8";
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Black.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BlackItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  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;
}

#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: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
}

header {
  display: flex;
  z-index: 1000;
  top: 0;
  flex-direction: column;
}
header .logo {
  position: absolute;
  left: 0;
  display: flex;
  width: 274px;
  height: 86px;
  padding: 15px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 0 0 60px 0;
  background: #fff;
}
header .logo a img {
  height: 50.725px;
  flex-shrink: 0;
  align-self: stretch;
}
header .top {
  background: #fff;
}
header .top .contenedor .menu-header2-container ul {
  display: flex;
  padding: 8px 0;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  align-self: stretch;
}
header .top .contenedor .menu-header2-container ul li a {
  color: var(--2, #484f68);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
header .top .contenedor .menu-header2-container ul li:hover a {
  color: var(--1, #00519b);
  text-align: center;
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
header .bottom {
  background: var(--1, #00519b);
}
header .bottom .contenedor {
  display: flex;
  justify-content: end;
  align-items: center;
}
header .bottom .contenedor #btn-burger {
  margin: auto 0 auto auto;
  display: none;
}
header .bottom .contenedor .menu-header-container .menu {
  display: flex;
  padding: 8px 0;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
header .bottom .contenedor .menu-header-container .menu .menu-item {
  position: relative;
}
header .bottom .contenedor .menu-header-container .menu .menu-item:hover a {
  font-weight: 700 !important;
}
header .bottom .contenedor .menu-header-container .menu .menu-item a {
  color: var(--3, #fff);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  position: relative;
  transition: all 0.3s ease;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.matricula a {
  display: flex;
  width: 165px;
  padding: 10px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--4, #d80076);
}
header .bottom .contenedor .menu-header-container .menu .menu-item.asesoria a {
  display: flex;
  width: 159px;
  padding: 10px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--1a, #e5ecff);
  color: var(--1, #00519b);
  text-align: center;
  font-weight: 500;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children {
  margin-right: 15px;
  position: relative;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children a::after {
  content: "";
  position: absolute;
  background: url(../../images/flecha.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children .sub-menu li a::after {
  content: none;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children:hover .sub-menu {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding: 20px;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children:hover a {
  font-weight: 700;
}
header .bottom .contenedor .menu-header-container .menu .menu-item.menu-item-has-children:hover a::after {
  transform: translateY(-50%) rotate(180deg);
}
header .bottom .contenedor .menu-header-container .menu .menu-item .sub-menu {
  position: absolute;
  max-height: 0;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-radius: 0 0 40px 40px;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: auto;
}
header .bottom .contenedor .menu-header-container .menu .menu-item .sub-menu li {
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
}
header .bottom .contenedor .menu-header-container .menu .menu-item .sub-menu li a {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
header .bottom .contenedor .menu-header-container .menu .menu-item .sub-menu li:hover {
  background: var(--1a, #e5ecff);
}
header .bottom .contenedor .menu-header-container .menu .menu-item .sub-menu li:hover a {
  color: var(--1, #00519b);
}

#btn-burger {
  cursor: pointer;
}

#close-burger {
  cursor: pointer;
}

#menu-burger {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 999999;
  width: 90%;
  max-width: 300px;
  background: #00519b;
  height: 100%;
  display: flex;
  padding: 60px 30px 40px 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 40px 0 0 40px;
  background: linear-gradient(180deg, #00509b 0%, rgb(0, 80, 155) 100%);
  transition: all 0.3s ease;
}
#menu-burger.open {
  right: 0;
}
#menu-burger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/textura-exp.jpg);
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}
#menu-burger #close-burger {
  position: absolute;
  top: 20px;
  right: 20px;
}
#menu-burger .bottom .redes-content-items {
  justify-content: flex-start;
}
#menu-burger .bottom .redes-content p {
  color: #fff;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  margin-bottom: 10px;
}
#menu-burger .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
#menu-burger .top a {
  color: var(--3, #fff);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
#menu-burger .top .matricula-link {
  display: flex;
  padding: 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--4, #d80076);
}
#menu-burger .top .matricula-link a {
  color: var(--3, #fff);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
  width: 100%;
  margin: auto;
  text-align: center;
}
#menu-burger .top .asesoria-link {
  display: flex;
  padding: 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--1a, #e5ecff);
}
#menu-burger .top .asesoria-link a {
  color: var(--1, #00519b);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
  width: 100%;
  margin: auto;
  text-align: center;
}
#menu-burger .top .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  max-height: 70vh;
  overflow: auto;
}
#menu-burger .top .menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
#menu-burger .top .menu .menu-item .products-list-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  padding-left: 20px;
}
#menu-burger .top .menu .menu-item .products-list-menu .menu-item {
  position: relative;
  margin-bottom: 15px;
}
#menu-burger .top .menu .menu-item .products-list-menu .menu-item::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
#menu-burger .top .menu .menu-item .products-list-menu .menu-item a {
  color: var(--1a, #e5ecff);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}

#menu-burger .top .menu-item-object-product_cat > a {
  width: 100%;
  position: relative;
}
#menu-burger .top .menu-item-object-product_cat > a::after {
  content: "";
  position: absolute;
  background: url(../../images/flecha.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 10px;
  top: 10px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

@media (max-width: 1142px) {
  header .bottom .contenedor .menu-header-container .menu {
    gap: 20px;
  }
  header .bottom .contenedor .menu-header-container .menu .menu-item a {
    font-size: 14px;
  }
  header .bottom .contenedor .menu-header-container .menu .menu-item.matricula a {
    width: 140px;
  }
  header .bottom .contenedor .menu-header-container .menu .menu-item.asesoria a {
    width: 140px;
  }
}
@media (max-width: 1000px) {
  header .top {
    display: none;
  }
  header .bottom .contenedor {
    height: 75px;
  }
  header .bottom .contenedor .menu-header-container {
    display: none;
  }
  header .bottom .contenedor #btn-burger {
    display: flex;
  }
  header .logo {
    height: 70px;
    width: 201px;
    padding: 14px 40px 14px 15px;
  }
  header .logo a img {
    height: 41px;
  }
}
.redes-content-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.redes-content-items .linkedin-card {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
.redes-content-items .linkedin-card .icon-default,
.redes-content-items .linkedin-card .icon-hover {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease;
}
.redes-content-items .linkedin-card .icon-default path,
.redes-content-items .linkedin-card .icon-hover path {
  fill: #fff;
}
.redes-content-items .linkedin-card .icon-hover {
  transform: translate(calc(-50% + 25px), -50%);
  opacity: 0;
}
.redes-content-items .linkedin-card .icon-hover path {
  fill: #00519b;
}
.redes-content-items .linkedin-card:hover {
  background-color: #fff;
}
.redes-content-items .linkedin-card:hover .icon-default {
  transform: translate(calc(-50% - 25px), -50%);
  opacity: 0;
}
.redes-content-items .linkedin-card:hover .icon-hover {
  transform: translate(-50%, -50%);
  opacity: 1;
}

footer {
  border-radius: 60px 60px 0 0;
  background: linear-gradient(180deg, #00519b 0%, #002342 100%);
  display: flex;
  flex-direction: column;
  padding: 60px 50px 20px 50px;
  justify-content: space-between;
  align-items: center;
}
footer .foot2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
footer .foot2 .link-legal-footer {
  color: #fff;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
footer .foot2 P {
  color: #fff;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
footer .foot2 P strong {
  color: #fff;
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}
footer .foot1 {
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
footer .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 60px;
}
footer .contenedor .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}
footer .contenedor .left .logo {
  width: 127.091px;
  aspect-ratio: 127.09/37.05;
  margin-bottom: 30px;
}
footer .contenedor .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contenedor .left .redes-content {
  color: #fff;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  margin-bottom: 10px;
}
footer .contenedor .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer .contenedor .right .matricula-link {
  display: flex;
  width: 142px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--4, #d80076);
  color: var(--3, #fff);
  text-align: center;
  /* 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;
}
footer .contenedor .right .matricula-link:hover {
  font-weight: 700;
}
footer .contenedor .right .asesoria-link {
  display: flex;
  width: 142px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--1a, #e5ecff);
  color: var(--1, #00519b);
  text-align: center;
  /* 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;
}
footer .contenedor .right .asesoria-link:hover {
  font-weight: 700;
}
footer .contenedor .center {
  width: 100%;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children a {
  color: #fff;
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  border-bottom: 1px solid #fff;
  width: 100%;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children .sub-menu li a {
  color: #fff;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border: none;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children .sub-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children .sub-menu li a:hover::after {
  transform: scaleX(1);
}

/* El fondo oscuro que cubre toda la pantalla */
.modal-prematricula {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Contenido del Modal (la caja flotante) */
.modal-content-prematricula {
  background-color: #fff;
  margin: auto;
  padding: 25px;
  border: 1px solid #ddd;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

/* Títulos y mensajes */
.modal-title {
  color: var(--1, #00519B);
  text-align: center;
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}

.modal-text {
  color: var(--2, #484F68);
  text-align: center;
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
  padding: 20px 0;
}

/* Botón de cerrar (la 'x') */
.close-modal-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Contenedor de botones */
.modal-footer-prematricula {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
}

/* Botón de Acción Principal (Redirección) */
.modal-action-button {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #D80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.modal-action-button:hover {
  background: var(--4, #D80076);
  color: #fff;
}

/* Botón de Acción Secundaria (Cerrar) */
.modal-cancel-button {
  background-color: #f4f4f4;
  color: #333;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.modal-cancel-button:hover {
  background-color: #e0e0e0;
}

.float-contact {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 800px) {
  footer .contenedor {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  footer .contenedor .left {
    align-items: center;
  }
  footer .contenedor .center .menu-footer .menu-footer-container .menu {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  footer .contenedor .left .logo {
    margin-bottom: 15px;
  }
  footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children {
    align-items: center;
    text-align: center;
  }
  footer .contenedor .center .menu-footer .menu-footer-container .menu .menu-item-has-children .sub-menu {
    align-items: center;
  }
  footer .contenedor.foot2 {
    gap: 10px;
  }
  .section-programas .contenedor .programas .programa .cont-img {
    max-width: 100%;
  }
  footer .contenedor .left .redes-content {
    text-align: center;
  }
}
.banner-producto {
  position: relative;
  padding: 10px 0;
}
.banner-producto .contenedor {
  width: 95%;
  height: 252px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(0, 80, 155, 0.9607843137) 0%, rgba(0, 28, 53, 0.9450980392) 100%);
  position: relative;
  gap: 24px;
}
.banner-producto .contenedor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/lineasdobles.png);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.banner-producto .contenedor img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: overlay;
  z-index: -2;
}
.banner-producto .contenedor .ruta {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 1;
}
.banner-producto .contenedor .ruta .woocommerce-breadcrumb {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--3, #fff);
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
}
.banner-producto .contenedor .ruta .woocommerce-breadcrumb a {
  color: var(--3, #fff);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.banner-producto .contenedor h1 {
  color: var(--1a, #E5ECFF);
  text-align: center;
  /* Titulo 35 Regular */
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 114.286% */
}
.banner-producto .contenedor .btn-descargar {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 40px;
  background: var(--3, #FFF);
  color: var(--1, #00519B);
  /* Texto 16 Medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.banner-producto .contenedor .btn-descargar svg path {
  transition: all 0.3s ease;
}
.banner-producto .contenedor .btn-descargar:hover {
  background: var(--4, #D80076);
  color: var(--3, #FFF);
}
.banner-producto .contenedor .btn-descargar:hover svg path {
  fill: #fff;
}

@media (max-width: 800px) {
  .banner-producto .contenedor h1 {
    font-size: 25px;
  }
  .banner-producto .contenedor {
    gap: 15px;
  }
  .banner-producto .contenedor .ruta {
    left: 10px;
  }
}
.section-inscripciones {
  margin: 80px 0;
  background: var(--1a, #e5ecff);
  height: 428px;
  display: flex;
  align-items: center;
  position: relative;
}
.section-inscripciones .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex: 2;
}
.section-inscripciones .contenedor .left {
  flex: 1;
  position: relative;
}
.section-inscripciones .contenedor .left .cont-images-circ {
  position: absolute;
  top: 0;
  right: -50px;
  width: 582px;
  height: 100%;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle1 {
  position: absolute;
  width: 379.669px;
  height: 328.834px;
  flex-shrink: 0;
  top: -215px;
  left: 0;
  border-radius: 397.143px;
  overflow: hidden;
  border: #fff 10px solid;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle2 {
  position: absolute;
  height: 311.36px;
  width: 311.36px;
  flex-shrink: 0;
  bottom: -45px;
  right: 25px;
  border-radius: 50%;
  overflow: hidden;
  border: #fff 10px solid;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle3 {
  position: absolute;
  height: 311.36px;
  width: 311.36px;
  flex-shrink: 0;
  border-radius: 50%;
  left: 28%;
  top: -40px;
  overflow: hidden;
  border: #fff 10px solid;
}
.section-inscripciones .contenedor .left .cont-images-circ .circle3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-inscripciones .contenedor .right {
  flex: 1;
}
.section-inscripciones .contenedor .right .insc-titulo-swm h2 {
  color: var(--1, #00519b);
  /* Titulo 30 Regular */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 116.667% */
  margin-bottom: 20px;
}
.section-inscripciones .contenedor .right .insc-titulo-swm h2 strong {
  color: var(--1, #00519b);
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
}
.section-inscripciones .contenedor .right .insc-parrafo-content {
  max-width: 586px;
}
.section-inscripciones .contenedor .right .insc-parrafo-content p {
  color: var(--2, #484f68);
  /* Texto 18 Regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  margin-bottom: 30px;
}
.section-inscripciones .contenedor .right a {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--3, #fff);
  color: var(--4, #d80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.section-inscripciones .contenedor .right a:hover {
  background: var(--4, #d80076);
  color: var(--3, #fff);
}

@media (max-width: 800px) {
  .section-inscripciones {
    align-items: flex-end;
    height: 720px;
    overflow: hidden;
  }
  .section-inscripciones .contenedor {
    flex-direction: column;
  }
  .section-inscripciones .contenedor .right {
    padding-bottom: 50px;
  }
  .section-inscripciones .contenedor .left .cont-images-circ .circle1 {
    width: 274.65px;
    height: 237.877px;
  }
  .section-inscripciones .contenedor .left .cont-images-circ .circle2 {
    height: 225.236px;
    width: 225.236px;
  }
  .section-inscripciones .contenedor .left .cont-images-circ .circle3 {
    height: 225.236px;
    width: 225.236px;
  }
  .section-inscripciones .contenedor .left .cont-images-circ {
    right: 50%;
    transform: translateX(50%);
    top: -150px;
    max-width: 500px;
  }
  .section-inscripciones .contenedor .left {
    width: 100%;
  }
  .section-inscripciones .contenedor .right .insc-parrafo-content p {
    font-size: 15px;
    line-height: 20px;
  }
  .opcion-dni {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.banner-home .splide__track .splide__list .splide__slide {
  border-radius: 0 0 20px 20px;
  height: 380px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner-home .splide__track .splide__list .splide__slide::before {
  content: "";
  position: absolute;
  bottom: 125px;
  right: -880px;
  width: 1553.663px;
  height: 479.265px;
  transform: rotate(152deg);
  aspect-ratio: 1553.66/479.27;
  background: url(../../images/lineas.png);
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.banner-home .splide__track .splide__list .splide__slide img {
  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;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 90%;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido h2 {
  display: flex;
  padding: 0 16.943px 0 11.295px;
  justify-content: center;
  align-items: center;
  gap: 11.295px;
  border-radius: 0 22.591px 22.591px 0;
  background: linear-gradient(90deg, rgba(0, 159, 227, 0) 0%, #009fe3 10.1%);
  color: var(--3, #fff);
  font-family: Montserrat;
  font-size: 28.238px;
  font-style: italic;
  font-weight: 500;
  line-height: 33.886px; /* 120% */
  width: -moz-fit-content;
  width: fit-content;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido .texto {
  position: relative;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido .texto .texto1 {
  color: var(--3, #fff);
  font-family: Montserrat;
  font-size: 67.772px;
  font-style: italic;
  font-weight: 900;
  line-height: 67.772px; /* 100% */
  z-index: 2;
  position: relative;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido .texto .texto2 {
  color: #00519b;
  -webkit-text-stroke-width: 18.17px;
  -webkit-text-stroke-color: #00519b;
  font-family: Montserrat;
  font-size: 67.772px;
  font-style: italic;
  font-weight: 900;
  line-height: 67.772px; /* 100% */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido a {
  margin-top: 30px;
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--4, #d80076);
  color: var(--3, #fff);
  /* Texto 15 Semibold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 133.333% */
  width: -moz-fit-content;
  width: fit-content;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido.izquierda {
  align-items: flex-start;
  text-align: left;
}
.banner-home .splide__track .splide__list .splide__slide .contenedor .contenido.derecha {
  align-items: flex-end;
  text-align: right;
}

.splide__arrows .splide__arrow {
  display: flex;
  width: 20px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--1a, #e5ecff);
}
.splide__arrows .splide__arrow SVG {
  width: 6px;
  flex-shrink: 0;
}

.contenido-section {
  display: flex;
  max-width: 672px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto;
}
.contenido-section h3 {
  color: var(--1, #00519b);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
}
.contenido-section p {
  color: var(--2, #484f68);
  text-align: center;
  /* Texto 18 Regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

.section-programas {
  padding: 80px 0;
}
.section-programas .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-programas .contenedor .programas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-programas .contenedor .programas .programa:nth-child(1) .cont-img {
  background: #009fe3;
}
.section-programas .contenedor .programas .programa:nth-child(2) .cont-img {
  background: var(--7, #5ba948);
}
.section-programas .contenedor .programas .programa:nth-child(3) .cont-img {
  background: var(--6, #e3802f);
}
.section-programas .contenedor .programas .programa {
  display: flex;
  width: 313px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section-programas .contenedor .programas .programa .cont-img {
  border-radius: 40px;
  width: 313px;
  height: 251px;
  display: flex;
  align-items: end;
}
.section-programas .contenedor .programas .programa .cont-img .img-cut {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  height: 120%;
  display: flex;
  transition: all 0.3s ease;
}
.section-programas .contenedor .programas .programa .cont-img .img-cut img {
  width: 90%;
  margin: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.section-programas .contenedor .programas .programa .cont-info {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: var(--1a, #e5ecff);
}
.section-programas .contenedor .programas .programa .cont-info p {
  display: flex;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  color: var(--1, #00519b);
  text-align: center;
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-programas .contenedor .programas .programa .cont-info a {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 40px;
  background: #fff;
  color: var(--1, #00519b);
  /* Texto 16 Medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-programas .contenedor .programas .programa .cont-info a svg path {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.section-programas .contenedor .programas .programa:hover .cont-img .img-cut img {
  width: 100%;
}
.section-programas .contenedor .programas .programa:hover .cont-info a {
  color: #fff;
  background: var(--4, #d80076);
}
.section-programas .contenedor .programas .programa:hover .cont-info a svg path {
  transform: rotate(-45deg);
}

.section-experiencia .contenedor {
  border-radius: 40px;
  overflow: hidden;
  padding: 30px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 81, 155, 0.8196078431) 0%, rgba(0, 159, 227, 0.6196078431) 100%);
}
.section-experiencia .contenedor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/textura-exp.jpg);
  opacity: 1;
  z-index: -1;
}
.section-experiencia .contenedor .contenido {
  width: 360px;
  min-width: 360px;
}
.section-experiencia .contenedor .contenido h3 {
  color: var(--3, #fff);
  /* Titulo 35 Bold */
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 114.286% */
  margin-bottom: 5px;
}
.section-experiencia .contenedor .contenido h4 {
  color: var(--3, #fff);
  /* Titulo 18 Medium */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  margin-bottom: 20px;
}
.section-experiencia .contenedor .contenido p {
  color: var(--1a, #e5ecff);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-experiencia .contenedor .datos {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 40px;
}
.section-experiencia .contenedor .datos .dato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-experiencia .contenedor .datos .dato .imagen-dato {
  width: 141px;
  height: 141px;
  background: var(--3, #fff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-experiencia .contenedor .datos .dato .texto-dato .numero {
  color: var(--3, #fff);
  text-align: center;
  /* Titulo 35 Bold */
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 114.286% */
}
.section-experiencia .contenedor .datos .dato .texto-dato .descripcion {
  color: var(--3, #fff);
  text-align: center;
  /* Texto 18 Regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

.banner-ayuda {
  width: 100%;
  padding: 160px 0 80px 0;
}
.banner-ayuda .contenedor {
  position: relative;
  display: flex;
  padding: 0 100px;
  height: 287px;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  overflow: visible;
  background: linear-gradient(180deg, #ffb9df 0%, #d80076 100%);
  background-blend-mode: soft-light, normal;
}
.banner-ayuda .contenedor .svg-back {
  height: 100%;
  overflow: hidden;
}
.banner-ayuda .contenedor .svg-back img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.banner-ayuda .contenedor .banner-ayuda__contenido {
  max-width: 50%;
  z-index: 2;
}
.banner-ayuda .contenedor .banner-ayuda__contenido .banner-ayuda__subtitulo {
  color: var(--3, #fff);
  /* Titulo 20 Regular */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
  margin-bottom: 5px;
}
.banner-ayuda .contenedor .banner-ayuda__contenido .banner-ayuda__titulo {
  color: var(--3, #fff);
  /* Titulo 35 Bold */
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 114.286% */
  margin-bottom: 20px;
}
.banner-ayuda .contenedor .banner-ayuda__contenido .banner-ayuda__boton {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--3, #fff);
  color: var(--1, #00519b);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.banner-ayuda .contenedor .banner-ayuda__contenido .banner-ayuda__boton:hover {
  background: var(--1a, #E5ECFF);
}
.banner-ayuda .contenedor .banner-ayuda__imagen {
  position: absolute;
  right: 13%;
  bottom: 0;
  width: 342px;
  z-index: 1;
}
.banner-ayuda .contenedor .banner-ayuda__imagen img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .banner-ayuda .banner-ayuda__contenedor {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  .banner-ayuda .banner-ayuda__contenedor .banner-ayuda__contenido {
    max-width: 100%;
  }
  .banner-ayuda .banner-ayuda__contenedor .banner-ayuda__imagen {
    position: relative;
    right: 0;
    bottom: 0;
    width: 260px;
    margin-top: 30px;
  }
}

/* Oculta la sección de detalles del cliente estándar */
.woocommerce-customer-details {
  display: none !important;
}

/* Oculta la sección de detalles de la orden estándar */
.woocommerce-order-details {
  max-width: 95%;
  margin: 40px auto;
  width: 966px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.woocommerce-order-details .woocommerce-order-details__title {
  color: var(--1, #00519b);
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 10px;
}
.woocommerce-order-details .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.woocommerce-order-details .woocommerce-table thead th {
  padding: 15px;
  color: var(--1, #00519b);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 5px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--1, #00519b);
}
.woocommerce-order-details .woocommerce-table tbody .order_item {
  transition: background 0.3s;
}
.woocommerce-order-details .woocommerce-table tbody .order_item:hover {
  background-color: #fcfdfe;
}
.woocommerce-order-details .woocommerce-table tbody .order_item td {
  padding: 20px 0;
  vertical-align: top;
}
.woocommerce-order-details .woocommerce-table tbody .product-name a {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.woocommerce-order-details .woocommerce-table tbody .product-name a:hover {
  color: #00519b;
}
.woocommerce-order-details .woocommerce-table tbody .product-name .product-quantity {
  color: #777;
  margin-left: 5px;
}
.woocommerce-order-details .woocommerce-table tbody .product-name .wc-item-meta {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 13px;
}
.woocommerce-order-details .woocommerce-table tbody .product-name .wc-item-meta li {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
.woocommerce-order-details .woocommerce-table tbody .product-name .wc-item-meta li strong {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.woocommerce-order-details .woocommerce-table tbody .product-name .wc-item-meta li p {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}
.woocommerce-order-details .woocommerce-table tbody .product-total {
  color: var(--2, #484f68);
  text-align: right;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}
.woocommerce-order-details .woocommerce-table tfoot {
  background-color: #fefefe;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce-order-details .woocommerce-table tfoot tr {
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.woocommerce-order-details .woocommerce-table tfoot tr th {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}
.woocommerce-order-details .woocommerce-table tfoot tr td {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}
.woocommerce-order-details .woocommerce-table tfoot tr:last-of-type {
  background-color: #f8fafd;
}
.woocommerce-order-details .woocommerce-table tfoot tr:last-of-type td, .woocommerce-order-details .woocommerce-table tfoot tr:last-of-type th {
  font-size: 18px;
  color: #00519b;
  border-top: 2px solid #e1e8ed;
}
.woocommerce-order-details .order-again {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.woocommerce-order-details .order-again .button {
  background-color: #00519b;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s, background 0.3s;
  box-shadow: 0 4px 12px rgba(0, 81, 155, 0.2);
}
.woocommerce-order-details .order-again .button:hover {
  background-color: #003d75;
  transform: translateY(-2px);
}

.page-content {
  display: flex;
  flex-direction: column;
}
.page-content .woocommerce-order-details {
  order: 2;
}

@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table thead {
    display: none;
  }
  .woocommerce-order-details .woocommerce-table .order_item {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  .woocommerce-order-details .woocommerce-table .order_item td {
    display: block;
    padding: 5px 0;
    border: none;
    text-align: center !important;
  }
  .woocommerce-order-details .woocommerce-table tfoot tr {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  .woocommerce-order-details .woocommerce-table tfoot tr th, .woocommerce-order-details .woocommerce-table tfoot tr td {
    padding: 0;
    text-align: left !important;
  }
}
body .splide__pagination__page {
  background: transparent;
  border: 1px solid #fff;
}

@media (max-width: 800px) {
  .banner-home .splide__track .splide__list .splide__slide {
    height: 60vh;
    min-height: 300px;
  }
  .banner-home .splide__track .splide__list .splide__slide .contenedor {
    align-items: flex-end;
  }
  .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido.derecha, .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido.izquierda, .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido.centro {
    align-items: center;
    text-align: center;
  }
  .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido h2 {
    font-size: 20px;
  }
  .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido .texto .texto2, .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido .texto .texto1 {
    font-size: 53px;
  }
  .banner-home .splide__track .splide__list .splide__slide .contenedor .contenido a {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .banner-home .splide__track .splide__list .splide__slide::before {
    display: none;
  }
  .contenido-section p {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.3px;
  }
  .section-experiencia .contenedor {
    flex-direction: column;
    gap: 30px;
    padding: 50px 15px;
    width: auto;
    max-width: 95%;
  }
  .section-experiencia .contenedor .contenido {
    min-width: auto;
    align-items: center;
    text-align: center;
    width: auto;
  }
  .section-experiencia .contenedor .contenido h3 {
    font-size: 30px;
  }
  .section-experiencia .contenedor .contenido h4 {
    font-size: 16px;
  }
  .section-experiencia .contenedor .datos .dato .imagen-dato {
    width: 107px;
    height: 107px;
  }
  .section-experiencia .contenedor .datos .dato .imagen-dato svg {
    width: 60px;
  }
  .section-experiencia .contenedor .datos {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-experiencia .contenedor .datos .dato .texto-dato .numero {
    font-size: 30px;
  }
  .section-experiencia .contenedor .datos .dato .texto-dato .descripcion {
    font-size: 15px;
    width: -moz-min-content;
    width: min-content;
  }
  .banner-ayuda .contenedor {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 0 15px;
    padding-top: 40px;
    background: linear-gradient(0deg, #ffb9df 0%, #d80076 100%);
  }
  .banner-ayuda .contenedor .svg-back {
    height: 364px;
  }
  .banner-ayuda .contenedor .svg-back img {
    top: 0;
    transform: none;
  }
  .banner-ayuda .contenedor .banner-ayuda__imagen {
    right: 50%;
    transform: translateX(50%);
    max-width: 100%;
  }
  .banner-ayuda .contenedor .banner-ayuda__contenido {
    max-width: -moz-fit-content;
    max-width: fit-content;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .section-programas .contenedor .programas .programa {
    max-width: 100%;
  }
  .banner-ayuda {
    padding: 80px 0;
  }
}
/* Layout Principal */
.curso-tabs-container {
  display: flex;
  gap: 50px;
  padding: 80px 0;
}

/* Menú Izquierdo */
.tabs-nav {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--2, rgba(72, 79, 104, 0.5490196078)); /* Línea separadora */
  padding-right: 50px;
}

.tab-link {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 11px;
  align-self: stretch;
  border-radius: 40px;
  color: var(--2, #484f68);
  opacity: 0.5;
  /* Texto 16 Medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}

.tab-link .tab-icon {
  width: 20px;
  height: 20px;
}

/* Estado Activo del Menú (Rosa) */
.tab-link.active {
  background: rgba(216, 0, 118, 0.1);
  color: var(--4, #D80076);
  font-weight: 600;
  opacity: 1;
}

.tab-link.active .tab-icon {
  filter: invert(17%) sepia(85%) saturate(3000%) hue-rotate(310deg) brightness(85%) contrast(100%);
  /* El filtro anterior intenta colorear el SVG negro a rosa. Ajusta según tus iconos */
}

/* Contenido Derecho */
.tabs-content {
  flex: 1;
}

.tab-body p {
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}

.tab-panel {
  display: none; /* Ocultar todos por defecto */
  animation: fadeIn 0.5s;
}

.tab-panel.active {
  display: block; /* Mostrar solo el activo */
}

/* Imagen Principal */
.tab-main-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

/* Botón */
.btn-matricula {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(0, 81, 155, 0.05);
  color: var(--1, #00519B);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.btn-matricula:hover {
  background: var(--1, #00519B);
  color: var(--3, #FFF);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
}

/* Repeater Anidado (Cards de Temario) */
.temario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas */
  gap: 20px;
  margin-top: 30px;
}

.temario-card {
  padding: 25px;
  border-radius: 15px;
  color: white;
}

.temario-card h3 {
  color: var(--3, #FFF);
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}

.card-divider {
  border: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  margin: 5px 0 20px 0;
}

.card-content p {
  color: var(--3, #FFF);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}

.card-content ul {
  padding-left: 20px;
  margin: 0;
}

.card-content li {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Responsive */
@media (max-width: 800px) {
  .curso-tabs-container {
    flex-direction: column;
  }
  .tabs-nav {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    flex-direction: row;
    flex: auto;
    overflow: auto;
  }
  .temario-grid {
    grid-template-columns: 1fr;
  }
  .tab-link {
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 15px;
  }
  .tab-main-image img {
    height: 280px;
  }
  .temario-card {
    padding: 20px;
  }
}
.section-productos-cat {
  padding: 80px 0;
}
.section-productos-cat .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-productos-cat .contenedor h2 {
  color: var(--1, #00519b);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
  max-width: 500px;
  margin: auto;
}
.section-productos-cat .contenedor .description {
  color: var(--2, #484f68);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  max-width: 846px;
  margin: auto;
  margin-top: 10px;
}
.section-productos-cat .contenedor .productos-cards {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.section-productos-cat .contenedor .productos-cards .card-prod {
  width: 49%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-productos-cat .contenedor .productos-cards .card-prod::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: -1;
}
.section-productos-cat .contenedor .productos-cards .card-prod::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.section-productos-cat .contenedor .productos-cards .card-prod:nth-child(1)::after {
  background: linear-gradient(180deg, rgba(0, 159, 227, 0.9) 0%, #009fe3 100%);
}
.section-productos-cat .contenedor .productos-cards .card-prod:nth-child(2)::after {
  background: linear-gradient(180deg, rgba(227, 128, 47, 0.9) 0%, #e3802f 100%);
}
.section-productos-cat .contenedor .productos-cards .card-prod:nth-child(3)::after {
  background: linear-gradient(180deg, rgba(133, 183, 66, 0.9) 0%, #85b742 100%);
}
.section-productos-cat .contenedor .productos-cards .card-prod:nth-child(4)::after {
  background: linear-gradient(180deg, rgba(146, 61, 138, 0.9) 0%, #923d8a 100%);
}
.section-productos-cat .contenedor .productos-cards .card-prod img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transition: all 0.3s ease;
}
.section-productos-cat .contenedor .productos-cards .card-prod .info-prod {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-productos-cat .contenedor .productos-cards .card-prod .info-prod h3 {
  color: var(--3, #fff);
  text-align: center;
  /* Sombra super suave */
  text-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  /* Titulo 25 Bold */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
}
.section-productos-cat .contenedor .productos-cards .card-prod .info-prod p {
  color: var(--3, #fff);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}
.section-productos-cat .contenedor .productos-cards .card-prod .info-prod a {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 40px;
  background: #fff;
  color: var(--1, #00519b);
  /* Texto 15 Medium */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}
.section-productos-cat .contenedor .productos-cards .card-prod .info-prod a:hover {
  background: var(--4, #d80076);
  color: #fff;
}
.section-productos-cat .contenedor .productos-cards .card-prod:hover img {
  transform: scale(1.1);
}
.section-productos-cat .contenedor .productos-cards .card-prod:hover::before {
  opacity: 0;
}
.section-productos-cat .contenedor .productos-cards .card-prod:hover::after {
  opacity: 0.95;
}
.section-productos-cat .contenedor .productos-cards .card-prod:hover .info-prod p {
  max-height: 100px;
  opacity: 1;
}
.section-productos-cat .contenedor .productos-cards .card-prod:hover .info-prod a {
  max-height: 40px;
  opacity: 1;
}

.section-preguntas {
  background: linear-gradient(0deg, #009fe3 0%, #00519b 100%);
  position: relative;
  padding: 80px 0;
}
.section-preguntas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/lineas-preguntas.webp);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.section-preguntas .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.section-preguntas .contenedor .left {
  display: flex;
  width: 290px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  align-self: stretch;
}
.section-preguntas .contenedor .left h2 {
  color: var(--3, #fff);
  text-align: center;
  /* Titulo 25 Bold */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
}
.section-preguntas .contenedor .left .descripcion-faq {
  color: var(--3, #fff);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-preguntas .contenedor .right {
  display: flex;
  padding: 50px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  /* Sombra asulada */
  box-shadow: 0 60px 100px 0 rgba(0, 150, 255, 0.04), 0 -8px 20px 0 rgba(255, 255, 255, 0.9), 0 20px 40px 0 rgba(0, 100, 255, 0.08);
}
.section-preguntas .contenedor .right .pregunta-item {
  display: flex;
  max-width: 699px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-bottom: #e5ecff 1px solid;
}
.section-preguntas .contenedor .right .pregunta-item .titulo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.section-preguntas .contenedor .right .pregunta-item .titulo h3 {
  color: var(--2, #484f68);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
  transition: all 0.3s ease;
}
.section-preguntas .contenedor .right .pregunta-item .titulo svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.section-preguntas .contenedor .right .pregunta-item .titulo svg path {
  transition: all 0.3s ease;
}
.section-preguntas .contenedor .right .pregunta-item .respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.section-preguntas .contenedor .right .pregunta-item .respuesta p {
  color: var(--1, #00519b);
  text-align: justify;
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.section-preguntas .contenedor .right .pregunta-item:hover .titulo h3 {
  color: var(--4, #d80076);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-preguntas .contenedor .right .pregunta-item:hover .titulo svg {
  transform: rotate(-180deg);
}
.section-preguntas .contenedor .right .pregunta-item:hover .titulo svg path {
  fill: var(--4, #d80076);
}
.section-preguntas .contenedor .right .pregunta-item:hover .respuesta {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.4s ease-in-out;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .section-productos-cat .contenedor .productos-cards {
    flex-direction: column;
  }
  .section-productos-cat .contenedor .productos-cards .card-prod {
    width: 100%;
  }
  .section-productos-cat .contenedor .productos-cards .card-prod::after {
    opacity: 1;
  }
  .section-productos-cat .contenedor .productos-cards .card-prod::before {
    opacity: 0;
  }
  .section-productos-cat .contenedor .productos-cards .card-prod .info-prod p {
    max-height: 200px;
    opacity: 1;
  }
  .section-productos-cat .contenedor .productos-cards .card-prod .info-prod a {
    max-height: 200px;
    opacity: 1;
  }
  .section-preguntas .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-preguntas .contenedor .left {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .section-preguntas .contenedor .right {
    padding: 30px 15px;
  }
  .section-preguntas .contenedor .right .pregunta-item .titulo h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .section-preguntas .contenedor .right .pregunta-item:hover .titulo h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .section-preguntas .contenedor .right .pregunta-item .respuesta p {
    font-size: 13px;
    line-height: 18px;
  }
}
.section-historia {
  padding: 80px 0;
}
.section-historia .contenedor {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 80px;
}
.section-historia .contenedor .left {
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.section-historia .contenedor .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-historia .contenedor .right {
  width: 60%;
  margin: auto;
}
.section-historia .contenedor .right h2 {
  color: var(--1, #00519b);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 15px;
}
.section-historia .contenedor .right p {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.section-historia .contenedor .right p strong {
  color: var(--2, #484f68);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.section-mision-vision {
  padding: 80px 0;
}
.section-mision-vision .contenedor {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}
.section-mision-vision .contenedor .left,
.section-mision-vision .contenedor .right {
  display: flex;
  padding: 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.section-mision-vision .contenedor .left h3,
.section-mision-vision .contenedor .right h3 {
  color: var(--3, #FFF);
  text-align: center;
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}
.section-mision-vision .contenedor .left p,
.section-mision-vision .contenedor .right p {
  color: var(--3, #FFF);
  text-align: center;
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
  max-width: 530px;
}
.section-mision-vision .contenedor .left {
  background: var(--1, #00519b);
}
.section-mision-vision .contenedor .right {
  background: var(--4, #d80076);
}

@media (max-width: 800px) {
  .section-historia .contenedor {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .section-historia .contenedor .right {
    width: 100%;
  }
  .section-historia .contenedor .left {
    width: 100%;
  }
  .section-mision-vision .contenedor {
    flex-direction: column;
  }
  .section-mision-vision .contenedor .left, .section-mision-vision .contenedor .right {
    padding: 40px 30px;
  }
  .section-mision-vision {
    padding: 0;
  }
}
.section-productos-ajax {
  padding: 80px 0;
}
.section-productos-ajax .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-productos-ajax .contenedor .filtro-productos {
  position: relative;
}
.section-productos-ajax .contenedor .filtro-productos #filtro-categoria {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--1a, #e5ecff);
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 50px;
}
.section-productos-ajax .contenedor .filtro-productos #filtro-categoria:focus {
  outline: none;
  border: none;
}
.section-productos-ajax .contenedor .filtro-productos #filtro-categoria option {
  background: #fff;
  border: none;
  outline: none;
  color: var(--2, #484f68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.section-productos-ajax .contenedor .filtro-productos::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 4px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%224%22%20viewBox%3D%220%200%207%204%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.85462%200.147882C6.80814%200.101023%206.75285%200.0638305%206.69193%200.038449C6.631%200.0130675%206.56566%200%206.49966%200C6.43366%200%206.36832%200.0130675%206.30739%200.038449C6.24647%200.0638305%206.19118%200.101023%206.1447%200.147882L3.85496%202.43762C3.80848%202.48448%203.75319%202.52167%203.69227%202.54706C3.63134%202.57244%203.566%202.58551%203.5%202.58551C3.434%202.58551%203.36866%202.57244%203.30773%202.54706C3.24681%202.52167%203.19152%202.48448%203.14504%202.43762L0.855299%200.147882C0.808823%200.101023%200.753529%200.0638305%200.692606%200.038449C0.631683%200.0130675%200.566338%200%200.50034%200C0.434341%200%200.368996%200.0130675%200.308073%200.038449C0.24715%200.0638305%200.191856%200.101023%200.14538%200.147882C0.0522648%200.241553%200%200.368265%200%200.500342C0%200.63242%200.0522648%200.759132%200.14538%200.852802L2.44012%203.14754C2.72134%203.42841%203.10254%203.58617%203.5%203.58617C3.89746%203.58617%204.27866%203.42841%204.55988%203.14754L6.85462%200.852802C6.94773%200.759132%207%200.63242%207%200.500342C7%200.368265%206.94773%200.241553%206.85462%200.147882Z%22%20fill%3D%22%2300519B%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.section-productos-ajax .contenedor .productos-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  width: 100%;
}
.section-productos-ajax .contenedor .btn-mostrar-mas {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #D80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-productos-ajax .contenedor .btn-mostrar-mas:hover {
  background: var(--4, #D80076);
  color: var(--3, #FFF);
}

.product-card a {
  display: flex;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 270px;
  min-width: 310px;
  max-width: 490px;
  margin: auto;
}
.product-card a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.product-card a .card-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.product-card a .card-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
  transition: all 0.3s ease;
}
.product-card a .price-tag {
  position: absolute;
  top: 13px;
  right: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: #fff;
}
.product-card a .price-tag .label {
  display: flex;
  padding: 3px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--4, #d80076);
  color: var(--3, #f9fafb);
  text-align: center;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.product-card a .price-tag .price {
  color: var(--1, #00519b);
  text-align: center;
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
  padding: 5px 0;
}
.product-card a .card-content {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.product-card a .card-content .card-title {
  color: #fff;
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.product-card a .card-content .card-descripction {
  color: #fff;
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  padding-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover .card-image-wrap img {
  transform: scale(1.1);
}
.product-card:hover .card-content .card-descripction {
  max-height: 100px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1100px) {
  .section-productos-ajax .contenedor .productos-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .section-productos-ajax .contenedor .productos-cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-card a {
    min-width: 200px;
  }
}
.section-recursos-filtros {
  padding: 80px 0;
}
.section-recursos-filtros .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.section-recursos-filtros .contenedor .contenedor-filtros-movil {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: auto;
  display: none;
}
.section-recursos-filtros .contenedor .contenedor-filtros-movil p {
  color: var(--2, #484F68);
  /* Texto 14 Medium */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px; /* 135.714% */
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid #close-filtro {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: flex;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  overflow: auto;
  gap: 10px;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item {
  position: relative;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item select {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--1a, #e5ecff);
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 50px;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item select:focus {
  outline: none;
  border: none;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item select option {
  background: #fff;
  border: none;
  outline: none;
  color: var(--2, #484f68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 4px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%224%22%20viewBox%3D%220%200%207%204%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.85462%200.147882C6.80814%200.101023%206.75285%200.0638305%206.69193%200.038449C6.631%200.0130675%206.56566%200%206.49966%200C6.43366%200%206.36832%200.0130675%206.30739%200.038449C6.24647%200.0638305%206.19118%200.101023%206.1447%200.147882L3.85496%202.43762C3.80848%202.48448%203.75319%202.52167%203.69227%202.54706C3.63134%202.57244%203.566%202.58551%203.5%202.58551C3.434%202.58551%203.36866%202.57244%203.30773%202.54706C3.24681%202.52167%203.19152%202.48448%203.14504%202.43762L0.855299%200.147882C0.808823%200.101023%200.753529%200.0638305%200.692606%200.038449C0.631683%200.0130675%200.566338%200%200.50034%200C0.434341%200%200.368996%200.0130675%200.308073%200.038449C0.24715%200.0638305%200.191856%200.101023%200.14538%200.147882C0.0522648%200.241553%200%200.368265%200%200.500342C0%200.63242%200.0522648%200.759132%200.14538%200.852802L2.44012%203.14754C2.72134%203.42841%203.10254%203.58617%203.5%203.58617C3.89746%203.58617%204.27866%203.42841%204.55988%203.14754L6.85462%200.852802C6.94773%200.759132%207%200.63242%207%200.500342C7%200.368265%206.94773%200.241553%206.85462%200.147882Z%22%20fill%3D%22%2300519B%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-clean .btn-limpiar-filtros {
  color: var(--2, #484f68);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  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-recursos-filtros .contenedor .recursos-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  width: 100%;
}
.section-recursos-filtros .contenedor .recursos-cards-grid .no-results {
  margin: auto;
}
.section-recursos-filtros .contenedor .recursos-cards-grid .no-results p {
  color: var(--2, #484F68);
  /* Texto 18 Regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

.recurso-card {
  display: flex;
  min-width: 310px;
  max-width: 400px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
  position: relative;
  margin: auto;
}
.recurso-card .card-image-wrap {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.recurso-card .card-image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 159, 227, 0) 0%, rgba(0, 159, 227, 0.2) 100%);
  transition: all 0.3s ease;
  opacity: 1;
}
.recurso-card .card-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 159, 227, 0.5) 0%, #009fe3 100%);
  transition: all 0.3s ease;
  opacity: 0;
}
.recurso-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
  transition: all 0.3s ease;
}
.recurso-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.recurso-card .card-content .card-tags {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.recurso-card .card-content .card-tags .recurso-tag {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: rgba(245, 33, 149, 0.1);
  color: var(--4, #d80076);
  /* Texto 10 Regular */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 120% */
}
.recurso-card .card-content h3 {
  color: var(--1, #00519b);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.recurso-card .card-content .btn-descargar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 40px;
  color: var(--2, #484f68);
  /* 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;
}
.recurso-card .card-content .btn-descargar svg path {
  transition: all 0.3s ease;
}
.recurso-card .card-content .btn-descargar:hover {
  color: var(--1, #00519b);
}
.recurso-card .card-content .btn-descargar:hover svg path {
  fill: var(--1, #00519b);
}
.recurso-card:hover .card-image-wrap img {
  transform: scale(1.1);
}
.recurso-card:hover .card-image-wrap::after {
  opacity: 0;
}
.recurso-card:hover .card-image-wrap::before {
  opacity: 1;
}

/* --- ESTILOS MÍNIMOS PARA QUE EL MODAL SE MUESTRE ENCAPA --- */
.custom-modal-overlay {
  /* Posiciona el modal de forma fija en la ventana del navegador */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fondo oscuro semitransparente (el 'overlay') */
  background: rgba(0, 0, 0, 0.7);
  /* Asegura que esté por encima de casi todo el contenido del sitio */
  z-index: 9999;
  /* Usamos Flexbox para centrar el contenido fácilmente */
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  position: relative;
  /* Estilos del cuadro interior que contiene el formulario/mensaje */
  display: flex;
  width: 450px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #FFF;
}
.custom-modal-content h2 {
  color: var(--1, #00519B);
  text-align: center;
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}
.custom-modal-content p {
  color: var(--2, #484F68);
  text-align: center;
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.custom-modal-content .wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.custom-modal-content .wpcf7 form .cf7-campo-completo p span input {
  display: flex;
  height: 48px;
  min-width: 340px;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--2, #484F68);
  border-radius: 40px;
  background: var(--1a, #E5ECFF);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  border: none;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.custom-modal-content .wpcf7 form .cf7-campo-completo p span input::-moz-placeholder {
  color: var(--2, #484F68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.custom-modal-content .wpcf7 form .cf7-campo-completo p span input::placeholder {
  color: var(--2, #484F68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.custom-modal-content .wpcf7 form .cf7-campo-completo p span input:focus {
  outline: none;
  border: none;
}
.custom-modal-content .wpcf7 form .cf7-contenedor-boton p {
  position: relative;
}
.custom-modal-content .wpcf7 form .cf7-contenedor-boton p .wpcf7-spinner {
  position: absolute;
}
.custom-modal-content .wpcf7 form .cf7-contenedor-boton p input {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #D80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
}

/* Estilo para el botón de cerrar */
.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

@media (max-width: 800px) {
  .recurso-card {
    min-width: 200px;
  }
  .section-recursos-filtros .contenedor .contenedor-filtros-grid {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999999;
    height: 100vh;
    width: 90%;
    max-width: 300px;
    border-radius: 0 40px 40px 0;
    background: #FFF;
    padding: 80px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    flex-shrink: 0;
    align-self: stretch;
    justify-content: flex-start;
    transition: all 0.3s ease;
  }
  .section-recursos-filtros .contenedor .contenedor-filtros-grid.open {
    left: 0;
  }
  .section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item {
    width: 100%;
  }
  .section-recursos-filtros .contenedor .contenedor-filtros-grid .filtro-item select {
    width: 100%;
  }
  .section-recursos-filtros .contenedor .contenedor-filtros-movil {
    display: flex;
    cursor: pointer;
  }
  .section-recursos-filtros .contenedor {
    gap: 30px;
  }
}
.section-contacto-form {
  padding: 80px 0;
}
.section-contacto-form .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}
.section-contacto-form .contenedor .columna-izquierda-contacto {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  background: #fff;
  /* Sombra asulada */
  box-shadow: 0 60px 100px 0 rgba(0, 150, 255, 0.04), 0 -8px 20px 0 rgba(255, 255, 255, 0.9), 0 20px 40px 0 rgba(0, 100, 255, 0.08);
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item .cont-svg {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item .cont-dato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item .cont-dato .etiqueta {
  color: var(--2, #484f68);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item .cont-dato .valor {
  color: var(--1, #00519b);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}
.section-contacto-form .contenedor .columna-derecha-formulario h2 {
  color: var(--1, #00519b);
  /* Titulo 25 Bold */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 {
  width: 100%;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span {
  width: 100%;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span input, .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span textarea {
  display: flex;
  padding: 15px 20px;
  align-items: center;
  gap: 10px;
  border: none;
  flex: 1 0 0;
  border-radius: 20px;
  width: 100%;
  background: var(--1a, #e5ecff);
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span input::-moz-placeholder, .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span textarea::-moz-placeholder {
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span input::placeholder, .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span textarea::placeholder {
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span input:focus, .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-campo-completo p span textarea:focus {
  outline: none;
  border: none;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad {
  width: 100%;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad p span {
  width: 100%;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad p span input {
  display: flex;
  height: 48px;
  padding: 15px 20px;
  align-items: center;
  gap: 10px;
  border: none;
  flex: 1 0 0;
  border-radius: 20px;
  width: 100%;
  background: var(--1a, #e5ecff);
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad p span input::-moz-placeholder {
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad p span input::placeholder {
  color: var(--1, #00519b);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas .cf7-campo-mitad p span input:focus {
  outline: none;
  border: none;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-boton p {
  display: flex;
  align-items: flex-start;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-boton p input {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #D80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  border: none;
  transition: all 0.3s ease;
}
.section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-boton p input:hover {
  background: var(--4, #D80076);
  color: var(--3, #FFF);
}

.wpcf7-spinner {
  display: none;
}

@media (max-width: 800px) {
  .section-contacto-form .contenedor {
    flex-direction: column;
  }
  .section-contacto-form .contenedor .columna-izquierda-contacto {
    margin: auto;
  }
  .section-contacto-form .contenedor .columna-derecha-formulario {
    width: 100%;
  }
  .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-2-columnas {
    flex-direction: column;
  }
  .section-contacto-form .contenedor .columna-derecha-formulario .wpcf7 form .cf7-contenedor-boton p input {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }
  .section-contacto-form .contenedor .columna-izquierda-contacto .datos-contacto-grid .dato-item .cont-dato .valor {
    font-size: 14px;
  }
}
.pagina-legal {
  padding: 80px 0;
}
.pagina-legal .contenedor h2 {
  color: var(--1, #00519B);
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  margin-bottom: 15px;
}
.pagina-legal .contenedor p {
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-bottom: 15px;
}
.pagina-legal .contenedor ul li {
  list-style: disc;
  margin-left: 20px;
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-bottom: 15px;
}

.banner-gracias {
  position: relative;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-gracias img {
  position: absolute;
  width: 100%;
  height: 110%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.banner-gracias::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}
.banner-gracias .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 466px;
}
.banner-gracias .contenedor h2 {
  color: var(--3, #FFF);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
  margin-bottom: 15px;
}
.banner-gracias .contenedor p {
  color: var(--3, #FFF);
  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: 30px;
}
.banner-gracias .contenedor a {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--3, #FFF);
  color: var(--1, #00519B);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
}

@media (max-width: 800px) {
  .banner-gracias .contenedor a {
    padding: 10px 20px;
  }
}
.section-matriculate {
  padding: 80px 0;
  height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-matriculate .contenedor {
  display: flex;
  max-width: 628px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-matriculate .contenedor h2 {
  color: var(--4, #d80076);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
}
.section-matriculate .contenedor .opcion-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  align-self: stretch;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque {
  display: flex;
  width: 264px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 40px;
  border: 1px solid var(--1a, #e5ecff);
  background: #fff;
  height: -webkit-fill-available;
  transition: all 0.3s ease;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque .opcion-icon {
  display: flex;
  width: 130px;
  height: 130px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 200px;
  background: #f5fbff;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque .opcion-icon svg {
  height: 88px;
  flex-shrink: 0;
  aspect-ratio: 70.28/88;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque h3 {
  color: var(--2, #484f68);
  text-align: center;
  /* Titulo 20 Regular */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
  width: 160px;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque button {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--1, #00519b);
  /* 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;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque.nuevo {
  background: var(--1, #00519b);
}
.section-matriculate .contenedor .opcion-container .opcion-bloque.nuevo h3 {
  color: var(--3, #fff);
}
.section-matriculate .contenedor .opcion-container .opcion-bloque.nuevo button {
  color: var(--3, #fff);
  background: rgba(255, 255, 255, 0.1);
}
.section-matriculate .contenedor .opcion-container .opcion-bloque.nuevo .opcion-icon svg {
  position: relative;
  left: 8px;
}
.section-matriculate .contenedor .opcion-container .opcion-bloque.nuevo:hover {
  background: var(--1b, #01437f);
}
.section-matriculate .contenedor .opcion-container .opcion-bloque:hover {
  border: 1px solid var(--1a, #e5ecff);
  background: var(--1a, #e5ecff);
}
.section-matriculate .contenedor .opcion-container .opcion-bloque:hover button {
  opacity: 1;
  max-height: 80px;
  overflow: visible;
}

.section-pre-matricula {
  padding: 80px 0;
}
.section-pre-matricula .contenedor h2 {
  color: var(--1, #00519b);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
  margin-bottom: 10px;
}
.section-pre-matricula .contenedor .texto-pre-mat {
  color: var(--2, #484f68);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding-top: 80px;
}
.section-pre-matricula .contenedor .formulario-pre-mat h3 {
  color: var(--1, #00519b);
  /* Titulo 25 Regular */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
  padding-bottom: 5px;
  border-bottom: #00519b solid 1px;
  width: 100%;
  margin-bottom: 30px;
}
.section-pre-matricula .contenedor .formulario-pre-mat .apoderado-control {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.section-pre-matricula .contenedor .formulario-pre-mat #continuar_prematricula {
  display: flex;
  padding: 15px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #d80076);
  /* Titulo 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  margin: auto;
  transition: all 0.3s ease;
}
.section-pre-matricula .contenedor .formulario-pre-mat #continuar_prematricula:hover {
  background: var(--4, #D80076);
  color: #fff;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row {
  padding-bottom: 80px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon {
  display: flex;
  width: 500px;
  min-width: 310px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  background: #FFF;
  /* Sombra asulada */
  box-shadow: 0 60px 100px 0 rgba(0, 150, 255, 0.04), 0 -8px 20px 0 rgba(255, 255, 255, 0.9), 0 20px 40px 0 rgba(0, 100, 255, 0.08);
  margin: auto;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon label {
  color: var(--2, #484F68);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon #cupon_verification_message {
  color: var(--2, #484F68);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div input {
  display: flex;
  width: 310px;
  min-width: 310px;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #FFF;
  background: var(--1a, #E5ECFF);
  border: none;
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div input::-moz-placeholder {
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div input::placeholder {
  color: var(--2, #484F68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div input:focus {
  outline: none;
  border: none;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div button {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--1, #00519B);
  color: var(--3, #FFF);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row {
  display: flex;
  min-width: 310px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 30%;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row label {
  color: var(--2, #484f68);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  margin-left: 10px;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row input,
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row select {
  display: flex;
  min-width: 310px;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  border: 1px solid #fff;
  background: var(--1a, #e5ecff);
  color: var(--2, #484f68);
  -webkit-appearance: none; /* Chrome, Safari, Edge */
  -moz-appearance: none; /* Firefox */
  appearance: none;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  border: none;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row input::-moz-placeholder, .section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row select::-moz-placeholder {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row input::placeholder,
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row select::placeholder {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row input:focus,
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row select:focus {
  outline: none;
  border: none;
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row #verificar_dni_btn {
  display: flex;
  padding: 10px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  color: var(--1, #00519b);
  text-align: center;
  /* Texto 16 Medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 131.25% */
}
.section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row.form-row-full {
  width: 100%;
}

.titulo-switch {
  color: var(--2, #484F68);
  /* Texto 15 Italic Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}

.radio-options-container {
  display: flex;
  gap: 10px; /* Espacio entre SÍ y NO */
}

/* 1. Ocultar los radio buttons nativos */
.hidden-radio {
  display: none;
}

/* 2. Estilo base de la etiqueta */
.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--2, #484F68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}

/* 3. Crear el cuadro visual (custom-box) */
.custom-box {
  height: 10px;
  width: 10px;
  background-color: #ffffff; /* Fondo blanco */
  border: 2px solid #ccc; /* Borde gris */
  border-radius: 2px;
  margin-right: 8px; /* Espacio entre el texto y el cuadro */
  transition: all 0.2s ease-in-out;
}

/* 4. Estado: Cuando el radio está seleccionado, pintar el cuadro */
.hidden-radio:checked + .radio-label .custom-box {
  background-color: #0073aa; /* Fondo Azul */
  border-color: #0073aa; /* Borde Azul */
}

.alert-error-custom {
  color: var(--2, #484F68);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row {
    width: 48%;
  }
}
@media (max-width: 800px) {
  .section-matriculate .contenedor h2 {
    font-size: 25px;
  }
  .section-matriculate .contenedor .opcion-container {
    flex-direction: column;
    gap: 30px;
  }
  .section-matriculate .contenedor .opcion-container .opcion-bloque {
    width: 100%;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
  }
  .section-matriculate {
    height: auto;
  }
  .section-matriculate .contenedor {
    max-width: 95%;
  }
  .section-matriculate .contenedor .opcion-container .opcion-bloque button {
    position: absolute;
    bottom: 20%;
    right: 0;
    opacity: 1;
    max-height: 80px;
    overflow: visible;
    transform: translateX(-12%);
  }
  .section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row {
    width: 100%;
  }
  .section-pre-matricula .contenedor .formulario-pre-mat .woocommerce-form-row .form-row-coupon div {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.section-resumen-mat {
  padding: 80px 0;
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 h2 {
  color: var(--1, #00519b);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
  margin-bottom: 10px;
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .desc-resumen-mat {
  color: var(--2, #484f68);
  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: 80px;
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  gap: 15px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones .resumen-card {
  display: flex;
  width: 410px;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background: var(--1a, #e5ecff);
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones .resumen-card h3 {
  color: var(--1, #00519b);
  /* Texto 18 Regular */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: #00519b solid 1px;
  margin-bottom: 10px;
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones .resumen-card p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--2, #484f68);
  /* Texto 13 Regular */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones .resumen-card p span {
  text-align: end;
  color: var(--2, #484f68);
  /* Texto 13 Bold */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
}
.section-resumen-mat .contenedor form #order_review #payment {
  width: 1000px;
  max-width: 80%;
  margin: auto;
  background: none;
  border-radius: 0;
}
.section-resumen-mat .contenedor form #order_review #payment .place-order {
  display: flex;
}
.section-resumen-mat .contenedor form #order_review #payment .place-order .button.alt {
  float: none;
  margin: auto;
  width: 100%;
  display: flex;
  padding: 20px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  background: rgba(216, 0, 118, 0.05);
  color: var(--4, #d80076);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-resumen-mat .contenedor form #order_review #payment .place-order .button.alt:hover {
  background: var(--4, #d80076);
  color: #fff;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods {
  border-bottom: none;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method {
  position: relative;
  margin-bottom: 25px;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method label {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  padding-left: 5px;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method label img {
  display: none;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box::before {
  content: "";
  display: none;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: rgba(0, 81, 155, 0.05);
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box p {
  color: var(--2, #484f68);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box .mp-checkout-container {
  width: 100%;
}
.section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box .mp-checkout-container .mp-checkout-custom-container {
  background-color: transparent !important;
}

.wc_payment_method input[type=radio] {
  /* Hacemos que el input sea invisible */
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Estilo del DIV/SPAN personalizado (El cuadrado blanco) */
.wc_payment_method .custom-radio-square {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
  padding: 2.71px;
  justify-content: center;
  align-items: center;
  gap: 18.667px;
  aspect-ratio: 1/1;
  transition: all 0.2s ease;
  border-radius: 5px;
  border: 1px solid var(--2, #484f68);
}

/*
  ======================================================
  3. ESTADO SELECCIONADO (input:checked)
  ======================================================
*/
/* Aplicamos estilos al SPAN cuando el INPUT inmediatamente anterior está checked */
.wc_payment_method input[type=radio]:checked + .custom-radio-square {
  /* El cuadrado se llena de color azul */
  background: var(--1, #00519b);
}

.wc_payment_method input[type=radio]:checked ~ label {
  color: var(--1, #00519b) !important;
  /* Texto 16 Bold */
  font-family: Montserrat !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 21px !important; /* 131.25% */
}

@media (max-width: 800px) {
  .section-resumen-mat .contenedor form .col2-set .resumen-prematricula-col1 .resumen-secciones .resumen-card p {
    flex-wrap: wrap;
  }
  .section-resumen-mat .contenedor form #order_review #payment {
    max-width: 100%;
  }
  .section-resumen-mat .contenedor form #order_review #payment .wc_payment_methods .wc_payment_method .payment_box {
    padding: 0;
  }
  .section-resumen-mat .contenedor form #order_review #payment .place-order .button.alt {
    padding: 10px 20px;
  }
}
.section-final-order {
  padding: 80px 0 20px 0;
}
.section-final-order .contenedor {
  width: 966px;
}
.section-final-order .contenedor .thankyou-title {
  color: var(--1, #00519b);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 116.667% */
  margin-bottom: 10px;
}
.section-final-order .contenedor .thankyou-subtitle {
  color: var(--2, #484f68);
  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: 50px;
}
.section-final-order .contenedor .section-title {
  color: var(--1, #00519b);
  /* Titulo 25 Regular */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
  margin-bottom: 5px;
  width: 100%;
  border-bottom: 1px solid var(--1, #00519b);
  margin-bottom: 30px;
}
.section-final-order .contenedor .resumen-details-grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  gap: 44px 0px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.section-final-order .contenedor .resumen-details-grid p {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  color: var(--2, #484f68);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .resumen-details-grid p strong {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .order-details-summary .order-details-header {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--4, #d80076);
}
.section-final-order .contenedor .order-details-summary .order-details-header div {
  color: var(--3, #fff);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
}
.section-final-order .contenedor .order-details-summary .order-details-body {
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-item,
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-item .order-details-col,
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-discount .order-details-col {
  color: var(--2, #484f68);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-item .order-details-col.total,
.section-final-order .contenedor .order-details-summary .order-details-body .order-details-discount .order-details-col.total {
  color: var(--2, #484f68);
  text-align: right;
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .order-details-summary .order-details-footer .order-details-total {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 2px solid var(--1, #00519b);
}
.section-final-order .contenedor .order-details-summary .order-details-footer .order-details-total div {
  color: var(--1, #00519b);
  /* Titulo 25 Bold */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
}
.section-final-order .contenedor .volver-al-inicio {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(0, 81, 155, 0.05);
  width: -moz-fit-content;
  width: fit-content;
  color: var(--1, #00519B);
  /* Texto 16 Semibold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 131.25% */
  margin: 50px auto;
}
.section-final-order .contenedor .payment-instructions-box {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--1, #00519B);
}
.section-final-order .contenedor .payment-instructions-box h3 {
  color: var(--3, #FFF);
  /* Titulo 25 Regular */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
  border-bottom: #fff solid 1px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.section-final-order .contenedor .payment-instructions-box p {
  color: var(--3, #FFF);
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .payment-instructions-box .bank-details-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: stretch;
}
.section-final-order .contenedor .payment-instructions-box .bank-details-grid .bank-column {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 1 0 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.section-final-order .contenedor .payment-instructions-box .bank-details-grid .bank-column p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--3, #FFF);
  /* Texto 15 Bold */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
}
.section-final-order .contenedor .payment-instructions-box .bank-details-grid .bank-column p strong {
  color: var(--3, #FFF);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.3px;
}
.section-final-order .contenedor .payment-instructions-box .instruction-footer {
  color: var(--3, #FFF);
  text-align: center;
  /* Texto 16 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-final-order .contenedor .payment-instructions-box .instruction-footer strong {
  color: var(--3, #FFF);
  /* Texto 16 Bold */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}
.section-final-order .contenedor .payment-instructions-box .wp-whatsapp-button {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: #57D163;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: var(--3, #FFF);
  /* Titulo 18 Medium */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}

.woocommerce-checkout.woocommerce-order-pay .woocommerce {
  margin-top: 50px;
  height: 60vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: var(--1a, #e5ecff);
}
.woocommerce-checkout.woocommerce-order-pay .woocommerce .order_details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px auto;
  gap: 0px;
  justify-content: center;
}
.woocommerce-checkout.woocommerce-order-pay .woocommerce .order_details li {
  width: 200px !important;
  padding: 0 !important;
  float: none !important;
  border-right: none !important;
  margin: 0 20px 20px 20px !important;
  color: var(--1, #00519b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}
.woocommerce-checkout.woocommerce-order-pay .woocommerce .order_details li strong {
  color: var(--1, #00519b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}
.woocommerce-checkout.woocommerce-order-pay .woocommerce p {
  color: var(--2, #484f68);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 20px;
}
.woocommerce-checkout.woocommerce-order-pay .woocommerce .niubiz-btn {
  margin: 0 auto;
  display: flex;
  margin-bottom: 50px;
}


.checkout-terms-only{
	width: 1000px;
    max-width: 80%;
    margin: auto;
}

@media (max-width: 1100px) {
  .section-recursos-filtros .contenedor .recursos-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .section-final-order .contenedor .section-title {
    font-size: 20px;
  }
	.checkout-terms-only{
    max-width: 100%;
}
  .section-final-order .contenedor .resumen-details-grid {
    flex-direction: column;
  }
  .section-final-order .contenedor .resumen-details-grid p {
    min-width: 100%;
    max-width: 100%;
  }
  .section-final-order .contenedor .resumen-details-grid {
    gap: 30px;
  }
  .section-final-order .contenedor .payment-instructions-box {
    padding: 40px 20px;
  }
  .section-final-order .contenedor .payment-instructions-box .bank-details-grid {
    flex-direction: column;
    gap: 30px;
  }
  .section-final-order .contenedor .payment-instructions-box .bank-details-grid .bank-column p {
    flex-wrap: wrap;
    gap: 5px;
  }
  .section-recursos-filtros .contenedor .recursos-cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=app.css.map */