@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Black.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BlackItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
: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: "Satoshi", 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;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  #overlay.active {
    visibility: visible;
    opacity: 0.7;
    z-index: 1;
  }
  #overlay.active2 {
    visibility: visible;
    opacity: 0.7;
    z-index: 99;
  }
}

.hidden {
  display: none;
}

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

section {
  width: 100%;
  min-height: 85vh;
  padding: 2.5rem 0;
}

.titulo {
  max-width: 100%;
}
.titulo-seccion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.titulo-seccion_titulo {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 120%;
  color: #0c549f;
  text-align: center;
}
@media (max-width: 780px) {
  .titulo-seccion_titulo {
    font-size: 2rem;
  }
}
.titulo-seccion_descripcion {
  font-size: 1.25rem;
  font-weight: 100;
  line-height: 120%;
  color: #4d4d4d;
  width: 65rem;
  max-width: 100%;
}
@media (max-width: 780px) {
  .titulo-seccion_descripcion {
    font-size: 1rem;
  }
}

.whatsAppFlotante {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  transition: all 0.5s ease;
  z-index: 10;
}
@media (max-width: 780px) {
  .whatsAppFlotante {
    bottom: 1rem;
    right: 5vw;
  }
}
.whatsAppFlotante .cardWhatsApp {
  position: absolute;
  bottom: 3.8rem;
  right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  width: 18rem;
  max-height: 0;
  overflow: hidden;
}
.whatsAppFlotante .cardWhatsApp .titulo {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background-color: #0c549f;
  border-radius: 1rem 1rem 0 0;
  width: 100%;
  display: flex;
  padding: 1rem;
  text-align: center;
  font-weight: 100;
}
@media (max-width: 780px) {
  .whatsAppFlotante .cardWhatsApp .titulo {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}
.whatsAppFlotante .cardWhatsApp ul {
  background-color: white;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem;
}
@media (max-width: 780px) {
  .whatsAppFlotante .cardWhatsApp ul {
    padding: 0;
  }
}
.whatsAppFlotante .cardWhatsApp ul li {
  padding: 0.5rem;
}
.whatsAppFlotante .cardWhatsApp ul li:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.whatsAppFlotante .cardWhatsApp ul li a .imagen {
  border-radius: 50%;
  position: relative;
}
.whatsAppFlotante .cardWhatsApp ul li a .imagen::before {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #34a853;
  bottom: 0.2rem;
  right: 0.2rem;
  border-radius: 50%;
}
.whatsAppFlotante .cardWhatsApp ul li a .imagen img {
  border-radius: 50%;
  height: 2.8rem;
  width: 2.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #cecece;
}
.whatsAppFlotante .cardWhatsApp ul li a .contenido .nombre {
  color: #0c549f;
  font-weight: 600;
}
@media (max-width: 780px) {
  .whatsAppFlotante .cardWhatsApp ul li a .contenido .nombre {
    font-size: 0.8rem;
  }
}
.whatsAppFlotante .cardWhatsApp ul li a .contenido .disponibilidad {
  color: #4d4d4d;
  font-weight: 100;
}
@media (max-width: 780px) {
  .whatsAppFlotante .cardWhatsApp ul li a .contenido .disponibilidad {
    font-size: 0.8rem;
  }
}
.whatsAppFlotante .button > span {
  text-wrap: nowrap;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 0;
  opacity: 0;
  border-radius: 3rem;
  padding: 0;
  background-color: white;
  transform: translateX(2rem);
  transition: all 0.5s ease;
  position: relative;
  color: #0c549f;
  box-shadow: 0px 1px 15px 0px rgba(2, 159, 225, 0.25);
  z-index: 1;
}
@media (max-width: 780px) {
  .whatsAppFlotante .button > span {
    font-size: 0.8rem;
  }
}
.whatsAppFlotante .button button {
  position: relative;
  z-index: 2;
}
@media (max-width: 780px) {
  .whatsAppFlotante .button button svg {
    height: 3.5rem;
  }
}
.whatsAppFlotante:hover .button > span {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  opacity: 1;
  max-width: 20rem;
}
.whatsAppFlotante:hover .cardWhatsApp {
  max-height: 30rem;
  opacity: 1;
  pointer-events: all;
}

main:not(:has(.seccionProducts)) {
  isolation: isolate;
  contain: layout paint;
}

.loader {
  opacity: 0;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #0C549F 0%, #041E39 100%);
  z-index: -1;
  transition: all 0.5s ease;
}
.loader.active {
  opacity: 1;
  z-index: 999;
}
.loader .logo .sniper {
  width: 0;
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  animation: animFw 8s linear infinite;
}
.loader .logo .sniper::after, .loader .logo .sniper::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 9px;
  right: -2px;
  opacity: 0;
  transform: rotate(-45deg) translateX(0px);
  box-sizing: border-box;
  animation: coli1 0.3s linear infinite;
}
.loader .logo .sniper::before {
  top: -4px;
  transform: rotate(45deg);
  animation: coli2 0.3s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes coli1 {
  0% {
    transform: rotate(-45deg) translateX(0px);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-45deg) translateX(-45px);
    opacity: 0;
  }
}
@keyframes coli2 {
  0% {
    transform: rotate(45deg) translateX(0px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translateX(-45px);
    opacity: 0.7;
  }
}
header {
  top: 0;
  left: 0;
  z-index: 20;
  padding: 1.5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 1024px) {
  header {
    padding: 1rem 0;
  }
}
header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0c549f;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  header .contenedor {
    gap: 2rem;
  }
}
header .contenedor .logo {
  height: 3.25rem;
  width: 100%;
}
header .contenedor .logo a {
  height: 100%;
  width: 100%;
}
header .contenedor .logo a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
header .contenedor .logo a img.active {
  display: none;
}
@media (max-width: 780px) {
  header .contenedor .logo a img {
    display: none;
  }
  header .contenedor .logo a img.active {
    display: flex;
  }
}
header .contenedor nav {
  transition: all 0.5s ease;
  z-index: 5;
}
header .contenedor nav > ul > li > a, header .contenedor nav > ul > li > span {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  cursor: pointer;
}
header .contenedor nav > ul > li > a::before, header .contenedor nav > ul > li > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
header .contenedor nav > ul > li > a:hover, header .contenedor nav > ul > li > span:hover {
  background-color: #029fe1;
  color: white;
}
header .contenedor nav > ul > li > a:hover::before, header .contenedor nav > ul > li > span:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  header .contenedor nav > ul > li > a, header .contenedor nav > ul > li > span {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
header .contenedor nav > ul > li.active > a, header .contenedor nav > ul > li.active > span {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
header .contenedor nav > ul > li.active > a::before, header .contenedor nav > ul > li.active > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
header .contenedor nav > ul > li.active > a:hover, header .contenedor nav > ul > li.active > span:hover {
  background-color: transparent;
  color: white;
}
header .contenedor nav > ul > li.active > a:hover::before, header .contenedor nav > ul > li.active > span:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  header .contenedor nav > ul > li.active > a, header .contenedor nav > ul > li.active > span {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
header .contenedor nav > ul > li .subMenu {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  background-color: white;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 0;
  gap: 4rem;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  transition: all 0.5s ease;
}
header .contenedor nav > ul > li .subMenu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-image: var(--bg-img-menu);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  z-index: 3;
}
header .contenedor nav > ul > li.extra .subMenu::before {
    width: 40%;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel {
  width: 20%;
  position: relative;
  height: 100%;
  padding: 1rem 0;
  gap: 2rem;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel:has(.two-columns) {
  width: 40%;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul {
  height: 100%;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul.two-columns {
  display: grid;
  grid-template-rows: repeat(6, 1.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  gap: 1rem;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li > a,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li span {
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 100;
    color: #2b2a28;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.1;
    transition: all 0.5s ease;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li > a svg,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li span svg {
  opacity: 0;
  transition: all 0.5s ease;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel {
  padding: 1rem 0 1rem 3rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  /*width: calc(100vw - 158%);*/
  width: calc(100vw - 173%);
  height: 100%;
  /*overflow: hidden;*/
  opacity: 0;
  /*gap: 2rem;*/
  z-index: -1;
  transition: all 0.5s ease;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #029fe1;
  opacity: 0.2;
  z-index: -1;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > ul {
  width: 100%;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > ul li a,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > ul li span {
  font-size: 1rem;
  font-weight: 100;
  color: #2b2a28;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > ul li a svg,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > ul li span svg {
  display: none;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li .nivel > a {
  color: #029fe1;
  font-size: 1.125rem;
  font-style: italic;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li.active > a,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li.active span, header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li:hover > a,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li:hover span {
  color: #0c549f;
  transform: translateX(5%);
  font-weight: 600;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li.active > a svg,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li.active span svg, header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li:hover > a svg,
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li:hover span svg {
  opacity: 1;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li.active .nivel, header .contenedor nav > ul > li .subMenu .contenedor > .nivel > ul > li:hover .nivel {
  opacity: 1;
  z-index: 2;
}
header .contenedor nav > ul > li .subMenu .contenedor > .nivel > a {
  color: #029fe1;
  font-size: 1.125rem;
  font-style: italic;
}
header .contenedor nav > ul > li:hover .subMenu {
  max-height: 30rem;
  opacity: 1;
  z-index: 99;
}
header .contenedor nav > ul > li:hover .subMenu > ul {
  width: 20rem;
}
header .contenedor nav > ul > li:hover .subMenu > ul li ul {
  position: absolute;
  right: 0;
  transform: translateX(100%);
}
@media (max-width: 1180px) {
  header .contenedor nav {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 22rem;
    max-width: 95%;
    padding: 6rem 5vw 5vw 5vw;
    border-radius: 2rem 0 0 2rem;
    background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
    transform: translateX(150%);
  }
  header .contenedor nav::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    height: 15rem;
    width: 100%;
    background-image: url("../../images/txt_burger_menu.webp");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }
  header .contenedor nav > ul > li {
    flex-direction: column;
    gap: 0;
    transition: all 0.5s ease;
  }
  header .contenedor nav > ul > li .subMenu {
    position: relative;
    height: 0;
    max-height: 0;
    opacity: 0;
    top: 0;
    bottom: auto;
    left: 0;
    transform: translateY(0);
    background: transparent;
    box-shadow: none;
    transition: all 0.5s ease;
  }
  header .contenedor nav > ul > li .subMenu::before {
    display: none;
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel {
    width: 100% !important;
    gap: 0;
    padding: 0;
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul {
    gap: 0;
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li .nivel {
    display: none;
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li span,
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li a {
    color: #fff;
    padding: 0.3rem 1rem;
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li.active span,
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li.active a {
    color: #fff;
    font-weight: 100;
    transform: translateX(0);
  }
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li.active span svg,
  header .contenedor nav > ul > li .subMenu .contenedor .nivel ul li.active a svg {
    display: none;
  }
  header .contenedor nav > ul > li.responsive .subMenu {
    max-height: 50rem;
    height: 13rem;
    overflow-y: auto;
    opacity: 1;
    /* Barra de desplazamiento */
  }
  header .contenedor nav > ul > li.responsive .subMenu::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(12, 83, 159, 0.2352941176);
    border-radius: 20px;
  }
  header .contenedor nav > ul > li.responsive .subMenu::-webkit-scrollbar:window-inactive {
    display: none;
  }
  header .contenedor nav > ul > li.responsive .subMenu::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 6px;
  }
  header .contenedor nav.active {
    opacity: 1;
    transform: translateX(0);
    align-items: flex-start;
  }
  header .contenedor nav.active ul {
    flex-direction: column;
    justify-content: flex-start;
    display: flex !important;
    gap: 0 !important;
  }
  header .contenedor nav.active ul li {
    width: 100%;
  }
  header .contenedor nav.active ul li a,
  header .contenedor nav.active ul li span {
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 800;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
    transition: all 0.5s ease;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  header .contenedor nav.active ul li a::before,
  header .contenedor nav.active ul li span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }
  header .contenedor nav.active ul li a:hover,
  header .contenedor nav.active ul li span:hover {
    background-color: transparent;
    color: white;
  }
  header .contenedor nav.active ul li a:hover::before,
  header .contenedor nav.active ul li span:hover::before {
    opacity: 0;
  }
}
@media (max-width: 1180px) and (max-width: 780px) {
  header .contenedor nav.active ul li a,
  header .contenedor nav.active ul li span {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
header .contenedor .burger {
  background-color: #fff;
  position: relative;
  z-index: 10;
  border-radius: 50%;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .contenedor .burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #0c549f;
  border-radius: 1rem;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .contenedor .burger span:nth-child(1) {
  top: 10px;
}
header .contenedor .burger span:nth-child(2), header .contenedor .burger span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
header .contenedor .burger span:nth-child(4) {
  bottom: 10px;
}
@media (max-width: 1180px) {
  header .contenedor .burger {
    display: flex;
  }
}
header .contenedor .burger.active span:nth-child(1) {
  top: 19px;
  width: 0%;
}
header .contenedor .burger.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
header .contenedor .burger.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .contenedor .burger.active span:nth-child(4) {
  bottom: 19px;
  width: 0%;
}
header.active {
  border-bottom: 1px solid white;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
header.active::before {
  opacity: 1;
}
header.active .contenedor .logo a img:first-child {
  display: none;
}
header.active .contenedor .logo a img.active {
  display: block;
}

section.bannerHeader {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 20rem;
  background-image: var(--bg-banner-header);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 1rem 0;
}
section.bannerHeader .contenedor .breadcrumbs {
  position: absolute;
  top: 0;
}
section.bannerHeader .contenedor .breadcrumbs * {
  color: white;
  font-size: 1.125rem;
  font-weight: 400;
}
@media (max-width: 780px) {
  section.bannerHeader .contenedor .breadcrumbs * {
    font-size: 1rem;
  }
}
section.bannerHeader .contenedor h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
}
section.bannerHeader .contenedor .caja {
  position: absolute;
  padding: 2rem;
  width: 35rem;
  max-width: 100%;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 780px) {
  section.bannerHeader .contenedor .caja {
    padding: 1rem;
  }
}
section.bannerHeader .contenedor .caja h1 {
  color: #0c549f;
}
section.bannerHeader .contenedor .caja .descripcion * {
  font-size: 1.125rem;
  color: #2b2a28;
}
@media (max-width: 780px) {
  section.bannerHeader .contenedor .caja .descripcion * {
    font-size: 1rem;
  }
}
section.bannerHeader.simple .contenedor::before {
  content: attr(data-title);
  position: absolute;
  font-size: 8rem;
  font-weight: 700;
  bottom: 0;
  left: 0;
  transform: translateX(-15%);
  line-height: 84%;
  color: white;
  z-index: 1;
  opacity: 0.1;
}
section.bannerHeader.simple .contenedor h1 {
  position: absolute;
  bottom: 0;
}
section.bannerHeader.corto {
  margin-bottom: 8rem;
}
section.bannerHeader.corto .contenedor .caja {
  transform: translateY(45%);
  bottom: 0;
}
section.bannerHeader.full {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 45rem;
  position: relative;
}
section.bannerHeader.full::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  left: 0;
  width: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.34) 20%, rgba(255, 255, 255, 0.7) 60%);
}
@media (max-width: 780px) {
  section.bannerHeader.full::before {
    background: radial-gradient(circle at 50% 41%, rgba(255, 255, 255, 0.34) 17%, rgba(255, 255, 255, 0.7) 56%);
  }
}
section.bannerHeader.full .contenedor {
  z-index: 2;
}
section.bannerHeader.full .contenedor .breadcrumbs * {
  color: #0c549f;
  fill: #0c549f;
}
section.bannerHeader.full .contenedor .caja {
  top: 20%;
}
@media (max-width: 780px) {
  section.bannerHeader.full .contenedor .caja {
    top: auto;
    bottom: 12%;
  }
}

footer {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4rem 0;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
}
@media (max-width: 780px) {
  footer {
    padding: 2rem 0;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-footer);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.4;
}
footer .contenedor {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 25rem minmax(0, 1fr) 18rem;
  gap: 2rem;
}
@media (max-width: 1180px) {
  footer .contenedor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1180px) and (max-width: 780px) {
  footer .contenedor {
    display: flex;
    flex-direction: column;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 1180px) {
  footer .contenedor .footer-detalle {
    grid-area: 1/1/2/3;
    width: 25rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
footer .contenedor .footer-detalle img {
  height: 3.75rem;
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 1180px) {
  footer .contenedor .footer-detalle img {
    -o-object-position: center;
       object-position: center;
  }
}
footer .contenedor .footer-detalle_descripcion * {
  color: white;
  font-size: 1.125rem;
  font-weight: 300;
}
@media (max-width: 1180px) {
  footer .contenedor .footer-detalle_descripcion * {
    text-align: center;
  }
}
@media (max-width: 780px) {
  footer .contenedor .footer-detalle_descripcion * {
    font-size: 1rem;
  }
}
footer .contenedor .footer-detalle_descripcion strong,
footer .contenedor .footer-detalle_descripcion b {
  font-weight: 600;
}
@media (max-width: 1180px) {
  footer .contenedor .footer-menu {
    grid-area: 2/1/3/2;
    margin: 0 0 0 auto;
    width: 25rem;
    max-width: 100%;
  }
}
@media (max-width: 1180px) and (max-width: 780px) {
  footer .contenedor .footer-menu {
    margin: 0 auto;
    justify-content: center;
  }
}
@media (max-width: 780px) {
  footer .contenedor .footer-menu ul {
    display: flex;
    align-items: center;
  }
}
footer .contenedor .footer-menu ul * {
  color: white;
  font-size: 1.125rem;
  font-weight: 300;
}
@media (max-width: 780px) {
  footer .contenedor .footer-menu ul * {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}
footer .contenedor .footer-menu ul li:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 780px) {
  footer .contenedor .footer-menu ul li:first-child {
    font-size: 1.125rem;
  }
}
@media (max-width: 1180px) {
  footer .contenedor .footer-contacto {
    grid-area: 2/2/3/3;
    margin: 0 auto 0 0;
    width: 20rem;
    max-width: 100%;
  }
}
@media (max-width: 1180px) and (max-width: 780px) {
  footer .contenedor .footer-contacto {
    margin: 0 auto;
    width: 25rem;
  }
}
footer .contenedor .footer-contacto ul * {
  color: white;
  font-size: 1.125rem;
  font-weight: 300;
}
@media (max-width: 780px) {
  footer .contenedor .footer-contacto ul * {
    font-size: 1rem;
  }
}
footer .contenedor .footer-contacto ul li svg {
  height: 1.875rem;
  width: auto;
  aspect-ratio: 1/1;
}
footer .contenedor .footer-contacto ul li:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 780px) {
  footer .contenedor .footer-contacto ul li:first-child {
    text-align: center;
    width: 100%;
  }
}
footer .contenedor .footer-contacto_links {
  flex: 1;
}
footer .contenedor .footer-redes {
  grid-area: 2/1/3/4;
}
@media (max-width: 1180px) {
  footer .contenedor .footer-redes {
    grid-area: 3/1/4/3;
  }
}
footer .contenedor .footer-redes span {
  font-size: 1.25rem;
  color: white;
  font-weight: 300;
}
@media (max-width: 780px) {
  footer .contenedor .footer-redes span {
    font-size: 1rem;
  }
}
footer .contenedor .footer-redes ul li svg {
  height: 1.875rem;
  width: auto;
  aspect-ratio: 1/1;
}
footer .contenedor .marca-invitro {
  position: absolute;
  bottom: -2rem;
  right: 0;
  color: white;
  font-size: 1.125rem;
  font-weight: 300;
  pointer-events: none;
}
@media (max-width: 780px) {
  footer .contenedor .marca-invitro {
    font-size: 1rem;
    bottom: 0rem;
    right: 50%;
    transform: translateX(50%);
  }
}
footer .contenedor .marca-invitro strong {
  font-weight: 600;
}

section.seccionInformacion, section#seccionFormulario, section#seccionFormularioNosotros {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 780px) {
  section.seccionInformacion, section#seccionFormulario, section#seccionFormularioNosotros {
    padding: 2rem 0;
  }
}
section.seccionInformacion .contenedor, section#seccionFormulario .contenedor, section#seccionFormularioNosotros .contenedor {
  position: relative;
  border-radius: 1.5rem;
}
section.seccionInformacion .contenedor::before, section.seccionInformacion .contenedor::after, section#seccionFormulario .contenedor::before, section#seccionFormulario .contenedor::after, section#seccionFormularioNosotros .contenedor::before, section#seccionFormularioNosotros .contenedor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  border-radius: 1.5rem;
  z-index: 1;
}
@media (max-width: 1024px) {
  section.seccionInformacion .contenedor::before, section.seccionInformacion .contenedor::after, section#seccionFormulario .contenedor::before, section#seccionFormulario .contenedor::after, section#seccionFormularioNosotros .contenedor::before, section#seccionFormularioNosotros .contenedor::after {
    height: 100%;
  }
}
section.seccionInformacion .contenedor::before, section#seccionFormulario .contenedor::before, section#seccionFormularioNosotros .contenedor::before {
  background-image: var(--bg-seccion-informacion);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.seccionInformacion .contenedor::after, section#seccionFormulario .contenedor::after, section#seccionFormularioNosotros .contenedor::after {
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 0.7;
}
section.seccionInformacion .contenedor .caja, section#seccionFormulario .contenedor .caja, section#seccionFormularioNosotros .contenedor .caja {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30rem;
}
@media (max-width: 1024px) {
  section.seccionInformacion .contenedor .caja, section#seccionFormulario .contenedor .caja, section#seccionFormularioNosotros .contenedor .caja {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    gap: 1rem;
  }
}
@media (max-width: 780px) {
  section.seccionInformacion .contenedor .caja, section#seccionFormulario .contenedor .caja, section#seccionFormularioNosotros .contenedor .caja {
    padding: 2rem 1.5rem 0;
  }
}
section.seccionInformacion .contenedor .caja-contenido, section#seccionFormulario .contenedor .caja-contenido, section#seccionFormularioNosotros .contenedor .caja-contenido {
  width: 30rem;
  max-width: 100%;
  height: 90%;
}
section.seccionInformacion .contenedor .caja-contenido h2, section#seccionFormulario .contenedor .caja-contenido h2, section#seccionFormularioNosotros .contenedor .caja-contenido h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #029fe1;
}
@media (max-width: 780px) {
  section.seccionInformacion .contenedor .caja-contenido h2, section#seccionFormulario .contenedor .caja-contenido h2, section#seccionFormularioNosotros .contenedor .caja-contenido h2 {
    font-size: 2rem;
  }
}
section.seccionInformacion .contenedor .caja-contenido_descripcion *, section#seccionFormulario .contenedor .caja-contenido_descripcion *, section#seccionFormularioNosotros .contenedor .caja-contenido_descripcion * {
  color: white;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 780px) {
  section.seccionInformacion .contenedor .caja-contenido_descripcion *, section#seccionFormulario .contenedor .caja-contenido_descripcion *, section#seccionFormularioNosotros .contenedor .caja-contenido_descripcion * {
    font-size: 1rem;
  }
}
section.seccionInformacion .contenedor .caja-contenido a, section#seccionFormulario .contenedor .caja-contenido a, section#seccionFormularioNosotros .contenedor .caja-contenido a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.seccionInformacion .contenedor .caja-contenido a::before, section#seccionFormulario .contenedor .caja-contenido a::before, section#seccionFormularioNosotros .contenedor .caja-contenido a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionInformacion .contenedor .caja-contenido a:hover, section#seccionFormulario .contenedor .caja-contenido a:hover, section#seccionFormularioNosotros .contenedor .caja-contenido a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionInformacion .contenedor .caja-contenido a:hover::before, section#seccionFormulario .contenedor .caja-contenido a:hover::before, section#seccionFormularioNosotros .contenedor .caja-contenido a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionInformacion .contenedor .caja-contenido a, section#seccionFormulario .contenedor .caja-contenido a, section#seccionFormularioNosotros .contenedor .caja-contenido a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionInformacion .contenedor .caja img, section#seccionFormulario .contenedor .caja img, section#seccionFormularioNosotros .contenedor .caja img {
  height: 100%;
  width: auto;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  section.seccionInformacion .contenedor .caja img, section#seccionFormulario .contenedor .caja img, section#seccionFormularioNosotros .contenedor .caja img {
    max-width: 100%;
  }
}
section#seccionFormulario .contenedor::before {
  opacity: 0.2;
}
section#seccionFormulario .contenedor::after {
  background: white;
  opacity: 0.1;
}
section#seccionFormulario .contenedor .caja {
  grid-template-columns: 30rem minmax(0, 1fr);
}
@media (max-width: 1024px) {
  section#seccionFormulario .contenedor .caja {
    flex-direction: column-reverse;
  }
}
section#seccionFormulario .contenedor .caja-contenido {
  width: 100%;
}
section#seccionFormulario .contenedor .caja-contenido * {
  color: white;
  font-size: 1.25rem;
  font-weight: 100;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 780px) {
  section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs {
    display: flex;
    flex-direction: column;
  }
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span {
  width: 100%;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span input,
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span select,
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #0c549f;
  border: 1px solid #0c549f;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span input::-moz-placeholder, section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span select::-moz-placeholder, section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span textarea::-moz-placeholder {
  color: #0c549f;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span input::placeholder,
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span select::placeholder,
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span textarea::placeholder {
  color: #0c549f;
}
@media (max-width: 780px) {
  section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span input,
  section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span select,
  section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span textarea {
    font-size: 1rem;
  }
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span.fileContacto {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #0c549f;
  border: 1px solid #0c549f;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span.fileContacto span {
  width: -moz-fit-content;
  width: fit-content;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span.fileContacto span.wpcf7-form-control-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span.fileContacto input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span:nth-child(2) {
  grid-area: 2/1/3/3;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .inputs > span .wpcf7-not-valid-tip {
  font-size: 0.9rem;
  color: red;
  bottom: -0.5rem;
  left: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.2rem;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .validsInputs button[type=submit] {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: #0c549f;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .validsInputs button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0c549f;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .validsInputs button[type=submit]:hover {
  background-color: #029fe1;
  color: white;
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .validsInputs button[type=submit]:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .validsInputs button[type=submit] {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section#seccionFormulario .contenedor .caja-contenido #wpcf7-f358-o1 form .wpcf7-response-output {
  margin: 0;
  padding: 0.5rem;
  border-color: red;
  font-size: 1rem;
}
section#seccionFormularioNosotros {
  height: 30rem;
  min-height: 30rem;
}
@media (max-width: 1024px) {
  section#seccionFormularioNosotros {
    height: -moz-fit-content;
    height: fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
section#seccionFormularioNosotros .contenedor {
  height: 100%;
}
section#seccionFormularioNosotros .contenedor::before, section#seccionFormularioNosotros .contenedor::after {
  height: 100%;
}
section#seccionFormularioNosotros .contenedor .caja {
  height: 100%;
  grid-template-columns: 30rem minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  section#seccionFormularioNosotros .contenedor .caja {
    padding: 1.5rem;
  }
}
section#seccionFormularioNosotros .contenedor .caja-contenido {
  width: 100%;
}
section#seccionFormularioNosotros .contenedor .caja-contenido * {
  color: white;
  font-size: 1.25rem;
  font-weight: 100;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 780px) {
  section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs {
    display: flex;
    flex-direction: column;
  }
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span {
  width: 100%;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span input,
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span select,
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  border: 1px solid white;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span input::-moz-placeholder, section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span select::-moz-placeholder, section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span textarea::-moz-placeholder {
  color: white;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span input::placeholder,
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span select::placeholder,
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span textarea::placeholder {
  color: white;
}
@media (max-width: 780px) {
  section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span input,
  section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span select,
  section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span textarea {
    font-size: 1rem;
  }
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span.fileContacto {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  border: 1px solid white;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span.fileContacto span {
  width: -moz-fit-content;
  width: fit-content;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span.fileContacto span.wpcf7-form-control-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span.fileContacto input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span:first-child {
  grid-area: 1/1/2/3;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span:last-child {
  grid-area: 4/1/5/3;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .inputs > span .wpcf7-not-valid-tip {
  font-size: 0.9rem;
  color: red;
  bottom: -0.5rem;
  left: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.2rem;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .validsInputs button[type=submit] {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .validsInputs button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .validsInputs button[type=submit]:hover {
  background-color: #0c549f;
  color: white;
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .validsInputs button[type=submit]:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .validsInputs button[type=submit] {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section#seccionFormularioNosotros .contenedor .caja-contenido #wpcf7-f359-o1 form .wpcf7-response-output {
  margin: 0;
  padding: 0.5rem;
  border-color: red;
  font-size: 1rem;
}

section.seccionCertificacion {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
section.seccionCertificacion::before, section.seccionCertificacion::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.seccionCertificacion::before {
  background-image: var(--bg-seccion-certificacion);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.seccionCertificacion::after {
  background: linear-gradient(0deg, rgba(2, 159, 225, 0.05) 0%, rgba(2, 159, 225, 0.05) 100%);
  opacity: 0.7;
}
section.seccionCertificacion .caja,
section.seccionCertificacion .contenedor {
  position: relative;
  z-index: 2;
}
section.seccionCertificacion .caja {
  padding: 1rem 0;
  background-color: white;
  display: flex;
}
section.seccionCertificacion .caja .contenedor .btn {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: var(--color-btn);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  pointer-events: none;
}
section.seccionCertificacion .caja .contenedor .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-btn);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  section.seccionCertificacion .caja .contenedor .btn {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones {
  position: relative;
  flex: 1;
  max-width: 100%;
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones::before, section.seccionCertificacion .caja .contenedor .slideCertificaciones::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, white 20%, transparent 100%);
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones::before {
  left: -1%;
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones::after {
  right: -1%;
  transform: rotateY(180deg);
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones .swiper-wrapper {
  transition-timing-function: linear !important;
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones .swiper-slide img {
  width: 6rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}
@media (max-width: 780px) {
  section.seccionCertificacion .caja .contenedor .slideCertificaciones .swiper-slide img {
    width: 4rem;
  }
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones .swiper-pagination {
  bottom: 0;
}
section.seccionCertificacion .caja .contenedor .slideCertificaciones.reverse .swiper-wrapper {
  animation-direction: reverse;
}
section.seccionCertificacion .caja.right .contenedor {
  flex-direction: row-reverse;
}
@media (max-width: 780px) {
  section.seccionCertificacion .caja .contenedor {
    flex-direction: column;
    align-items: center;
  }
  section.seccionCertificacion .caja.right .contenedor {
    flex-direction: column;
    align-items: center;
  }
}

section.seccionNosotros {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section.seccionNosotros .contenedor {
  display: grid;
  grid-template-columns: 35rem minmax(0, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  section.seccionNosotros .contenedor {
    display: flex;
    flex-direction: column-reverse;
  }
}
section.seccionNosotros .contenedor .informacion > h2 {
  font-size: 3.125rem;
  font-weight: 600;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.seccionNosotros .contenedor .informacion > h2 {
    font-size: 2rem;
  }
}
section.seccionNosotros .contenedor .informacion > div * {
  color: #2b2a28;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.25rem;
}
@media (max-width: 780px) {
  section.seccionNosotros .contenedor .informacion > div * {
    font-size: 1rem;
  }
}
section.seccionNosotros .contenedor .informacion > div p {
  margin: 0.5rem 0;
}
section.seccionNosotros .contenedor .informacion > div strong,
section.seccionNosotros .contenedor .informacion > div b,
section.seccionNosotros .contenedor .informacion > div h2,
section.seccionNosotros .contenedor .informacion > div h3,
section.seccionNosotros .contenedor .informacion > div h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #029fe1;
}
@media (max-width: 780px) {
  section.seccionNosotros .contenedor .informacion > div strong,
  section.seccionNosotros .contenedor .informacion > div b,
  section.seccionNosotros .contenedor .informacion > div h2,
  section.seccionNosotros .contenedor .informacion > div h3,
  section.seccionNosotros .contenedor .informacion > div h4 {
    font-size: 1rem;
  }
}
section.seccionNosotros .contenedor .informacion > div h2,
section.seccionNosotros .contenedor .informacion > div h3,
section.seccionNosotros .contenedor .informacion > div h4 {
  margin: 1rem 0;
}
section.seccionNosotros .contenedor .informacion > div ul li,
section.seccionNosotros .contenedor .informacion > div ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
section.seccionNosotros .contenedor .informacion > a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.seccionNosotros .contenedor .informacion > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionNosotros .contenedor .informacion > a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionNosotros .contenedor .informacion > a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionNosotros .contenedor .informacion > a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

section.extra {
  height: 90vh;
  background-image: var(--bg-page);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.extra .contenedor h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 780px) {
  section.extra .contenedor h1 {
    font-size: 2rem;
  }
}
section.extra .contenedor p {
  color: white;
  font-size: 1.125rem;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 780px) {
  section.extra .contenedor p {
    font-size: 1rem;
  }
}
section.extra .contenedor a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.extra .contenedor a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.extra .contenedor a:hover {
  background-color: #029fe1;
  color: white;
}
section.extra .contenedor a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.extra .contenedor a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

.card-post, .card-product {
  width: 22rem;
  max-width: 100%;
}
@media (max-width: 780px) {
  .card-post, .card-product {
    gap: 0.5rem;
  }
}
.card-post .imagen, .card-product .imagen {
  width: 100%;
  height: auto;
  aspect-ratio: 16/11;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.card-post .imagen span, .card-product .imagen span {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  background-color: white;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 100;
  color: #0c549f;
  z-index: 1;
}
@media (max-width: 780px) {
  .card-post .imagen span, .card-product .imagen span {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}
.card-post .imagen img, .card-product .imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.card-post *, .card-product * {
  color: #0c549f;
  font-size: 1.25rem;
  font-weight: 500;
}
.card-post .content h3, .card-product .content h3 {
  height: 3.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: 120%;
}
@media (max-width: 780px) {
  .card-post .content h3, .card-product .content h3 {
    font-size: 1.25rem;
    height: 4.6rem;
  }
}
.card-post .content p, .card-product .content p {
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 100;
  font-size: 1.125rem;
  color: #4d4d4d;
  display: none;
}
@media (max-width: 780px) {
  .card-post .content p, .card-product .content p {
    font-size: 1rem;
    height: 2.8rem;
  }
}
.card-post:hover .imagen img, .card-product:hover .imagen img {
  transform: scale(1.2);
}
.card-extra {
  width: 22rem;
  max-width: 100%;
}
.card-extra .imagen {
  width: 100%;
  height: auto;
  aspect-ratio: 9/5;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.card-extra .imagen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, #1a73e8 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}
.card-extra .imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.card-extra * {
  color: #029fe1;
  font-size: 1.25rem;
  font-weight: 700;
}
.card-extra .content h3 {
  height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 800;
}
@media (max-width: 780px) {
  .card-extra .content h3 {
    font-size: 1.25rem;
    height: 1.8rem;
  }
}
.card-extra .content p {
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 100;
  font-size: 1.125rem;
  color: #0c549f;
}
@media (max-width: 780px) {
  .card-extra .content p {
    font-size: 1rem;
    height: 2.8rem;
  }
}
@media (max-width: 1180px) {
  .card-extra .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.card-extra .buttons a {
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #029fe1;
}
.card-extra .buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
.card-extra .buttons a:hover {
  background-color: #029fe1;
  color: white;
}
.card-extra .buttons a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  .card-extra .buttons a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 1180px) {
  .card-extra .buttons a {
    width: 100%;
  }
}
.card-extra .buttons .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: rgba(12, 83, 159, 0.262745098);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #0c549f;
  transition: all 0.5s ease;
}
.card-extra .buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(12, 83, 159, 0.262745098);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  .card-extra .buttons .btn {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 1180px) {
  .card-extra .buttons .btn {
    width: 100%;
  }
}
.card-extra .buttons .btn::before {
  background: transparent;
}
.card-extra .buttons .btn span {
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  text-wrap: nowrap;
  overflow: hidden;
  max-width: 30rem;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  .card-extra .buttons .btn span {
    font-size: 1rem;
  }
}
.card-extra .buttons .btn:hover {
  color: transparent;
  background-color: rgba(12, 83, 159, 0.262745098);
}
.card-extra .buttons .btn:hover span {
  color: transparent;
  max-width: 0;
}
.card-extra:hover .imagen::before {
  opacity: 1;
}
.card-extra:hover .imagen img {
  transform: scale(1.2);
}
.card-product * {
  color: #029fe1;
}
/*.card-product .content h3 {*/
/*  height: 2.1rem;*/
/*  -webkit-line-clamp: 1;*/
/*}*/
.card-product .content p {
  color: #0c549f;
}
.card-product .buttons {
  position: relative;
}
.card-product .buttons button {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  width: 100%;
  opacity: 0;
  transform: translateY(-120%);
  transition: all 0.5s ease;
}
.card-product .buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
.card-product .buttons button:hover {
  background-color: #029fe1;
  color: white;
}
.card-product .buttons button:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  .card-product .buttons button {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.card-product:hover .buttons button {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 780px) {
  .card-product .buttons button {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 780px) {
  .filtroContenedor {
    gap: 1rem;
  }
}
.filtroContenedor form {
  width: 30rem;
  max-width: 100%;
  margin: 0 auto;
}
.filtroContenedor form span {
  border: 1px solid #029fe1;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(2, 158, 225, 0.1137254902);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
}
.filtroContenedor form span * {
  color: #029fe1;
  font-size: 1.25rem;
}
@media (max-width: 780px) {
  .filtroContenedor form span * {
    font-size: 1rem;
  }
}
.filtroContenedor form span input {
  width: 100%;
  border-radius: 0.5rem;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
}
.filtroContenedor form span input::-moz-placeholder {
  color: #029ee1;
}
.filtroContenedor form span input::placeholder {
  color: #029ee1;
}
.filtroContenedor .menuCategorias {
  width: 100%;
}
.filtroContenedor .menuCategorias .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.filtroContenedor .menuCategorias .swiper-slide button {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #000;
  position: relative;
}
.filtroContenedor .menuCategorias .swiper-slide button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  .filtroContenedor .menuCategorias .swiper-slide button {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.filtroContenedor .menuCategorias .swiper-slide button::before {
  content: attr(data-name);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}
@media (max-width: 780px) {
  .filtroContenedor .menuCategorias .swiper-slide button::before {
    font-size: 1rem;
  }
}
.filtroContenedor .menuCategorias .swiper-slide button.active {
  border-color: #0c549f;
  color: transparent;
}
.filtroContenedor .menuCategorias .swiper-slide button.active::before {
  opacity: 1;
}
.filtroContenedor > .contenedor {
  height: 1rem;
}
.filtroContenedor > .contenedor .swiper-pagination {
  bottom: 0;
}
.filtroContenedor > .contenedor .swiper-pagination span {
  border: 1px solid #0c549f;
  background: transparent;
  opacity: 1;
}
.filtroContenedor > .contenedor .swiper-pagination span.swiper-pagination-bullet-active {
  background: #0c549f;
}

.listPost .pagination > span,
.listPost .pagination a {
  padding: 0.5rem;
  font-size: 1rem;
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  line-height: 100%;
  background-color: rgba(2, 158, 225, 0.1921568627);
  color: #029fe1;
  text-align: center;
}
.listPost .pagination a:first-child, .listPost .pagination a:last-child {
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: auto;
}
.listPost .pagination a:first-child span, .listPost .pagination a:last-child span{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.listPost .pagination > span {
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  color: white;
}

@media (max-width: 1024px) {
  .filtroList {
    gap: 1.5rem;
  }
}
.filtroList .superior,
.filtroList .inferior {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 1180px) {
  .filtroList .superior {
    display: flex;
    justify-content: space-between;
  }
}
.filtroList .superior .titulo .btnAbrirFiltro {
  font-size: 1.25rem;
  font-weight: normal;
  color: #0c549f;
}
@media (max-width: 780px) {
  .filtroList .superior .titulo .btnAbrirFiltro {
    font-size: 1rem;
  }
}
.filtroList .superior .titulo .btnAbrirFiltro svg {
  width: 1rem;
  height: 1rem;
}
.filtroList .superior .titulo .btnLimpiarFiltro {
  text-align: end;
  font-size: 1.125rem;
  font-weight: 100;
  color: #029fe1;
}
@media (max-width: 1180px) {
  .filtroList .superior .titulo .btnLimpiarFiltro {
    display: none;
  }
}
.filtroList .superior span {
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 100;
  text-align: end;
}
@media (max-width: 780px) {
  .filtroList .superior span {
    font-size: 1rem;
  }
}
.filtroList .superior span strong {
  font-weight: 600;
}
@media (max-width: 1180px) {
  .filtroList .inferior {
    display: flex;
    width: 100%;
  }
}
.filtroList .inferior .filtroProductos {
  padding: 1rem;
  border: 1px solid #dedede;
  border-radius: 1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 8rem;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos {
    gap: 0.5rem;
  }
}
@media (max-width: 1180px) {
  .filtroList .inferior .filtroProductos {
    opacity: 0;
    position: fixed;
    top: 100%;
    left: 0;
    transform: translateY(150%);
    transition: all 0.5s ease;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    border-radius: 2rem 2rem 0 0;
    z-index: 30;
  }
  .filtroList .inferior .filtroProductos.active {
    transform: translateY(-100%);
    opacity: 1;
    background-color: #fff;
  }
}
.filtroList .inferior .filtroProductos .btnCerrarFiltro {
  display: none;
}
@media (max-width: 1180px) {
  .filtroList .inferior .filtroProductos .btnCerrarFiltro {
    display: flex;
    margin: 0 auto;
  }
}
.filtroList .inferior .filtroProductos .btnFiltrarFiltro {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  width: 100%;
}
.filtroList .inferior .filtroProductos .btnFiltrarFiltro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
.filtroList .inferior .filtroProductos .btnFiltrarFiltro:hover {
  background-color: #029fe1;
  color: white;
}
.filtroList .inferior .filtroProductos .btnFiltrarFiltro:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos .btnFiltrarFiltro {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.filtroList .inferior .filtroProductos h3 {
  color: #029ee1;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1180px) {
  .filtroList .inferior .filtroProductos .filtros {
    gap: 1rem;
  }
}
.filtroList .inferior .filtroProductos .filtro-categorias {
  position: relative;
}
.filtroList .inferior .filtroProductos .filtro-categorias::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 90%;
  background-color: #dedede;
  bottom: -1.5rem;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media (max-width: 1180px) {
  .filtroList .inferior .filtroProductos .filtro-categorias::before {
    bottom: -0.5rem;
  }
}
.filtroList .inferior .filtroProductos .filtro-lista {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos .filtro-lista {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 15rem;
  }
}
.filtroList .inferior .filtroProductos .filtro-lista li label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.5rem;
  color: #2b2a28;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos .filtro-lista li label {
    font-size: 0.9rem;
    padding-left: 1.2rem;
  }
}
.filtroList .inferior .filtroProductos .filtro-lista li label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 0.3rem;
  background-color: transparent;
  border: 1px solid #2b2a28;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  .filtroList .inferior .filtroProductos .filtro-lista li label::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.filtroList .inferior .filtroProductos .filtro-lista li label input {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.filtroList .inferior .filtroProductos .filtro-lista li label svg {
  transition: all 0.5s ease;
}
.filtroList .inferior .filtroProductos .filtro-lista li label svg path {
  transition: all 0.5s ease;
}
.filtroList .inferior .filtroProductos .filtro-lista li label:has(input:checked) {
  color: #0c549f;
  font-weight: 500;
}
.filtroList .inferior .filtroProductos .filtro-lista li label:has(input:checked)::before {
  border-color: #0c549f;
  background-color: #0c549f;
}
.filtroList .inferior .filtroProductos .filtro-lista li label:has(input:checked) svg {
  transform: rotateZ(180deg);
}
.filtroList .inferior .filtroProductos .filtro-lista li label:has(input:checked) svg path {
  fill: #0c549f;
}
.filtroList .inferior .filtroProductos .filtro-lista li ul {
  max-height: 0;
  overflow: hidden;
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.5s ease;
}
.filtroList .inferior .filtroProductos .filtro-lista li ul li label:has(input:checked) {
  color: #029ee1;
}
.filtroList .inferior .filtroProductos .filtro-lista li ul li label:has(input:checked)::before {
  border-color: #029ee1;
  background-color: #029ee1;
}
.filtroList .inferior .filtroProductos .filtro-lista li:has(label input:checked)::before {
  background-color: #0c549f;
}
.filtroList .inferior .filtroProductos .filtro-lista li:has(label input:checked) ul {
  padding: 0.5rem 0;
  max-height: 40rem;
}

@media (max-width: 780px) {
  .seccionProducts {
    padding: 1rem 0;
  }
}
@media (max-width: 1180px) {
  .seccionProducts .contenedor .inferior .listPost {
    width: 100%;
  }
}
.seccionProducts .contenedor .inferior .listPost .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 910px) {
  .seccionProducts .contenedor .inferior .listPost .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .seccionProducts .contenedor .inferior .listPost .list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

section.seccionRelacionados {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section.seccionRelacionados .contenedor .titulo-seccion_descripcion p {
  text-align: center;
}
section.seccionRelacionados .contenedor .postsRelacionados {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 780px) {
  section.seccionRelacionados .contenedor .postsRelacionados .swiper-slide {
    width: 18rem;
  }
}
section.seccionRelacionados .contenedor .postsRelacionados .swiper-slide .card-extra, section.seccionRelacionados .contenedor .postsRelacionados .swiper-slide .card-post, section.seccionRelacionados .contenedor .postsRelacionados .swiper-slide .card-product {
  width: 100%;
}
section.seccionRelacionados .contenedor .swiper-pagination {
  bottom: -1.5rem;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
section.seccionRelacionados .contenedor .swiper-pagination span {
  background-color: transparent;
  opacity: 1;
  border: 1px solid #0c549f;
}
section.seccionRelacionados .contenedor .swiper-pagination span.swiper-pagination-bullet-active {
  background: #0c549f;
}

.carouselList {
  width: 100%;
}
.carouselList .imagen {
  width: 100%;
  height: auto;
}
.carouselList .imagen img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/11;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: 10px 27px 37.6px 0px rgba(0, 0, 0, 0.15);
}
.carouselList .carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/13;
  border-radius: 1rem;
}
.carouselList .carousel img {
  position: absolute;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  max-height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: top;
     object-position: top;
  transition: all 0.5s ease;
  border-radius: 2rem;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.carouselList .carousel img.grid-pos-1 {
  height: auto;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translate(-17.5%, 0) scale(0.65, 1); /* grande */
}
.carouselList .carousel img.grid-pos-2 {
  top: 0;
  right: 0;
  z-index: 2;
  transform: translate(32.5%, -30%) scale(0.35, 0.4); /* arriba derecha */
  -o-object-fit: cover;
     object-fit: cover;
}
.carouselList .carousel img.grid-pos-3 {
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: translate(32.5%, 20%) scale(0.35, 0.6); /* abajo derecha */
}

section.bannersPrincipal {
  height: 85vh;
}
@media (max-width: 780px) {
  section.bannersPrincipal {
    height: 100vh;
  }
}
section.bannersPrincipal .swiper-tools {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.bannersPrincipal .swiper-tools .contenedor {
  position: relative;
  height: 100%;
}
section.bannersPrincipal .swiper-tools .contenedor .buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 780px) {
  section.bannersPrincipal .swiper-tools .contenedor .buttons {
    display: none;
  }
}
section.bannersPrincipal .swiper-slide {
  background-image: var(--bg-principal-banner);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.bannersPrincipal .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
section.bannersPrincipal .swiper-slide .contenedor {
  position: relative;
  z-index: 2;
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido {
  margin-left: 4rem;
  width: 35rem;
  max-width: 100%;
}
@media (max-width: 780px) {
  section.bannersPrincipal .swiper-slide .contenedor .banner-contenido {
    margin-left: 0;
  }
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 780px) {
  section.bannersPrincipal .swiper-slide .contenedor .banner-contenido h2 {
    font-size: 2rem;
    line-height: 110%;
  }
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido p {
  color: white;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 780px) {
  section.bannersPrincipal .swiper-slide .contenedor .banner-contenido p {
    font-size: 1rem;
  }
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido a:hover {
  background-color: #029fe1;
  color: white;
}
section.bannersPrincipal .swiper-slide .contenedor .banner-contenido a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.bannersPrincipal .swiper-slide .contenedor .banner-contenido a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.bannersPrincipal .swiper-hero-button-next svg, section.bannersPrincipal .swiper-hero-button-prev svg {
  height: 1.5rem;
  width: auto;
}
section.bannersPrincipal .swiper-hero-button-next::after, section.bannersPrincipal .swiper-hero-button-prev::after {
  display: none;
}
section.bannersPrincipal .swiper-pagination {
  bottom: 1.5rem;
}
@media (max-width: 1024px) {
  section.bannersPrincipal .swiper-pagination {
    justify-content: center;
  }
}
section.bannersPrincipal .swiper-pagination span {
  width: 3rem;
  height: 2px;
  border-radius: 0;
  background: white;
  opacity: 1;
}
section.bannersPrincipal .swiper-pagination span.swiper-pagination-bullet-active {
  background: #029fe1;
}
section.seccionCategorias {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: var(--bg-seccion-categorias);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.seccionCategorias .contenedor .titulo p {
  text-align: center;
}
section.seccionCategorias .contenedor .categoriasList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /*grid-template-rows: repeat(2, minmax(0, 1fr));*/
  gap: 1rem;
  /*aspect-ratio: 16/7;*/
}
@media (max-width: 1180px) {
  section.seccionCategorias .contenedor .categoriasList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 910px) {
  section.seccionCategorias .contenedor .categoriasList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}
section.seccionCategorias .contenedor .categoriasList a {
  background: radial-gradient(50% 50% at 50% 50%, #0c549f 0%, #041e39 100%);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 7 / 4;
}
@media (max-width: 910px) {
  section.seccionCategorias .contenedor .categoriasList a {
    width: 30rem;
    max-width: 100%;
    height: 13rem;
  }
}
section.seccionCategorias .contenedor .categoriasList a .contenido {
  padding: 1rem;
  width: 25rem;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
section.seccionCategorias .contenedor .categoriasList a .contenido h3,
section.seccionCategorias .contenedor .categoriasList a .contenido p {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 780px) {
  section.seccionCategorias .contenedor .categoriasList a .contenido h3,
  section.seccionCategorias .contenedor .categoriasList a .contenido p {
    font-size: 1.2rem;
  }
}
section.seccionCategorias .contenedor .categoriasList a .contenido p {
  font-size: 1.125rem;
  font-weight: 100;
  line-height: 100%;
  height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 780px) {
  section.seccionCategorias .contenedor .categoriasList a .contenido p {
    font-size: 1rem;
    height: 1.1rem;
  }
}
section.seccionCategorias .contenedor .categoriasList a img {
  position: absolute;
  top: 0;
  right: -10%;
  height: 100%;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  z-index: 1;
  transition: all 0.5s ease;
}
/*@media (min-width: 1180px) {*/
/*  section.seccionCategorias .contenedor .categoriasList a:first-child {*/
/*    grid-area: 1/1/2/2;*/
/*  }*/
/*  section.seccionCategorias .contenedor .categoriasList a:nth-child(2) {*/
/*    grid-area: 1/2/2/4;*/
/*  }*/
/*  section.seccionCategorias .contenedor .categoriasList a:nth-child(2) img {*/
/*    right: -4%;*/
/*  }*/
/*  section.seccionCategorias .contenedor .categoriasList a:nth-child(3) {*/
/*    grid-area: 2/1/3/3;*/
/*  }*/
/*  section.seccionCategorias .contenedor .categoriasList a:nth-child(3) img {*/
/*    right: -4%;*/
/*  }*/
/*  section.seccionCategorias .contenedor .categoriasList a:nth-child(4) {*/
/*    grid-area: 2/3/3/4;*/
/*  }*/
/*}*/
section.seccionCategorias .contenedor .categoriasList a:hover img {
  transform: scale(1.1);
}
section.seccionCategorias .contenedor > a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  z-index: 1;
  margin: 0 auto;
}
section.seccionCategorias .contenedor > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionCategorias .contenedor > a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionCategorias .contenedor > a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionCategorias .contenedor > a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionServicios {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: var(--bg-seccion-servicios);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor {
    gap: 1rem;
  }
}
section.seccionServicios .contenedor .titulo p {
  text-align: center;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide {
  aspect-ratio: 9/13;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor .slideServicios .swiper-slide {
    width: 17rem;
  }
}
section.seccionServicios .contenedor .slideServicios .swiper-slide::before, section.seccionServicios .contenedor .slideServicios .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 2;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide::after {
  background: linear-gradient(to top, #0c549f 15%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  transition: all 0.5s ease;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido {
  position: relative;
  z-index: 3;
  padding: 1rem;
  transform: translateY(60%);
  transition: all 0.5s ease;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido h3 {
  font-size: 1.5rem;
  color: white;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido h3 {
    font-size: 1.2rem;
  }
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido p,
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a {
  opacity: 0;
  transition: all 0.5s ease;
  color: white;
  font-size: 1.125rem;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido p,
  section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a {
    font-size: 1rem;
  }
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido p {
  height: 4.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 100;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 100;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor .slideServicios .swiper-slide .contenido a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover::before {
  opacity: 0;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover::after {
  opacity: 1;
}
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover img {
  transform: scale(1.1);
}
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover .contenido {
  transform: translateY(0);
}
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover .contenido p,
section.seccionServicios .contenedor .slideServicios .swiper-slide:hover .contenido a {
  opacity: 1;
}
section.seccionServicios .contenedor .paginadorServicios {
  position: relative;
  z-index: 1;
}
section.seccionServicios .contenedor .paginadorServicios .swiper-pagination {
  top: auto;
  bottom: -0.5rem;
}
section.seccionServicios .contenedor .paginadorServicios .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #0c549f;
  height: 0.4rem;
  width: auto;
  aspect-ratio: 1/1;
  opacity: 1;
}
section.seccionServicios .contenedor .paginadorServicios .swiper-pagination-bullet-active {
  background-color: #0c549f;
}
section.seccionServicios .contenedor > a {
  z-index: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  margin: 0 auto;
}
section.seccionServicios .contenedor > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #0c549f 0%, #041e39 100%);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionServicios .contenedor > a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionServicios .contenedor > a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionServicios .contenedor > a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionFabricaciones {
  height: 45rem;
  min-height: 80vh;
  background: #0c549f;
  position: relative;
  padding: 0;
  overflow: hidden;
}
section.seccionFabricaciones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-seccion-fabricacion);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  opacity: 0.5;
}
section.seccionFabricaciones .carouselFabricaciones {
  width: 100%;
  height: 100%;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide {
  opacity: 0 !important;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .buttons {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .buttons div {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
  z-index: 1;
  padding: 0.1rem;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .buttons div::after {
  display: none;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .buttons div svg {
  width: 2.8rem;
  height: auto;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .buttons div:last-child {
  margin-left: 1rem;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor {
    height: 50%;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor h3,
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor p {
  width: 30rem;
  max-width: 100%;
  color: white;
  font-size: 2.5rem;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor h3,
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor p {
    font-size: 2rem;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor p {
  font-size: 1.125rem;
  font-weight: 100;
  line-height: 100%;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor p {
    font-size: 1rem;
    height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor a {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor a:hover {
  background-color: #029fe1;
  color: white;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide .contenedor a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-slide img {
    position: relative;
    width: 100%;
    height: 60%;
    -o-object-position: top;
       object-position: top;
    -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
            mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-slide-active {
  opacity: 1 !important;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-pagination {
  bottom: 3rem;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselFabricaciones .swiper-pagination {
    bottom: 1.5rem;
    justify-content: center;
  }
}
section.seccionFabricaciones .carouselFabricaciones .swiper-pagination span {
  width: 2.5rem;
  height: 2px;
  border-radius: 0;
  background: white;
  opacity: 1;
}
section.seccionFabricaciones .carouselFabricaciones .swiper-pagination span.swiper-pagination-bullet-active {
  background: #029fe1;
}
section.seccionFabricaciones .carouselThumbFabricaciones {
  position: absolute;
  height: 8rem;
  width: 50%;
  bottom: 2rem;
  right: -6rem;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselThumbFabricaciones {
    width: 100%;
    right: 0;
    bottom: 3.5rem;
  }
}
section.seccionFabricaciones .carouselThumbFabricaciones .swiper-slide {
  height: 100%;
  cursor: pointer;
}
section.seccionFabricaciones .carouselThumbFabricaciones .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.8rem;
  border: 3px solid white;
  opacity: 0.6;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .carouselThumbFabricaciones .swiper-slide img {
    opacity: 1;
  }
}
section.seccionFabricaciones .carouselThumbFabricaciones .swiper-slide-active img {
  opacity: 1;
  border-color: #0c549f;
}
section.seccionFabricaciones .buttonsThumbs {
  position: absolute;
  width: calc(50% - 6rem);
  bottom: 6rem;
  right: 1.5rem;
  transform: translateY(50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
@media (max-width: 780px) {
  section.seccionFabricaciones .buttonsThumbs {
    display: none;
  }
}
section.seccionFabricaciones .buttonsThumbs div {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  z-index: 1;
  padding: 0.1rem;
}
section.seccionFabricaciones .buttonsThumbs div::after {
  display: none;
}
section.seccionFabricaciones .buttonsThumbs div svg {
  width: 1rem;
  height: auto;
}
section.seccionMarcas {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5rem 0;
}
@media (max-width: 780px) {
  section.seccionMarcas {
    padding: 2rem 0;
  }
}
section.seccionMarcas .contenedor .slideMarcas {
  position: relative;
  flex: 1;
}
section.seccionMarcas .contenedor .slideMarcas::before, section.seccionMarcas .contenedor .slideMarcas::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, white 20%, transparent 100%);
}
section.seccionMarcas .contenedor .slideMarcas::before {
  left: -1%;
}
section.seccionMarcas .contenedor .slideMarcas::after {
  right: -1%;
  transform: rotateY(180deg);
}
section.seccionMarcas .contenedor .slideMarcas .swiper-wrapper {
  transition-timing-function: linear !important;
}
section.seccionMarcas .contenedor .slideMarcas .swiper-slide {
  width: 12rem !important;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
@media (max-width: 780px) {
  section.seccionMarcas .contenedor .slideMarcas .swiper-slide {
    width: 8rem !important;
  }
}
section.seccionMarcas .contenedor .slideMarcas .swiper-slide img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transform: scale(1);
  transition: all 0.5s ease;
}
section.seccionMarcas .contenedor .slideMarcas .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 2;
}
section.seccionMarcas .contenedor .slideMarcas .swiper-slide:hover img {
  transform: scale(1.1);
}
section.seccionMarcas .contenedor .slideMarcas .swiper-slide:hover::before {
  opacity: 0;
}
section.seccionMarcas .contenedor .slideMarcas .swiper-pagination {
  bottom: 0;
}
section.seccionMarcas .contenedor .slideMarcas .swiper-pagination span {
  width: 0.4rem;
  height: auto;
  aspect-ratio: 1/1;
}

section.informacionGeneral {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  margin-top: -7rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, #79caed 45%, #79caed 100%);
}
@media (max-width: 1180px) {
  section.informacionGeneral {
    padding: 2rem 0 1.5rem 0;
  }
}
section.informacionGeneral .contenedor > ul {
  width: 70rem;
  max-width: 100%;
}
@media (max-width: 1024px) {
  section.informacionGeneral .contenedor > ul {
    flex-direction: column;
    align-items: center;
    width: 30rem;
    margin: auto 0;
  }
}
section.informacionGeneral .contenedor > ul li {
  flex: 1;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
  background: linear-gradient(180deg, #029fe1 0%, #3d76b2 100%);
}
@media (max-width: 1024px) {
  section.informacionGeneral .contenedor > ul li {
    flex: auto;
    width: 100%;
    height: 10rem;
  }
}
section.informacionGeneral .contenedor > ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--bg-cards);
  border-radius: 1rem;
  z-index: 1;
  transform: translate(-50%, -50%);
}
section.informacionGeneral .contenedor > ul li svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 2;
}
section.informacionGeneral .contenedor > ul li .informacion {
  position: relative;
  z-index: 2;
}
section.informacionGeneral .contenedor > ul li .informacion p {
  font-size: 1.125rem;
  color: white;
}
@media (max-width: 780px) {
  section.informacionGeneral .contenedor > ul li .informacion p {
    font-size: 1rem;
  }
}
section.informacionGeneral .contenedor > ul li .informacion a {
  font-size: 1.125rem;
  color: white;
  font-weight: 900;
}
@media (max-width: 780px) {
  section.informacionGeneral .contenedor > ul li .informacion a {
    font-size: 1rem;
  }
}
section.formularioContacto {
  padding: 4rem 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #79caed 0%, #0d559f 100%);
}
@media (max-width: 1180px) {
  section.formularioContacto {
    padding: 2rem 0;
  }
}
section.formularioContacto .contenedor {
  display: grid;
  grid-template-columns: 30rem minmax(0, 1fr);
  gap: 4rem;
}
@media (max-width: 1180px) {
  section.formularioContacto .contenedor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 35rem;
  }
}
section.formularioContacto .contenedor .imagenContacto {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
section.formularioContacto .contenedor .imagenContacto::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: var(--bg-cards);
  border-radius: 1rem;
  z-index: 1;
}
section.formularioContacto .contenedor .imagenContacto img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 2;
}
section.formularioContacto .contenedor .formularioContacto {
  box-shadow: 10px 27px 37.6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid white;
  border-radius: 2rem;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1180px) {
  section.formularioContacto .contenedor .formularioContacto {
    padding: 1.5rem;
  }
}
section.formularioContacto .contenedor .formularioContacto br {
  display: none;
}
section.formularioContacto .contenedor .formularioContacto * {
  color: white;
  font-size: 1.25rem;
  font-weight: 100;
}
@media (max-width: 780px) {
  section.formularioContacto .contenedor .formularioContacto * {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  section.formularioContacto .contenedor .formularioContacto > ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
section.formularioContacto .contenedor .formularioContacto > ul button {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  overflow: visible;
  transition: all 0.5s ease;
  padding: 0.5rem 1.2rem;
}
section.formularioContacto .contenedor .formularioContacto > ul button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  section.formularioContacto .contenedor .formularioContacto > ul button {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.formularioContacto .contenedor .formularioContacto > ul button::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid white;
  border-radius: 0.5rem;
}
section.formularioContacto .contenedor .formularioContacto > ul button::after {
  content: attr(data-nombre);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease;
}
section.formularioContacto .contenedor .formularioContacto > ul button.active {
  background: var(--bg-cards);
  color: transparent;
}
section.formularioContacto .contenedor .formularioContacto > ul button.active::before {
  opacity: 0;
}
section.formularioContacto .contenedor .formularioContacto > ul button.active::after {
  opacity: 1;
}
@media (max-width: 1024px) {
  section.formularioContacto .contenedor .formularioContacto > ul button {
    width: 100%;
  }
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 780px) {
  section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs {
    display: flex;
    flex-direction: column;
  }
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span {
  width: 100%;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span input,
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span select,
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  border: 1px solid white;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span input::-moz-placeholder, section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span select::-moz-placeholder, section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span textarea::-moz-placeholder {
  color: white;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span input::placeholder,
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span select::placeholder,
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span textarea::placeholder {
  color: white;
}
@media (max-width: 780px) {
  section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span input,
  section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span select,
  section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span textarea {
    font-size: 1rem;
  }
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span.fileContacto {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  border: 1px solid white;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span.fileContacto span {
  width: -moz-fit-content;
  width: fit-content;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span.fileContacto span.wpcf7-form-control-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span.fileContacto input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span:first-child {
  grid-area: 1/1/2/3;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span:last-child {
  grid-area: 4/1/5/3;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .inputs > span .wpcf7-not-valid-tip {
  font-size: 0.9rem;
  color: red;
  bottom: -0.5rem;
  left: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.2rem;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .validsInputs button[type=submit] {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .validsInputs button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .validsInputs button[type=submit]:hover {
  background-color: #0c549f;
  color: white;
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .validsInputs button[type=submit]:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .validsInputs button[type=submit] {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.formularioContacto .contenedor .formularioContacto #wpcf7-f8-o1 form .wpcf7-response-output {
  margin: 0;
  padding: 0.5rem;
  border-color: red;
  font-size: 1rem;
}
section.informacionUbicacion {
  padding: 4rem 0;
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: linear-gradient(180deg, #0d559f 0%, #0c549f 100%);
}
@media (max-width: 1180px) {
  section.informacionUbicacion {
    padding: 2rem 0;
  }
}
section.informacionUbicacion .contenedor .imagenUbicacion {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, #029fe1 0%, #fff 100%);
}
@media (max-width: 780px) {
  section.informacionUbicacion .contenedor .imagenUbicacion {
    aspect-ratio: 13/16;
  }
}
section.informacionUbicacion .contenedor .imagenUbicacion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, transparent 20%, rgba(13, 85, 159, 0.5411764706) 20%);
  z-index: 2;
  border-radius: 2.5rem;
}
section.informacionUbicacion .contenedor .imagenUbicacion::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 6rem;
  width: auto;
  aspect-ratio: 1/1;
  background-image: url("../../images/pin_ubicacion.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 780px) {
  section.informacionUbicacion .contenedor .imagenUbicacion::after {
    height: 4rem;
  }
}
section.informacionUbicacion .contenedor .imagenUbicacion img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 2.5rem;
  transform: translate(-50%, -50%);
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a {
  width: -moz-fit-content;
  width: fit-content;
  background: white;
  position: relative;
  border-radius: 50%;
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-cards);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a * {
  z-index: 2;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a svg {
  width: 1.875rem;
  height: 1.875rem;
  transition: all 0.5s ease;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a svg path {
  transition: all 0.5s ease;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a span {
  font-size: 1.25rem;
  max-width: 0;
  color: white;
  text-wrap: nowrap;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a span {
    font-size: 1rem;
  }
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a:hover {
  gap: 0.5rem;
  border-radius: 3rem;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a:hover::before {
  opacity: 1;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a:hover span {
  max-width: 10rem;
}
section.informacionUbicacion .contenedor .imagenUbicacion .enlacesMaps a:hover.white svg path {
  fill: white;
}

section.postSingle .contenedor .imagen {
  width: 100%;
  height: auto;
  max-height: 29rem;
  aspect-ratio: 16/9;
}
section.postSingle .contenedor .imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem;
}
section.postSingle .contenedor > a {
  color: #029fe1;
  font-size: 1.125rem;
  font-weight: 300;
}
section.postSingle .contenedor .identificacion h1 {
  color: #0c549f;
  font-size: 2.5rem;
  font-weight: 800;
}
section.postSingle .contenedor .identificacion span {
  position: relative;
  color: #3e3e3e;
  font-style: italic;
  font-weight: 100;
  width: -moz-fit-content;
  width: fit-content;
}
section.postSingle .contenedor .identificacion span::before {
  content: "";
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #029fe1;
}
section.postSingle .contenedor .contenido * {
  color: #3e3e3e;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.125rem;
}
@media (max-width: 780px) {
  section.postSingle .contenedor .contenido * {
    font-size: 1rem;
  }
}
section.postSingle .contenedor .contenido p {
  margin: 0.5rem 0;
}
section.postSingle .contenedor .contenido strong,
section.postSingle .contenedor .contenido b,
section.postSingle .contenedor .contenido h2,
section.postSingle .contenedor .contenido h3,
section.postSingle .contenedor .contenido h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.postSingle .contenedor .contenido strong,
  section.postSingle .contenedor .contenido b,
  section.postSingle .contenedor .contenido h2,
  section.postSingle .contenedor .contenido h3,
  section.postSingle .contenedor .contenido h4 {
    font-size: 1rem;
  }
}
section.postSingle .contenedor .contenido h2,
section.postSingle .contenedor .contenido h3,
section.postSingle .contenedor .contenido h4 {
  margin: 1rem 0;
}
section.postSingle .contenedor .contenido ul li,
section.postSingle .contenedor .contenido ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
section.postSingle .contenedor .contenido div.wp-video {
  margin: 1rem 0;
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.postSingle .contenedor .contenido div.wp-video .mejs-container {
  width: 50rem !important;
  height: auto !important;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
}
section.postSingle .contenedor .contenido div.wp-video .mejs-container video {
  width: 100% !important;
  height: 100% !important;
  border-radius: 1rem;
}
section.postSingle .contenedor .contenido div:has(img) {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
section.postSingle .contenedor .contenido div:has(img) img {
  width: 40rem;
  height: auto;
  max-height: 20rem;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem;
}
section.postSingle .contenedor .contenido .heateor_sss_sharing_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
section.postSingle .contenedor .contenido .heateor_sss_sharing_container .heateor_sss_sharing_title {
  color: #029fe1;
  font-size: 1.25rem;
  font-weight: 100 !important;
}
section.postSingle .contenedor .contenido .heateor_sss_sharing_container .heateor_sss_sharing_ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
section.postSingle .contenedor .comentarios h2,
section.postSingle .contenedor .comentar h2 {
  color: #0c549f;
  font-size: 1.563rem;
}
section.postSingle .contenedor .comentarios .glsr-reviews p,
section.postSingle .contenedor .comentar .glsr-reviews p {
  color: #4d4d4d;
  font-size: 0.938rem;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review {
  display: grid;
  grid-template-columns: 1rem minmax(0, auto) 1fr;
  gap: 0.5rem;
  border-bottom: 1px solid #029fe1;
  padding-bottom: 1.5rem;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-author,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-author {
  grid-area: 1/2/2/3;
  position: relative;
  align-items: flex-end;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-author::before,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-author::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(2, 158, 225, 0.2156862745);
  transform: translate(-1.5rem, -50%);
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-author span,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-author span {
  line-height: 100%;
  color: #029fe1;
  font-weight: 800;
  font-size: 1.25rem;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-date,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-date {
  grid-area: 1/3/2/4;
  align-items: flex-end;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-date span,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-date span {
  font-style: italic;
  color: #029fe1;
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 100%;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review-content,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review-content {
  grid-area: 2/2/3/4;
}
section.postSingle .contenedor .comentarios .glsr-reviews .glsr-review:last-child,
section.postSingle .contenedor .comentar .glsr-reviews .glsr-review:last-child {
  border-bottom: 1px solid #4d4d4d;
}
section.postSingle .contenedor .comentarios .glsr-label,
section.postSingle .contenedor .comentar .glsr-label {
  display: none;
}
section.postSingle .contenedor .comentarios .glsr-review-form,
section.postSingle .contenedor .comentar .glsr-review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 780px) {
  section.postSingle .contenedor .comentarios .glsr-review-form,
  section.postSingle .contenedor .comentar .glsr-review-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
}
section.postSingle .contenedor .comentarios .glsr-field,
section.postSingle .contenedor .comentar .glsr-field {
  width: 100%;
}
section.postSingle .contenedor .comentarios .glsr-field textarea,
section.postSingle .contenedor .comentarios .glsr-field input,
section.postSingle .contenedor .comentar .glsr-field textarea,
section.postSingle .contenedor .comentar .glsr-field input {
  background-color: rgba(2, 158, 225, 0.1333333333);
  border-color: #029fe1;
  border-radius: 0.5rem;
  font-size: 0.938rem;
  outline: none !important;
  box-shadow: none !important;
}
section.postSingle .contenedor .comentarios .glsr-field textarea::-moz-placeholder, section.postSingle .contenedor .comentarios .glsr-field input::-moz-placeholder, section.postSingle .contenedor .comentar .glsr-field textarea::-moz-placeholder, section.postSingle .contenedor .comentar .glsr-field input::-moz-placeholder {
  color: #029fe1;
  font-size: 0.938rem;
}
section.postSingle .contenedor .comentarios .glsr-field textarea::placeholder,
section.postSingle .contenedor .comentarios .glsr-field input::placeholder,
section.postSingle .contenedor .comentar .glsr-field textarea::placeholder,
section.postSingle .contenedor .comentar .glsr-field input::placeholder {
  color: #029fe1;
  font-size: 0.938rem;
}
section.postSingle .contenedor .comentarios .glsr-field-textarea,
section.postSingle .contenedor .comentar .glsr-field-textarea {
  grid-area: 1/1/2/3;
}
section.postSingle .contenedor .comentarios .glsr-field-email,
section.postSingle .contenedor .comentar .glsr-field-email {
  grid-area: 2/1/3/2;
}
section.postSingle .contenedor .comentarios .glsr-form-message,
section.postSingle .contenedor .comentar .glsr-form-message {
  grid-area: 3/1/4/3;
}
section.postSingle .contenedor .comentarios .glsr-button,
section.postSingle .contenedor .comentar .glsr-button {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: #0c549f;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
section.postSingle .contenedor .comentarios .glsr-button::before,
section.postSingle .contenedor .comentar .glsr-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0c549f;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.postSingle .contenedor .comentarios .glsr-button:hover,
section.postSingle .contenedor .comentar .glsr-button:hover {
  background-color: #029fe1;
  color: white;
}
section.postSingle .contenedor .comentarios .glsr-button:hover::before,
section.postSingle .contenedor .comentar .glsr-button:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.postSingle .contenedor .comentarios .glsr-button,
  section.postSingle .contenedor .comentar .glsr-button {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

section.extraSingle .contenedor {
  display: grid;
  grid-template-columns: 35rem minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  section.extraSingle .contenedor {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  section.extraSingle .contenedor .carouselList {
    width: 30rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion {
    gap: 1rem;
  }
}
section.extraSingle .contenedor .informacion_contenido .contenido * {
  color: #2b2a28;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.25rem;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_contenido .contenido * {
    font-size: 1rem;
  }
}
section.extraSingle .contenedor .informacion_contenido .contenido p {
  margin: 0.5rem 0;
}
section.extraSingle .contenedor .informacion_contenido .contenido strong,
section.extraSingle .contenedor .informacion_contenido .contenido b,
section.extraSingle .contenedor .informacion_contenido .contenido h2,
section.extraSingle .contenedor .informacion_contenido .contenido h3,
section.extraSingle .contenedor .informacion_contenido .contenido h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_contenido .contenido strong,
  section.extraSingle .contenedor .informacion_contenido .contenido b,
  section.extraSingle .contenedor .informacion_contenido .contenido h2,
  section.extraSingle .contenedor .informacion_contenido .contenido h3,
  section.extraSingle .contenedor .informacion_contenido .contenido h4 {
    font-size: 1rem;
  }
}
section.extraSingle .contenedor .informacion_contenido .contenido h2,
section.extraSingle .contenedor .informacion_contenido .contenido h3,
section.extraSingle .contenedor .informacion_contenido .contenido h4 {
  margin: 1rem 0;
}
section.extraSingle .contenedor .informacion_contenido .contenido ul li,
section.extraSingle .contenedor .informacion_contenido .contenido ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (max-width: 1180px) {
  section.extraSingle .contenedor .informacion_contenido .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
section.extraSingle .contenedor .informacion_contenido .buttons a {
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #029fe1;
}
section.extraSingle .contenedor .informacion_contenido .buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.extraSingle .contenedor .informacion_contenido .buttons a:hover {
  background-color: #029fe1;
  color: white;
}
section.extraSingle .contenedor .informacion_contenido .buttons a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_contenido .buttons a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 1180px) {
  section.extraSingle .contenedor .informacion_contenido .buttons a {
    width: 100%;
  }
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: rgba(12, 83, 159, 0.262745098);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #0c549f;
  transition: all 0.5s ease;
}
@media (max-width: 1180px) {
  section.extraSingle .contenedor .informacion_contenido .buttons .btn {
    width: 100%;
  }
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(12, 83, 159, 0.262745098);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_contenido .buttons .btn {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn::before {
  background: transparent;
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn span {
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  text-wrap: nowrap;
  overflow: hidden;
  max-width: 30rem;
  transition: all 0.5s ease;
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn:hover {
  color: transparent;
  background-color: rgba(12, 83, 159, 0.262745098);
}
section.extraSingle .contenedor .informacion_contenido .buttons .btn:hover span {
  color: transparent;
  max-width: 0;
}
section.extraSingle .contenedor .informacion_detalle {
  padding: 1.5rem;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  background-color: white;
}
@media (max-width: 1180px) {
  section.extraSingle .contenedor .informacion_detalle {
    gap: 0.5rem;
  }
}
section.extraSingle .contenedor .informacion_detalle .detalle {
  padding: 1rem 0;
  border-bottom: 1px solid #029fe1;
}
section.extraSingle .contenedor .informacion_detalle .detalle * {
  color: #2b2a28;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.25rem;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_detalle .detalle * {
    font-size: 1rem;
  }
}
section.extraSingle .contenedor .informacion_detalle .detalle p {
  margin: 0.5rem 0;
}
section.extraSingle .contenedor .informacion_detalle .detalle strong,
section.extraSingle .contenedor .informacion_detalle .detalle b,
section.extraSingle .contenedor .informacion_detalle .detalle h2,
section.extraSingle .contenedor .informacion_detalle .detalle h3,
section.extraSingle .contenedor .informacion_detalle .detalle h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.extraSingle .contenedor .informacion_detalle .detalle strong,
  section.extraSingle .contenedor .informacion_detalle .detalle b,
  section.extraSingle .contenedor .informacion_detalle .detalle h2,
  section.extraSingle .contenedor .informacion_detalle .detalle h3,
  section.extraSingle .contenedor .informacion_detalle .detalle h4 {
    font-size: 1rem;
  }
}
section.extraSingle .contenedor .informacion_detalle .detalle h2,
section.extraSingle .contenedor .informacion_detalle .detalle h3,
section.extraSingle .contenedor .informacion_detalle .detalle h4 {
  margin: 1rem 0;
}
section.extraSingle .contenedor .informacion_detalle .detalle ul li,
section.extraSingle .contenedor .informacion_detalle .detalle ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (max-width: 1180px) {
  section.extraSingle .contenedor .informacion_detalle .detalle {
    padding: 0.5rem 0;
  }
}
section.extraSingle .contenedor .informacion_detalle .detalle h3 {
  margin: 0;
  font-weight: 100;
}
section.extraSingle .contenedor .informacion_detalle .detalle h3 svg {
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1/1;
  transform: rotateZ(180deg);
  transition: all 0.5s ease;
}
section.extraSingle .contenedor .informacion_detalle .detalle > div {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
section.extraSingle .contenedor .informacion_detalle .detalle.active h3 {
  font-weight: 800;
}
section.extraSingle .contenedor .informacion_detalle .detalle.active h3 svg {
  transform: rotateZ(0deg);
}
section.extraSingle .contenedor .informacion_detalle .detalle.active > div {
  max-height: 100vh;
}
section.extraSingle .contenedor .informacion_detalle .detalle:last-child {
  border-bottom: none;
}

section.singleProduct {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
section.singleProduct .contenedor .breadcrumbs svg rect {
  fill: #0c549f;
}
section.singleProduct .contenedor .breadcrumbs a,
section.singleProduct .contenedor .breadcrumbs span {
  color: #0c549f;
}
section.singleProduct .contenedor .vistaProducto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40rem;
  gap: 1rem;
}
@media (max-width: 1180px) {
  section.singleProduct .contenedor .vistaProducto {
    display: flex;
    flex-direction: column;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido > a {
  color: #029fe1;
}
section.singleProduct .contenedor .vistaProducto .contenido .product-brand-image{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    max-width: 40rem;
}
section.singleProduct .contenedor .vistaProducto .contenido .product-brand-image img {
  height: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido img {
    height: 3.5rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido_content h1 {
  color: #0c549f;
  font-size: 1.875rem;
  font-weight: 800;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido_content h1 {
    font-size: 1.5rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido_content > div * {
  color: #3e3e3e;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.125rem;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido_content > div * {
    font-size: 1rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido_content > div p {
  margin: 0.5rem 0;
}
section.singleProduct .contenedor .vistaProducto .contenido_content > div strong,
section.singleProduct .contenedor .vistaProducto .contenido_content > div b,
section.singleProduct .contenedor .vistaProducto .contenido_content > div h2,
section.singleProduct .contenedor .vistaProducto .contenido_content > div h3,
section.singleProduct .contenedor .vistaProducto .contenido_content > div h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido_content > div strong,
  section.singleProduct .contenedor .vistaProducto .contenido_content > div b,
  section.singleProduct .contenedor .vistaProducto .contenido_content > div h2,
  section.singleProduct .contenedor .vistaProducto .contenido_content > div h3,
  section.singleProduct .contenedor .vistaProducto .contenido_content > div h4 {
    font-size: 1rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido_content > div h2,
section.singleProduct .contenedor .vistaProducto .contenido_content > div h3,
section.singleProduct .contenedor .vistaProducto .contenido_content > div h4 {
  margin: 1rem 0;
}
section.singleProduct .contenedor .vistaProducto .contenido_content > div ul li,
section.singleProduct .contenedor .vistaProducto .contenido_content > div ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (max-width: 1310px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (max-width: 1180px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons a {
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: normal;
  background-color: white;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #029fe1;
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons a:hover {
  background-color: #029fe1;
  color: white;
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons a:hover::before {
  opacity: 0;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 1310px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons a {
    width: 100%;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  background-color: rgba(12, 83, 159, 0.262745098);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  border: 1px solid #0c549f;
  transition: all 0.5s ease;
}
@media (max-width: 1310px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn {
    width: 100%;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(12, 83, 159, 0.262745098);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn::before {
  background: transparent;
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn span {
  color: #0c549f;
  font-size: 1.125rem;
  font-weight: 800;
  text-wrap: nowrap;
  overflow: hidden;
  max-width: 30rem;
  transition: all 0.5s ease;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn span {
    font-size: 1rem;
  }
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn:hover {
  color: transparent;
  background-color: rgba(12, 83, 159, 0.262745098);
  gap: 0;
}
section.singleProduct .contenedor .vistaProducto .contenido .buttons .btn:hover span {
  color: transparent;
  max-width: 0;
}
section.singleProduct .contenedor .vistaProducto .descripcion {
  height: 35rem;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  overflow-y: scroll; /* o auto si prefieres */
}
@media (max-width: 1180px) {
  section.singleProduct .contenedor .vistaProducto .descripcion {
    height: -moz-fit-content;
    height: fit-content;
    overflow-y: visible;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
section.singleProduct .contenedor .vistaProducto .descripcion_galeria {
  height: 35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem;
}
@media (max-width: 1180px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_galeria {
    height: auto;
    width: 40rem;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 1.2/1;
    grid-template-columns: minmax(0, 3.8fr) 1fr;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiper-slide {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 1px 15px 0px rgba(2, 159, 225, 0.25);
}
@media (max-width: 1024px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiper-slide {
    box-shadow: 0px 1px 5px 0px rgba(2, 159, 225, 0.25);
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiperGaleriaPrincipal {
  padding: 0.5rem 1rem;
}
@media (max-width: 1024px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiperGaleriaPrincipal {
    padding: 0.5rem;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_galeria .swiperGaleriaThumbs {
  padding: 0.5rem;
}
section.singleProduct .contenedor .vistaProducto .descripcion_list {
  padding: 0 1rem;
  border: 1px solid #029fe1;
  border-radius: 1rem;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item {
  padding: 2rem 0;
}
@media (max-width: 1024px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_item {
    padding: 1rem 0;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_item:not(:last-child) {
  border-bottom: 1px solid #029fe1;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item h2 {
  color: #029fe1;
  font-size: 1.125rem;
  font-weight: 800;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div * {
  color: #3e3e3e;
  font-weight: 100;
  line-height: 130%;
  font-size: 1.125rem;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div * {
    font-size: 1rem;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div p {
  margin: 0.5rem 0;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div strong,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div b,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h2,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h3,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0c549f;
}
@media (max-width: 780px) {
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div strong,
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div b,
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div h2,
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div h3,
  section.singleProduct .contenedor .vistaProducto .descripcion_item > div h4 {
    font-size: 1rem;
  }
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h2,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h3,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div h4 {
  margin: 1rem 0;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div ul li,
section.singleProduct .contenedor .vistaProducto .descripcion_item > div ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div p:has(img) {
  display: flex;
}
section.singleProduct .contenedor .vistaProducto .descripcion_item > div p:has(img) img {
  width: 19rem;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
}

section.seccionObjetivo {
  margin: 2rem 0;
  height: 35rem;
  min-height: 35rem;
  position: relative;
}
@media (max-width: 1180px) {
  section.seccionObjetivo {
    height: -moz-fit-content;
    height: fit-content;
    padding: 2rem 0 0 0;
    margin: 0;
  }
}
section.seccionObjetivo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100% + 4rem);
  transform: translateY(-50%);
  background: var(--bg-seccion-mision-vision);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}
@media (max-width: 1024px) {
  section.seccionObjetivo::before {
    height: 100%;
  }
}
section.seccionObjetivo .contenedor {
  display: grid;
  grid-template-columns: 45rem minmax(0, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  section.seccionObjetivo .contenedor {
    display: flex;
    flex-direction: column;
  }
}
section.seccionObjetivo .contenedor .cards {
  display: grid;
  position: relative;
  z-index: 2;
  padding: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 6rem repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) 1.5rem minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  section.seccionObjetivo .contenedor .cards {
    padding: 0;
    margin-bottom: -5rem;
  }
}
@media (max-width: 780px) {
  section.seccionObjetivo .contenedor .cards {
    display: flex;
    flex-direction: column;
    margin-bottom: -4rem;
  }
}
section.seccionObjetivo .contenedor .cards .card {
  background: var(--bg-card-misionvision);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}
section.seccionObjetivo .contenedor .cards .card .titulo h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 780px) {
  section.seccionObjetivo .contenedor .cards .card .titulo h3 {
    font-size: 1.25rem;
  }
}
section.seccionObjetivo .contenedor .cards .card .titulo .imagen {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.107);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.seccionObjetivo .contenedor .cards .card .titulo .imagen img {
  height: 1.2rem;
  width: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
section.seccionObjetivo .contenedor .cards .card p {
  font-size: 1rem;
  font-weight: 300;
  text-align: start;
}
section.seccionObjetivo .contenedor .cards .card:first-child {
  grid-area: 1/1/3/4;
}
section.seccionObjetivo .contenedor .cards .card:last-child {
  grid-area: 2/3/5/6;
}
section.seccionObjetivo .contenedor > .imagen {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  section.seccionObjetivo .contenedor > .imagen {
    height: 29rem;
    position: relative;
  }
}
section.seccionObjetivo .contenedor > .imagen img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
  border-radius: 2rem 0 0 2rem;
  z-index: 1;
}
@media (max-width: 1024px) {
  section.seccionObjetivo .contenedor > .imagen img {
    bottom: 0;
    top: auto;
    width: 150%;
    left: 50%;
    transform: translateX(-50%);
  }
}
section.seccionGaleria {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section.seccionGaleria .contenedor .titulo h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0c549f;
}
section.seccionGaleria .contenedor iframe,
section.seccionGaleria .contenedor .video{
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: 9 / 11;
    border-radius: 1.5rem;
    overflow: hidden;
}
section.seccionGaleria .contenedor .video video{
    height: 100%;
    width: 100%;
}
@media (max-width: 780px) {
  section.seccionGaleria .contenedor .titulo h2 {
    font-size: 2rem;
  }
}
section.seccionGaleria .contenedor .titulo p {
  text-align: center;
  width: 35rem;
  max-width: 100%;
  font-size: 1.125rem;
  font-weight: 100;
  color: #4d4d4d;
  line-height: 100%;
}
@media (max-width: 780px) {
  section.seccionGaleria .contenedor .titulo p {
    font-size: 1rem;
  }
}
section.seccionGaleria .contenedor .splideGaleria {
  width: 100%;
}
@media (max-width: 620px) {
  section.seccionGaleria .contenedor .splideGaleria .swiper-slide {
    width: 15rem;
  }
}
section.seccionGaleria .contenedor .splideGaleria .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 9 / 11;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1.5rem;
}
section.seccionGaleria .contenedor .swiper-pagination {
  bottom: -1.5rem;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
section.seccionGaleria .contenedor .swiper-pagination span {
  background-color: #0c549f;
}
section.seccionGaleria .contenedor .swiper-pagination span.swiper-pagination-bullet-active {
  background: #0c549f;
}

section.seccionFiltroBlog, section.seccionFiltroEntradas {
  padding: 1rem 0;
}
section.seccionFiltroEntradas .contenedor .listPost .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 780px) {
  section.seccionFiltroEntradas .contenedor .listPost .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section.seccionFiltroEntradas .contenedor .listPost .list .card-extra {
  width: 100%;
}/*# sourceMappingURL=app.css.map */