@charset "UTF-8";
.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

* {
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 100;
  font-size: 0.938rem;
  line-height: 120%;
  color: #252a36;
}

li {
  list-style: none;
}

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

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

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

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: #fff;
}

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

.shadow-1 {
  box-shadow: 0 4.492px 4.492px 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);
}

.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.wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.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;
}

.hidden {
  display: none;
}

.opacity-0 {
  opacity: 0;
  visibility: hidden;
}

.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  padding: 11px 0;
  transition: all 0.3s ease;
}
header::before {
  position: absolute;
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #0a202d 0%, transparent 100%);
  transition: all 0.3s ease;
}
header .contenedor {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .contenedor .logo {
  height: 70.85px;
  width: 148.89px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header .contenedor .logo {
    height: 47px;
    width: 100px;
  }
}
header .contenedor .logo svg {
  height: 100%;
  width: 100%;
}
header .contenedor .site-header__nav {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 1024px) {
  header .contenedor .site-header__nav {
    display: none;
  }
}
header .contenedor .site-header__nav .menu-cabecera-container .menu {
  display: flex;
  gap: 15px;
}
header .contenedor .site-header__nav .menu-cabecera-container .menu li {
  padding: 7px 10px;
  border-radius: 5px;
}
header .contenedor .site-header__nav .menu-cabecera-container .menu li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}
header .contenedor .site-header__nav .menu-cabecera-container .menu li:last-child {
  background-color: #40f99b;
}
header .contenedor .site-header__nav .menu-cabecera-container .menu li:last-child a {
  color: #216a93;
}
header .contenedor .site-header__nav .banderas {
  position: relative;
}
header .contenedor .site-header__nav .banderas .banderas-select {
  position: relative;
}
header .contenedor .site-header__nav .banderas .banderas-select__trigger {
  padding: 0.5rem 1rem;
  border: 1px solid white;
  color: white;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  line-height: 1.2;
}
header .contenedor .site-header__nav .banderas .banderas-select__flag {
  display: block;
  width: 24px;
  height: auto;
  border-radius: 2px;
}
header .contenedor .site-header__nav .banderas .banderas-select__chevron {
  position: relative;
  display: flex;
  width: 0.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy44ODgxMiAyLjU0NDYyQzQuMTkxNzIgMi4yMjg0OSA0LjQ0NTc2IDEuOTYxOTUgNC43MDU5OSAxLjcwMTZDNS4xNzA2OSAxLjIzNjcgNS42MzUzOCAwLjc3MTgwNCA2LjEwMDA4IDAuMzA2OTA1QzYuNTA5MDEgLTAuMDk2MDA3NyA3LjEyMjQxIC0wLjA5NjAwNzcgNy41MTI3NSAwLjMwNjkwNUM3Ljg5NjkgMC42OTc0MiA3Ljg5NjkgMS4yOTg2OSA3LjQ5NDE3IDEuNzAxNkM2LjU0NjE5IDIuNjU2MTkgNS41OTgyMSAzLjYwNDU5IDQuNjQ0MDMgNC41NTI5OEM0LjE5MTcyIDUuMDA1NDggMy42MTU1IDUuMDA1NDggMy4xNjkzOSA0LjU1OTE4QzIuMjE1MjIgMy42MTA3OSAxLjI2MTA0IDIuNjYyMzkgMC4zMTMwNTkgMS43MDc4Qy0wLjA5NTg3MzggMS4yOTg2OSAtMC4xMDIwNyAwLjY5MTIyIDAuMjgyMDc5IDAuMjk0NTA3QzAuNjcyNDI0IC0wLjEwMjIwNyAxLjI5ODIyIC0wLjEwMjIwOCAxLjcxMzM0IDAuMzE5MzAxQzIuNDI1ODggMS4wNDQ1NCAzLjEzMjIyIDEuNzc1OTggMy44ODgxMiAyLjU0NDYyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
header .contenedor .site-header__nav .banderas .banderas-select__list {
  position: absolute;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  top: calc(100% + 1.5rem);
  left: 0;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  background-color: white;
  list-style: none;
  margin: 0;
  min-width: 100%;
  z-index: 2;
}
header .contenedor .site-header__nav .banderas .banderas-select__item {
  margin: 0;
}
header .contenedor .site-header__nav .banderas .banderas-select__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: black;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
}
header .contenedor .site-header__nav .banderas .banderas-select__item.is-active .banderas-select__link {
  color: #216a93;
  background-color: #40f99b;
}
header .contenedor .site-header__nav .banderas .banderas-select.is-open .banderas-select__trigger {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  color: black;
}
header .contenedor .site-header__nav .banderas .banderas-select.is-open .banderas-select__chevron {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy44ODgxMiAyLjU0NDYyQzQuMTkxNzIgMi4yMjg0OSA0LjQ0NTc2IDEuOTYxOTUgNC43MDU5OSAxLjcwMTZDNS4xNzA2OSAxLjIzNjcgNS42MzUzOCAwLjc3MTgwNCA2LjEwMDA4IDAuMzA2OTA1QzYuNTA5MDEgLTAuMDk2MDA3NyA3LjEyMjQxIC0wLjA5NjAwNzcgNy41MTI3NSAwLjMwNjkwNUM3Ljg5NjkgMC42OTc0MiA3Ljg5NjkgMS4yOTg2OSA3LjQ5NDE3IDEuNzAxNkM2LjU0NjE5IDIuNjU2MTkgNS41OTgyMSAzLjYwNDU5IDQuNjQ0MDMgNC41NTI5OEM0LjE5MTcyIDUuMDA1NDggMy42MTU1IDUuMDA1NDggMy4xNjkzOSA0LjU1OTE4QzIuMjE1MjIgMy42MTA3OSAxLjI2MTA0IDIuNjYyMzkgMC4zMTMwNTkgMS43MDc4Qy0wLjA5NTg3MzggMS4yOTg2OSAtMC4xMDIwNyAwLjY5MTIyIDAuMjgyMDc5IDAuMjk0NTA3QzAuNjcyNDI0IC0wLjEwMjIwNyAxLjI5ODIyIC0wLjEwMjIwOCAxLjcxMzM0IDAuMzE5MzAxQzIuNDI1ODggMS4wNDQ1NCAzLjEzMjIyIDEuNzc1OTggMy44ODgxMiAyLjU0NDYyWiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
  transform: rotate(180deg);
}
header .contenedor .site-header__nav .banderas .banderas-select.is-open .banderas-select__list {
  padding: 0.8rem;
  max-height: 10rem;
}
header .contenedor .site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1024px) {
  header .contenedor .site-header__toggle {
    display: inline-flex;
  }
}
header .contenedor .site-header__toggle svg {
  display: block;
}
header .contenedor .site-header__toggle svg path {
  fill: #40f99b;
  transition: fill 0.3s ease;
}
header .site-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(10, 32, 45, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
header .site-header__backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .site-header__backdrop[hidden] {
  display: none !important;
}
header .site-header__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  width: min(410px, 92vw);
  height: 100vh;
  height: 100dvh;
  padding: 40px 30px;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(180deg, #216A93 0%, #0A202D 100%);
}
header .site-header__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: url("../img/header/menu-mobile-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}
header .site-header__panel > * {
  position: relative;
  z-index: 1;
}
header .site-header__panel.is-open {
  transform: translateX(0);
}
header .site-header__close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
header .site-header__close svg {
  display: block;
  width: 32px;
  height: 32px;
}
header .site-header__panel-menu {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
header .site-header__panel-menu::-webkit-scrollbar {
  display: none;
}
header .site-header__panel-menu .menu-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
header .site-header__panel-menu .menu-mobile > li {
  margin: 0;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header .site-header__panel-menu .menu-mobile > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
header .site-header__panel-menu .menu-mobile > li > a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  text-decoration: none;
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children > a::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M1 1L4.5 4L8 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children .sub-menu {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 0 0 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children .sub-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: none;
}
header .site-header__panel-menu .menu-mobile > li.menu-item-has-children.is-open > .sub-menu {
  display: flex;
}
header .site-header__panel-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 10px;
  border-top: 1px solid #fff;
}
header .site-header__panel-social p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
header .site-header__panel-social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}
header .site-header__panel-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  overflow: hidden;
}
header .site-header__panel-social-links a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
header .site-header__panel-social-links a span {
  color: #fff;
  font-size: 11px;
}
header.active-scrolled, body:not(.home) header {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background-color: white;
}
header.active-scrolled::before, body:not(.home) header::before {
  opacity: 0;
}
header.active-scrolled .contenedor .logo, body:not(.home) header .contenedor .logo {
  height: 3.5rem;
}
@media (max-width: 1024px) {
  header.active-scrolled .contenedor .logo, body:not(.home) header .contenedor .logo {
    height: 43px;
    width: 91px;
  }
}
header.active-scrolled .contenedor .logo svg path, body:not(.home) header .contenedor .logo svg path {
  fill: #216a93;
}
header.active-scrolled .contenedor .site-header__toggle svg path, body:not(.home) header .contenedor .site-header__toggle svg path {
  fill: #216a93;
}
header.active-scrolled .contenedor .site-header__nav .menu-cabecera-container .menu li a, body:not(.home) header .contenedor .site-header__nav .menu-cabecera-container .menu li a {
  color: #000;
}
header.active-scrolled .contenedor .banderas .banderas-select__trigger, body:not(.home) header .contenedor .banderas .banderas-select__trigger {
  border-color: black;
  color: black;
}
header.active-scrolled .contenedor .banderas .banderas-select__chevron, body:not(.home) header .contenedor .banderas .banderas-select__chevron {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy44ODgxMiAyLjU0NDYyQzQuMTkxNzIgMi4yMjg0OSA0LjQ0NTc2IDEuOTYxOTUgNC43MDU5OSAxLjcwMTZDNS4xNzA2OSAxLjIzNjcgNS42MzUzOCAwLjc3MTgwNCA2LjEwMDA4IDAuMzA2OTA1QzYuNTA5MDEgLTAuMDk2MDA3NyA3LjEyMjQxIC0wLjA5NjAwNzcgNy41MTI3NSAwLjMwNjkwNUM3Ljg5NjkgMC42OTc0MiA3Ljg5NjkgMS4yOTg2OSA3LjQ5NDE3IDEuNzAxNkM2LjU0NjE5IDIuNjU2MTkgNS41OTgyMSAzLjYwNDU5IDQuNjQ0MDMgNC41NTI5OEM0LjE5MTcyIDUuMDA1NDggMy42MTU1IDUuMDA1NDggMy4xNjkzOSA0LjU1OTE4QzIuMjE1MjIgMy42MTA3OSAxLjI2MTA0IDIuNjYyMzkgMC4zMTMwNTkgMS43MDc4Qy0wLjA5NTg3MzggMS4yOTg2OSAtMC4xMDIwNyAwLjY5MTIyIDAuMjgyMDc5IDAuMjk0NTA3QzAuNjcyNDI0IC0wLjEwMjIwNyAxLjI5ODIyIC0wLjEwMjIwOCAxLjcxMzM0IDAuMzE5MzAxQzIuNDI1ODggMS4wNDQ1NCAzLjEzMjIyIDEuNzc1OTggMy44ODgxMiAyLjU0NDYyWiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
}

body.menu-mobile-open {
  overflow: hidden;
}

.site-footer {
  padding: 60px 0 20px 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #216A93 0%, #0A202D 100%);
}
.site-footer::after {
  content: "";
  background-image: url("../img/recursos/footer-bg.webp");
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.site-footer .contenedor {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.site-footer .contenedor .superior {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .site-footer .contenedor .superior {
    flex-direction: column;
    gap: 50px;
  }
}
.site-footer .contenedor .superior .izquierda {
  max-width: 270px;
}
.site-footer .contenedor .superior .izquierda .logo {
  margin-bottom: 15px;
}
.site-footer .contenedor .superior .izquierda .parrafo {
  margin-bottom: 20px;
}
.site-footer .contenedor .superior .izquierda .parrafo p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.site-footer .contenedor .superior .izquierda .redes-sociales {
  display: flex;
  flex-direction: column;
}
.site-footer .contenedor .superior .izquierda .redes-sociales h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 10px;
}
.site-footer .contenedor .superior .izquierda .redes-sociales .redes-sociales-container {
  display: flex;
  gap: 9px;
}
.site-footer .contenedor .superior .izquierda .redes-sociales .redes-sociales-container a {
  width: 22.89px;
  height: 22.89px;
  aspect-ratio: 1/1;
}
.site-footer .contenedor .superior .izquierda .redes-sociales .redes-sociales-container a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer .contenedor .superior .derecha {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .site-footer .contenedor .superior .derecha {
    align-items: center;
  }
}
.site-footer .contenedor .superior .derecha .arriba {
  display: flex;
  gap: 55px;
}
@media (max-width: 1024px) {
  .site-footer .contenedor .superior .derecha .arriba {
    flex-direction: column;
    width: 100%;
  }
}
.site-footer .contenedor .superior .derecha .arriba .menu h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 5px;
  margin-bottom: 10px;
}
.site-footer .contenedor .superior .derecha .arriba .menu h2 span {
  width: 17px;
  height: 17px;
  aspect-ratio: 1/1;
}
.site-footer .contenedor .superior .derecha .arriba .menu h2 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer .contenedor .superior .derecha .arriba .menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .contenedor .superior .derecha .arriba .menu ul li {
  display: flex;
  align-items: center;
  gap: 3px;
}
.site-footer .contenedor .superior .derecha .arriba .menu ul li span {
  display: flex;
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
}
.site-footer .contenedor .superior .derecha .arriba .menu ul li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer .contenedor .superior .derecha .arriba .menu ul li a, .site-footer .contenedor .superior .derecha .arriba .menu ul li p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.site-footer .contenedor .superior .derecha .abajo {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: end;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
}
@media (max-width: 1024px) {
  .site-footer .contenedor .superior .derecha .abajo {
    align-items: center;
    width: 100%;
  }
}
.site-footer .contenedor .superior .derecha .abajo .abajo__titulo {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.site-footer .contenedor .superior .derecha .abajo .abajo__boton {
  align-self: stretch;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.site-footer .contenedor hr {
  border: none;
  background-color: #fff;
  height: 1px;
  margin: 30px 0 15px 0;
}
.site-footer .contenedor .inferior {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .site-footer .contenedor .inferior {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.site-footer .contenedor .inferior .izquierda .inferior__texto {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
.site-footer .contenedor .inferior .derecha ul {
  display: flex;
  gap: 37px;
}
.site-footer .contenedor .inferior .derecha ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

/* Modal suscripción footer */
.formulario-suscripcion {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.formulario-suscripcion[hidden] {
  display: none !important;
}

.formulario-suscripcion__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 36, 0.55);
}

.formulario-suscripcion__dialog {
  position: relative;
  z-index: 1;
  width: min(671px, 100%);
  padding: 50px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.formulario-suscripcion__close {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.formulario-suscripcion__title {
  margin: 0 0 24px;
  color: #216a93;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
}

.formulario-suscripcion__form {
  width: 100%;
}
.formulario-suscripcion__form .wpcf7,
.formulario-suscripcion__form .wpcf7-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.formulario-suscripcion__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}
.formulario-suscripcion__form .doble,
.formulario-suscripcion__form p.doble {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 0;
  width: 100%;
}
.formulario-suscripcion__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.formulario-suscripcion__form input[type=text],
.formulario-suscripcion__form input[type=email],
.formulario-suscripcion__form input[type=tel],
.formulario-suscripcion__form input[type=date],
.formulario-suscripcion__form input[type=url],
.formulario-suscripcion__form select,
.formulario-suscripcion__form textarea {
  width: 100%;
  border: none;
  display: flex;
  padding: 8px 15px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: rgba(33, 106, 147, 0.1);
  color: #216A93;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.formulario-suscripcion__form input[type=text]::-moz-placeholder, .formulario-suscripcion__form input[type=email]::-moz-placeholder, .formulario-suscripcion__form input[type=tel]::-moz-placeholder, .formulario-suscripcion__form input[type=date]::-moz-placeholder, .formulario-suscripcion__form input[type=url]::-moz-placeholder, .formulario-suscripcion__form select::-moz-placeholder, .formulario-suscripcion__form textarea::-moz-placeholder {
  color: #216a93;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.formulario-suscripcion__form input[type=text]::placeholder,
.formulario-suscripcion__form input[type=email]::placeholder,
.formulario-suscripcion__form input[type=tel]::placeholder,
.formulario-suscripcion__form input[type=date]::placeholder,
.formulario-suscripcion__form input[type=url]::placeholder,
.formulario-suscripcion__form select::placeholder,
.formulario-suscripcion__form textarea::placeholder {
  color: #216a93;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.formulario-suscripcion__form input[type=text]:focus,
.formulario-suscripcion__form input[type=email]:focus,
.formulario-suscripcion__form input[type=tel]:focus,
.formulario-suscripcion__form input[type=date]:focus,
.formulario-suscripcion__form input[type=url]:focus,
.formulario-suscripcion__form select:focus,
.formulario-suscripcion__form textarea:focus {
  outline: none;
}
.formulario-suscripcion__form .wpcf7-submit,
.formulario-suscripcion__form input[type=submit] {
  border: none;
  margin-top: 6px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

html.suscripcion-modal-open {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #fcfcfc;
}

main.site-main {
  flex: 1 0 auto;
  width: 100%;
  margin-top: var(--header-h, 4.5rem);
  min-height: calc(100dvh - var(--admin-bar-h, 0px) - var(--header-h, 4.5rem) - var(--footer-h, 12rem));
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.5;
  z-index: 90;
}/*# sourceMappingURL=main.css.map */