@charset "UTF-8";
/* --- URWGeometricThin.otf (Peso 100) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricThin.otf") format("opentype");
  font-weight: 100; /* Peso muy ligero, típicamente 'Thin' */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricExtraLight.otf (Peso 200) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricExtraLight.otf") format("opentype");
  font-weight: 200; /* Peso extra ligero */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricLight.otf (Peso 300) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricLight.otf") format("opentype");
  font-weight: 300; /* Peso ligero */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricRegular.otf (Peso 400) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricRegular.otf") format("opentype");
  font-weight: normal; /* Peso por defecto: 400 */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricMedium.otf (Peso 500) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricMedium.otf") format("opentype");
  font-weight: 500; /* Peso medio */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricSemiBold.otf (Peso 600) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricSemiBold.otf") format("opentype");
  font-weight: 600; /* Peso semi-negrita */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricBold.otf (Peso 700) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricBold.otf") format("opentype");
  font-weight: bold; /* Peso negrita: 700 */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricExtraBold.otf (Peso 800) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricExtraBold.otf") format("opentype");
  font-weight: 800; /* Peso extra negrita */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricBlack.otf (Peso 900) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricBlack.otf") format("opentype");
  font-weight: 900; /* Peso negro */
  font-style: normal;
  font-display: swap;
}
/* --- URWGeometricHeavy.otf (Peso 950 o 1000) --- */
@font-face {
  font-family: "URWGeometric";
  src: url("./fonts/URWGeometric/URWGeometricHeavy.otf") format("opentype");
  font-weight: 950; /* Opcional: un peso muy alto */
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-color-green: #2BD6BA;
  --bg-color-blue: #4988DE;
  --bg-color-blueblack: #242F40;
  --bg-color-white: #fff;
  --bg-color-gradient-green-blue: linear-gradient(180deg, #2BD6BA 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-blue: linear-gradient(180deg, #000 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-green: linear-gradient(180deg, #242F40 0%, #2BD6BA 100%);
  --header-height: 100px;
}
@media (max-width: 1050px) {
  :root {
    --header-height: 68px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "URWGeometric";
}

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 {
  max-width: 1350px;
  width: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
}

body {
  background: #FBFBFB;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (max-width: 800px) {
  .contenedor {
    width: 90%;
  }
  section {
    padding: 50px 0 !important;
  }
  section.section-opciones {
    padding: 20px 0 !important;
  }
  .banner-home {
    padding: 0 !important;
  }
  .banner-pages {
    padding: 0 !important;
  }
}
header {
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  top: 0;
  min-height: 90px;
  z-index: 99999;
}
header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}
header .contenedor .left a img {
  width: 295px;
  height: auto;
  aspect-ratio: 295/36.27;
}
header .contenedor .right.movil {
  cursor: pointer;
}
header .contenedor .right.movil {
  display: none;
}
header .contenedor .right .main-menu {
  display: flex;
  height: 33px;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
header .contenedor .right .main-menu .menu-item a {
  color: #0a5f5a;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
header .contenedor .right .main-menu .menu-item a:hover {
  color: var(--MEPSO-02, #53447a);
}
header .contenedor .right .main-menu .menu-item .sub-menu {
  position: fixed;
  left: 0;
  top: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
header .contenedor .right .main-menu .menu-item.servicios-menu {
  position: relative;
  margin-right: 16px;
}
header .contenedor .right .main-menu .menu-item.servicios-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  width: 10px;
  height: 10px;
  background: url(../../images/flecha.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
header .contenedor .right .main-menu .menu-item.servicios-menu.is-active::after {
  transform: translateY(-100%) rotate(-180deg);
}

.submenu-wrapper {
  position: fixed;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  top: 90px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}
.submenu-wrapper.is-active {
  max-height: 100%;
  opacity: 1;
}
.submenu-wrapper .contenedor.top {
  display: flex;
  height: 319px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  align-self: stretch;
}
.submenu-wrapper .contenedor.top .submenu-right {
  height: 100%;
  width: auto;
  border-radius: 20px;
  overflow: hidden;
  min-width: 386px;
}
.submenu-wrapper .contenedor.top .submenu-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.submenu-wrapper .contenedor.top .submenu-left ul {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap: 5px 10px;
  flex-wrap: wrap;
}
.submenu-wrapper .contenedor.top .submenu-left ul li {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  min-width: 49%;
  background: #fff;
  justify-content: space-between;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.submenu-wrapper .contenedor.top .submenu-left ul li img {
  width: 56px;
  height: 56px;
  background: #0a5f5a;
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.submenu-wrapper .contenedor.top .submenu-left ul li svg {
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.submenu-wrapper .contenedor.top .submenu-left ul li a {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  width: 100%;
}
.submenu-wrapper .contenedor.top .submenu-left ul li:hover {
  background: linear-gradient(0deg, rgba(83, 67, 121, 0.2) 0%, rgba(83, 67, 121, 0.2) 100%), #fff;
}
.submenu-wrapper .contenedor.top .submenu-left ul li:hover img {
  background: var(--MEPSO-02, #53447a);
}
.submenu-wrapper .contenedor.top .submenu-left ul li:hover svg {
  opacity: 1;
}
.submenu-wrapper .contenedor.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.submenu-wrapper .contenedor.bottom a {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--MEPSO-04, #f39017);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  transition: all 0.3s ease;
}
.submenu-wrapper .contenedor.bottom a:hover {
  background: var(--MEPSO-03, #95c568);
}

.menu-burger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  display: flex;
  height: 100%;
  transform: translateX(100%);
  width: 80%;
  border-radius: 40px 0 0 40px;
  background: #fff;
  display: none;
  padding: 60px 30px 30px 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.menu-burger .menu-movil-top {
  max-height: 70vh;
  overflow: auto;
  width: 100%;
}
.menu-burger #close-burger {
  position: absolute;
  top: 20px;
  right: 20px;
}
.menu-burger .menu-movil-top a {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
  padding-bottom: 13px;
  border-bottom: 1px solid #ececec;
  display: flex;
  width: 100%;
  margin-bottom: 13px;
}
.menu-burger .menu-movil-top .servicios-menu {
  position: relative;
}
.menu-burger .menu-movil-top .servicios-menu::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(../../images/flecha.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.menu-burger .menu-movil-top .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-burger .menu-movil-top .sub-menu li a {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  display: flex;
  min-width: 150px;
  max-width: 420px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
}
.menu-burger .menu-movil-top .sub-menu li a .menu-icono {
  width: 32px;
  height: 32px;
  background: #0a5f5a;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 5.714px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.menu-burger .menu-movil-top .sub-menu li a .menu-icono img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.menu-burger .menu-movil-top .sub-menu li a .menu-texto {
  color: #0a5f5a;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.menu-burger .menu-movil-top .sub-menu.active {
  max-height: 1000px;
  margin-bottom: 15px;
}
.menu-burger.open {
  transform: translateX(0);
}
.menu-burger .menu-movil-bottom .redes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.menu-burger .menu-movil-bottom .redes p {
  color: #9a9a9a;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.menu-burger .menu-movil-bottom .redes .cont-redes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.menu-burger .menu-movil-bottom .redes .cont-redes a {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 29.874px;
  height: 29.874px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #f39017 2px solid;
  padding: 5px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-burger .menu-movil-bottom .redes .cont-redes a svg path {
  transition: all 0.3s ease;
}
.menu-burger .menu-movil-bottom .redes .cont-redes a:hover {
  background: #95c568;
  border: #95c568 2px solid;
}
.menu-burger .menu-movil-bottom .redes .cont-redes a:hover svg path {
  fill: #fff;
}

@media (max-width: 1050px) {
  header .contenedor .right.movil {
    display: flex;
  }
  header .contenedor .right.desktop {
    display: none;
  }
  header .contenedor .left a img {
    width: 187px;
  }
  header {
    min-height: auto;
  }
  .menu-burger {
    display: flex;
  }
}
footer {
  display: flex;
  padding: 50px 0 20px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  border-top: 1px solid #ddd;
  background: #fff;
}
footer .contenedor.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 50px;
}
footer .contenedor.top .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}
footer .contenedor.top .left .logo {
  width: 134.1px;
  height: 67.954px;
  aspect-ratio: 134.1/67.95;
}
footer .contenedor.top .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contenedor.top .left .datos-empresa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}
footer .contenedor.top .left .datos-empresa a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
footer .contenedor.top .left .datos-empresa a .svg {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  aspect-ratio: 1/1;
}
footer .contenedor.top .right {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
footer .contenedor.top .right #menu-footer {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
footer .contenedor.top .right #menu-footer .menu-item {
  display: flex;
  width: 180px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
footer .contenedor.top .right #menu-footer .menu-item a {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  width: 100%;
  border-bottom: #0a5f5a 1px solid;
}
footer .contenedor.top .right #menu-footer .menu-item .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
footer .contenedor.top .right #menu-footer .menu-item .sub-menu .menu-item a {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  border-bottom: none;
  transition: all 0.3s ease;
}
footer .contenedor.top .right #menu-footer .menu-item .sub-menu .menu-item a:hover {
  color: var(--MEPSO-01, #0a5f5a);
  font-weight: 800;
}
footer .contenedor.top .right .redes {
  display: flex;
  width: 180px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
footer .contenedor.top .right .redes p {
  color: #9a9a9a;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
footer .contenedor.top .right .redes .cont-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 20px;
}
footer .contenedor.top .right .redes .cont-redes a {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 29.874px;
  height: 29.874px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #f39017 2px solid;
  padding: 5px;
  background: #fff;
  transition: all 0.3s ease;
}
footer .contenedor.top .right .redes .cont-redes a svg path {
  transition: all 0.3s ease;
}
footer .contenedor.top .right .redes .cont-redes a:hover {
  background: #95c568;
  border: #95c568 2px solid;
}
footer .contenedor.top .right .redes .cont-redes a:hover svg path {
  fill: #fff;
}
footer .contenedor.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding-top: 20px;
  border-top: 1px solid #53447a;
}
footer .contenedor.bottom .left {
  color: #374151;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
footer .contenedor.bottom .right {
  color: #374151;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
footer .contenedor.bottom .right strong {
  color: #374151;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 999999;
}

.modal.active {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal-inner {
  background: #fff;
}

#medico-modal .modal-inner {
  width: 100%;
  height: 90vh;
  position: relative;
  border-radius: 40px 40px 0 0;
  padding: 40px 0px;
}
#medico-modal .modal-inner button {
  position: absolute;
  top: 14px;
  right: 40px;
}
#medico-modal .modal-inner .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  height: 100%;
  overflow-y: auto;
}
#medico-modal .modal-inner .contenedor .left {
  min-width: 240px;
  width: 40%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
#medico-modal .modal-inner .contenedor .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#medico-modal .modal-inner .contenedor .right {
  width: 100%;
}
#medico-modal .modal-inner .contenedor .right h2 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
  margin-bottom: 10px;
  max-width: 420px;
}
#medico-modal .modal-inner .contenedor .right .datos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
  margin-bottom: 30px;
}
#medico-modal .modal-inner .contenedor .right .datos .dato span {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#medico-modal .modal-inner .contenedor .right .info {
  display: flex;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(83, 68, 122, 0.2) 0%, rgba(83, 68, 122, 0.2) 100%), #fff;
  width: 100%;
}
#medico-modal .modal-inner .contenedor .right .info .info-1 {
  width: 50%;
}
#medico-modal .modal-inner .contenedor .right .info .info-1 h4 {
  color: var(--MEPSO-02, #53447a);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
  margin-bottom: 15px;
}
#medico-modal .modal-inner .contenedor .right .info .info-1 p {
  padding-left: 12px;
  margin-bottom: 10px;
  position: relative;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#medico-modal .modal-inner .contenedor .right .info .info-1 p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}

.modal-overlay {
  overflow: hidden;
  position: fixed;
  inset: 0;
  background: rgba(130, 120, 160, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 840px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalFade 0.4s ease;
}

/* Animación */
@keyframes modalFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Botón cerrar */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 33px;
  height: 33px;
  z-index: 2;
}

/* Grid interno */
.modal-grid {
  display: flex;
  height: 410px;
}

/* Imagen */
.modal-image {
  width: 50%;
  position: relative;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Contenido */
.modal-content {
  width: 50%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.modal-content h2 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 116.667% */
}
.modal-content p {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

/* Botón */
.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 28px;
  background: #f7931e;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal-btn:hover {
  background: rgb(228.0901287554, 126.7167381974, 8.1098712446);
  transform: translateY(-2px);
}

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

/* Responsive */
@media (max-width: 800px) {
  .modal-grid {
    flex-direction: column;
    height: auto;
  }
  .modal-box {
    max-width: 600px;
  }
  .modal-image {
    height: 40vh;
    border-radius: 0 0 20px 20px;
    width: 100%;
  }
  .modal-content {
    width: 100%;
    padding: 30px 10px;
  }
  .modal-overlay {
    padding: 10px;
  }
  footer .contenedor.top,
  footer .contenedor.top .right,
  footer .contenedor.top .right #menu-footer {
    flex-direction: column;
  }
  footer .contenedor.top .left {
    width: 100%;
    align-items: center;
  }
  footer .contenedor.top .right #menu-footer .menu-item {
    width: 100%;
  }
  footer .contenedor.top .right {
    width: 100%;
  }
  footer .contenedor.top .right #menu-footer {
    width: 100%;
  }
  footer .contenedor.top .left .datos-empresa {
    align-items: center;
  }
  footer .contenedor.top .right .redes {
    width: 100%;
    align-items: center;
  }
  footer .contenedor.top .right .redes .cont-redes {
    justify-content: center;
  }
  footer .contenedor.bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  #medico-modal .modal-inner .contenedor {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    overflow: auto;
  }
  #medico-modal .modal-inner .contenedor .left {
    width: 100%;
    max-width: 400px;
    min-height: 332px;
    margin: 0 auto;
    min-width: 100px;
  }
  #medico-modal .modal-inner {
    padding: 50px 30px;
  }
  #medico-modal .modal-inner button {
    right: 14px;
  }
  #medico-modal .modal-inner .contenedor .right h2 {
    font-size: 30px;
    line-height: 1;
  }
  #medico-modal .modal-inner .contenedor .right .info {
    flex-direction: column;
  }
  #medico-modal .modal-inner .contenedor .right .info .info-1 {
    width: 100%;
  }
  .cookie-box {
    flex-direction: column !important;
    padding: 20px !important;
    gap: 20px !important;
  }
  .menu-item-type-custom > a {
    position: relative;
  }
  .menu-item-type-custom > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    background: url(../../images/flecha.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
  }
  .menu-item-type-custom.is-hide > a::after {
    transform: translateY(-100%) rotate(-180deg);
  }
  .menu-item-type-custom > .sub-menu {
    max-height: 1000px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .menu-item-type-custom.is-hide > .sub-menu {
    max-height: 0;
  }
}
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(130, 120, 160, 0.65);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 999999;
}

.cookie-cont h3 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}

.cookie-text p {
  color: var(--4, #374151);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.cookie-text p a {
  color: var(--4, #374151);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  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;
}

.cookie-box {
  background: #fff;
  width: 95%;
  max-width: 1350px;
  margin: auto;
  border-radius: 20px;
  padding: 20px 50px;
  margin-bottom: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  align-self: stretch;
}

.cookie-actions {
  display: flex;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

#accept-cookies {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0a5f5a;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  min-width: -moz-max-content;
  min-width: max-content;
  transition: all 0.3s ease;
}
#accept-cookies:hover {
  background: #53447a;
}

/* BLOQUEAR SCROLL */
body.cookies-locked {
  overflow: hidden;
}

.banner-home {
  background: #fff;
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide {
  position: relative;
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 325px;
  max-width: 86%;
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  z-index: 2;
  min-width: 440px;
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left h2 {
  color: #0a5f5a;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px; /* 110% */
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left p {
  color: #53447a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left a {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0a5f5a;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgb(255, 255, 255) 40%, rgba(249, 250, 251, 0) 70%, rgba(249, 250, 251, 0) 100%);
}
.banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body .splide__arrows .splide__arrow {
  border-radius: 40px;
  border: 0.5px solid var(--4, #374151);
  background: var(--3, #f9fafb);
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  transition: all;
}
body .splide__arrows .splide__arrow svg {
  width: 14px;
  flex-shrink: 0;
}
body .splide__arrows .splide__arrow svg path {
  fill: var(--4, #374151);
}

.section-opciones {
  padding: 80px 0;
}
.section-opciones .contenedor {
  display: flex;
  padding: 50px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: 0 2px 11.4px 0 rgba(0, 0, 0, 0.1);
}
.section-opciones .contenedor h3 {
  color: var(--MEPSO-02, #53447a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-opciones .contenedor .opciones-cont {
  display: flex;
  width: 100%;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.section-opciones .contenedor .opciones-cont .opcion a {
  display: flex;
  width: 230px;
  padding: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--MEPSO-01, #0a5f5a);
  background: #fff;
  transition: all 0.3s ease;
}
.section-opciones .contenedor .opciones-cont .opcion a p {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  transition: all 0.3s ease;
}
.section-opciones .contenedor .opciones-cont .opcion a svg path {
  transition: all 0.3s ease;
}
.section-opciones .contenedor .opciones-cont .opcion a:hover {
  background: #0a5f5a;
}
.section-opciones .contenedor .opciones-cont .opcion a:hover p {
  color: #fff;
}
.section-opciones .contenedor .opciones-cont .opcion a:hover svg path {
  fill: #fff;
}

.section-especialidades {
  padding: 80px 0;
  background: url(../../images/fondo_2.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.section-especialidades::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F9FAFB 0%, rgba(249, 250, 251, 0.938) 15.27%, rgba(249, 250, 251, 0.952) 80.06%, #F9FAFB 96.25%);
  z-index: 0;
}
.section-especialidades .contenedor {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.section-especialidades .contenedor h3 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-especialidades .contenedor p {
  color: var(--4, #374151);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-especialidades .contenedor .cont-especialidades {
  display: flex;
  width: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  background: #fff;
  justify-content: space-between;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a img {
  width: 76px;
  height: 76px;
  background: #0a5f5a;
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a svg {
  flex-shrink: 0;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a svg rect,
.section-especialidades .contenedor .cont-especialidades .servicio-card a svg path {
  transition: all 0.2s ease;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a .text {
  color: #53447a;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a .text p {
  color: #f39017;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a:hover .text p {
  max-height: 100px;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a:hover img {
  background: var(--MEPSO-02, #53447a);
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a:hover svg rect {
  fill: #95c568;
}
.section-especialidades .contenedor .cont-especialidades .servicio-card a:hover svg path {
  transform-box: fill-box; /* clave para SVG */
  transform-origin: center; /* rota desde el centro */
  transform: rotate(-45deg);
}

.servicio-card {
  min-width: 340px;
  max-width: 550px;
}
.servicio-card a {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  background: #fff;
  justify-content: space-between;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.servicio-card a img {
  width: 76px;
  height: 76px;
  background: #0a5f5a;
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.servicio-card a svg {
  flex-shrink: 0;
}
.servicio-card a svg rect,
.servicio-card a svg path {
  transition: all 0.2s ease;
}
.servicio-card a .text {
  color: #53447a;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.servicio-card a .text p {
  color: #f39017;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.servicio-card a:hover .text p {
  max-height: 100px;
}
.servicio-card a:hover img {
  background: var(--MEPSO-02, #53447a);
}
.servicio-card a:hover svg rect {
  fill: #95c568;
}
.servicio-card a:hover svg path {
  transform-box: fill-box; /* clave para SVG */
  transform-origin: center; /* rota desde el centro */
  transform: rotate(-45deg);
}

.section-servicios {
  padding: 80px 0;
  background: url(../../images/fondo_1.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
.section-servicios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 84.94%, #F9FAFB 100%);
  z-index: 0;
  pointer-events: none;
}
.section-servicios .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
.section-servicios .contenedor h3 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-servicios .contenedor .cont-servicios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  /* Si en la última fila quedan SOLO 2 */
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio {
  flex: 0 0 calc(33.333% - 16px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 294px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(55, 65, 81, 0) 69.01%, rgba(55, 65, 81, 0.3) 77.56%, #374151 100%);
  background-blend-mode: multiply;
  z-index: -1;
  opacity: 1;
  transition: all 0.3s ease;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(181deg, rgba(83, 68, 122, 0) -15.95%, #53447a 99.35%);
  background-blend-mode: multiply;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  z-index: -2;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio .title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio .title h4 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio .title svg {
  flex-shrink: 0;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio .title svg path,
.section-servicios .contenedor .cont-servicios .cuadro-servicio .title svg rect {
  transition: all 0.3s ease;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio p {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  align-self: stretch;
  width: 70%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover::before {
  opacity: 0;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover::after {
  opacity: 1;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover img {
  transform: scale(1.1);
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover p {
  max-height: 200px;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover .title svg rect {
  fill: #95c568;
  fill-opacity: 1;
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:hover .title svg path {
  transform-box: fill-box; /* clave para SVG */
  transform-origin: center; /* rota desde el centro */
  transform: rotate(-45deg);
}
.section-servicios .contenedor .cont-servicios .cuadro-servicio:nth-last-child(2):nth-child(3n+1),
.section-servicios .contenedor .cont-servicios .cuadro-servicio:nth-last-child(1):nth-child(3n+2) {
  flex: 0 0 calc(50% - 12px);
}

.section-articulos .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-articulos .contenedor .head {
  display: flex;
  max-width: 540px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.section-articulos .contenedor .head h3 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-articulos .contenedor .head p {
  color: #374151;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-articulos .contenedor .cont-articulos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-articulos .contenedor .cont-articulos .articulo-card a {
  display: flex;
  width: 360px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid rgba(10, 95, 90, 0.1);
  background: #fff;
  transition: all 0.3s ease;
}
.section-articulos .contenedor .cont-articulos .articulo-card a .img {
  width: 100%;
  height: 168px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.section-articulos .contenedor .cont-articulos .articulo-card a .img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, rgba(255, 255, 255, 0.35) 48.81%, rgba(255, 255, 255, 0) 98.07%);
  background-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-articulos .contenedor .cont-articulos .articulo-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.section-articulos .contenedor .cont-articulos .articulo-card a .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-articulos .contenedor .cont-articulos .articulo-card a .content h4 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.section-articulos .contenedor .cont-articulos .articulo-card a .content p {
  color: var(--4, #374151);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-articulos .contenedor .cont-articulos .articulo-card a:hover {
  border: 1px solid rgba(10, 95, 90, 0.3);
  background: #fff;
  /* Sombra suave */
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.section-articulos .contenedor .cont-articulos .articulo-card a:hover .img::after {
  opacity: 1;
}
.section-articulos .contenedor .cont-articulos .articulo-card a:hover .img img {
  transform: scale(1.1);
}

.redirigir {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--MEPSO-04, #f39017);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.redirigir:hover {
  background: var(--MEPSO-03, #95c568);
}
.redirigir svg {
  flex-shrink: 0;
}

.section-promociones {
  background: url(../../images/fondo_1.png);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}
.section-promociones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 94.94%, #F9FAFB 100%);
  z-index: 0;
  pointer-events: none;
}
.section-promociones .contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.section-promociones .contenedor h3 {
  color: #0a5f5a;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-promociones .contenedor .cont-promociones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-promociones .contenedor .cont-promociones .promo-card a {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img {
  position: relative;
  height: 168px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, #fff 98.07%);
  background-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img .badge {
  position: absolute;
  top: 12px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0 10px 10px 20px;
  background: var(--MEPSO-01, #0a5f5a);
  z-index: 2;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img .badge .categoria {
  display: flex;
  padding: 1px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 0 5px 5px 20px;
  background: var(--MEPSO-03, #95c568);
  color: var(--3, #f9fafb);
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 150% */
  padding: 4px 10px;
}
.section-promociones .contenedor .cont-promociones .promo-card a .img .badge .precio {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  padding: 5px 10px;
}
.section-promociones .contenedor .cont-promociones .promo-card a .content {
  display: flex;
  height: 109px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.section-promociones .contenedor .cont-promociones .promo-card a .content .title {
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.section-promociones .contenedor .cont-promociones .promo-card a:hover {
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.section-promociones .contenedor .cont-promociones .promo-card a:hover .img::after {
  opacity: 1;
}
.section-promociones .contenedor .cont-promociones .promo-card a:hover .img img {
  transform: scale(1.1);
}

.section-reserva-cita {
  margin: 80px 0 0 0;
  position: relative;
  height: 331px;
  display: flex;
  align-items: flex-end;
}
.section-reserva-cita::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #f9fafb 4.81%, #f9fafb 52.23%, rgba(249, 250, 251, 0) 120.65%);
  background-blend-mode: multiply;
  opacity: 1;
  transition: all 0.3s ease;
}
.section-reserva-cita .bg-right {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}
.section-reserva-cita .bg-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-reserva-cita .contenedor {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;
}
.section-reserva-cita .contenedor .right {
  height: 120%;
}
.section-reserva-cita .contenedor .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-reserva-cita .contenedor .left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.section-reserva-cita .contenedor .left h3 {
  color: #0A5F5A;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
}
.section-reserva-cita .contenedor .left p {
  color: #53447A;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.section-reserva-cita .contenedor .left a {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0A5F5A;
  color: #F9FAFB;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  transition: all 0.3s ease;
}
.section-reserva-cita .contenedor .left a:hover {
  background: #53447A;
}
.section-reserva-cita .contenedor .left a svg {
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .section-reserva-cita .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-reserva-cita {
    height: 100%;
  }
  .section-reserva-cita .contenedor .right {
    display: flex;
  }
  .section-reserva-cita .contenedor .left {
    align-items: center;
  }
  .section-reserva-cita .contenedor .left h3 {
    font-size: 30px;
    line-height: 1;
  }
  .section-reserva-cita .contenedor .left p {
    font-size: 15px;
  }
  .section-reserva-cita::before {
    background: linear-gradient(181deg, #f9fafb 4.81%, #f9fafb 52.23%, rgba(249, 250, 251, 0) 120.65%);
  }
  .section-articulos .contenedor .head h3 {
    font-size: 30px;
    line-height: 1;
  }
  .section-articulos .contenedor .cont-articulos .articulo-card a {
    width: 100%;
    max-width: 360px;
  }
  .section-servicios .contenedor h3 {
    font-size: 30px;
    line-height: 1;
  }
  .section-servicios .contenedor .cont-servicios {
    flex-direction: column;
  }
  .section-servicios .contenedor .cont-servicios a {
    min-height: 200px;
  }
  .section-promociones .contenedor .cont-promociones .promo-card a {
    width: 100%;
    max-width: 360px;
  }
  .servicio-card {
    width: 100%;
    min-width: 100%;
  }
  .section-especialidades .contenedor .cont-especialidades .servicio-card a .text {
    font-size: 18px;
  }
  .section-especialidades .contenedor .cont-especialidades .servicio-card a img {
    width: 60px;
    height: 60px;
  }
  .section-promociones .contenedor h3 {
    font-size: 30px;
    line-height: 1;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor {
    height: 400px;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right picture {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right img {
    height: 65%;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .right::before {
    background: linear-gradient(180deg, rgb(255, 255, 255) 40%, rgba(249, 250, 251, 0) 70%, rgba(249, 250, 251, 0) 100%);
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor {
    justify-content: center;
    align-items: center;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left {
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 100%;
    padding-top: 40px;
  }
  .banner-home .banner-splide .splide__track .splide__list .splide__slide .contenedor .left h2 {
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
  }
  .section-opciones .contenedor h3 {
    font-size: 30px;
    line-height: 1;
  }
  .section-opciones .contenedor .opciones-cont {
    gap: 15px;
  }
  .section-opciones .contenedor .opciones-cont .opcion a {
    width: 150px;
    padding: 15px 30px;
  }
  .section-opciones .contenedor .opciones-cont .opcion a p {
    font-size: 18px;
    line-height: 1;
  }
  .section-opciones .contenedor {
    padding: 20px 15px;
  }
  .servicio-card a {
    padding: 15px;
  }
  .servicio-card a .text {
    font-size: 18px;
    line-height: 1;
  }
  .section-reserva-cita {
    padding: 50px 0 0 0 !important;
  }
}
.banner-pages {
  position: relative;
  height: 219px;
}
.banner-pages.single {
  height: 301px;
}
.banner-pages.single .contenedor {
  justify-content: flex-start;
  gap: 70px;
}
.banner-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(249, 250, 251, 0) 90%, rgba(249, 250, 251, 0) 100%);
}
.banner-pages 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;
  z-index: -3;
}
.banner-pages .contenedor {
  height: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner-pages .contenedor .flecha {
  height: 100%;
  width: 50%;
  background: #f9fafb;
  clip-path: polygon(0% 0%, 75% 0%, 86% 50%, 75% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner-pages .contenedor .ruta {
  display: flex;
  align-items: center;
  gap: 5px;
}
.banner-pages .contenedor .ruta svg {
  flex-shrink: 0;
  width: 12px;
}
.banner-pages .contenedor .ruta .woocommerce-breadcrumb {
  color: var(--4, #374151);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 15px; /* 125% */
}
.banner-pages .contenedor .ruta .woocommerce-breadcrumb a {
  color: var(--4, #374151);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
}
.banner-pages .contenedor .titulo {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.section-quienes-somos {
  padding: 80px 0;
  display: flex;
}
.section-quienes-somos .contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 69px;
}
.section-quienes-somos .contenedor .left {
  border-radius: 20px;
  overflow: hidden;
  height: 90%;
  max-width: 40%;
  width: 40%;
}
.section-quienes-somos .contenedor .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-quienes-somos .contenedor .right {
  position: relative;
  padding: 30px 30px 30px 0;
  max-width: 650px;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex-shrink: 0;
  height: 100%;
  justify-content: center;
}
.section-quienes-somos .contenedor .right .flecha {
  height: 100%;
  width: 90%;
  background: #f9fafb;
  clip-path: polygon(0% 0%, 75% 0%, 86% 50%, 75% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section-quienes-somos .contenedor .right h3 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-quienes-somos .contenedor .right .texto {
  color: var(--4, #374151);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}

.section-promesa-valor {
  padding: 80px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.section-promesa-valor img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.08;
}
.section-promesa-valor .head {
  display: flex;
  width: 730px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 90%;
  margin: auto;
}
.section-promesa-valor .head h3 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-promesa-valor .head p {
  color: var(--4, #374151);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-promesa-valor .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex: 2;
  width: 100%;
  max-width: 100%;
}
.section-promesa-valor .contenedor .mision,
.section-promesa-valor .contenedor .vision {
  position: relative;
  height: 285px;
  max-width: 650px;
  display: flex;
  padding-right: 100px;
  padding-left: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}
.section-promesa-valor .contenedor .mision .flecha,
.section-promesa-valor .contenedor .vision .flecha {
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(83, 68, 122, 0.1) 0%, rgba(83, 68, 122, 0.1) 100%), #fff;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section-promesa-valor .contenedor .mision h4,
.section-promesa-valor .contenedor .vision h4 {
  color: var(--MEPSO-02, #53447a);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-promesa-valor .contenedor .mision .texto,
.section-promesa-valor .contenedor .vision .texto {
  color: var(--4, #374151);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-promesa-valor .contenedor .vision {
  padding-left: 100px;
  padding-right: 50px;
}
.section-promesa-valor .contenedor .vision .flecha {
  transform: rotate(180deg);
  left: auto;
  right: 0;
}

.section-proposito {
  padding: 80px 0;
  display: flex;
}
.section-proposito .contenedor {
  display: flex;
  align-items: center;
  gap: 69px;
  max-width: 1350px;
}
.section-proposito .contenedor .proposito-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section-proposito .contenedor .proposito-texto h2 {
  color: var(--MEPSO-02, #53447a);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-proposito .contenedor .proposito-texto p {
  color: var(--4, #374151);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-proposito .contenedor .proposito-imagen {
  border-radius: 20px;
  overflow: hidden;
}
.section-proposito .contenedor .proposito-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-valores {
  padding: 80px 0;
  background: url(../../images/fondo_3.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
.section-valores::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F9FAFB 0%, rgba(249, 250, 251, 0.9) 18.05%, rgba(249, 250, 251, 0.93) 82.5%, #F9FAFB 96.25%);
  z-index: 0;
  pointer-events: none;
}
.section-valores .contenedor {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-valores .contenedor .valores-header h2 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-valores .contenedor .valores-lista {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-valores .contenedor .valores-lista .valor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  max-width: 220px;
  min-width: 180px;
}
.section-valores .contenedor .valores-lista .valor-item .valor-icono {
  width: 151px;
  height: 151px;
  border-radius: 20px;
  border: 1px solid var(--MEPSO-01, #0a5f5a);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.section-valores .contenedor .valores-lista .valor-item .valor-icono img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-valores .contenedor .valores-lista .valor-item .valor-titulo {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 125% */
  margin-bottom: 8px;
}
.section-valores .contenedor .valores-lista .valor-item .valor-descripcion {
  color: var(--4, #374151);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.section-elegirnos {
  padding: 80px 0;
}
.section-elegirnos .contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
}
.section-elegirnos .contenedor .elegirnos-header h2 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}
.section-elegirnos .contenedor .elegirnos-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: stretch;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-imagen {
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-icono {
  width: 83px;
  height: 83px;
  background: var(--MEPSO-02, #53447a);
  border-radius: 20px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-icono img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-texto h3 {
  color: var(--MEPSO-01, #0A5F5A);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-texto p {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

@media (max-width: 800px) {
  .banner-pages {
    height: 184px !important;
  }
  .banner-pages.single .contenedor {
    gap: 20px;
  }
  .banner-pages .contenedor .flecha {
    width: 70%;
  }
  .banner-pages .contenedor .titulo {
    font-size: 30px;
    gap: 0;
  }
  .section-quienes-somos .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-quienes-somos .contenedor .right {
    height: auto;
    padding: 0;
    width: 100%;
  }
  .section-quienes-somos .contenedor .left {
    max-width: 100%;
    width: 100%;
  }
  .section-quienes-somos .contenedor .right h3 {
    font-size: 30px;
    line-height: 1;
  }
  .section-promesa-valor .head h3 {
    font-size: 30px;
  }
  .section-promesa-valor .contenedor {
    flex-direction: column;
  }
  .section-promesa-valor .contenedor .mision, .section-promesa-valor .contenedor .vision {
    padding: 40px;
  }
  .section-promesa-valor .contenedor .vision {
    padding-left: 100px;
  }
  .section-promesa-valor .contenedor .mision h4, .section-promesa-valor .contenedor .vision h4 {
    font-size: 30px;
    line-height: 1;
  }
  .section-proposito .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-proposito .contenedor .proposito-texto h2 {
    font-size: 30px;
    line-height: 1;
  }
  .section-valores .contenedor .valores-lista .valor-item .valor-icono {
    width: 115px;
    height: 115px;
  }
  .section-valores .contenedor .valores-header h2 {
    font-size: 30px;
    line-height: 1;
  }
  .section-elegirnos .contenedor .elegirnos-contenido {
    flex-direction: column;
    gap: 30px;
  }
  .section-elegirnos .contenedor .elegirnos-contenido .elegirnos-imagen {
    height: 365px;
    width: 100%;
  }
  .section-elegirnos .contenedor .elegirnos-contenido .elegirnos-lista .elegirnos-item .elegirnos-icono {
    width: 63px;
    height: 63px;
  }
  .section-elegirnos .contenedor .elegirnos-header h2 {
    font-size: 30px;
    line-height: 1;
  }
}
.section-all-especialidades {
  padding: 80px 0;
}
.section-all-especialidades .contenedor .cont-especialidades {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 25px 50px;
  flex-wrap: wrap;
}

.bloques-info {
  padding: 80px 0;
}
.bloques-info .contenedor {
  display: flex;
  align-items: center;
  gap: 69px;
  align-self: stretch;
}
.bloques-info .contenedor.reverse {
  flex-direction: row-reverse;
}
.bloques-info .contenedor .bloque-imagen {
  width: 45%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}
.bloques-info .contenedor .bloque-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloques-info .contenedor .bloque-contenido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
}
.bloques-info .contenedor .bloque-contenido h3 {
  color: var(--MEPSO-01, #0A5F5A);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
}
.bloques-info .contenedor .bloque-contenido .editor {
  color: var(--4, #374151);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.bloques-info .contenedor .bloque-contenido .editor ul li {
  list-style: disc;
  margin-left: 20px;
}

@media (max-width: 800px) {
  .bloques-info .contenedor {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .bloques-info .contenedor.reverse {
    flex-direction: column-reverse;
  }
  .bloques-info .contenedor .bloque-imagen {
    width: 100%;
    height: 280px;
  }
  .bloques-info {
    padding: 50px 0 0 0;
  }
}
.servicios-slider {
  padding: 80px 0;
}
.servicios-slider .contenedor .splide__pagination {
  bottom: -2em;
}
.servicios-slider .contenedor .splide__pagination .splide__pagination__page {
  background: #269F8B;
  opacity: 0.5;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.servicios-slider .contenedor .splide__pagination .splide__pagination__page.is-active {
  background: #0A5F5A;
  opacity: 1;
  height: 7px;
  width: 7px;
  transform: none;
}
.servicios-slider .contenedor .splide__track ul li .servicio-item {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), #FFF;
  /* Sombra suave */
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.servicios-slider .contenedor .splide__track ul li .servicio-item .icono {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: var(--MEPSO-01, #0a5f5a);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.servicios-slider .contenedor .splide__track ul li .servicio-item .icono img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.servicios-slider .contenedor .splide__track ul li .servicio-item .titulo {
  color: var(--MEPSO-01, #0A5F5A);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.servicios-slider .contenedor .splide__track ul li .servicio-item:hover {
  background: linear-gradient(0deg, rgba(83, 67, 121, 0.2) 0%, rgba(83, 67, 121, 0.2) 100%), #FFF;
  /* Sombra suave */
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.servicios-slider .contenedor .splide__track ul li .servicio-item:hover .titulo {
  color: var(--MEPSO-02, #53447A);
}
.servicios-slider .contenedor .splide__track ul li .servicio-item:hover .icono {
  background: var(--MEPSO-02, #53447A);
}

.section-buscador-productos {
  padding: 80px 0;
}
.section-buscador-productos .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-buscador-productos .contenedor .buscador {
  width: 100%;
}
.section-buscador-productos .contenedor .buscador input {
  margin: auto;
  display: flex;
  width: 450px;
  height: 42px;
  padding: 11px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(83, 68, 122, 0.05);
  color: var(--MEPSO-02, #53447a);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  max-width: 100%;
}
.section-buscador-productos .contenedor .buscador input::-moz-placeholder {
  color: var(--MEPSO-02, #53447a);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-buscador-productos .contenedor .buscador input::placeholder {
  color: var(--MEPSO-02, #53447a);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-buscador-productos .contenedor .buscador input:focus {
  outline: none;
  border: 1px solid #fff;
}
.section-buscador-productos .contenedor .cont-promociones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img {
  position: relative;
  height: 168px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, #fff 98.07%);
  background-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img .badge {
  position: absolute;
  top: 12px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0 10px 10px 20px;
  background: var(--MEPSO-01, #0a5f5a);
  z-index: 2;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img .badge .categoria {
  display: flex;
  padding: 1px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 0 5px 5px 20px;
  background: var(--MEPSO-03, #95c568);
  color: var(--3, #f9fafb);
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 150% */
  padding: 4px 10px;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .img .badge .precio {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  padding: 5px 10px;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .content {
  display: flex;
  height: 109px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a .content .title {
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a:hover {
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a:hover .img::after {
  opacity: 1;
}
.section-buscador-productos .contenedor .cont-promociones .promo-card a:hover .img img {
  transform: scale(1.1);
}

.cont-promociones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
  flex-wrap: wrap;
}
.cont-promociones .promo-card a {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cont-promociones .promo-card a .img {
  position: relative;
  height: 168px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.cont-promociones .promo-card a .img::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, #fff 98.07%);
  background-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s ease;
}
.cont-promociones .promo-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.cont-promociones .promo-card a .img .badge {
  position: absolute;
  top: 12px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0 10px 10px 20px;
  background: var(--MEPSO-01, #0a5f5a);
  z-index: 2;
}
.cont-promociones .promo-card a .img .badge .categoria {
  display: flex;
  padding: 1px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 0 5px 5px 20px;
  background: var(--MEPSO-03, #95c568);
  color: var(--3, #f9fafb);
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 150% */
  padding: 4px 10px;
}
.cont-promociones .promo-card a .img .badge .precio {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  padding: 5px 10px;
}
.cont-promociones .promo-card a .content {
  display: flex;
  height: 109px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.cont-promociones .promo-card a .content .title {
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.cont-promociones .promo-card a:hover {
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
}
.cont-promociones .promo-card a:hover .img::after {
  opacity: 1;
}
.cont-promociones .promo-card a:hover .img img {
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .section-buscador-productos .contenedor .cont-promociones .promo-card a {
    width: 100%;
    max-width: 360px;
  }
}
.section-single-product {
  padding: 80px 0;
}
.section-single-product .contenedor {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 69px;
}
.section-single-product .contenedor .ruta {
  position: absolute;
  top: -40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-single-product .contenedor .ruta .woocommerce-breadcrumb {
  margin: 0;
  color: #9a9a9a;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 15px; /* 125% */
}
.section-single-product .contenedor .ruta .woocommerce-breadcrumb a {
  color: #9a9a9a;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
}
.section-single-product .contenedor .left {
  width: 46%;
  border-radius: 20px;
  position: relative;
  /* Sombra suave */
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
}
.section-single-product .contenedor .left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-single-product .contenedor .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-single-product .contenedor .left .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0 10px 10px 20px;
  background: var(--MEPSO-01, #0a5f5a);
}
.section-single-product .contenedor .left .badge .categoria {
  display: flex;
  padding: 1px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 0 5px 5px 20px;
  background: var(--MEPSO-03, #95c568);
  color: var(--3, #f9fafb);
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 150% */
}
.section-single-product .contenedor .left .badge .precio {
  color: #fff;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  padding: 4px 10px;
}
.section-single-product .contenedor .right {
  width: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.section-single-product .contenedor .right .titulo, .section-single-product .contenedor .right .precio {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}
.section-single-product .contenedor .right .thecontent {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section-single-product .contenedor .right .thecontent ul li {
  list-style: disc;
  margin-left: 20px;
}
.section-single-product .contenedor .right .thecontent p a {
  color: var(--MEPSO-02, #53447A);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
}

.promociones-sugeridas {
  padding: 80px 0;
}
.promociones-sugeridas .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.promociones-sugeridas .contenedor .titulo-seccion {
  color: var(--MEPSO-01, #0A5F5A);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px; /* 112.5% */
}

@media (max-width: 800px) {
  .section-single-product .contenedor {
    flex-direction: column;
    gap: 30px;
  }
  .section-single-product .contenedor .left {
    width: 100%;
  }
  .section-single-product .contenedor .right {
    width: 100%;
  }
  .promociones-sugeridas .contenedor .titulo-seccion {
    font-size: 30px;
    line-height: 1;
  }
  .cont-promociones .promo-card a {
    width: 100%;
    max-width: 360px;
  }
}
.staff-medicos {
  padding: 80px 0;
}
.staff-medicos .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.staff-medicos .contenedor .buscador {
  display: flex;
  height: 43px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.staff-medicos .contenedor .buscador #filtro-especialidad {
  display: flex;
  width: 366px;
  padding: 10px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #fff;
  border: none;
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.staff-medicos .contenedor .buscador #filtro-especialidad:focus {
  outline: none;
  border: none;
}
.staff-medicos .contenedor .buscador #filtro-especialidad::-moz-placeholder {
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.staff-medicos .contenedor .buscador #filtro-especialidad::placeholder {
  color: #0a5f5a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.staff-medicos .contenedor .buscador #limpiar-filtro {
  color: var(--MEPSO-04, #f39017);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  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;
}
.staff-medicos .contenedor #medicos-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 50px 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.staff-medicos .contenedor #medicos-list .medico-card {
  height: 374px;
  min-width: 270px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 15px;
  align-self: stretch;
}
.staff-medicos .contenedor #medicos-list .medico-card h3 {
  color: var(--MEPSO-02, #53447a);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.staff-medicos .contenedor #medicos-list .medico-card p {
  color: var(--MEPSO-01, #0A5F5A);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.staff-medicos .contenedor #medicos-list .medico-card button {
  color: var(--MEPSO-04, #f39017);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 125% */
  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;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.staff-medicos .contenedor #medicos-list .medico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 18.83%, #fff 73.08%);
  z-index: -1;
}
.staff-medicos .contenedor #medicos-list .medico-card 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;
}
.staff-medicos .contenedor #medicos-list .medico-card:hover button {
  max-height: 200px;
}
.staff-medicos .contenedor #medicos-list .medico-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .staff-medicos .contenedor .buscador {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
  }
  .staff-medicos .contenedor .buscador #filtro-especialidad {
    width: auto;
  }
  .staff-medicos .contenedor #medicos-list .medico-card {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 270px;
  }
}
.posts-ajax {
  padding: 80px 0;
}
.posts-ajax .contenedor {
  display: flex;
  align-items: flex-start;
  gap: 49px;
}
.posts-ajax .contenedor .posts-sidebar {
  display: flex;
  width: 267px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.posts-ajax .contenedor .posts-sidebar h3 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 125% */
}
.posts-ajax .contenedor .posts-sidebar #posts-categorias {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.posts-ajax .contenedor .posts-sidebar #posts-categorias li {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #9a9a9a;
}
.posts-ajax .contenedor .posts-sidebar #posts-categorias li button {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.posts-ajax .contenedor .posts-sidebar #posts-categorias li button.active {
  color: var(--MEPSO-02, #53447a);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.posts-ajax .contenedor .posts-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex: 1 0 0;
}
.posts-ajax .contenedor .posts-content .posts-grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  gap: 25px;
  align-self: stretch;
  flex-wrap: wrap;
  margin: auto;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card {
  display: flex;
  min-width: 340px;
  max-width: 450px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid rgba(10, 95, 90, 0.1);
  background: #fff;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .img {
  width: 100%;
  height: 168px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, rgba(255, 255, 255, 0.35) 48.81%, rgba(255, 255, 255, 0) 98.07%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .content h3 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card a .content p {
  color: var(--4, #374151);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card:hover a .img img {
  transform: scale(1.1);
}
.posts-ajax .contenedor .posts-content .posts-grid .post-card:hover a .img::before {
  opacity: 1;
}
.posts-ajax .contenedor .posts-content .ajax-pagination {
  display: flex;
  align-items: center;
  gap: 14px;
}
.posts-ajax .contenedor .posts-content .ajax-pagination .pag-number {
  color: var(--4, #374151);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  transition: all 0.3s ease;
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: #fff;
}
.posts-ajax .contenedor .posts-content .ajax-pagination .pag-number.active {
  background: var(--MEPSO-02, #53447a);
  color: #fff;
}
.posts-ajax .contenedor .posts-content .ajax-pagination .pag-arrow {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 0.5px solid var(--480, rgba(55, 65, 81, 0.8));
  background: #fff;
  transition: all 0.3s ease;
}
.posts-ajax .contenedor .posts-content .ajax-pagination .pag-arrow:hover {
  background: rgba(83, 68, 122, 0.2);
}

.newsletter {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.newsletter-contenido {
  position: relative;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.newsletter-contenido .newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}
.newsletter-contenido .newsletter-form h2 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
}
.newsletter-contenido .newsletter-form p {
  color: var(--MEPSO-02, #53447a);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.newsletter-contenido .newsletter-form .formulario form > p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.newsletter-contenido .newsletter-form .formulario form > p span input {
  display: flex;
  width: 400px;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #fff;
  border: none;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.newsletter-contenido .newsletter-form .formulario form > p span input::-moz-placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.newsletter-contenido .newsletter-form .formulario form > p span input::placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.newsletter-contenido .newsletter-form .formulario form > p span input:focus {
  outline: none;
  border: none;
}
.newsletter-contenido .newsletter-form .formulario form > p .wpcf7-submit {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0a5f5a;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  border: none;
  transition: all 0.3s ease;
}
.newsletter-contenido .newsletter-form .formulario form > p .wpcf7-submit:hover {
  background: #53447a;
}
.newsletter-contenido .newsletter-form .formulario form > p .wpcf7-spinner {
  position: absolute;
}
.newsletter-contenido .newsletter-success {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}
.newsletter-contenido .newsletter-success h2 {
  color: var(--MEPSO-01, #0a5f5a);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
}
.newsletter-contenido .newsletter-success p {
  color: var(--MEPSO-02, #53447a);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

.newsletter-success {
  display: none;
}

#btn-categorias {
  display: none;
}

#btn-close-categorias {
  display: none;
}

@media (max-width: 800px) {
  .posts-ajax .contenedor {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .newsletter-contenido .newsletter-form h2 {
    font-size: 30px;
    line-height: 1;
  }
  .newsletter-contenido .newsletter-form .formulario form > p {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .newsletter-contenido .newsletter-form .formulario form > p span input {
    width: 100%;
    max-width: 400px;
  }
  .posts-ajax .contenedor .posts-content .posts-grid .post-card {
    width: 100%;
    max-width: 450px;
    min-width: 220px;
  }
  #btn-categorias {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--MEPSO-01, #0a5f5a);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 125% */
  }
  #btn-close-categorias {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .posts-ajax .contenedor .posts-sidebar {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    position: relative;
  }
  .posts-ajax .contenedor .posts-sidebar.active {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 40px 40px 0 0;
    background: #fff;
    z-index: 999999;
    padding: 50px 30px;
    opacity: 1;
    max-height: 1000px;
  }
  .newsletter-contenido .newsletter-success h2 {
    font-size: 30px;
    line-height: 1;
  }
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#medicos-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
#medicos-pagination .pag-arrow {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 40px;
  border: 0.5px solid var(--480, rgba(55, 65, 81, 0.8));
  background: #FFF;
  transition: all 0.3s ease;
}
#medicos-pagination .pag-arrow:hover {
  background: rgba(83, 68, 122, 0.2);
}
#medicos-pagination .pag-number {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: var(--4, #374151);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
#medicos-pagination .pag-number.active {
  background: var(--MEPSO-02, #53447A);
  color: #fff;
}

.single-post {
  padding: 0 0 80px 0 !important;
}
.single-post .contenedor {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.single-post .contenedor .single-post_sidebar {
  display: flex;
  width: 312px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
.single-post .contenedor .single-post_sidebar .agenda-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  border-radius: 20px;
  background: #53447a;
  position: relative;
}
.single-post .contenedor .single-post_sidebar .agenda-card h3 {
  color: var(--3, #f9fafb);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.single-post .contenedor .single-post_sidebar .agenda-card p {
  color: var(--3, #f9fafb);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.single-post .contenedor .single-post_sidebar .contenido-nav {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  background: #fff;
}
.single-post .contenedor .single-post_sidebar .contenido-nav span {
  color: var(--4, #374151);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  position: relative;
  width: 100%;
}
.single-post .contenedor .single-post_sidebar .contenido-nav span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  background: url(../../images/flecha_bn.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.3s ease;
}
.single-post .contenedor .single-post_sidebar .contenido-nav ul {
  display: flex;
  padding-left: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.single-post .contenedor .single-post_sidebar .contenido-nav ul li {
  padding-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #4a4f69;
}
.single-post .contenedor .single-post_sidebar .contenido-nav ul li a {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.single-post .contenedor .single-post__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}
.single-post .contenedor .single-post__content h1 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}
.single-post .contenedor .single-post__content .single-post__featured {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 12/5;
  overflow: hidden;
}
.single-post .contenedor .single-post__content .single-post__featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post .contenedor .single-post__content p {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.single-post .contenedor .single-post__content .contenido-bloque {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.single-post .contenedor .single-post__content .contenido-bloque h2 {
  color: var(--MEPSO-02, #53447a);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.single-post .contenedor .single-post__content .contenido-bloque p {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.single-post .contenedor .single-post__content .contenido-bloque ul {
  margin-left: 20px;
}
.single-post .contenedor .single-post__content .contenido-bloque ul li {
  list-style: disc;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 5px;
}
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  aspect-ratio: 12/7;
}
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure img,
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure:only-child {
  grid-column: 1/-1;
  aspect-ratio: 12/5;
}
.single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure:nth-child(3):last-child {
  grid-column: 1/-1;
  aspect-ratio: 12/5;
}

.section-related-posts {
  padding: 80px 0;
}
.section-related-posts .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-related-posts .contenedor .section-title {
  color: var(--MEPSO-01, #0A5F5A);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 120% */
}
.section-related-posts .contenedor .related-posts-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  align-self: stretch;
}
.section-related-posts .contenedor .related-posts-grid .post-card {
  display: flex;
  min-width: 340px;
  max-width: 450px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid rgba(10, 95, 90, 0.1);
  background: #fff;
}
.section-related-posts .contenedor .related-posts-grid .post-card a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.section-related-posts .contenedor .related-posts-grid .post-card a .img {
  width: 100%;
  height: 168px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.section-related-posts .contenedor .related-posts-grid .post-card a .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(79deg, rgba(255, 255, 255, 0) -29.66%, rgba(255, 255, 255, 0.35) 48.81%, rgba(255, 255, 255, 0) 98.07%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-related-posts .contenedor .related-posts-grid .post-card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.section-related-posts .contenedor .related-posts-grid .post-card a .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-related-posts .contenedor .related-posts-grid .post-card a .content h3 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.section-related-posts .contenedor .related-posts-grid .post-card a .content p {
  color: var(--4, #374151);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.section-related-posts .contenedor .related-posts-grid .post-card:hover a .img img {
  transform: scale(1.1);
}
.section-related-posts .contenedor .related-posts-grid .post-card:hover a .img::before {
  opacity: 1;
}

@media (max-width: 800px) {
  .single-post > .contenedor {
    flex-direction: column-reverse;
  }
  .single-post .contenedor .single-post_sidebar {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .single-post .contenedor .single-post_sidebar .contenido-nav {
    display: none;
  }
  .section-related-posts .contenedor .related-posts-grid .post-card {
    width: 100%;
    min-width: 200px;
  }
  .single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .single-post .contenedor .single-post__content .contenido-bloque .contenido-bloque__galeria figure {
    max-height: 320px;
    margin: auto;
  }
}
.contacto-seccion {
  padding: 80px 0;
}
.contacto-seccion .contenedor {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  justify-content: center;
}
.contacto-seccion .contenedor .contacto-info {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  background: #fff;
  width: 330px;
}
.contacto-seccion .contenedor .contacto-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacto-seccion .contenedor .contacto-info .info-item .icon {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.contacto-seccion .contenedor .contacto-info .info-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.contacto-seccion .contenedor .contacto-info .info-item div .label {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto-seccion .contenedor .contacto-info .info-item div .value {
  color: var(--MEPSO-02, #53447a);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
}
.contacto-seccion .contenedor .contacto-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.contacto-seccion .contenedor .contacto-form h2 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 120% */
}
.contacto-seccion .contenedor .contacto-form .descripcion {
  color: var(--4, #374151);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.contacto-seccion .contenedor .contacto-form .formulario {
  width: 100%;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p {
  margin-bottom: 20px;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p .wpcf7-submit {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--MEPSO-04, #f39017);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  border: none;
  transition: all 0.3s ease;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p .wpcf7-submit:hover {
  background: var(--MEPSO-03, #95c568);
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p .wpcf7-spinner {
  width: -moz-fit-content;
  width: fit-content;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span {
  width: 100%;
  display: flex;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span input,
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span textarea {
  width: 100%;
  display: flex;
  padding: 15px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(83, 68, 122, 0.05);
  color: rgba(55, 65, 81, 0.5);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span input::-moz-placeholder, .contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span textarea::-moz-placeholder {
  color: rgba(55, 65, 81, 0.5);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span input::placeholder,
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span textarea::placeholder {
  color: rgba(55, 65, 81, 0.5);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span input:focus,
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form p span textarea:focus {
  outline: none;
  border: none;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form div p {
  display: flex;
  gap: 20px;
}
.contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form div p span {
  width: 50%;
}

@media (max-width: 800px) {
  .contacto-seccion .contenedor {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .contacto-seccion .contenedor .contacto-info {
    max-width: 330px;
    width: 100%;
  }
  .contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form div p {
    flex-direction: column;
  }
  .contacto-seccion .contenedor .contacto-form .formulario .wpcf7 form div p span {
    width: 100%;
  }
}
.gracias-contacto {
  height: 80vh;
  position: relative;
  min-height: 510px;
  overflow: hidden;
}
.gracias-contacto::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #FFF;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.gracias-contacto .fondo-gracias {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}
.gracias-contacto .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.gracias-contacto .contenedor .gracias-texto {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
  align-self: stretch;
}
.gracias-contacto .contenedor .gracias-texto .titulo {
  color: var(--MEPSO-01, #0A5F5A);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
}
.gracias-contacto .contenedor .gracias-texto .descripcion {
  color: var(--4, #374151);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.gracias-contacto .contenedor .gracias-texto .btn-gracias {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0A5F5A;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.gracias-contacto .contenedor .gracias-texto .btn-gracias:hover {
  background: #53447A;
}
.gracias-contacto .contenedor .gracias-imagen {
  width: 50%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.gracias-contacto .contenedor .gracias-imagen img {
  width: 100%;
}

@media (max-width: 800px) {
  .gracias-contacto .contenedor {
    flex-direction: column;
  }
  .gracias-contacto .contenedor .gracias-texto {
    width: 100%;
    padding-top: 30px;
  }
  .gracias-contacto .contenedor .gracias-imagen {
    width: 100%;
    height: auto;
  }
  .gracias-contacto .contenedor .gracias-texto .descripcion {
    font-size: 15px;
    line-height: 1;
  }
}
.section-legal {
  padding: 80px 0;
}
.section-legal .contenedor h2 {
  color: var(--MEPSO-01, #0a5f5a);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 125% */
}
.section-legal .contenedor p,
.section-legal .contenedor ul,
.section-legal .contenedor li {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 10px;
}
.section-legal .contenedor ul {
  margin-left: 20px;
}
.section-legal .contenedor ul li {
  list-style: disc;
}

.section-form-legal {
  padding-bottom: 80px;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones {
  padding: 35px 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  align-self: stretch;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .campo p span input {
  display: flex;
  width: 549px;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(83, 68, 122, 0.05);
  border: none;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .campo p span input:focus {
  outline: none;
  border: none;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .titulo-seccion {
  color: var(--MEPSO-02, #53447a);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 125% */
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos {
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span {
  width: 100%;
  display: flex;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span input,
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span textarea {
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(83, 68, 122, 0.05);
  border: none;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span input:focus,
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span textarea:focus {
  outline: none;
  border: none;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span input::-moz-placeholder, .section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span textarea::-moz-placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span input::placeholder,
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-campos p span textarea::placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 20px;
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p.nota {
  margin-bottom: 20px;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p span .campo-detalle {
  margin-top: 20px;
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(83, 68, 122, 0.05);
  border: none;
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  width: 100%;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p span .campo-detalle:focus {
  outline: none;
  border: none;
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p span .campo-detalle::-moz-placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .grupo-reclamo p span .campo-detalle::placeholder {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .aviso-legal {
  color: var(--4, #374151);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .acciones-formulario p input {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background: var(--MEPSO-04, #F39017);
  border: none;
  transition: all 0.3s ease;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .acciones-formulario p input:hover {
  background: var(--MEPSO-03, #95C568);
}

@media (max-width: 800px) {
  .section-form-legal .contenedor .wpcf7 form .libro-reclamaciones .campo p span input {
    width: 100%;
    max-width: 540px;
  }
  .section-form-legal .contenedor .wpcf7 form .libro-reclamaciones {
    padding: 20px;
    gap: 20px;
  }
}/*# sourceMappingURL=app.css.map */