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

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

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

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

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

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

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

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

.grid {
  display: grid;
}

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

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

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

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

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

.hidden {
  display: none;
}

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

main {
  position: relative;
  z-index: 1;
}

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

header {
  z-index: 9999;
  top: 0;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
}
header .cont-header {
  position: relative;
}
header .cont-header .top-menus-wrapper {
  display: flex;
  padding: 0 46px 0 50px;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  background: var(--4, #fff);
}
header .cont-header .top-menus-wrapper .ul_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 46px;
  padding: 10px 0;
}
header .cont-header .top-menus-wrapper .ul_menu li a {
  color: var(--1, #233676);
  text-align: center;
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
header .cont-header .top-menus-wrapper .ul_menu li a:hover {
  color: var(--2, #f3953e);
}
header .cont-header .navegador-principal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--1, #233676);
}
header .cont-header .navegador-principal .logo-burger {
  display: none;
}
header .cont-header .navegador-principal .top-menus-wrapper2 .ul_menu {
  /* ... (resto de estilos de ul_menu, sin cambios) ... */
  display: flex;
  padding: 20px 46px 20px 50px;
  padding-left: 178px;
  justify-content: flex-end;
  align-items: center;
  gap: 46px;
  align-self: stretch;
}
header .cont-header .navegador-principal .top-menus-wrapper2 .ul_menu li {
  min-width: -moz-max-content;
  min-width: max-content;
}
header .cont-header .navegador-principal .top-menus-wrapper2 .ul_menu li a {
  /* Color base (el --4 que asumo es blanco #fff) */
  color: var(--4, #fff);
  text-align: center;
  position: relative;
  opacity: 1;
  /* Base Text Styling */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 21px;
  /* APLICA LA TRANSICIÓN AQUÍ */
  /* Animamos el color y la transformación (scale) */
  transition: color 0.5s ease, transform 0.5s ease;
  /* Aseguramos que las transformaciones funcionen correctamente */
  display: inline-block;
  /* Esto es clave: hacemos que el origen del escalado sea el centro */
  transform-origin: center;
}
header .cont-header .navegador-principal .top-menus-wrapper2 .ul_menu li a:hover {
  /* Color de hover (el --2 que asumo es naranja #f3953e) */
  color: var(--2, #f3953e);
  /* APLICAMOS EL ESCALADO EN LUGAR DE CAMBIAR FONT-SIZE */
  /* Para pasar de 16px a 17px, el factor de escala es 17/16 ≈ 1.0625 */
  transform: scale(1.1);
  /* QUITAMOS FONT-SIZE Y LINE-HEIGHT DEL HOVER */
  /* font-size: 17px; */
  /* line-height: 23px; */
}
header .cont-header .navegador-principal .top-menus-wrapper2 .ul_menu li.current-menu-item a {
  color: var(--2, #f3953e);
}
header .cont-header .logo-container {
  position: absolute;
  top: 0;
  left: 0;
}
header .cont-header .logo-container a svg {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}
header .cont-header .logo-container .logo {
  position: absolute;
  top: 14px;
  left: 40px;
  width: 106px;
  height: 97px;
}
header .cont-header .logo-container .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cont-menu-movil {
  display: none;
}

.redes-movil {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.redes-movil p {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

@media (max-width: 1080px) {
  header .cont-header .top-menus-wrapper {
    display: none;
  }
  header .cont-header .navegador-principal {
    padding-right: 20px;
    height: 64px;
  }
  header .cont-header .navegador-principal .logo-burger {
    display: block;
  }
  header .cont-header .navegador-principal .top-menus-wrapper2 {
    display: none;
  }
  .cont-menu-movil {
    display: flex;
    opacity: 1;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    right: -150%;
    border-radius: 40px 0 0 40px;
    background: var(--1a, #e9ebf2);
    padding-top: 50px;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    overflow-y: auto;
    transition: all 0.3s ease;
  }
  .cont-menu-movil .menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    min-height: 800px;
  }
  .cont-menu-movil .menu-wrapper svg {
    width: 100%;
    flex-shrink: 0;
  }
  .cont-menu-movil .menu-wrapper .top-menus-movil {
    display: flex;
    margin: 50px 0;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .cont-menu-movil .menu-wrapper .top-menus-movil ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    align-self: stretch;
  }
  .cont-menu-movil .menu-wrapper .top-menus-movil ul li a {
    width: 100%;
    display: flex;
    color: var(--3, #000);
    text-align: center;
    /* Texto 18 Bold */
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 23px; /* 127.778% */
  }
  .cont-menu-movil .menu-wrapper .top-menus-movil ul .menu-separator {
    margin: 10px 0;
    list-style: none;
    height: 1px;
    width: 95px;
    background: #233676;
  }
  .cont-menu-movil.active {
    right: 0;
  }
  header .cont-header .logo-container .logo {
    width: 84px;
    height: 70px;
  }
  .cont-header .logo-container a svg {
    height: 100px;
    width: 200px;
    top: 10px;
    left: 34px;
  }
}
footer {
  border-radius: 20px 20px 0 0;
  background: var(--5, #f2f4f8);
}
footer .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 40px 0 25px 0;
}
footer .contenedor .logo-footer {
  width: 114px;
  height: 108.37px;
  position: relative;
}
footer .contenedor .logo-footer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contenedor .cont-footer {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  align-self: stretch;
}
footer .contenedor .cont-footer .historia-footer {
  display: flex;
  width: 300px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer .contenedor .cont-footer .historia-footer h4 {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
footer .contenedor .cont-footer .historia-footer p {
  color: var(--3, #000);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
footer .contenedor .cont-footer .menu-footer {
  display: flex;
  width: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
footer .contenedor .cont-footer .menu-footer h3 {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  gap: 10px 20px;
}
footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul li a {
  color: var(--3, #000);
  text-align: left;
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  display: flex;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul li a:hover {
  color: var(--1, #233676);
}
footer .contenedor .cont-footer .redes-footer {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
footer .contenedor .cont-footer .redes-footer p {
  color: var(--1, #233676);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
footer .contenedor .cont-footer .redes-footer .img-reclamos {
  margin-top: 15px;
}
footer .contenedor .copy {
  color: var(--3, #000);
  text-align: center;
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  border-top: #F3953E 1px solid;
  padding-top: 20px;
  width: 100%;
}
footer .contenedor .copy span {
  color: var(--3, #000);
  /* Texto 16 Bold */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 21px;
}

.wsp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

@media (max-width: 1000px) {
  footer .contenedor .cont-footer {
    flex-direction: column;
    margin: auto;
    max-width: 500px;
  }
  footer .contenedor .cont-footer .historia-footer {
    width: 100%;
  }
  footer .contenedor .cont-footer .historia-footer h4 {
    width: 100%;
    text-align: center;
  }
  footer .contenedor .cont-footer .historia-footer p {
    width: 100%;
    text-align: center;
  }
  footer .contenedor .cont-footer .menu-footer {
    width: 100%;
  }
  footer .contenedor .cont-footer .menu-footer h3 {
    width: 100%;
    text-align: center;
  }
  footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 {
    width: 100%;
  }
  footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul {
    grid-template-columns: 1fr;
  }
  footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul li {
    width: 100%;
  }
  footer .contenedor .cont-footer .menu-footer .top-menus-wrapper3 ul li a {
    text-align: center;
    margin: auto;
  }
  footer .contenedor .cont-footer .redes-footer {
    margin: auto;
  }
  footer .contenedor .cont-footer .redes-footer p {
    text-align: center;
  }
  footer .contenedor .cont-footer .redes-footer .redes-content-items {
    margin: auto;
  }
}
/* Contenedor */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 26px;
  z-index: 9998;
}

/* Botón flotante */
.wa-button {
  display: flex;
  gap: 15px;
}

.wa-icon {
  background: #1faa52;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 15px;
  cursor: pointer;
  overflow: hidden;
  width: 50px;
  height: 50px;
  transition: width 0.3s ease;
  position: relative;
}

.texto-whatsapp {
  background: #1faa52;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 15px;
  cursor: pointer;
  overflow: hidden;
  width: auto;
  height: 50px;
  transition: width 0.3s ease;
  position: relative;
  opacity: 0;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* cuando se hace hover */
.wa-button:hover .texto-whatsapp {
  opacity: 1;
  max-width: 500px; /* suficiente para cualquier texto dinámico */
  padding: 10px 15px;
}

/* cuando está activo (clickeado) */
.wa-widget.active .texto-whatsapp {
  opacity: 1;
  max-width: 500px;
  padding: 10px 15px;
}

/* Caja desplegable */
.wa-box {
  display: none;
  position: fixed;
  bottom: 150px;
  right: 26px;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wa-box.active {
  display: block;
}

/* Header de la caja */
.wa-box-header {
  background: #f77f00;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.wa-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Lista de colaboradores */
.wa-colaboradores {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wa-colaborador {
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  border-radius: 50px;
}

.wa-colaborador:hover {
  background: #e9e9e9;
}

/* Fila impar (1,3,5...) */
.wa-colaboradores .wa-colaborador:nth-child(odd) {
  background: #F8F8F8;
}

/* Fila par (2,4,6...) */
.wa-colaboradores .wa-colaborador:nth-child(even) {
  background: #FFFFFF;
}

.wa-colaborador img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}

.wa-info {
  display: flex;
  flex-direction: column;
}

.wa-nombre {
  font-weight: bold;
  color: #333;
}

.wa-estado {
  color: #28a745;
  font-size: 13px;
}

.wa-close {
  position: absolute;
  right: 0;
  bottom: 103%;
}

button#wa-close {
  border-radius: 50%;
  padding: 10.78px 10.99px;
  display: flex;
  background: #EF7911;
}

/*Scroll personalizado*/
/* Contenedor con scroll interno */
.wa-colaboradores {
  position: relative;
  max-height: 283px; /* tu altura límite */
  overflow-y: auto; /* scroll real */
  padding-right: 10px; /* espacio para que no tape contenido */
}

/* Ocultar visual del scroll nativo (pero mantenerlo funcional) */
.wa-colaboradores {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge Legacy */
}

.wa-colaboradores::-webkit-scrollbar { /* Chrome/Safari/Edge */
  width: 0;
  height: 0;
}

.wa-scrollbar-track {
  position: absolute;
  top: 10px; /* margen superior */
  /* margen inferior */
  right: 2px;
  width: 4px;
  background: #f1f1f1;
  border-radius: 3px;
}

.wa-scrollbar-thumb {
  position: absolute;
  right: 0;
  width: 4px;
  background: #EF7911;
  border-radius: 3px;
  cursor: pointer;
}

.wa-scrollbar-thumb:hover {
  background: #1ebe5d;
}

/* Mostrar el track solo cuando hay overflow */
.wa-colaboradores.has-scroll .wa-scrollbar-track {
  display: block;
}

section.banner {
  padding: 0;
  position: relative;
}
section.banner #bannerSplide {
  height: 100vh;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-bg {
  background-position: center;
  background-size: cover;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 490px;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content h2 {
  color: var(--4, #fff);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
  margin-bottom: 20px;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content p {
  color: var(--4, #fff);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 30px;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content a {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content a:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
section.banner #bannerSplide .splide__track .splide__list li .banner-content.left {
  left: 120px;
  transform: translate(-10%, -50%);
  text-align: left;
}

.scroll-svg {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-interior {
  animation: scrollMove 0.8s ease-in-out infinite alternate;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  } /* ajusta según el tamaño del borde */
}
.titulo-secciones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  max-width: 490px;
  margin: auto;
  margin-bottom: 30px;
}
.titulo-secciones h2 {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.titulo-secciones p {
  color: var(--3, #000);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.negocios-move,
.negocio-item,
.img-central-negocio {
  border: none;
  outline: none;
  box-shadow: none;
}

.lineas-negocio {
  position: relative;
  background: var(--5, #f2f4f8);
  z-index: -2;
}
.lineas-negocio .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lineas-negocio .contenedor .negocios-move {
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.lineas-negocio .contenedor .negocios-move .negocio-item {
  width: 34%;
  position: relative;
  height: 550px;
  transition: all 0.5s ease;
}
.lineas-negocio .contenedor .negocios-move .negocio-item .centro-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  transition: all 0.3s ease;
}
.lineas-negocio .contenedor .negocios-move .negocio-item .centro-hover p {
  color: var(--4, #fff);
  text-align: center;
  /* Titulo 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 120% */
  min-width: -moz-max-content;
  min-width: max-content;
}
.lineas-negocio .contenedor .negocios-move .negocio-item .info-negocio {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  width: 100%;
  padding: 30px;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.lineas-negocio .contenedor .negocios-move .negocio-item .info-negocio h3 {
  color: var(--2, #f3953e);
  text-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}
.lineas-negocio .contenedor .negocios-move .negocio-item .info-negocio p {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.lineas-negocio .contenedor .negocios-move .negocio-item .info-negocio span {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.lineas-negocio .contenedor .negocios-move .negocio-item .info-negocio span:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.lineas-negocio .contenedor .negocios-move .negocio-item .img-central-negocio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.lineas-negocio .contenedor .negocios-move .negocio-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 100%);
}
.lineas-negocio .contenedor .negocios-move .negocio-item:hover .info-negocio {
  opacity: 1;
}
.lineas-negocio .contenedor .negocios-move .negocio-item:hover .centro-hover {
  opacity: 0;
}
.lineas-negocio .contenedor .negocios-move .negocio-item:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.lineas-negocio .contenedor .negocios-move .negocio-item:hover {
  width: 50%;
}

.section-conocenos .contenedor .cont-titulo-conocenos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-conocenos .contenedor .cont-titulo-conocenos .btn-conocenos a {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-conocenos .contenedor .cont-titulo-conocenos .btn-conocenos a:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.section-conocenos .contenedor .img-conoce {
  width: 100%;
  height: auto;
  max-height: 383px;
  border-radius: 20px;
  overflow: hidden;
}
.section-conocenos .contenedor .img-conoce img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-novedades {
  background: var(--5, #f2f4f8);
}
.section-novedades .contenedor .titulo-secciones {
  max-width: 850px;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item {
  display: flex;
  min-width: 270px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  height: 100%;
  border-radius: 20px;
  background: #fff;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .img-novedad {
  display: flex;
  height: 203px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  overflow: hidden;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .img-novedad img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .info-novedad {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .info-novedad .category-novedad a {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .info-novedad h3 a {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .info-novedad .descripcion-novedad {
  overflow: hidden;
  color: var(--6, #99a1ad);
  text-overflow: ellipsis;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item .info-novedad .leer-mas {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-novedades .contenedor #splide-novedades div ul li .novedad-item:hover .img-novedad img {
  transform: scale(1.05);
}
.section-novedades .contenedor .ver-mas-section {
  margin-top: 30px;
}
.section-novedades .contenedor .ver-mas-section a {
  display: flex;
  margin: auto;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-novedades .contenedor .ver-mas-section a:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}

.section-contactanos .contenedor {
  position: relative;
  border-radius: 20px;
  width: 1166px;
}
@media (max-width: 800px) {
  .section-contactanos .contenedor {
    width: 600px;
  }
}
.section-contactanos .contenedor .img-persona-contacto {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: auto;
  height: 120%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .section-contactanos .contenedor .img-persona-contacto {
    right: 0;
  }
}
.section-contactanos .contenedor .img-persona-contacto img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-contactanos .contenedor .img-contacto-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.08;
}
.section-contactanos .contenedor .img-contacto-l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-contactanos .contenedor .cont-contactanos {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 360px;
}
.section-contactanos .contenedor .cont-contactanos .info-contactanos {
  display: flex;
  width: 450px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin: auto 0;
  justify-content: center;
  height: 100%;
  padding-left: 160px;
}
@media (max-width: 1000px) {
  .section-contactanos .contenedor .cont-contactanos .info-contactanos {
    padding-left: 80px;
  }
}
.section-contactanos .contenedor .cont-contactanos .info-contactanos h2 {
  color: var(--4, #fff);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.section-contactanos .contenedor .cont-contactanos .info-contactanos p {
  color: var(--4, #FFF);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-contactanos .contenedor .cont-contactanos .info-contactanos a {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.section-contactanos .contenedor .cont-contactanos .info-contactanos a:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.section-contactanos .contenedor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #233676 0%, #0b1a4e 100%);
  z-index: -2;
  opacity: 1;
  border-radius: 20px;
}

.redes-content-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.redes-content-items .linkedin-card {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
}
.redes-content-items .linkedin-card .icon-default,
.redes-content-items .linkedin-card .icon-hover {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease;
}
.redes-content-items .linkedin-card .icon-default path,
.redes-content-items .linkedin-card .icon-hover path {
  fill: #000000;
}
.redes-content-items .linkedin-card .icon-hover {
  transform: translate(calc(-50% + 25px), -50%);
  opacity: 0;
}
.redes-content-items .linkedin-card .icon-hover path {
  fill: white;
}
.redes-content-items .linkedin-card:hover {
  background-color: #F3953E;
  border: #F3953E;
}
.redes-content-items .linkedin-card:hover .icon-default {
  transform: translate(calc(-50% - 25px), -50%);
  opacity: 0;
}
.redes-content-items .linkedin-card:hover .icon-hover {
  transform: translate(-50%, -50%);
  opacity: 1;
}

body .splide__arrow {
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.1); /* tu color */
  display: flex;
  width: 35px;
  height: 35px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0; /* default splide baja la opacidad */
}

body .splide__arrow svg {
  fill: white; /* color del ícono dentro */
  width: 18px;
  height: 18px;
}

@media (max-width: 800px) {
  section.banner #bannerSplide .splide__track .splide__list li .banner-content {
    bottom: 10%;
    width: 70%;
    top: auto;
    transform: translate(-50%, 0);
  }
  section.banner #bannerSplide .splide__track .splide__list li .banner-content h2 {
    font-size: 40px;
  }
  section.banner #bannerSplide .splide__track .splide__list li .banner-content.left {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .lineas-negocio .contenedor .negocios-move {
    flex-direction: column;
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item {
    width: 100%;
    height: 286px;
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item:hover .info-negocio {
    opacity: 0;
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item:hover .centro-hover {
    opacity: 1;
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 100%);
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item:hover {
    width: 100%;
  }
  .lineas-negocio .contenedor .negocios-move .negocio-item .img-central-negocio {
    -o-object-position: top center;
       object-position: top center;
  }
  .section-conocenos .contenedor .cont-titulo-conocenos {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .cont-titulo-conocenos .titulo-secciones h2 {
    text-align: center !important;
  }
  .section-contactanos .contenedor .img-persona-contacto {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-contactanos .contenedor .img-persona-contacto img {
    width: 80%;
    height: auto;
  }
  .section-contactanos .contenedor .cont-contactanos .info-contactanos {
    margin: auto;
    padding-left: 0;
    text-align: center;
    align-items: center;
    width: 90%;
  }
  .section-contactanos .contenedor .cont-contactanos .info-contactanos h2 {
    font-size: 40px;
  }
}
/* Asegura que el contenedor sea relativo para posicionar el botón absoluto dentro */
.video-container {
  position: relative;
  overflow: hidden;
}

/* Estilo del botón */
.btn-volume-toggle {
  position: absolute;
  bottom: 30px; /* Ajusta la distancia desde abajo */
  left: 30px; /* Ajusta la distancia desde la izquierda */
  z-index: 20; /* Por encima del video y overlays */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.btn-volume-toggle:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.btn-volume-toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none; /* Evita que el click se vaya al path del svg */
}

/* Lógica visual: Mostrar/Ocultar iconos según la clase */
.btn-volume-toggle .icon-sound {
  display: none;
}

.btn-volume-toggle .icon-muted {
  display: block;
}

/* Cuando NO está muteado (tiene sonido) */
.btn-volume-toggle.is-active .icon-muted {
  display: none;
}

.btn-volume-toggle.is-active .icon-sound {
  display: block;
}

.btn-volume-toggle {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.banner-pages {
  position: relative;
}
.banner-pages .bg-banner-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.5;
  filter: grayscale(100%);
}
.banner-pages::afTer {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--1a, rgba(233, 235, 242, 0.8980392157));
  z-index: -1;
}
.banner-pages .ruta {
  position: absolute;
  top: 10px;
  right: 5%;
}
.banner-pages .ruta a {
  color: var(--1, #233676);
  /* Texto 11 Regular */
  font-family: "Montserrat";
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 145.455% */
}
.banner-pages .ruta span {
  color: var(--1, #233676);
  /* Texto 11 Bold */
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px; /* 145.455% */
}
.banner-pages .content-banner-pages {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 567px;
  width: 90%;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin: auto;
}
.banner-pages .content-banner-pages h2 {
  color: var(--2, #f3953e);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: Pacifico;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.banner-pages .content-banner-pages p {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 20 Regular */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 125% */
}

.section-mision-vision {
  width: 100%;
  padding: 60px 0;
}
.section-mision-vision .contenedor {
  display: flex;
  align-items: stretch;
  gap: 50px;
  justify-content: center;
}
.section-mision-vision .contenedor .video-mision,
.section-mision-vision .contenedor .cont-mision {
  flex: 1;
}
.section-mision-vision .contenedor .video-mision {
  max-width: 500px;
  position: relative;
}
.section-mision-vision .contenedor .video-mision iframe,
.section-mision-vision .contenedor .video-mision video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}
.section-mision-vision .contenedor .video-mision #btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
.section-mision-vision .contenedor .cont-mision {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}
.section-mision-vision .contenedor .cont-mision .mision,
.section-mision-vision .contenedor .cont-mision .vision {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.section-mision-vision .contenedor .cont-mision .mision h3,
.section-mision-vision .contenedor .cont-mision .vision h3 {
  color: var(--2, #f3953e);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}
.section-mision-vision .contenedor .cont-mision .mision p,
.section-mision-vision .contenedor .cont-mision .vision p {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-mision-vision .contenedor .cont-mision .mision {
  border-radius: 20px;
  background: var(--1, #233676);
}
.section-mision-vision .contenedor .cont-mision .vision {
  border-radius: 20px;
  background: var(--6, #99a1ad);
}
.section-mision-vision .contenedor .cont-mision .vision h3 {
  color: var(--4, #fff);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}

.section-valores {
  background: #f9fafe;
  z-index: -3;
  position: relative;
}
.section-valores .contenedor .grid-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px 40px;
  margin-top: 120px;
  align-items: start;
}
.section-valores .contenedor .grid-valores .item-valor {
  position: relative;
  display: flex;
  margin: auto;
}
.section-valores .contenedor .grid-valores .item-valor .img-valor {
  position: absolute;
  top: -120px;
  left: -100px;
  z-index: -1;
  transition: all 0.3s ease;
}
.section-valores .contenedor .grid-valores .item-valor .img-valor.valor-5 {
  top: -140px;
  left: -120px;
}
.section-valores .contenedor .grid-valores .item-valor .texto-valor {
  position: relative;
  display: flex;
  width: 290px;
  height: 235px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--1, #233676);
}
.section-valores .contenedor .grid-valores .item-valor .texto-valor h3 {
  position: absolute;
  display: flex;
  width: 197px;
  height: 38px;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  right: 46px;
  top: -19px;
  border-radius: 40px;
  background: var(--2, #f3953e);
  color: var(--4, #fff);
  text-align: center;
  /* Titulo 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 120% */
}
.section-valores .contenedor .grid-valores .item-valor .texto-valor h4 {
  color: #fff;
  text-align: center;
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-valores .contenedor .grid-valores .item-valor .texto-valor p {
  color: #fff;
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-1, .section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-2, .section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-4 {
  left: -156px;
  top: -183px;
  transform: scale(0.8);
}
.section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-3 {
  left: -182px;
  top: -196px;
  transform: scale(0.8);
}
.section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-5 {
  left: -180px;
  top: -196px;
  transform: scale(0.8);
}
.section-valores .contenedor .grid-valores .item-valor:hover .img-valor.valor-6 {
  left: -136px;
  top: -131px;
  transform: scale(0.9);
}

/* --- SCSS CORREGIDO Y COMPLETO --- */
/* --- SCSS CORREGIDO Y COMPLETO --- */
.section-historia {
  position: relative;
  overflow: hidden;
  background: #233676;
}
.section-historia::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1405px;
  height: 1348px;
  background: url(../../images/lineas.webp);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 4;
  pointer-events: none;
}
.section-historia .contenedor {
  position: relative;
  /* El resto de sus estilos para los datos de la historia (sin cambios) */
}
.section-historia .contenedor .año2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  pointer-events: none;
  /* Estilo visual */
  color: rgba(255, 255, 255, 0.0549019608);
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 420px;
  line-height: 1; /* CLAVE: altura de la línea = tamaño de fuente */
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  /* contenedor de todos los spans */
  /* Contenedor de cada dígito (la "ventana" con overflow) */
  /* El valor del dígito que se anima */
}
@media (max-width: 1120px) {
  .section-historia .contenedor .año2 {
    font-size: 350px;
  }
}
.section-historia .contenedor .año2 .anio-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  height: 1em;
}
.section-historia .contenedor .año2 .digit-container {
  position: relative;
  display: block;
  width: 0.65em; /* Ancho fijo para cada dígito */
  height: 1em; /* Altura de la línea */
  overflow: hidden;
}
.section-historia .contenedor .año2 .digit-value {
  /* CLAVE: Anclaje absoluto y centrado horizontal */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Ocupa el 100% del ancho del contenedor */
  text-align: center; /* Centra el texto dentro de ese ancho */
  transition: transform 450ms cubic-bezier(0.2, 0.9, 0.3, 1), opacity 300ms;
  transform: translateY(0);
  opacity: 1;
  white-space: nowrap;
  will-change: transform, opacity;
}
.section-historia .contenedor .titulo-secciones h2 {
  color: #fff;
}
.section-historia .contenedor .titulo-secciones p {
  color: #fff;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .img-historia {
  display: flex;
  position: relative;
  width: 414px;
  height: 255px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  right: -40px;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .img-historia img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .datos-historia {
  display: flex;
  position: relative;
  width: 476px;
  padding: 25px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
  left: -40px;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .datos-historia .año {
  color: var(--1, #233676);
  font-family: "Montserrat";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .datos-historia h4 {
  color: var(--3, #000);
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
}
.section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .datos-historia .descripcion {
  color: var(--3, #000);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.historia-splide {
  position: relative;
}
.historia-splide .splide__arrows {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.historia-splide .splide__arrows .splide__arrow--prev {
  left: -50px;
}
.historia-splide .splide__arrows .splide__arrow--next {
  right: -50px;
}
.historia-splide .splide__arrows .splide__arrow svg path {
  stroke: white;
  stroke-width: 6.5px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-sostenibilidad .contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}
.section-sostenibilidad .contenedor .titulo-sost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 180px;
}
@media (max-width: 1000px) {
  .section-sostenibilidad .contenedor .titulo-sost {
    gap: 100px;
  }
}
.section-sostenibilidad .contenedor .titulo-sost h2 {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.section-sostenibilidad .contenedor .titulo-sost .descripcion-sost {
  max-width: 700px;
  color: var(--3, #000);
  text-align: justify;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-sostenibilidad .contenedor .info-sost {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.section-sostenibilidad .contenedor .info-sost .div-sost {
  border-radius: 20px;
  height: 259px;
  width: 100%;
  gap: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 580px;
}
.section-sostenibilidad .contenedor .info-sost .div-sost::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 17.79%, rgba(0, 0, 0, 0.7) 50.96%);
  z-index: -1;
}
.section-sostenibilidad .contenedor .info-sost .div-sost img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transition: all 0.3s ease;
}
.section-sostenibilidad .contenedor .info-sost .div-sost .texto-sost {
  height: 100%;
  display: flex;
  width: 50%;
  position: relative;
  flex-direction: column;
  margin: 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.section-sostenibilidad .contenedor .info-sost .div-sost h3 {
  color: var(--4, #fff);
  /* Texto 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-sostenibilidad .contenedor .info-sost .div-sost p {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-sostenibilidad .contenedor .info-sost .div-sost:hover img {
  transform: scale(1.1);
}

/* Fondo azul */
#mapa-nacional {
  background: #233676;
  padding: 0;
  position: relative;
  overflow: hidden;
}
#mapa-nacional::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1405px;
  height: 1348px;
  background: url(../../images/lineas.webp);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 4;
  pointer-events: none;
}
#mapa-nacional .contenedor {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex: 2;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
#mapa-nacional .contenedor .left {
  position: relative;
  z-index: 4;
  flex: 1;
}
#mapa-nacional .contenedor .left .cont-left {
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}
#mapa-nacional .contenedor .left .cont-left .titulo-mapa-nos {
  display: flex;
  max-width: 547px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
#mapa-nacional .contenedor .left .cont-left .titulo-mapa-nos h2 {
  color: var(--4, #fff);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
#mapa-nacional .contenedor .left .cont-left .titulo-mapa-nos p {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#mapa-nacional .contenedor .left .cont-left .titulo-mapa-nos .instrucion-mapa {
  color: var(--4, #fff);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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;
}
#mapa-nacional .contenedor .left .cont-left #info-box {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--4, #fff);
  transform: translateY(40px);
  opacity: 0;
  pointer-events: none;
  max-width: 600px;
  transition: all 0.35s ease;
}
#mapa-nacional .contenedor .left .cont-left #info-box.active {
  transform: translateY(0);
  margin-top: 50px;
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}
#mapa-nacional .contenedor .left .cont-left #info-box #btn-cerrar-info {
  background: #f3953e;
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
#mapa-nacional .contenedor .left .cont-left #info-box #info-imagen {
  max-width: 196px;
  max-height: 170px;
  flex-shrink: 0;
  border-radius: 20px;
  width: 40%;
}
#mapa-nacional .contenedor .left .cont-left #info-box .box-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
#mapa-nacional .contenedor .left .cont-left #info-box .box-right h2 {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
#mapa-nacional .contenedor .left .cont-left #info-box .box-right .direction-cont {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
#mapa-nacional .contenedor .left .cont-left #info-box .box-right .direction-cont svg {
  flex-shrink: 0;
}
#mapa-nacional .contenedor .left .cont-left #info-box .box-right .direction-cont p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#mapa-nacional .contenedor #chartdiv {
  flex: 1;
  position: relative;
  overflow: visible;
}
#mapa-nacional .contenedor #chartdiv::after {
  content: "";
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  background: #233676;
  display: flex;
  position: absolute;
  opacity: 1;
  transition: all 0.3s ease;
}
#mapa-nacional .contenedor #chartdiv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, #233676 0%, rgba(35, 54, 118, 0.5) 40%, rgba(35, 54, 118, 0) 100%);
  z-index: 3;
}

@media (max-width: 1200px) {
  .section-valores .contenedor .grid-valores {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 930px) {
  .section-historia .contenedor #splide01 .splide__track ul li .repeater-historia {
    flex-direction: column;
  }
  .section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .img-historia {
    width: 100%;
    right: 0;
  }
  .section-historia .contenedor #splide01 .splide__track ul li .repeater-historia .datos-historia {
    width: 100%;
    left: 0;
  }
  .section-historia .contenedor .año2 {
    height: 26%;
    font-size: 181px;
    bottom: -60px;
    left: auto;
    top: auto;
    right: -30px;
    transform: none;
  }
  .digit-container:nth-child(1),
  .digit-container:nth-child(2) {
    display: none !important; /* Lo ocultamos completamente */
  }
  .section-historia .contenedor .año2 .anio-wrapper {
    height: 100%;
  }
  .section-historia .contenedor .año2 .anio-num {
    right: 0 !important;
    transform: translateX(0) !important;
    bottom: 0 !important;
  }
  .section-historia .contenedor #splide01 .splide__track ul li .repeater-historia {
    padding: 60px;
  }
}
@media (max-width: 800px) {
  .section-historia .contenedor #splide01 .splide__track ul li .repeater-historia {
    padding: 60px 0;
  }
  .section-valores .contenedor .grid-valores {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner-pages .content-banner-pages h2 {
    font-size: 40px !important;
  }
  .section-mision-vision .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .section-valores .contenedor .grid-valores .item-valor .img-valor {
    position: absolute;
    top: -112px !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(10deg);
    transition: all 0.3s ease;
    height: 180px;
  }
  .section-sostenibilidad .contenedor .titulo-sost {
    flex-direction: column;
  }
  .section-sostenibilidad .contenedor .titulo-sost h2 {
    font-size: 40px;
  }
  .section-sostenibilidad .contenedor .info-sost {
    flex-direction: column;
  }
  #mapa-nacional .contenedor {
    flex-direction: column;
    height: 1000px;
    position: relative;
  }
  #mapa-nacional .contenedor .left {
    flex: none;
    position: absolute;
    top: 20px;
  }
  #mapa-nacional .contenedor .left .cont-left .titulo-mapa-nos {
    align-items: center;
    text-align: center;
    margin: auto;
  }
  #mapa-nacional .contenedor #chartdiv {
    margin-top: 300px;
    width: 100% !important;
  }
  #mapa-nacional .contenedor #chartdiv::before {
    display: none;
  }
  .section-valores .contenedor .grid-valores .item-valor:hover .img-valor {
    transform: none !important;
    top: -112px !important;
    left: 50% !important;
  }
}
/* Estilos generales del modal */
.modal {
  display: none; /* Ocultar por defecto */
  position: fixed; /* Posicionamiento fijo para cubrir toda la pantalla */
  z-index: 9999; /* Asegurar que esté por encima de todo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro semitransparente */
}

/* Contenido del modal (el contenedor del video) */
.modal-content {
  position: relative;
  margin: auto; /* Centrar verticalmente */
  padding: 0;
  width: 80%;
  max-width: 900px; /* Tamaño máximo para el video */
  background-color: transparent; /* Fondo transparente para que solo se vea el video */
}

/* Estilos para hacer el video responsivo */
.video-container {
  position: relative;
  height: 500px;
	border-radius: 20px;
	overflow: hidden;
}

.video-container #full-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Estilo del botón de cerrar */
.close-btn {
  position: absolute;
  top: 20px; /* Posicionarlo fuera del modal-content */
  right: 20px;
  cursor: pointer;
  z-index: 10000;
}

/* OCULTAR el ::after cuando tenga la clase .hide-after */
#chartdiv.hide-after::after {
  opacity: 0 !important;
  transition: all 0.3s ease;
}

.section-aliados {
  background: var(--5, #f2f4f8);
}
.section-aliados .contenedor {
  padding: 40px 0 80px 0;
}
.section-aliados .contenedor .aliados-slider div ul li {
  border-radius: 18px;
  width: 194px;
  height: 128px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-aliados .contenedor .aliados-slider div ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.section-aliados .contenedor .aliados-slider div ul li:hover img {
  opacity: 1;
}

/* Estilos para los puntos del paginador de Splide */
.aliados-slider .splide__pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 15px;
  bottom: -40px;
}

.aliados-slider .splide__pagination__page {
  width: 9px;
  height: 9px;
  background-color: #233676; /* plomo */
  opacity: 0.5;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.aliados-slider .splide__pagination__page.is-active {
  background-color: #233676; /* azul activo */
  opacity: 1;
}

#mapa-nacional-2 {
  background: #233676;
  position: relative;
  overflow: hidden;
}
#mapa-nacional-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../../images/lineas.webp);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 4;
  pointer-events: none;
}
#mapa-nacional-2 #info-box-2 {
  position: absolute; /* para que quede encima de todo */
  top: 0;
  left: -100%; /* empieza fuera de la pantalla a la izquierda */
  width: 50%; /* ocupa todo el ancho */
  height: 100%; /* ocupa todo el alto */
  border-radius: 0 20px 20px 0;
  background: var(--4, #fff);
  padding: 40px;
  display: flex;
  flex: 2;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  z-index: 10; /* para que esté encima de todo */
  overflow-y: auto; /* si el contenido es más alto que la pantalla */
  transition: left 0.6s ease;
  box-sizing: border-box;
}
#mapa-nacional-2 #info-box-2 #btn-cerrar-info-2 {
  position: absolute;
  top: 7px;
  right: 7px;
  display: flex;
  width: 26px;
  height: 26px;
  justify-content: center;
  align-items: center;
  gap: 5.2px;
  border-radius: 26px;
  background: var(--2, #f3953e);
}
#mapa-nacional-2 #info-box-2 .img-cont-map {
  flex: 1;
  height: 100%;
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
}
#mapa-nacional-2 #info-box-2 .img-cont-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mapa-nacional-2 #info-box-2 .box-right-2 {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}
#mapa-nacional-2 #info-box-2 .box-right-2 h2 {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
#mapa-nacional-2 #info-box-2 .box-right-2 #info-contenido-2 p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#mapa-nacional-2 #info-box-2 .box-right-2 #info-contenido-2 ul li {
  list-style: disc;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-left: 25px;
}
#mapa-nacional-2 #info-box-2.active {
  left: 0; /* entra desde la izquierda */
}
#mapa-nacional-2 .contenedor {
  display: flex;
  gap: 40px;
  align-items: center;
}
#mapa-nacional-2 .contenedor .left {
  flex: 1;
}
#mapa-nacional-2 .contenedor .left .titulo-mapa-nos-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 550px;
  gap: 20px;
}
#mapa-nacional-2 .contenedor .left .titulo-mapa-nos-2 h2 {
  color: var(--4, #fff);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
#mapa-nacional-2 .contenedor .left .titulo-mapa-nos-2 p {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
#mapa-nacional-2 .contenedor .left .titulo-mapa-nos-2 .instrucion-mapa-2 {
  color: var(--4, #fff);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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;
}
#mapa-nacional-2 .contenedor #chartdiv-2 {
  flex: 1;
  position: relative;
}
#mapa-nacional-2 .contenedor #chartdiv-2::after {
  content: "";
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  background: #233676;
  display: flex;
  position: absolute;
}

@media (max-width: 800px) {
  #mapa-nacional-2 .contenedor {
    flex-direction: column;
    height: 800px;
    position: relative;
  }
  #mapa-nacional-2 .contenedor .left {
    flex: none;
    position: absolute;
    top: 20px;
  }
  #mapa-nacional-2 .contenedor #chartdiv-2 {
    width: 100% !important;
    margin-top: 200px;
  }
  #mapa-nacional-2 .contenedor .left .titulo-mapa-nos-2 h2 {
    font-size: 40px;
    line-height: 40px;
  }
  #mapa-nacional-2 #info-box-2 {
    width: 100%;
    border-radius: 0px;
  }
  .section-aliados .contenedor .aliados-slider div ul li img {
    opacity: 1;
  }
  #mapa-nacional-2 #info-box-2 {
    flex-direction: column;
  }
  #mapa-nacional-2 #info-box-2 .img-cont-map {
    width: 100%;
  }
  #mapa-nacional-2 #info-box-2 .box-right-2 {
    width: 100%;
  }
}
@media (max-width: 400px) {
  #mapa-nacional-2 .contenedor #chartdiv-2 {
    width: 100% !important;
    margin-top: 0;
  }
}
.banner-single {
  position: relative;
  display: flex;
  /* SOLO DESVANECIDO EN LA PARTE INFERIOR */
}
.banner-single .ruta {
  position: absolute;
  top: 10px;
  right: 5%;
}
.banner-single .ruta a {
  color: var(--1, #233676);
  /* Texto 11 Regular */
  font-family: "Montserrat";
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 145.455% */
}
.banner-single .ruta span {
  color: var(--1, #233676);
  /* Texto 11 Bold */
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px; /* 145.455% */
}
.banner-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/fondo-single.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.banner-single::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* ajusta el tamaño del fade */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255) 100%);
  pointer-events: none;
  z-index: -1;
}
.banner-single .contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
  gap: 50px;
}
.banner-single .contenedor .info-banner-single {
  display: flex;
  max-width: 620px;
  flex: 1;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
}
.banner-single .contenedor .info-banner-single h2 {
  color: var(--2, #f3953e);
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 65px; /* 108.333% */
}
.banner-single .contenedor .info-banner-single p {
  color: var(--1, #233676);
  /* Texto 15 Regular */
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.banner-single .contenedor .imagen-single {
  max-width: 531.671px;
  max-height: 537px;
  aspect-ratio: 531.67/537;
  flex: 1;
}
.banner-single .contenedor .imagen-single img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.masinfo-single {
  position: relative;
  display: flex;
}
.masinfo-single .bg-img-masinfo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
.masinfo-single .contenedor {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 0;
  align-items: flex-start;
  flex: 2;
}
.masinfo-single .contenedor .texto-mas-info-single {
  flex: 1;
}
.masinfo-single .contenedor .texto-mas-info-single h3 {
  color: var(--1, #233676);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
  margin-bottom: 20px;
}
.masinfo-single .contenedor .texto-mas-info-single p {
  color: var(--1, #233676);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.masinfo-single .contenedor .form-single {
  flex: 1;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p {
  width: 100%;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label {
  width: 100%;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label span input,
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label textarea {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid rgba(35, 54, 118, 0.2);
  background: linear-gradient(0deg, rgba(35, 54, 118, 0.1) 0%, rgba(35, 54, 118, 0.1) 100%), #fff;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label span input::-moz-placeholder, .masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label textarea::-moz-placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label span input::placeholder,
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single p label textarea::placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .fila-doble {
  width: 100%;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .fila-doble p {
  display: flex;
  gap: 15px;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .btn-enviar p {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .btn-enviar p:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .btn-enviar p input {
  background: none;
  border: none;
  color: var(--4, #fff);
  width: 100%;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .btn-enviar p .wpcf7-spinner {
  position: absolute;
}

.producto-muestra .contenedor {
  display: flex;
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: 20px;
}
.producto-muestra .contenedor .imagen-muestra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
}
.producto-muestra .contenedor .titulo-muestra {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  width: 90%;
}
.producto-muestra .contenedor .titulo-muestra h2 {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.producto-muestra .contenedor .titulo-muestra p {
  color: var(--3, #000);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.producto-muestra .contenedor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, white 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.producto-muestra .contenedor::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, white 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.producto-muestra .contenedor .punto-muestra {
  position: absolute;
}
.producto-muestra .contenedor .punto-muestra.punto1 {
  top: 50%;
  left: 50%;
}
.producto-muestra .contenedor .punto-muestra.punto2 {
  top: 53%;
  left: 34%;
}
.producto-muestra .contenedor .punto-muestra.punto3 {
  top: 72%;
  left: 46%;
}
.producto-muestra .contenedor .punto-muestra.punto4 {
  top: 60%;
  left: 63%;
}
.producto-muestra .contenedor .dato-muestra {
  position: absolute;
  opacity: 0;
  display: flex;
  padding: 20px;
  max-width: 26%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  border-radius: 20px;
  margin-right: 20px;
  background: var(--4, #fff);
  transition: all 0.3s ease;
  /* Sombra suave */
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
}
.producto-muestra .contenedor .dato-muestra#dato-1 {
  left: 71%;
  top: 15%;
}
.producto-muestra .contenedor .dato-muestra#dato-1.active {
  opacity: 1;
}
.producto-muestra .contenedor .dato-muestra#dato-2 {
  left: 4%;
  top: 15%;
}
.producto-muestra .contenedor .dato-muestra#dato-2.active {
  opacity: 1;
}
.producto-muestra .contenedor .dato-muestra#dato-3 {
  top: 68%;
  left: 3%;
}
.producto-muestra .contenedor .dato-muestra#dato-3.active {
  opacity: 1;
}
.producto-muestra .contenedor .dato-muestra#dato-4 {
  top: 68%;
  left: 70%;
}
.producto-muestra .contenedor .dato-muestra#dato-4.active {
  opacity: 1;
}
.producto-muestra .contenedor .flecha-muestra {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
}
.producto-muestra .contenedor .flecha-muestra#flecha-1 {
  left: 50%;
  top: 34%;
  width: 22%;
  height: 8%;
  transform: rotate(137deg);
}
.producto-muestra .contenedor .flecha-muestra#flecha-1.active {
  opacity: 1;
}
.producto-muestra .contenedor .flecha-muestra#flecha-2 {
  left: 28%;
  top: 39%;
  width: 15%;
  height: 7%;
  transform: rotate(246deg) scaleX(-1);
}
.producto-muestra .contenedor .flecha-muestra#flecha-2.active {
  opacity: 1;
}
.producto-muestra .contenedor .flecha-muestra#flecha-3 {
  top: 76%;
  left: 30%;
  width: 18%;
  height: 7%;
  transform: rotate(0deg);
}
.producto-muestra .contenedor .flecha-muestra#flecha-3.active {
  opacity: 1;
}
.producto-muestra .contenedor .flecha-muestra#flecha-4 {
  left: 57%;
  top: 71%;
  width: 15%;
  height: 7%;
  transform: rotate(73deg) scaleX(-1);
}
.producto-muestra .contenedor .flecha-muestra#flecha-4.active {
  opacity: 1;
}

.punto-muestra circle {
  transform-origin: center;
}

/* Círculo más grande */
.punto-muestra .c3 {
  animation: pulse 3s infinite ease-in-out;
  opacity: 0.5;
}

/* Círculo intermedio */
.punto-muestra .c1 {
  animation: pulse 3s infinite ease-in-out 1s;
  opacity: 0.2;
}

/* Círculo pequeño */
.punto-muestra .c2 {
  animation: pulse 3s infinite ease-in-out 2s;
  opacity: 0.4;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }
}
@media (max-width: 800px) {
  .banner-single .contenedor {
    flex-direction: column;
  }
  .masinfo-single .contenedor {
    flex-direction: column;
  }
  .masinfo-single .contenedor .texto-mas-info-single h3 {
    text-align: center;
  }
  .masinfo-single .contenedor .texto-mas-info-single p {
    text-align: center;
  }
  .masinfo-single .contenedor .form-single .wpcf7 form .formulario-single .fila-doble p {
    flex-direction: column;
  }
  .producto-muestra .contenedor .flecha-muestra {
    display: none;
  }
  .producto-muestra .contenedor .dato-muestra {
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    top: auto !important;
    width: 90% !important;
    max-width: 90% !important;
  }
  .producto-muestra .contenedor {
    height: 800px;
  }
  .banner-single .contenedor .info-banner-single h2 {
    font-size: 40px;
  }
}
.section-blog .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-blog .contenedor .buscador {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.section-blog .contenedor .buscador .blog-count {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  min-width: -moz-max-content;
  min-width: max-content;
}
.section-blog .contenedor .buscador .blog-search {
  width: 100%;
}
.section-blog .contenedor .buscador .blog-search input {
  display: flex;
  width: 423px;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 20px;
  background: var(--1a, #e9ebf2);
  color: var(--1, #233676);
  margin: auto;
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
}
.section-blog .contenedor .buscador .blog-search input::-moz-placeholder {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-blog .contenedor .buscador .blog-search input::placeholder {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-blog .contenedor .buscador .blog-order {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-blog .contenedor .buscador .blog-order label {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  min-width: -moz-max-content;
  min-width: max-content;
}
.section-blog .contenedor .buscador .blog-order #btn-filtro-modal {
  display: none;
  color: var(--1, #233676);
  text-align: center;
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-blog .contenedor .buscador .blog-order #blog-order-select {
  display: flex;
  max-width: 214px;
  padding: 5px 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid var(--1, #233676);
}
.section-blog .contenedor .buscador .blog-order #blog-order-select option {
  color: var(--1, #233676);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-blog .contenedor .blog-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.section-blog .contenedor .blog-container aside {
  display: flex;
  min-width: 244px;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.section-blog .contenedor .blog-container aside .div-cerrar {
  display: none;
}
.section-blog .contenedor .blog-container aside h3 {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-blog .contenedor .blog-container aside .categorias-slide .categorias-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.section-blog .contenedor .blog-container aside .categorias-slide .categorias-toggle p {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-blog .contenedor .blog-container aside .categorias-slide .categorias-toggle svg {
  transition: all 0.3s ease-in-out;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul {
  display: flex;
  padding-left: 20px;
  max-height: 1000px;
  opacity: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  transition: all 0.3s ease-in-out;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  align-self: stretch;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li label {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li label input {
  display: none;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li label input + span {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: transparent;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li label input:checked + span {
  background: #233676;
  border-color: #233676;
}
.section-blog .contenedor .blog-container aside .categorias-slide ul li label.is-checked {
  font-weight: 800;
  color: #233676;
}
.section-blog .contenedor .blog-container aside .categorias-slide.active #category-filter {
  opacity: 0;
  max-height: 0;
}
.section-blog .contenedor .blog-container aside .categorias-slide.active .categorias-toggle svg {
  transform: rotate(180deg);
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card {
  display: flex;
  min-width: 270px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card a {
  display: flex;
  height: 203px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
  border-radius: 20px;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card .blog-cat {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card .blog-title {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card p {
  overflow: hidden;
  color: var(--6, #99a1ad);
  text-overflow: ellipsis;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid .blog-card .blog-more {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li {
  display: flex;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li a,
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 22px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #233676;
  transition: 0.2s;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li a.current,
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li span.current {
  background: #f3953e;
  color: #fff;
}
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li a:hover:not(.current),
.section-blog .contenedor .blog-container .blog-content #blog-results .blog-pagination .page-numbers li span:hover:not(.current) {
  background: rgb(46.6666666667, 72, 157.3333333333);
}

.section-suscribirse {
  position: relative;
  display: flex;
}
.section-suscribirse .contenedor {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.section-suscribirse .contenedor .img-bg-sus {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
.section-suscribirse .contenedor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #233676 0%, #0b1a4e 100%);
  z-index: -2;
}
.section-suscribirse .contenedor .cont-form-gracias {
  position: relative;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  max-width: 550px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-suscribirse .contenedor .cont-form-gracias h3 {
  color: var(--4, #fff);
  text-align: center;
  /* Sombra suave */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.section-suscribirse .contenedor .cont-form-gracias p {
  color: var(--4, #fff);
  text-align: center;
  /* Sombra suave */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-suscribirse .contenedor .cont-form-gracias.active {
  opacity: 1;
  max-height: 1000px;
  padding: 60px 0;
}
.section-suscribirse .contenedor .cont-form-sus {
  display: flex;
  max-width: 550px;
  max-height: 1000px;
  opacity: 1;
  transition: all 0.3s ease;
  flex-direction: column;
  padding: 60px 0;
  align-items: center;
  gap: 30px;
}
.section-suscribirse .contenedor .cont-form-sus h3 {
  color: var(--4, #fff);
  text-align: center;
  /* Sombra suave */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.section-suscribirse .contenedor .cont-form-sus p {
  color: var(--4, #fff);
  text-align: center;
  /* Sombra suave */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 15px;
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus p span input {
  display: flex;
  max-width: 396.5px;
  height: 40px;
  padding: 10px 20px;
  align-items: center;
  gap: 279px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--4, #fff);
  width: 100%;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus p span input::-moz-placeholder {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus p span input::placeholder {
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus .btn-enviar p {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus .btn-enviar p input {
  background: none;
  border: none;
  color: var(--4, #fff);
  width: 100%;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus .btn-enviar p .wpcf7-spinner {
  position: absolute;
}
.section-suscribirse .contenedor .cont-form-sus.active {
  opacity: 0;
  max-height: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .section-blog .contenedor .buscador .blog-count {
    display: none;
  }
  .section-blog .contenedor .buscador .blog-order label {
    display: none;
  }
  .section-blog .contenedor .buscador {
    flex-direction: column;
  }
  .section-blog .contenedor .buscador .blog-order #btn-filtro-modal {
    display: block;
  }
  .section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-blog .contenedor .blog-container aside {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 40px 40px 0 0;
    background: var(--5, #F2F4F8);
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .section-blog .contenedor .blog-container aside.active {
    transform: translateY(0);
    opacity: 1;
  }
  .section-blog .contenedor .buscador .blog-order {
    justify-content: space-around;
    width: 100%;
  }
  .section-blog .contenedor .blog-container aside .div-cerrar {
    display: block;
  }
  .section-suscribirse .contenedor .cont-form-sus .wpcf7 .wpcf7-form .formulario-sus {
    flex-direction: column;
  }
  .section-suscribirse .contenedor .cont-form-sus h3 {
    font-size: 40px;
  }
  .section-suscribirse .contenedor .cont-form-sus {
    width: 90%;
  }
  .section-suscribirse .contenedor .cont-form-gracias h3 {
    font-size: 40px;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .section-blog .contenedor .blog-container .blog-content #blog-results .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-blog .contenedor .buscador .blog-search input {
    width: 100%;
  }
}
.section-post {
  position: relative;
}
.section-post .ruta {
  position: absolute;
  top: 10px;
  right: 5%;
  padding-left: 5%;
}
.section-post .ruta a {
  color: var(--1, #233676);
  /* Texto 11 Regular */
  font-family: "Montserrat";
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 145.455% */
}
.section-post .ruta span {
  color: var(--1, #233676);
  /* Texto 11 Bold */
  font-family: "Montserrat";
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px; /* 145.455% */
  display: inline-block;   

    max-width: 25ch;         

    white-space: nowrap;       

    overflow: hidden;         

    text-overflow: ellipsis;   

    vertical-align: middle;
}
.section-post .contenedor .post-thumbnail {
margin-top: 20px;
  width: 100%;
  border-radius: 10px;

  aspect-ratio: 16 / 9; 
  max-height: 436px; 
  
  overflow: hidden;
}
.section-post .contenedor .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-post .contenedor .cont-btn-abrir-cont {
  width: 100%;
  display: none;
  margin-top: 20px;
}
.section-post .contenedor .cont-btn-abrir-cont div {
  display: flex;
  margin: auto;
  width: 207px;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px;
  background: var(--2, #F3953E);
}
.section-post .contenedor .cont-btn-abrir-cont div p {
  color: var(--5, #F2F4F8);
  /* Texto 18 Bold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-post .contenedor .post-content-wrapper {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.section-post .contenedor .post-content-wrapper .post-sidebar {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  background: var(--5, #f2f4f8);
  min-width: 30%;
}
.section-post .contenedor .post-content-wrapper .post-sidebar .titulo-aside {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--2, #f3953e);
  width: 100%;
}
.section-post .contenedor .post-content-wrapper .post-sidebar .titulo-aside p {
  color: var(--4, #fff);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-post .contenedor .post-content-wrapper .post-sidebar .titulo-aside svg {
  transition: all 0.3s ease-in-out;
}
.section-post .contenedor .post-content-wrapper .post-sidebar .cont-cerrar-cont {
  display: none;
  margin-top: 20px;
}
.section-post .contenedor .post-content-wrapper .post-sidebar ul {
  max-height: 70vh;
  opacity: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  overflow-y: auto;
}
.section-post .contenedor .post-content-wrapper .post-sidebar ul li {
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #707070;
}
.section-post .contenedor .post-content-wrapper .post-sidebar ul li a {
  color: var(--1, #233676);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-post .contenedor .post-content-wrapper .post-sidebar.active ul {
  max-height: 0;
  opacity: 0;
}
.section-post .contenedor .post-content-wrapper .post-sidebar.active .titulo-aside svg {
  transform: rotate(180deg);
}
.section-post .contenedor .post-content-wrapper .post-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}
.section-post .contenedor .post-content-wrapper .post-content .post-title {
  color: var(--1, #233676);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
}
.section-post .contenedor .post-content-wrapper .post-content .post-section h2 {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
  margin-bottom: 10px;
}
.section-post .contenedor .post-content-wrapper .post-content .post-section .section-text {
  margin-bottom: 30px;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-post .contenedor .post-content-wrapper .post-content .post-section .section-text ul li {
  list-style: disc;
  margin-left: 20px;
}
.section-post .contenedor .post-content-wrapper .post-content .post-section .section-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.section-post .contenedor .post-content-wrapper .post-content .post-section .section-images .section-image {
  width: 100%;
}
.section-post .contenedor .post-content-wrapper .post-content .post-section .section-images .section-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .section-post .contenedor .post-content-wrapper .post-content .post-section .section-images {
    grid-template-columns: 1fr;
  }
}
.section-post .contenedor .post-content-wrapper .post-content .compartir-post {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-post .contenedor .post-content-wrapper .post-content .compartir-post p {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}

.comentarios-container {
  width: 100%;
  margin-top: 40px;
}
.comentarios-container h3 {
  color: var(--1, #233676);
  /* Titulo 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 120% */
  margin-bottom: 20px;
}
.comentarios-container .comentario-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.comentarios-container .comentario-item .comentario-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.comentarios-container .comentario-item .comentario-header .comentario-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  display: inline-block;
}
.comentarios-container .comentario-item .comentario-header .comentario-author {
  color: var(--3, #000);
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.comentarios-container .comentario-item .comentario-text {
  color: var(--1, #233676);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-left: 30px;
}
.comentarios-container .comentario-item .comentario-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-top: 10px;
}

/* FORMULARIO */
.comentario-formulario {
  width: 100%;
  margin-top: 40px;
}
.comentario-formulario h3 {
  color: var(--1, #233676);
  /* Titulo 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 120% */
  margin-bottom: 20px;
}
.comentario-formulario .comment-respond form .comment-notes {
  display: none;
}
.comentario-formulario .comment-respond form .logged-in-as {
  display: none;
}
.comentario-formulario .comentario-input,
.comentario-formulario .comentario-textarea {
  width: 100%;
  background: #f7f9fc;
  border-radius: 10px;
  border: 1px solid #ececec;
  padding: 15px;
  margin-bottom: 20px;
  outline: none;
  font-size: 15px;
  transition: all 0.2s;
}
.comentario-formulario .comentario-input:focus,
.comentario-formulario .comentario-textarea:focus {
  border-color: #1e60d4;
  box-shadow: 0 0 0 2px rgba(30, 96, 212, 0.15);
}
.comentario-formulario .comentario-textarea {
  min-height: 140px;
  resize: none;
}
.comentario-formulario .comentario-submit {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  border: none;
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.comentario-formulario .comentario-submit:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}

.comment-form-cookies-consent {
  display: none;
}

.comentario-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Estilo del contenedor de autor/email lado a lado */
.comment-form-author,
.comment-form-email {
  width: 48%;
  float: left;
}

.comment-form-author {
  margin-right: 4%;
}

.comment-form-email input,
.comment-form-author input {
  height: 50px;
}

/* Limpieza */
.comment-form p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 800px) {
  .section-post .contenedor .post-content-wrapper .post-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  .section-post .contenedor .post-content-wrapper .post-sidebar.active2 {
    opacity: 1;
    transform: translateY(0);
  }
  .section-post .contenedor .post-content-wrapper .post-sidebar .cont-cerrar-cont {
    display: block;
  }
  .section-post .contenedor .cont-btn-abrir-cont {
    display: flex;
  }
  .section-post .contenedor .post-content-wrapper .post-sidebar ul {
    max-height: 400px;
    overflow: auto;
  }
}
.banner-pages-slider {
  border-radius: 0 0 20px 20px;
  width: 100%;
  height: 243px;
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 0;
}
.banner-pages-slider .ruta {
  z-index: 4;
  position: absolute;
  top: 10px;
  right: 5%;
}
.banner-pages-slider .ruta a {
  color: var(--1, #233676);
  font-family: "Montserrat";
  font-size: 11px;
  font-weight: 300;
  line-height: 16px;
}
.banner-pages-slider .ruta span {
  color: var(--1, #233676);
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
}
.banner-pages-slider .splide__track ul li .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.banner-pages-slider .splide__track ul li .banner-slide .bg-banner-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
.banner-pages-slider .splide__track ul li .banner-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--1a, #e9ebf2);
  z-index: -2;
}
.banner-pages-slider .splide__track ul li .banner-slide .content-banner-pages {
  flex: 1;
  display: flex;
  max-width: 567px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.banner-pages-slider .splide__track ul li .banner-slide .content-banner-pages h2 {
  color: var(--2, #f3953e);
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.banner-pages-slider .splide__track ul li .banner-slide .content-banner-pages p {
  color: var(--1, #233676);
  /* Texto 20 Regular */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
}
.banner-pages-slider .splide__track ul li .banner-slide .extra-banner-image {
  flex: 1;
  max-width: 329.2px;
  height: 345.53px;
  aspect-ratio: 329.2/345.53;
  position: relative;
  top: 50px;
}
.banner-pages-slider .splide__track ul li .banner-slide .extra-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner-pages-slider.splide__pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 15px;
  bottom: -40px;
}

.banner-pages-slider .splide__pagination__page {
  width: 9px;
  height: 9px;
  background-color: #f3953e; /* plomo */
  opacity: 0.5;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.banner-pages-slider .splide__pagination__page.is-active {
  background-color: #f3953e; /* azul activo */
  opacity: 1;
}

.section-construimos {
  position: relative;
  display: flex;
}
.section-construimos .contenedor {
  display: flex;
  padding: 40px 0;
  align-items: flex-start;
  gap: 48px;
  justify-content: center;
  flex: 2;
}
.section-construimos .contenedor .contenido-construimos {
  max-width: 600px;
  flex: 1;
}
.section-construimos .contenedor .contenido-construimos h3 {
  color: var(--1, #233676);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
  margin-bottom: 20px;
}
.section-construimos .contenedor .contenido-construimos p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-construimos .contenedor .video-construimos {
  max-width: 600px;
  flex: 1;
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 71/40;
  border-radius: 20px;
  overflow: hidden;
}
.section-construimos .contenedor .video-construimos #btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
.section-construimos .contenedor .video-construimos video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-talento {
  position: relative;
}
.section-talento .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-talento .contenedor .titulo-vacantes {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
  margin-bottom: 20px;
}
.section-talento .contenedor .navegador {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-talento .contenedor .navegador .filtros {
  display: flex;
  gap: 50px;
}
.section-talento .contenedor .navegador .filtros input {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(35, 54, 118, 0.2);
  background: var(--1a, #e9ebf2);
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-talento .contenedor .navegador .filtros input::-moz-placeholder {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-talento .contenedor .navegador .filtros input::placeholder {
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-talento .contenedor .navegador .filtros input:focus {
  outline: none;
  box-shadow: none; /* por si algún navegador mete sombra */
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-talento .contenedor .navegador .button-buscar {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
.section-talento .contenedor .navegador .button-buscar button {
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.section-talento .contenedor .navegador .button-buscar:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.section-talento .contenedor .paginador-talento {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-talento .contenedor .paginador-talento .left {
  color: #000;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-talento .contenedor .paginador-talento .left input {
  display: flex;
  width: 57px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  border: none;
  gap: 10px;
  border-radius: 10px;
  background: var(--1a, #e9ebf2);
  color: #000;
  /* Texto 15 Bold */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .paginador-talento .right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .paginador-talento .right #talento-first,
.section-talento .contenedor .paginador-talento .right #talento-prev,
.section-talento .contenedor .paginador-talento .right #talento-next,
.section-talento .contenedor .paginador-talento .right #talento-last {
  display: flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 22px;
  background: #f3953e;
}
.section-talento .contenedor .paginador-talento .right input {
  display: flex;
  width: 57px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  border: none;
  gap: 10px;
  border-radius: 10px;
  background: var(--1a, #e9ebf2);
  color: #000;
  /* Texto 15 Bold */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .paginador-talento .right input::-moz-placeholder {
  color: #000;
  /* Texto 15 Bold */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .paginador-talento .right input::placeholder {
  color: #000;
  /* Texto 15 Bold */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .paginador-talento .right input:focus {
  outline: none;
  box-shadow: none; /* por si algún navegador mete sombra */
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-talento .contenedor .scroll-vacantes {
  width: 100%;
  overflow: auto;
}
.section-talento .contenedor .scroll-vacantes .vacantes {
  width: 100%;
  min-width: 1160px;
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacante-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 15px;
  margin-bottom: 15px;
  background: var(--1, #233676);
  flex: 4;
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacante-head h3 {
  flex: 2;
  color: var(--1a, #e9ebf2);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacante-head p {
  flex: 1;
  color: var(--1a, #e9ebf2);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1px solid var(--1a, #e9ebf2);
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a {
  width: 100%;
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a .vacante-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 4;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  border-radius: 15px;
  border: none;
  background: #fff;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--1a, #e9ebf2);
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a .vacante-card h3 {
  flex: 2;
  color: var(--1, #233676);
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a .vacante-card p {
  flex: 1;
  color: var(--6, #99a1ad);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a .vacante-card:hover {
  background: rgba(0, 0, 0, 0.2);
}

.section-acciones {
  background: var(--5, #f2f4f8);
  position: relative;
  display: flex;
}
.section-acciones .contenedor {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.section-acciones .contenedor h2 {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.section-acciones .contenedor .acciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  flex-wrap: wrap;
}
.section-acciones .contenedor .acciones .card-accion {
  display: flex;
  width: 221px;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.section-acciones .contenedor .acciones .card-accion .img-accion {
  width: 123px;
  height: 123px;
  background: var(--4, #fff);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-acciones .contenedor .acciones .card-accion .img-accion img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-acciones .contenedor .acciones .card-accion .info-accion {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.section-innovamos {
  position: relative;
  display: flex;
}
.section-innovamos .contenedor {
  display: flex;
  padding: 40px 0;
  align-items: flex-start;
  gap: 48px;
  justify-content: center;
  flex: 2;
}
.section-innovamos .contenedor .contenido-innovamos {
  max-width: 600px;
  flex: 1;
}
.section-innovamos .contenedor .contenido-innovamos h3 {
  color: var(--1, #233676);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
  margin-bottom: 20px;
}
.section-innovamos .contenedor .contenido-innovamos p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-innovamos .contenedor .video-innovamos {
  flex: 1;
  max-width: 600px;
  flex-shrink: 0;
  aspect-ratio: 71/40;
  border-radius: 20px;
  overflow: hidden;
}
.section-innovamos .contenedor .video-innovamos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-nuestrasredes {
  position: relative;
  display: flex;
}
.section-nuestrasredes .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 48px;
  flex: 2;
}
.section-nuestrasredes .contenedor .contenido-nuestrasredes {
  max-width: 600px;
  flex: 1;
}
.section-nuestrasredes .contenedor .contenido-nuestrasredes h3 {
  color: var(--1, #233676);
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px; /* 116.667% */
  margin-bottom: 20px;
}
.section-nuestrasredes .contenedor .contenido-nuestrasredes p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  margin-bottom: 20px;
}
.section-nuestrasredes .contenedor .video-nuestrasredes {
  max-width: 600px;
  flex: 1;
  flex-shrink: 0;
  aspect-ratio: 71/40;
  border-radius: 20px;
  overflow: hidden;
}
.section-nuestrasredes .contenedor .video-nuestrasredes img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-redes-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-redes-content .url-text {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.section-talento .contenedor .navegador .filtros {
  width: 80%;
}

@media (max-width: 800px) {
  .datos-contacto .contenedor .cont-datos .dato {
    width: -moz-fit-content;
    width: fit-content;
  }
  .banner-pages-slider {
    height: 100%;
  }
  .banner-pages-slider .splide__track ul li .banner-slide {
    flex-direction: column;
    padding-top: 30px;
  }
  .banner-pages-slider .splide__track ul li .banner-slide .content-banner-pages {
    align-items: center;
    text-align: center;
  }
  .banner-pages-slider .splide__track ul li .banner-slide .content-banner-pages h2 {
    font-size: 40px;
  }
  .section-construimos .contenedor .contenido-construimos {
    flex: none;
  }
  .section-construimos .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .section-construimos .contenedor .video-construimos {
    width: 100%;
  }
  .section-talento .contenedor .titulo-vacantes {
    font-size: 40px;
    line-height: 40px;
  }
  .section-talento .contenedor .navegador .filtros {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .section-talento .contenedor .navegador {
    flex-direction: column;
    gap: 20px;
  }
  .section-talento .contenedor .paginador-talento {
    flex-direction: column;
    gap: 20px;
  }
  .section-talento .contenedor .scroll-vacantes .vacantes .vacante-head {
    display: none;
  }
  .section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid a .vacante-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--5, #F2F4F8);
  }
  .section-talento .contenedor .scroll-vacantes .vacantes .vacantes-grid {
    border: none;
    gap: 5px;
  }
  .section-talento .contenedor .scroll-vacantes .vacantes {
    min-width: 100px;
  }
  .section-acciones .contenedor h2 {
    font-size: 40px;
  }
  .section-innovamos .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .section-innovamos .contenedor .contenido-innovamos {
    order: -1;
    flex: none;
  }
  .section-innovamos .contenedor .video-innovamos {
    width: 100%;
  }
  .section-nuestrasredes .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .section-nuestrasredes .contenedor .video-nuestrasredes {
    width: 100%;
  }
  .section-nuestrasredes .contenedor .contenido-nuestrasredes {
    flex: none;
  }
}
.section-vacante .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex: 3;
  padding: 40px 0;
  margin-bottom: 80px;
}
.section-vacante .contenedor .left {
  flex: 2;
}
.section-vacante .contenedor .left .cabecera-vacante {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
.section-vacante .contenedor .left .cabecera-vacante .title-section {
  color: var(--1, #233676);
  /* Titulo 40 Bold */
  font-family: "Montserrat";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
  margin-bottom: 11px;
}
.section-vacante .contenedor .left .cabecera-vacante .caractersisticas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}
.section-vacante .contenedor .left .cabecera-vacante .caractersisticas p {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--1a, #e9ebf2);
  color: var(--1, #233676);
  /* Texto 13 Regular */
  font-family: "Montserrat";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-vacante .contenedor .left .cabecera-vacante .area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.section-vacante .contenedor .left .cabecera-vacante .area svg {
  flex-shrink: 0;
}
.section-vacante .contenedor .left .cabecera-vacante .area p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 50px;
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante .titulo-item-vacante {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante .titulo-item-vacante img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante .titulo-item-vacante h3 {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante .desc {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-vacante .contenedor .left .contenido-vacante .item-vacante .desc ul li {
  list-style: disc;
  margin-left: 25px;
}
.section-vacante .contenedor .left .exclusivo {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: rgba(87, 209, 99, 0.1);
  color: var(--Blanco, #fff);
  /* Texto 18 Bold */
  color: #34a853;
  /* Texto 18 Bold */
  font-family: "Montserrat";
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-vacante .contenedor .right {
  width: 100%;
  height: 100%;
  flex: 1;
  position: sticky;
  top: 120px;
}
.section-vacante .contenedor .right .datos-vacante {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: #fff;
  /* Sombra suave */
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: -2;
}
.section-vacante .contenedor .right .datos-vacante div h3 {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
}
.section-vacante .contenedor .right .datos-vacante div p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-vacante .contenedor .right .datos-vacante .button-postular {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
.section-vacante .contenedor .right .datos-vacante .button-postular a {
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 21px; /* 131.25% */
}
.section-vacante .contenedor .right .datos-vacante .button-postular:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}

@media (max-width: 800px) {
  .section-vacante .contenedor .right {
    position: fixed;
    bottom: 0;
    top: auto;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    left: 0;
  }
  .section-vacante .contenedor .right .datos-vacante {
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0 0;
  }
  .section-vacante .contenedor .left .cabecera-vacante .title-section {
    font-size: 30px;
  }
}
.datos-contacto .contenedor {
  padding: 40px 0 0 0;
}
.datos-contacto .contenedor .cont-datos {
  max-width: 824px;
  margin: auto;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--1, #233676);
}
.datos-contacto .contenedor .cont-datos .dato {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.datos-contacto .contenedor .cont-datos .dato svg {
  flex-shrink: 0;
}
.datos-contacto .contenedor .cont-datos .dato span {
  min-width: 100px;
}

.contacto .contenedor h2 {
  color: var(--1, #233676);
  text-align: center;
  /* Titulo 30 Bold */
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px;
  margin-bottom: 20px;
}
.contacto .contenedor p {
  color: var(--3, #000);
  text-align: center;
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 400px;
  margin: auto;
}
.contacto .contenedor .form-contacto {
  max-width: 824px;
  margin: auto;
  margin-top: 40px;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p {
  width: 100%;
  max-width: none;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo {
  width: 100%;
  display: flex;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span {
  width: 100%;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span input,
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span textarea {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 20px;
  border: 1px solid rgba(35, 54, 118, 0.2);
  background: linear-gradient(0deg, rgba(35, 54, 118, 0.1) 0%, rgba(35, 54, 118, 0.1) 100%), #fff;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span input::-moz-placeholder, .contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span textarea::-moz-placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span input::placeholder,
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso p .campo span textarea::placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble p {
  width: 100%;
  max-width: none;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble p .campo {
  width: 100%;
  display: flex;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble p .campo span {
  width: 100%;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble p .campo span input {
  width: 100%;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span {
  margin: 0;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #f3953e;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  outline: none;
  background: #fff;
  transition: 0.25s ease;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span input[type=checkbox]:checked {
  background: #f3953e;
  border-color: #f3953e;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span label span {
  color: var(--3, #000);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .terminos p span span span label a {
  color: var(--3, #000);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .boton-form {
  width: 100%;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .boton-form p input {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border: none;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .boton-form p input:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}

.mapas-contacto .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.mapas-contacto .contenedor .titulos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto;
  max-width: 400px;
}
.mapas-contacto .contenedor .titulos h2 {
  color: var(--2, #f3953e);
  text-align: center;
  /* Titulo 50 Bold */
  font-family: "Pacifico";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 100% */
}
.mapas-contacto .contenedor .titulos p {
  color: var(--1, #233676);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.mapas-contacto .contenedor .sedes {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 800px;
  margin: auto;
}
.mapas-contacto .contenedor .sedes .sede-btn {
  display: flex;
  padding: 5px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #eee;
  color: var(--1, #233676);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  transition: all 0.3s ease;
}
.mapas-contacto .contenedor .sedes .sede-btn.active {
  background: var(--1, #233676);
  color: var(--4, #fff);
  text-align: center;
  /* Texto 15 Bold */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 133.333% */
}
.mapas-contacto .contenedor .mapa-cont {
  height: 500px;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .img-mapa {
  width: 100%;
  height: 100%;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .img-mapa img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a {
  border-radius: 20px;
  background: var(--1, #233676);
  max-width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 17px;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a p {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--1, #233676);
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  transition: all 0.3s ease;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a .svg-waze path {
  transition: all 0.3s ease;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a:hover {
  background: var(--2, #F3953E);
  max-width: 200px;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a:hover p {
  max-width: 100%;
  margin-right: 10px;
  opacity: 1;
}
.mapas-contacto .contenedor .mapa-cont .mapa-item .links-mapa a:hover .svg-waze path {
  fill: #fff;
}

.mapa-cont {
  position: relative;
  width: 100%;
  height: auto;
}

.mapa-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mapa-item.active {
  opacity: 1;
  pointer-events: auto;
}

.puntero {
  position: absolute;
  width: 10%;
  height: auto;
  transform: translate(-50%, -100%);
  transition: top 0.5s ease, left 0.5s ease, opacity 0.5s ease;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

@media (max-width: 800px) {
  .datos-contacto .contenedor .cont-datos {
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    gap: 30px;
  }
  .contacto .contenedor .form-contacto .wpcf7 form .formulario-caso .fila-doble {
    flex-direction: column;
  }
  .mapas-contacto .contenedor .titulos h2 {
    font-size: 40px;
  }
  .mapas-contacto .contenedor .sedes {
    flex-direction: column;
    align-items: center;
  }
}
.banner-gracias {
  position: relative;
  display: flex;
  height: calc(100vh - var(--header-h));
}
.banner-gracias .bg-banner-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 1;
}
.banner-gracias::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #000;
  mix-blend-mode: multiply;
  z-index: -1;
}
.banner-gracias .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-gracias .contenedor .central {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  max-width: 400px;
  margin: auto;
}
.banner-gracias .contenedor .central h2 {
  color: var(--4, #FFF);
  text-align: center;
  /* Titulo 40 Bold */
  font-family: "Montserrat";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px; /* 112.5% */
}
.banner-gracias .contenedor .central p {
  color: var(--4, #FFF);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.banner-gracias .contenedor .central a {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
}
.banner-gracias .contenedor .central a:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.banner-gracias .contenedor .subtexto {
  max-width: 962px;
}
.banner-gracias .contenedor .subtexto p {
  color: var(--4, #FFF);
  text-align: center;
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.contenido-reclamo .contenedor h2 {
  color: var(--1, #233676);
  /* Texto 20 Bold */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px; /* 125% */
}
.contenido-reclamo .contenedor p {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.contenido-reclamo .contenedor ul li {
  margin-left: 25px;
  list-style: disc;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.section-form-reclamo .contenedor .volver-btn {
  width: 100%;
  margin-top: 30px;
}
.section-form-reclamo .contenedor .volver-btn a {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #233676 0%, #233676 100%);
  color: var(--4, #FFF);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones {
  max-width: 935px;
  display: flex;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  /* Sombra azul */
  box-shadow: 0 1px 35px 0 rgba(27, 25, 40, 0.05);
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones h3 {
  color: var(--1, #233676);
  /* Texto 18 Bold */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px; /* 127.778% */
  width: 100%;
  margin-top: 15px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones p {
  width: 100%;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-radio {
  width: 100%;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .centrado p input {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3953e 0%, #f3953e 100%);
  width: -moz-max-content;
  width: max-content;
  color: var(--4, #fff);
  /* Texto 16 Regular */
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  transition: all 0.3s ease;
  border: none;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .centrado p input:hover {
  background: linear-gradient(180deg, #f3953e 0%, #cf7828 100%);
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica {
  width: 100%;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span input, .section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span textarea {
  margin: auto;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(35, 54, 118, 0.2);
  background: rgba(35, 54, 118, 0.1);
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span input::-moz-placeholder, .section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span textarea::-moz-placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span input::placeholder, .section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-unica p span textarea::placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble {
  width: 100%;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p span {
  width: 100%;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p span input {
  margin: auto;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(35, 54, 118, 0.2);
  background: rgba(35, 54, 118, 0.1);
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p span input::-moz-placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p span input::placeholder {
  color: var(--3, #000);
  /* Texto 15 Regular */
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 800px) {
  .section-form-reclamo .contenedor .wpcf7 form .libro-reclamaciones .fila-doble p {
    flex-direction: column;
    gap: 0;
  }
}/*# sourceMappingURL=app.css.map */