@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
.ff-1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  cursor: url("../img/mouse_cursor.png") 8 8, auto;
}

html, body {
  cursor: url("../img/mouse_cursor.png") 8 8, auto;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 768px) {
  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.nav-barra {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 56, 106, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav-barra.nav-scrolled {
  box-shadow: 0 6px 22px rgba(0, 56, 106, 0.14);
}
.nav-barra .nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-barra .nav-logo {
  flex-shrink: 0;
  line-height: 0;
}
.nav-barra .nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-barra .nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-barra .nav-lista {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.nav-barra .nav-lista li {
  margin: 0;
}
.nav-barra .nav-lista a {
  position: relative;
  color: #00386a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 0;
}
.nav-barra .nav-lista a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffac00;
  transition: width 0.3s ease;
}
.nav-barra .nav-lista a:hover {
  color: #00386a;
  text-decoration: none;
}
.nav-barra .nav-lista a:hover::after {
  width: 100%;
}
.nav-barra .nav-lista .current-menu-item > a::after {
  width: 100%;
}
.nav-barra .nav-cta {
  flex-shrink: 0;
  background-color: #009835;
  color: #ffffff;
  border-radius: 30px;
  padding: 11px 26px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-barra .nav-cta:hover {
  background-color: #ffac00;
  color: #00386a;
  text-decoration: none;
}
.nav-barra .nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  padding: 8px 4px;
  outline: none !important;
}
.nav-barra .nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background-color: #00386a;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-barra .nav-toggle span + span {
  margin-top: 6px;
}
.nav-barra.nav-abierto .nav-toggle span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-barra.nav-abierto .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-barra.nav-abierto .nav-toggle span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.botonera {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
}
.botonera .botonera-btn {
  display: flex;
  align-items: center;
  border: none;
  padding: 0;
  background-color: #ffffff;
  text-decoration: none;
  outline: none !important;
  overflow: hidden;
}
.botonera .botonera-btn:nth-child(even) {
  background-color: #ffac00;
}
.botonera .botonera-btn:hover {
  text-decoration: none;
}
.botonera .botonera-icono {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.botonera .botonera-icono img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.botonera .botonera-btn:hover .botonera-icono img {
  transform: scale(1.15);
}
.botonera .botonera-label {
  max-width: 0;
  white-space: nowrap;
  color: #00386a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, padding-right 0.4s ease;
}
.botonera .botonera-btn--ancha:hover .botonera-label,
.botonera .botonera-btn--ancha:focus-visible .botonera-label {
  max-width: 200px;
  opacity: 1;
  padding-right: 20px;
}

.modal-jem {
  display: none;
}
.modal-jem:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-jem .modal-jem-fondo {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  animation: modalFondo 0.25s ease both;
}
.modal-jem .modal-jem-caja {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 490px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: modalCaja 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.modal-jem .modal-jem-cerrar {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 8px;
  line-height: 0;
  outline: none !important;
}
.modal-jem .modal-jem-cerrar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #00386a;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}
.modal-jem .modal-jem-cerrar:hover svg {
  transform: rotate(90deg);
}
.modal-jem .modal-jem-cuerpo {
  padding: 42px 34px 40px;
  text-align: center;
}
.modal-jem .modal-jem-texto {
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 18px;
}
.modal-jem .modal-jem-btn {
  display: inline-block;
  background-color: #ffac00;
  color: #00386a;
  border-radius: 30px;
  padding: 11px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.modal-jem .modal-jem-btn:hover {
  background-color: #00386a;
  color: #ffffff;
  text-decoration: none;
}
.modal-jem .modal-kit-titulo {
  display: block;
  width: 78%;
  max-width: 320px;
  height: auto;
  margin: 18px auto 14px;
}
.modal-jem .modal-libro-cabecera {
  position: relative;
  background-color: #acc1d5;
  padding: 34px 56px 30px;
  text-align: center;
}
.modal-jem .modal-libro-titulo {
  color: #00386a;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
.modal-jem .modal-libro-logo {
  display: block;
  width: 62%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 18px;
}

@keyframes modalFondo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalCaja {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body.modal-abierto {
  overflow: hidden;
}

#header {
  background-color: #00386a;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
#header .header-garabato-verde {
  position: absolute;
  top: -25px;
  right: -5px;
  width: 360px;
  z-index: 1;
  animation: revealVerde 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both, floatVerde 4s ease-in-out 1.3s infinite;
}
#header .header-garabato-verde img {
  width: 100%;
}
#header .header-garabato-amarillo {
  position: absolute;
  left: -15px;
  top: 35%;
  width: 140px;
  z-index: 1;
  animation: revealAmarillo 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both, floatAmarillo 5s ease-in-out 1.6s infinite;
}
#header .header-garabato-amarillo img {
  width: 100%;
}

@keyframes revealVerde {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0%);
  }
}
@keyframes revealAmarillo {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0% 0);
  }
}
@keyframes floatVerde {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}
@keyframes floatAmarillo {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}
.header-inner {
  position: relative;
  z-index: 2;
}

.frase-header-wrap {
  position: relative;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.frase-header {
  width: 100%;
  display: block;
}

.subrayado-wrap {
  position: absolute;
  left: 9.5%;
  width: 49.8%;
  top: 39%;
}
.subrayado-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.subrayado-wrap .cls-1 {
  stroke-dashoffset: -9999;
  stroke-dasharray: 9999;
}

.header-desc {
  color: #ffffff;
  text-align: center;
  max-width: 80%;
  margin: 28px auto 40px;
  font-size: 1.35rem;
  font-weight: 400;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

.header-btn-wrap {
  text-align: center;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.92s both;
}

.btn-proyecto {
  display: inline-block;
  background-color: #ffffff;
  color: #00386a;
  border-radius: 30px;
  padding: 13px 40px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-proyecto:hover {
  background-color: #ffac00;
  color: #00386a;
  text-decoration: none;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#datos-movilizan {
  position: relative;
  background-image: url("../img/fondo_verde.svg");
  background-size: 140% auto;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: -185px;
  padding-top: 350px;
  padding-bottom: 200px;
  overflow: visible;
  margin-bottom: -25px;
}
#datos-movilizan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #009835;
  z-index: -1;
}
#datos-movilizan .datos-bici {
  position: absolute;
  top: 60px;
  right: 20%;
  width: 160px;
  z-index: 2;
  animation: floatVerde 4s ease-in-out infinite;
}
#datos-movilizan .datos-auto {
  position: absolute;
  bottom: -50px;
  right: 3%;
  width: 200px;
  z-index: 2;
  animation: floatCar 3s ease-in-out infinite;
}
#datos-movilizan .datos-titulo {
  color: #00386a;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 36px;
  line-height: 1.15;
}
#datos-movilizan .datos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
  justify-content: space-between;
}
#datos-movilizan .datos-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 10px 28px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  line-height: 1.4;
  outline: none !important;
}
#datos-movilizan .datos-tab:hover:not(.active) {
  background-color: rgba(255, 172, 0, 0.35);
  color: #00386a;
  outline: none !important;
}
#datos-movilizan .datos-tab.active {
  background-color: #ffac00;
  font-weight: 700;
  color: #00386a;
  outline: none !important;
}
#datos-movilizan .datos-tab:focus {
  outline: none !important;
}
#datos-movilizan .datos-stat-area {
  min-height: 220px;
}
#datos-movilizan .datos-numero {
  color: #ffffff;
  font-size: clamp(5rem, 12vw, 9.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
#datos-movilizan .datos-linea {
  width: 580px;
  max-width: 90%;
  height: 3px;
  background-color: #00386a;
  margin-bottom: 20px;
}
#datos-movilizan .datos-desc {
  color: #00386a;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0;
}
#datos-movilizan .datos-desc strong {
  font-weight: 700;
}

#enfoque-integra .enfoque-sticky-wrapper {
  height: 180vh;
  position: relative;
}
#enfoque-integra .enfoque-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}
#enfoque-integra .enfoque-img-clip {
  overflow: hidden;
  height: 100%;
  line-height: 0;
}
#enfoque-integra .enfoque-pan {
  width: 170vw;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #ffac00 0%, #ffac00 40%, #009835 100%);
  will-change: transform;
  transform: translateX(0);
}
#enfoque-integra .enfoque-img {
  width: 100%;
  height: auto;
  display: block;
}
#enfoque-integra .enfoque-banda-ref {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(170vw / 5.0214);
  transform: translateY(-50%);
  pointer-events: none;
}
#enfoque-integra .enfoque-auto {
  position: absolute;
  top: -14%;
  right: 28%;
  width: 120px;
  z-index: 10;
}

#cinco-dimensiones {
  position: relative;
  z-index: 10;
  overflow: visible;
  background-color: #00386a;
  padding: 110px 0 100px;
}
#cinco-dimensiones .cinco-garabato-derecho {
  position: absolute;
  top: 8%;
  right: -20px;
  width: 130px;
  z-index: 20;
  pointer-events: none;
}
#cinco-dimensiones .cinco-garabato-inferior {
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 210px;
  z-index: 20;
  pointer-events: none;
}
#cinco-dimensiones .cinco-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.45rem;
  line-height: 1.8;
  max-width: 80%;
  margin: 0 auto 120px;
}
#cinco-dimensiones .cinco-intro strong {
  color: #ffffff;
  font-weight: 700;
}
#cinco-dimensiones .cinco-badge {
  display: inline-block;
  background-color: #009835;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.45rem;
  padding: 3px 16px;
  border-radius: 30px;
  line-height: 1.6;
  white-space: nowrap;
}
#cinco-dimensiones .cinco-titulo {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
}
#cinco-dimensiones .cinco-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
#cinco-dimensiones .cinco-card {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 28px 22px 72px;
  cursor: default;
  height: 450px;
  transition: box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#cinco-dimensiones .cinco-card:hover {
  box-shadow: inset 5px 0 0 0 #009835;
  transform: translateY(-6px);
}
#cinco-dimensiones .cinco-card:hover .cinco-card-icon-wrap {
  background-color: #009835;
}
#cinco-dimensiones .cinco-card:hover .cinco-card-num {
  opacity: 0.18;
}
#cinco-dimensiones .cinco-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
#cinco-dimensiones .cinco-card-icon-img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#cinco-dimensiones .cinco-card-title {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
#cinco-dimensiones .cinco-card-desc {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}
#cinco-dimensiones .cinco-card-num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  opacity: 0.09;
  transition: opacity 0.3s ease;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#miradas {
  position: relative;
  z-index: 11;
  background-color: #acc1d5;
  padding: 110px 0 210px;
}
#miradas .miradas-garabato {
  position: absolute;
  top: -70px;
  left: -40px;
  width: 250px;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 2;
}
#miradas .miradas-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
#miradas .miradas-icono {
  display: block;
  width: 92px;
  height: auto;
  margin-bottom: 22px;
}
#miradas .miradas-titulo {
  color: #00386a;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
#miradas .miradas-bajada {
  color: #00386a;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 15ch;
  margin: 0;
}
#miradas .miradas-galeria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 620px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
#miradas .miradas-col {
  overflow: hidden;
}
#miradas .miradas-col--desfase {
  padding-top: 70px;
}
#miradas .miradas-col:hover .miradas-track {
  animation-play-state: paused;
}
#miradas .miradas-track {
  display: flex;
  flex-direction: column;
  animation: miradasSubir var(--miradas-dur, 40s) linear infinite;
  will-change: transform;
}
#miradas .miradas-track--lento {
  animation-duration: var(--miradas-dur, 54s);
}
#miradas .miradas-item {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 20px;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.45s ease, transform 0.45s ease;
}
#miradas .miradas-item:hover {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}
#miradas .miradas-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 4;
}
#miradas .miradas-wave svg {
  display: block;
  width: 100%;
  height: 150px;
}

@keyframes miradasSubir {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
#objetivos {
  position: relative;
  z-index: 5;
  background-color: #009835;
  padding: 40px 0 120px;
  overflow: hidden;
}
#objetivos .objetivos-garabato {
  position: absolute;
  right: -30px;
  bottom: -90px;
  width: 210px;
  pointer-events: none;
  z-index: 1;
}
#objetivos .container-fluid {
  position: relative;
  z-index: 2;
}
#objetivos .objetivos-titulo {
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
#objetivos .objetivos-intro {
  color: #ffac00;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 42ch;
  margin: 0 0 56px;
}
#objetivos .objetivos-fila {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 34px 0;
}
#objetivos .objetivos-fila--inversa {
  flex-direction: row-reverse;
}
#objetivos .objetivos-fila + .objetivos-fila {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}
#objetivos .objetivos-num,
#objetivos .objetivos-desc,
#objetivos .objetivos-estrellas {
  flex: 1 1 50%;
  min-width: 0;
}
#objetivos .objetivos-num {
  color: #ffffff;
  font-size: clamp(3rem, 10vw, 25.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
#objetivos .objetivos-signo {
  color: #ffac00;
  margin-right: 0.05em;
}
#objetivos .objetivos-desc {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 50ch;
  margin: 0;
}
#objetivos .objetivos-estrellas {
  display: flex;
  align-items: center;
  gap: 8px;
}
#objetivos .objetivos-estrella {
  width: 95px;
  height: 95px;
  flex-shrink: 0;
}
#objetivos .objetivos-estrella path {
  fill: #ffac00;
  stroke: #ffac00;
  stroke-width: 1.4;
  stroke-linejoin: round;
}
#objetivos .objetivos-estrella--vacia path {
  fill: none;
}

.blog-titulo {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-grid--dos {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}
.blog-card:hover .blog-card-titulo a {
  color: #ffac00;
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 20/19;
  background-color: rgba(255, 255, 255, 0.08);
  line-height: 0;
}

.blog-card-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card-img--vacia {
  background: linear-gradient(135deg, #009835 0%, #00386a 100%);
}

.blog-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.blog-card-tag {
  background-color: rgba(255, 255, 255, 0.92);
  color: #00386a;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 11px;
  border-radius: 30px;
  white-space: nowrap;
}

.blog-card-fecha {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 16px 0 8px;
}

.blog-card-titulo {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
.blog-card-titulo a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-titulo a:hover {
  text-decoration: none;
}

.blog-vacio {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  margin: 0;
}

#blog {
  position: relative;
  background-color: #00386a;
  padding: 60px 0 110px;
}
#blog .blog-icono {
  position: relative;
  z-index: 6;
  display: block;
  width: 80px;
  height: auto;
  margin: -108px 0 40px;
}
#blog .blog-encabezado {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
#blog .blog-ver-mas {
  flex-shrink: 0;
  background-color: #ffac00;
  color: #00386a;
  border-radius: 30px;
  padding: 9px 24px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#blog .blog-ver-mas:hover {
  background-color: #ffffff;
  color: #00386a;
  text-decoration: none;
}

#blog-listado {
  background-color: #00386a;
  padding: 70px 0 100px;
}
#blog-listado .listado-encabezado {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
#blog-listado .listado-buscador {
  position: relative;
  flex: 0 1 320px;
}
#blog-listado .listado-buscador input[type=search] {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  padding: 10px 44px 10px 20px;
  outline: none !important;
  transition: border-color 0.3s ease;
}
#blog-listado .listado-buscador input[type=search]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
#blog-listado .listado-buscador input[type=search]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
#blog-listado .listado-buscador input[type=search]:focus {
  border-color: #ffac00;
}
#blog-listado .listado-buscador button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 8px;
  line-height: 0;
  outline: none !important;
}
#blog-listado .listado-buscador button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}
#blog-listado .listado-buscador button:hover svg {
  stroke: #ffac00;
}
#blog-listado .listado-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 48px;
  align-items: start;
}
#blog-listado .listado-filtros {
  position: sticky;
  top: calc(72px + 24px);
}
#blog-listado .listado-filtros ul {
  list-style: none;
  margin: 0;
}
#blog-listado .listado-filtros li + li {
  margin-top: 14px;
}
#blog-listado .listado-filtros a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
#blog-listado .listado-filtros a:hover {
  color: #ffffff;
  text-decoration: none;
}
#blog-listado .listado-filtros .activo a {
  color: #ffac00;
}
#blog-listado .listado-paginacion {
  margin-top: 56px;
}
#blog-listado .listado-paginacion ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
}
#blog-listado .listado-paginacion .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
#blog-listado .listado-paginacion .page-numbers:hover {
  border-color: #ffac00;
  color: #ffffff;
  text-decoration: none;
}
#blog-listado .listado-paginacion .page-numbers.current {
  background-color: #ffac00;
  border-color: #ffac00;
  color: #00386a;
}
#blog-listado .listado-paginacion .page-numbers.dots {
  border-color: transparent;
}
#blog-listado .listado-paginacion .page-numbers.dots:hover {
  border-color: transparent;
}

#single .single-hero {
  background-color: #acc1d5;
  padding: 60px 0 44px;
  text-align: center;
}
#single .single-titulo {
  color: #00386a;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 auto 36px;
  max-width: 22ch;
}
#single .single-portada {
  margin: 0 auto 26px;
  max-width: 560px;
  line-height: 0;
}
#single .single-portada img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
#single .single-meta {
  color: #00386a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
#single .single-meta span {
  margin: 0 6px;
  opacity: 0.55;
}
#single .single-cuerpo {
  background-color: #ffffff;
  padding: 64px 0 72px;
}
#single .single-contenido {
  color: rgba(0, 56, 106, 0.85);
  font-size: 0.95rem;
  line-height: 1.85;
}
#single .single-contenido > *:first-child {
  margin-top: 0;
}
#single .single-contenido p {
  margin: 0 0 22px;
}
#single .single-contenido h2, #single .single-contenido h3, #single .single-contenido h4 {
  color: #00386a;
  font-weight: 800;
  line-height: 1.3;
  margin: 40px 0 16px;
}
#single .single-contenido h2 {
  font-size: 1.35rem;
}
#single .single-contenido h3 {
  font-size: 1.15rem;
}
#single .single-contenido h4 {
  font-size: 1rem;
}
#single .single-contenido strong {
  color: #00386a;
  font-weight: 700;
}
#single .single-contenido a {
  color: #009835;
  font-weight: 600;
  text-decoration: underline;
}
#single .single-contenido a:hover {
  color: #00386a;
}
#single .single-contenido ul, #single .single-contenido ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
#single .single-contenido ul li, #single .single-contenido ol li {
  margin-bottom: 8px;
}
#single .single-contenido blockquote {
  border-left: 3px solid #009835;
  padding: 4px 0 4px 22px;
  margin: 32px 0;
  color: #00386a;
  font-weight: 600;
}
#single .single-contenido blockquote p:last-child {
  margin-bottom: 0;
}
#single .single-contenido img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
}
#single .single-contenido figure {
  margin: 28px 0;
}
#single .single-contenido figcaption {
  font-size: 0.75rem;
  color: rgba(0, 56, 106, 0.6);
  margin-top: 8px;
}
#single .single-compartir {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}
#single .single-compartir .single-compartir-label {
  color: #00386a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#single .single-compartir ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
}
#single .single-compartir a {
  display: block;
  line-height: 0;
  padding: 8px;
}
#single .single-compartir a svg {
  width: 19px;
  height: 19px;
  fill: #00386a;
  display: block;
  transition: fill 0.3s ease, transform 0.3s ease;
}
#single .single-compartir a:hover svg {
  fill: #009835;
  transform: translateY(-3px);
}

#kit {
  position: relative;
  overflow: hidden;
  background-color: #00386a;
  padding: 70px 0 100px;
}
#kit .kit-garabato {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 190px;
  pointer-events: none;
  z-index: 1;
  animation: floatAmarillo 5s ease-in-out infinite;
}
#kit .container-fluid {
  position: relative;
  z-index: 2;
}
#kit .kit-encabezado {
  text-align: center;
  margin-bottom: 56px;
}
#kit .kit-lettering {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}
#kit .kit-bajada {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto 30px;
}
#kit .kit-btn {
  display: inline-block;
  background-color: #ffac00;
  color: #00386a;
  border-radius: 30px;
  padding: 13px 32px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#kit .kit-btn:hover {
  background-color: #ffffff;
  color: #00386a;
  text-decoration: none;
}
#kit .kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
#kit .kit-card {
  margin: 0;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
#kit .kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
#kit .kit-card:hover .kit-card-lupa {
  opacity: 1;
}
#kit .kit-card:hover .kit-card-media::after {
  opacity: 1;
}
#kit .kit-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1240/1754;
  background-color: #f2f4f7;
  line-height: 0;
}
#kit .kit-card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#kit .kit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 56, 106, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#kit .kit-card-lupa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffac00;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#kit .kit-card-lupa svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #00386a;
  stroke-width: 2.2;
  stroke-linecap: round;
}
#kit .kit-card-pie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid #e8ecf1;
}
#kit .kit-card-titulo {
  color: #00386a;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  min-width: 0;
}
#kit .kit-card-bajar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 56, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
#kit .kit-card-bajar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #00386a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
#kit .kit-card-bajar:hover {
  background-color: #ffac00;
  text-decoration: none;
}
#kit .kit-vacio {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  text-align: center;
  margin: 0;
}
#kit .kit-vacio strong {
  color: #ffffff;
}
#kit .kit-contenido {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 70ch;
  margin: 56px auto 0;
}
#kit .kit-contenido p {
  margin: 0 0 18px;
}
#kit .kit-contenido a {
  color: #ffac00;
}

#aliados {
  position: relative;
  z-index: 4;
  background-color: #ffffff;
  padding: 46px 0;
}
#aliados .aliados-fila {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px 56px;
}
#aliados .aliados-fila + .aliados-fila {
  margin-top: 30px;
}
#aliados .aliados-logo {
  height: var(--aliado-alto, 42px);
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

#pie {
  position: relative;
  z-index: 4;
  background-color: #acc1d5;
  padding: 34px 0 30px;
}
#pie .pie-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
#pie .pie-redes {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
}
#pie .pie-redes a {
  display: block;
  line-height: 0;
  padding: 8px;
  margin: -8px;
}
#pie .pie-redes a svg {
  width: 24px;
  height: 24px;
  fill: #00386a;
  display: block;
  transition: fill 0.3s ease, transform 0.3s ease;
}
#pie .pie-redes a:hover svg {
  fill: #009835;
  transform: translateY(-3px);
}
#pie .pie-logo {
  line-height: 0;
}
#pie .pie-logo img {
  height: 70px;
  width: auto;
  display: block;
}
#pie .pie-contacto {
  justify-self: end;
  text-align: left;
  color: #00386a;
  font-size: 0.8rem;
  line-height: 1.5;
}
#pie .pie-contacto .pie-contacto-label {
  display: block;
  font-weight: 800;
}
#pie .pie-contacto a {
  color: #00386a;
  font-weight: 600;
  text-decoration: none;
}
#pie .pie-contacto a:hover {
  color: #009835;
  text-decoration: none;
}
#pie .pie-ods {
  max-width: 80%;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 56, 106, 0.35);
  color: #00386a;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.e404 {
  position: relative;
  overflow: hidden;
  background-color: #00386a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.e404 .e404-garabato-verde {
  position: absolute;
  top: -25px;
  right: -5px;
  width: 300px;
  z-index: 1;
  pointer-events: none;
  animation: revealVerde 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both, floatVerde 4s ease-in-out 1.3s infinite;
}
.e404 .e404-garabato-amarillo {
  position: absolute;
  left: -15px;
  bottom: 8%;
  width: 130px;
  z-index: 1;
  pointer-events: none;
  animation: revealAmarillo 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both, floatAmarillo 5s ease-in-out 1.6s infinite;
}
.e404 .container-fluid {
  position: relative;
  z-index: 2;
}
.e404 .e404-num {
  display: block;
  color: #ffffff;
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 0.12;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.e404 .e404-titulo {
  position: relative;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: -0.35em;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.e404 .e404-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.35rem;
  line-height: 1.7;
  max-width: 32em;
  margin: 22px auto 40px;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.e404 .e404-btn-wrap {
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.e404 .e404-bici {
  position: absolute;
  right: 6%;
  bottom: 40px;
  width: 150px;
  z-index: 1;
  pointer-events: none;
  animation: fadeSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

@media (max-width: 1199px) {
  .nav-barra .nav-toggle {
    display: block;
  }
  .nav-barra .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #ffffff;
    box-shadow: 0 16px 24px rgba(0, 56, 106, 0.16);
    padding: 8px 1.5rem 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-barra.nav-abierto .nav-menu {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }
  .nav-barra .nav-lista {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .nav-barra .nav-lista a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 56, 106, 0.1);
    font-size: 0.95rem;
  }
  .nav-barra .nav-cta {
    align-self: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #kit .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #blog-listado .listado-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #blog-listado .listado-filtros {
    position: static;
  }
  #blog-listado .listado-filtros ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  #blog-listado .listado-filtros li + li {
    margin-top: 0;
  }
  #blog-listado .listado-filtros a {
    white-space: nowrap;
  }
  #single .single-titulo {
    max-width: none;
  }
  #pie .pie-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }
  #pie .pie-contacto {
    justify-self: center;
    text-align: center;
  }
  #pie .pie-ods {
    max-width: 100%;
  }
  #miradas .miradas-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  #miradas .miradas-bajada {
    max-width: 24ch;
  }
  #miradas .miradas-galeria {
    height: 460px;
  }
  #miradas .miradas-col--desfase {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .botonera {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    box-shadow: 0 -3px 16px rgba(0, 56, 106, 0.25);
    padding-bottom: env(safe-area-inset-bottom, 0);
    background-color: #ffffff;
  }
  .botonera .botonera-btn {
    flex: 1;
    justify-content: center;
    min-height: 56px;
  }
  .botonera .botonera-icono {
    width: auto;
    height: auto;
  }
  .botonera .botonera-icono img {
    width: 22px;
    height: 22px;
  }
  .botonera .botonera-btn--ancha {
    flex-direction: column;
    gap: 3px;
  }
  .botonera .botonera-btn--ancha .botonera-label,
  .botonera .botonera-btn--ancha:hover .botonera-label,
  .botonera .botonera-btn--ancha:focus-visible .botonera-label {
    max-width: none;
    opacity: 1;
    padding-right: 0;
    font-size: 0.5rem;
    letter-spacing: 0.03em;
  }
  .modal-jem:not([hidden]) {
    padding: 16px;
  }
  .modal-jem .modal-jem-cuerpo {
    padding: 30px 22px 32px;
  }
  .modal-jem .modal-jem-texto {
    font-size: 0.95rem;
  }
  .modal-jem .modal-jem-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
  .modal-jem .modal-libro-cabecera {
    padding: 26px 48px 24px;
  }
  .modal-jem .modal-libro-titulo {
    font-size: 1.2rem;
  }
  .nav-barra .nav-inner {
    height: 62px;
  }
  .nav-barra .nav-logo img {
    height: 30px;
  }
  .blog-grid,
  .blog-grid--dos {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .blog-card-titulo {
    font-size: 1.2rem;
  }
  #kit {
    padding: 44px 0 70px;
  }
  #kit .kit-encabezado {
    margin-bottom: 34px;
  }
  #kit .kit-lettering {
    max-width: 260px;
    margin-bottom: 18px;
  }
  #kit .kit-bajada {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  #kit .kit-btn {
    font-size: 0.95rem;
    padding: 11px 24px;
  }
  #kit .kit-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #kit .kit-garabato {
    width: 110px;
    top: -20px;
    right: -20px;
  }
  #blog-listado {
    padding: 44px 0 70px;
  }
  #blog-listado .listado-encabezado {
    margin-bottom: 30px;
  }
  #blog-listado .listado-buscador {
    flex: 1 1 100%;
  }
  #blog-listado .listado-paginacion {
    margin-top: 40px;
  }
  #single .single-hero {
    padding: 40px 0 32px;
  }
  #single .single-titulo {
    margin-bottom: 26px;
  }
  #single .single-cuerpo {
    padding: 44px 0 52px;
  }
  #single .single-compartir {
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 36px;
  }
  #blog {
    padding: 50px 0 70px;
  }
  #blog .blog-icono {
    width: 62px;
    margin: -84px 0 28px;
  }
  #blog .blog-encabezado {
    margin-bottom: 30px;
  }
  #aliados {
    padding: 34px 0;
  }
  #aliados .aliados-fila {
    gap: 20px 28px;
  }
  #aliados .aliados-fila + .aliados-fila {
    margin-top: 20px;
  }
  #aliados .aliados-logo {
    height: auto;
    width: auto;
    max-height: calc(var(--aliado-alto, 42px) * 0.7);
    max-width: 100%;
  }
  #pie {
    padding-bottom: 86px;
  }
  #pie .pie-logo img {
    height: 56px;
  }
  #pie .pie-ods {
    font-size: 0.68rem;
  }
  #datos-movilizan {
    background-size: 230% auto;
    margin-top: -80px;
    padding-top: 150px;
    padding-bottom: 90px;
  }
  #datos-movilizan .datos-bici {
    width: 90px;
    top: 34px;
    right: 6%;
  }
  #datos-movilizan .datos-titulo {
    margin-bottom: 24px;
  }
  #datos-movilizan .datos-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin: 0 -1.5rem 30px;
    padding: 0 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #datos-movilizan .datos-tabs::-webkit-scrollbar {
    display: none;
  }
  #datos-movilizan .datos-tab {
    flex-shrink: 0;
    font-size: 0.95rem;
    padding: 9px 18px;
  }
  #datos-movilizan .datos-stat-area {
    min-height: 0;
  }
  #datos-movilizan .datos-desc {
    font-size: 1.15rem;
  }
  #miradas {
    padding: 70px 0 150px;
  }
  #miradas .miradas-garabato {
    width: 150px;
    top: -40px;
    left: -35px;
  }
  #miradas .miradas-icono {
    width: 68px;
  }
  #miradas .miradas-galeria {
    height: 380px;
  }
  #miradas .miradas-wave svg {
    height: 80px;
  }
  #objetivos {
    padding: 20px 0 80px;
  }
  #objetivos .objetivos-intro {
    margin-bottom: 34px;
  }
  #objetivos .objetivos-fila,
  #objetivos .objetivos-fila--inversa {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 0;
  }
  #objetivos .objetivos-num,
  #objetivos .objetivos-desc,
  #objetivos .objetivos-estrellas {
    flex: 0 0 auto;
  }
  #objetivos .objetivos-desc {
    max-width: none;
  }
  #objetivos .objetivos-estrellas {
    gap: 6px;
  }
  #objetivos .objetivos-estrella {
    width: 46px;
    height: 35px;
  }
  #objetivos .objetivos-garabato {
    width: 120px;
    bottom: -50px;
    right: -20px;
  }
  #header {
    padding: 120px 0 70px;
  }
  #header .header-garabato-verde {
    width: 200px;
    right: -15px;
    top: -8px;
  }
  #header .header-garabato-amarillo {
    width: 90px;
    left: -30px;
  }
  .header-desc {
    font-size: 0.9rem;
  }
  .btn-proyecto {
    padding: 11px 28px;
  }
  #enfoque-integra .enfoque-sticky-wrapper {
    height: 70vh;
  }
  #enfoque-integra .enfoque-sticky {
    height: 70vh;
  }
  #enfoque-integra .enfoque-pan {
    width: 280vw;
  }
  #enfoque-integra .enfoque-banda-ref {
    height: calc(280vw / 5.0214);
  }
  #enfoque-integra .enfoque-auto {
    width: 70px;
  }
  .e404 {
    min-height: 90vh;
    padding: 90px 0 130px;
  }
  .e404 .e404-garabato-verde {
    width: 180px;
    right: -15px;
    top: -8px;
  }
  .e404 .e404-garabato-amarillo {
    width: 85px;
    left: -25px;
  }
  .e404 .e404-desc {
    font-size: 0.95rem;
    margin: 16px auto 32px;
  }
  .e404 .e404-bici {
    width: 90px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 30px;
  }
  #cinco-dimensiones {
    padding: 70px 0 70px;
  }
  #cinco-dimensiones .cinco-intro {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 56px;
  }
  #cinco-dimensiones .cinco-badge {
    font-size: 1rem;
  }
  #cinco-dimensiones .cinco-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #cinco-dimensiones .cinco-card:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
  #cinco-dimensiones .cinco-card {
    height: auto;
    min-height: 320px;
    padding: 22px 18px 60px;
  }
  #cinco-dimensiones .cinco-card-title {
    font-size: 1.2rem;
  }
  #cinco-dimensiones .cinco-card-desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  #cinco-dimensiones .cinco-card-num {
    font-size: 5.5rem;
  }
  #cinco-dimensiones .cinco-titulo {
    font-size: 1.9rem;
  }
  #cinco-dimensiones .cinco-garabato-derecho {
    width: 80px;
  }
  #cinco-dimensiones .cinco-garabato-inferior {
    width: 140px;
  }
}
@media (max-width: 600px) {
  #cinco-dimensiones .cinco-cards {
    grid-template-columns: 1fr;
  }
  #cinco-dimensiones .cinco-card {
    min-height: 0;
    padding: 24px 20px 56px;
  }
  #cinco-dimensiones .cinco-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  #cinco-dimensiones .cinco-card-title {
    font-size: 1.45rem;
  }
  #cinco-dimensiones .cinco-card-desc {
    font-size: 0.95rem;
  }
  #miradas .miradas-galeria {
    height: 320px;
  }
  #kit .kit-card-pie {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (hover: none) {
  #miradas .miradas-item {
    filter: none;
    transform: none;
  }
  #kit .kit-card-media::after {
    opacity: 1;
    background-color: rgba(0, 56, 106, 0.1);
  }
  #kit .kit-card-lupa {
    opacity: 1;
  }
  #kit .kit-card:hover {
    transform: none;
    box-shadow: none;
  }
  #cinco-dimensiones .cinco-card:hover {
    transform: none;
    box-shadow: none;
  }
  .blog-card:hover .blog-card-img {
    transform: none;
  }
  .botonera .botonera-btn:hover .botonera-icono img {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@supports (min-height: 100svh) {
  #header {
    min-height: 90svh;
  }
  .e404 {
    min-height: 100svh;
  }
  @media (max-width: 768px) {
    .e404 {
      min-height: 90svh;
    }
  }
}/*# sourceMappingURL=estilos.css.map */