<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --headings: #252627;
  --active-color: #00205c;
  --active-link-color: #0075a7;
  --orange: #ff671b;
  --hover-color: #0077a8;
  --dark-bg: #00205c;
  --tint: #ffe3c2;
  --secondary-action-color: #55c0dd;
  --light-grey: #e3e3e7;
  --light-sea-green: #5abdba;
  --white: white;
  --medium-purple: #8b7ae4;
  --dodger-blue: #0099d9;
  --hover-link-color: #bb4c15;
  --paho-dark-blue: #00205c;
  --paho-cream: #ffe3c2;
}

body {
  color: var(--headings);
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.9rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 18px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.8rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 9px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

h6 {
  margin-top: 0;
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

p {
  margin-bottom: 18px;
}

a {
  color: var(--active-color);
  text-decoration: none;
  transition: all .25s;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

ul {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 0;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  margin-left: 18px;
}

label {
  color: var(--headings);
  letter-spacing: 1px;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}

strong {
  font-weight: 700;
}

blockquote {
  border-left: 6px solid var(--active-color);
  color: var(--dark-bg);
  letter-spacing: .5px;
  margin-top: 48px;
  margin-bottom: 48px;
  margin-left: -38px;
  padding: 0 0 0 30px;
  font-size: 2.1rem;
  line-height: 3.1rem;
}

.p-large {
  color: var(--dark-bg);
  font-size: 1.7rem;
  line-height: 2.5rem;
}

.p-large.highlighted {
  color: var(--orange);
}

.p-small {
  flex: 0 auto;
  font-size: 1rem;
  line-height: 1.6rem;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.style-guide-color {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 24px;
  display: flex;
}

.style-guide-color.active-color {
  background-color: var(--active-color);
}

.style-guide-color.headings {
  background-color: var(--headings);
}

.style-guide-color.hover-color {
  background-color: var(--hover-color);
}

.style-guide-color.tint {
  background-color: var(--tint);
}

.style-guide-color.secondary-action-color {
  background-color: var(--secondary-action-color);
}

.style-guide-color.light-grey {
  background-color: var(--light-grey);
}

.style-guide-color.cyan {
  background-color: var(--light-sea-green);
}

.button {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #00205c;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 14px 48px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: var(--hover-color);
  color: var(--white);
  text-decoration: none;
  transform: scale(1.03);
}

.wrap {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.wrap.no-t-padding {
  padding-top: 0;
}

.wrap._404 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.wrap.tint {
  background-color: var(--tint);
  padding-top: 0;
  padding-bottom: 24px;
}

.wrap.dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.fluid-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 6px;
  position: relative;
}

.fluid-cell._67-p {
  flex: 0 auto;
  width: 66.7%;
}

.fluid-cell._50-p {
  flex: 0 auto;
  width: 50%;
}

.fluid-cell._100-p {
  flex: 0 auto;
  width: 100%;
}

.fluid-cell.center-intro {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
}

.fluid-cell.section-link {
  flex: 1;
  padding-left: 12px;
  padding-right: 12px;
}

.fluid-cell.no-t-padding {
  padding-top: 0;
}

.invert {
  color: #fff;
}

.subheading {
  background-color: var(--active-color);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 3px 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: inline-block;
}

.subheading.blue {
  background-color: var(--active-color);
}

.container {
  z-index: 3;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  position: relative;
}

.container.section-links {
  align-items: stretch;
  padding: 6px 12px 24px;
}

.ordered-item {
  background-image: none;
  background-repeat: repeat;
  padding-left: 10px;
}

.faux-h1 {
  margin-bottom: 18px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.faux-h1.extra {
  font-size: 5rem;
  line-height: 5.8rem;
}

.faux-h1.blue {
  color: var(--dark-bg);
}

.faux-h2 {
  margin-bottom: 15px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

.faux-h3 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.9rem;
}

.faux-h3.blue {
  color: var(--headings);
}

.faux-h3.light-blue {
  color: var(--active-color);
}

.faux-h4 {
  color: var(--headings);
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

.faux-h5 {
  margin-bottom: 9px;
  padding-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.faux-h5:hover {
  text-decoration: none;
}

.faux-h5.opacity-70 {
  opacity: .7;
}

.faux-h5.t-divider {
  border-top: 1px solid rgba(0, 0, 0, .15);
  margin-top: 18px;
  padding-top: 24px;
}

.style-guide-color-block {
  border-bottom: 1px solid var(--light-grey);
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.faux-h6 {
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.faux-h6:hover {
  text-decoration: none;
}

.link {
  color: var(--headings);
  letter-spacing: .5px;
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6rem;
  display: inline-block;
  position: relative;
}

.link:hover {
  border-bottom-color: var(--headings);
  color: var(--active-color);
  text-decoration: none;
  transform: translate(0, -3px);
}

.button-hover {
  background-color: var(--hover-color);
  width: 100%;
  height: 200%;
  display: none;
  position: absolute;
  top: 101%;
  bottom: 0%;
  left: 0;
  right: auto;
}

.button-text {
  z-index: 2;
  position: relative;
}

.nav-link {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  margin-top: 12px;
  margin-bottom: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2rem;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--orange);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--orange);
  border-top-color: #98b839;
}

.nav-link._w-dropdown {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.nav-link.light {
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
}

.nav-link.light:hover, .nav-link.light.w--current {
  color: var(--orange);
}

.nav {
  z-index: 0;
  background-color: var(--headings);
  width: 600px;
  padding-top: 84px;
  padding-bottom: 48px;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: auto;
}

.highlighted-text {
  background-color: var(--dark-bg);
  box-shadow: -6px 0 0 0 var(--dark-bg), 6px 0 0 0 var(--dark-bg);
  color: var(--white);
  font-family: PT Serif, serif;
  display: inline;
}

.top-bar {
  z-index: 1112;
  background-color: var(--active-color);
  height: 60px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.link-arrow {
  background-color: var(--active-color);
  background-image: url('../images/Link-Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 3px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.dropdown-content {
  background-color: var(--tint);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.dropdown-wrap {
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  margin-bottom: 18px;
  position: relative;
}

.dropdown-trigger {
  z-index: 20;
  color: var(--headings);
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 18px;
  padding-right: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  position: relative;
}

.dropdown-icon {
  background-color: var(--orange);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-left: 24px;
  display: flex;
}

.dropdown-content-wrap {
  padding: 24px 24px 6px;
}

.simple-slider-arrow-icon {
  color: var(--active-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4rem;
}

.simple-slider-arrow-icon.down {
  margin-top: 1px;
  transform: rotate(90deg);
}

.text-block {
  background-color: var(--dark-bg);
  color: var(--white);
  height: 100%;
  margin-bottom: 18px;
  padding: 36px 50px 36px 50px;
  font-family: PT Serif, serif;
  font-weight: 400;
  transition: all .25s;
  display: block;
}

.text-block:hover {
  color: var(--white);
  text-decoration: none;
}

.dropdown-trigger-2 {
  z-index: 20;
  color: #005689;
  cursor: pointer;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.nav-wrap {
  z-index: 1111;
  justify-content: flex-end;
  align-items: center;
  display: none;
  position: relative;
}

.nav-open {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.main-nav {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.main-nav._w-mobile-menu {
  z-index: 1;
}

.nav-icon-buttons {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: .9rem;
  line-height: 1.6rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.header-bg-overlay {
  z-index: 2;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, 0) 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hamburger-row {
  background-color: var(--white);
  border-radius: 2px;
  width: 28px;
  height: 2px;
}

.hamburger {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  height: 16px;
  display: flex;
}

.full-card-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.full-image-card {
  color: var(--white);
  height: 500px;
  transition: all .35s;
  display: block;
  position: relative;
  overflow: hidden;
	background-color: transparent; 
}

.full-image-card:hover {
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.full-card-text {
  background-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 2; /* Aseguramos que estÃ© por encima de la imagen */
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 36px 36px 24px;
  display: flex;
}

._w-line {
  border-top: 1px solid var(--active-color);
  margin-top: 42px;
  padding-top: 36px;
}

.large-image {
  min-width: 100%;
  margin-top: 12px;
  margin-bottom: 36px;
}

.section {
  position: relative;
}

.faux-link {
  color: var(--white);
  letter-spacing: .5px;
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6rem;
  display: inline-block;
  position: relative;
}

.faux-link:hover {
  color: var(--white);
}

.sections-menu {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  position: relative;
}



.navtainer {
  z-index: 3;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-left: 72px;
  padding-right: 72px;
  display: flex;
  position: relative;
}

.large-image-caption {
  z-index: 1;
  color: var(--white);
  background-color: rgba(35, 96, 146, .85);
  width: 50%;
  padding: 24px 24px 6px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: all .25s;
  display: block;
  position: absolute;
  top: auto;
  bottom: 24px;
  left: auto;
  right: 24px;
}

.header-large {
  color: #fff;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 800px;
  margin-top: 84px;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-large.no-t-margin {
  margin-top: 0;
}

.header-bg-img {
  object-fit: cover;
  width: 110%;
  height: 110%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.heading-line {
  background-color: var(--orange);
  width: 36px;
  height: 4px;
  margin-bottom: 12px;
}

.heading-line.as-sub-nav-divider {
  margin-top: 40px;
}

.title-nav {
  z-index: 1000;
  background-color: var(--white);
  color: var(--hover-color);
  text-transform: uppercase;
  height: auto;
  font-family: Roboto Condensed, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2rem;
  position: fixed;
  top: 60px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.title-row {
  border-bottom: 1px solid var(--active-color);
  background-color: var(--white);
  color: var(--hover-color);
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: Roboto Condensed, sans-serif;
  font-weight: 700;
}

.title-row.top {
  z-index: 1;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.5rem;
  position: relative;
}

.title-row.bottom {
  color: var(--headings);
}

.logo-link {
  z-index: 1;
  flex: 1;
  align-items: center;
  display: flex;
}

.logo-img {
  z-index: 3;
  height: 40px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-right: 12px;
}

.title-row-link {
  color: var(--active-color);
}

.title-row-link:hover {
  color: var(--dark-bg);
  text-decoration: none;
}

.logo-bar {
  z-index: 1;
  background-color: var(--active-color);
  height: 100%;
  position: relative;
}

.sub-nav {
  flex-direction: column;
  align-items: stretch;
  width: 28%;
  margin-top: 84px;
  margin-bottom: 84px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 180px;
}

.sub-nav.no-anchor-links {
  margin-top: 48px;
}

.sub-nav-link {
  color: var(--dark-bg);
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 6px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3rem;
  display: inline-block;
}

.sub-nav-link:hover {
  color: var(--orange);
  text-decoration: none;
}

.sub-nav-link.figure {
  background-color: var(--tint);
  color: var(--active-color);
  background-image: url('../images/figure-icon.png');
  background-position: 6px;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 30px;
}

.sub-nav-link.figure:hover {
  color: var(--orange);
}

.sub-nav-link.next-section {
  color: var(--dark-bg);
  background-image: url('../images/Arrow.svg');
  background-position: 6px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 24px;
}

.sub-nav-link.next-section:hover {
  color: var(--dark-bg);
}

.footer {
  background-color: var(--active-color);
  color: var(--white);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 6px;
  position: relative;
}

.footer-cell.center-intro {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
}

.copyright {
  margin-bottom: 6px;
}

.offsetfix {
  z-index: -1;
  width: 100%;
  height: 154px;
  margin-top: -160px;
  position: absolute;
}

.main-wrap {
  width: 68%;
}

.menu {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-top: 8px;
  padding-right: 12px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
}

.menu:hover {
  text-decoration: none;
}

.section-link-simple {
  border-right: 1px solid var(--light-grey);
  text-transform: uppercase;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: flex;
}

.section-link-simple:hover {
  text-decoration: none;
}

.home-links-wrap {
  border-bottom: 1px solid var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-link-arrow {
  margin-left: 12px;
}

.nav-links-wrap {
  z-index: 3;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  position: relative;
}

.blue-text {
  color: var(--active-color);
}

.pasted-url {
  white-space: normal;
  word-break: break-all;
}

.invert-link {
  color: var(--white);
}

.invert-link:hover {
  color: var(--headings);
}

@media screen and (min-width: 1440px) {
  a {
    color: var(--active-link-color);
  }

  a:hover {
    color: var(--orange);
  }

  .wrap.tint {
    background-color: var(--tint);
  }

  .wrap.dark {
    background-color: var(--dark-bg);
  }

  .container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .container.section-links {
    max-width: none;
  }

  .large-image.t-margin {
    margin-top: 72px;
  }

  .tint {
    background-color: var(--tint);
  }

  .navtainer {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-link-simple {
    align-items: center;
  }

  .section-link-simple:hover {
    color: var(--dark-bg);
  }

  .nav-links-wrap {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-image: none;
  }

  h1 {
    font-size: 4rem;
    line-height: 3.75rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  a:hover {
    color: var(--hover-color);
  }

  .p-large {
    font-size: 1.5rem;
    line-height: 2.3rem;
  }

  .wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .fluid-cell {
    flex: 1;
  }

  .fluid-cell.center-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell.section-link {
    width: 50%;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .faux-h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .faux-h1.extra {
    font-size: 4.4rem;
    line-height: 5.2rem;
  }

  .faux-h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .faux-h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .faux-h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .nav-link, .nav-link:hover {
    color: var(--white);
  }

  .nav-link.w--current:hover {
    color: var(--active-color);
  }

  .nav-link._w-dropdown {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav {
    background-color: var(--headings);
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    overflow: auto;
    box-shadow: 0 24px 36px rgba(0, 0, 0, .15);
  }

  .text-block {
    padding: 36px 36px 24px;
  }

  .dropdown-trigger-2 {
    padding-right: 36px;
  }

  .main-nav._w-mobile-menu {
    display: block;
  }

  .nav-icon-buttons {
    margin-left: 0;
  }

  .large-image {
    min-width: 100%;
    margin-top: 12px;
    margin-bottom: 0;
    left: 0%;
  }

  .navtainer {
    padding-left: 36px;
    padding-right: 36px;
  }

  .large-image-caption {
    width: 100%;
    margin-bottom: 12px;
    position: static;
    bottom: 36px;
    right: 60px;
  }

  .header-large {
    min-height: 600px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .title-nav {
    font-size: .9rem;
    line-height: 1.1rem;
  }

  .title-row.top {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .logo-img {
    z-index: 3;
    height: 30px;
    position: relative;
  }

  .sub-nav {
    margin-top: 72px;
    padding-right: 12px;
  }

  .footer-cell {
    flex: 1;
  }

  .footer-cell.center-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .offsetfix {
    height: 145px;
  }

  .nav-links-wrap {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-position: -300px -20px;
  }

  h1 {
    margin-bottom: 12px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  h5 {
    padding-top: 8px;
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  p {
    margin-bottom: 12px;
  }

  blockquote {
    margin-left: 0;
    font-size: 1.75rem;
    line-height: 2.6rem;
  }

  .p-large {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .wrap {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .fluid-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell._67-p, .fluid-cell._50-p {
    width: 100%;
  }

  .fluid-cell.center-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell.section-link {
    width: 100%;
  }

  .subheading {
    background-image: none;
    margin-bottom: 12px;
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .container {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .faux-h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .faux-h1.extra {
    font-size: 3.8rem;
    line-height: 4.4rem;
  }

  .faux-h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  .faux-h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  .faux-h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .faux-h5 {
    padding-top: 8px;
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  .nav-link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav {
    padding-top: 72px;
    padding-bottom: 30px;
  }

  .top-bar {
    height: 48px;
  }

  .dropdown-wrap {
    margin-bottom: 12px;
  }

  .dropdown-trigger {
    padding-bottom: 12px;
  }

  .text-block {
    margin-bottom: 12px;
  }

  .nav-icon-buttons {
    height: 48px;
  }

  .header-bg-overlay {
    display: none;
  }

  .full-image-card {
    height: 450px;
  }

  .full-card-text {
    justify-content: flex-end;
  }

  .large-image {
    margin-top: 0;
  }

  .navtainer {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .large-image-caption {
    width: 100%;
    padding: 30px 24px 18px;
    position: static;
  }

  .large-image-caption:hover {
    box-shadow: none;
    transform: none;
  }

  .header-large {
    background-color: var(--tint);
    color: var(--headings);
    flex-wrap: wrap-reverse;
    min-height: auto;
    margin-top: 48px;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .header-bg-img {
    margin-bottom: 24px;
    position: static;
  }

  .title-nav {
    font-size: .8rem;
    line-height: 1rem;
    top: 48px;
  }

  .title-row.top {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .logo-img {
    height: 24px;
  }

  .sub-nav {
    display: none;
  }

  .footer-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-cell.center-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .offsetfix {
    height: 152px;
    margin-top: -152px;
  }

  .main-wrap {
    width: 100%;
  }

  .menu {
    padding-right: 6px;
  }

  .section-link-simple {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 1rem;
    line-height: 1.7rem;
  }

  .nav-links-wrap {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-position: -330px -20px;
  }

  h1 {
    line-height: 3.1rem;
  }

  blockquote {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }

  .p-large {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .utility-page-content {
    width: 260px;
  }

  .button {
    padding-left: 36px;
    padding-right: 36px;
  }

  .wrap {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .wrap.tint {
    padding-bottom: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .fluid-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell.center-intro {
    text-align: left;
    align-items: flex-start;
  }

  .fluid-cell.section-link {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    align-items: stretch;
  }

  .container.section-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faux-h1.extra {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }

  .nav-link {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .nav {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .top-bar {
    height: 44px;
  }

  .text-block {
    padding: 24px 24px 12px;
  }

  .nav-open {
    width: 60px;
  }

  .nav-icon-buttons {
    width: 60px;
    height: 44px;
  }

  .full-image-card {
    height: 400px;
  }

  .full-card-text {
    padding: 24px 24px 12px;
  }

  .navtainer {
    align-items: stretch;
    padding-left: 18px;
    padding-right: 18px;
  }

  .large-image-caption {
    padding: 24px 18px 12px;
  }

  .header-large {
    margin-top: 64px;
    padding-bottom: 18px;
  }

  .header-bg-img {
    margin-bottom: 18px;
  }

  .title-nav {
    top: 44px;
  }

  .logo-img {
    height: 20px;
  }

  .sub-nav {
    padding: 24px 24px 12px;
  }

  .footer {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-cell.center-intro {
    text-align: left;
    align-items: flex-start;
  }

  .offsetfix {
    height: 124px;
    margin-top: -124px;
  }

  .menu {
    display: none;
  }

  .section-link-simple {
    border-bottom: 1px solid var(--light-grey);
    border-right-style: none;
    justify-content: flex-start;
    padding: 12px 18px;
  }

  .home-links-wrap {
    text-align: left;
    border-bottom-style: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links-wrap {
    align-items: stretch;
    padding-left: 18px;
    padding-right: 18px;
  }
}
.footer {
  background-color: var(--active-color);
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 20px;
margin-left: 1px;
	font-family: Roboto, sans-serif;
	font-size: 1.0rem;
	 line-height: 1.5;
}

.footer h2 {
  font-size: 2.0rem;
 margin-top: 0;
  margin-bottom: 0px; 
	margin-left: 0px;
  padding: 0;
  font-weight: bold;
	
}

.footer ul {
 list-style-type: none;
  padding-left: 0;
  margin-top: 0;
	margin-left: 0px;
  margin-bottom: 15px;
}

.footer li {
  margin-top: 0px;
	margin-bottom: 5px;
	margin-left: 2px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.social-media-links {
  display: flex;
  flex-wrap: wrap;
	gap: 10px;
}

.social-media-links li {
  margin-right: 5px;
}

.social-media-links span {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .footer-cell {
    margin-bottom: 24px;
  }
}
.footer-cell.center-intro {
  text-align: center;
  margin-top: 15px;
	margin-bottom: 25px;
	margin-left: 0px;
	margin-right: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%; 
	font-size: 1.2rem;
}
.header-large {
  position: relative;
  overflow: hidden;
}

.header-bg-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-image-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.6rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  border-radius: 3px;
  z-index: 3;
}

.header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@media screen and (max-width: 767px) {
  .header-large {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  
  .header-bg-img-container {
    position: relative;
    width: 100%;
    height: 300px;
    order: -1;
    z-index: 1;
  }

  .header-content {
    background-color: var(--tint);
    color: var(--headings);
    text-shadow: none;
    padding: 20px 0;
    order: 1;
  }

  .header-bg-overlay {
    display: none;
  }
}
.image-credit {
  position: absolute;
  bottom: 5px;
  right: 25px;
  font-size: 0.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  border-radius: 3px;
}

.full-image-card {
  position: relative;
}
.image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px; /* Espacio entre las imÃ¡genes */
}

.image-container img {
  max-width: 50%; /* Asegura que las imÃ¡genes no sean mÃ¡s anchas que la mitad del contenedor */
  height: auto; /* Mantiene la proporciÃ³n de aspecto */
}
.responsiveContent {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.2%;
  margin-bottom: 20px;
}
.responsiveContent iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.google-map-container {
  position: relative;
  height: 500px; /* Altura fija en pÃ­xeles */
  overflow: hidden;
  max-width: 100%;
}
.header-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlight-word-orange {
  color: #F26829;
}
.scrolling-section-crema {
  display: flex;
  background-color: #FFE3C2;
  padding: 50px 0;
}

.scrolling-section-blue {
  display: flex;
  background-color: #00205c;
  padding: 50px 0;
  color: white; /* Color de texto por defecto para toda la secciÃ³n */
}


.image-column {
  width: 50%;
  position: sticky;
  top: 100px;
  height: 80vh;
  overflow: hidden;
}

.scroll-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.text-column {
  width: 50%;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .scrolling-section-crema {
    flex-direction: column;
  }
	
  
  .image-column, .text-column {
    width: 100%;
  }
  
  .image-column {
    height: 50vh;
    position: relative;
    top: 0;
  }
}
.paho-numbers {
  background-color: #00205c;
  color: white;
  padding: 80px 0;
  width: 100%;
}

.paho-numbers-crema {
  background-color: #ffe3c2;
  color: #000000;
  padding: 80px 0;
  width: 100%;
}

.container-narrow {
  width: 50%;
  margin: 0 auto;
  max-width: 800px;
}

.paho-numbers h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.paho-numbers h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.paho-numbers-crema h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5em;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.paho-numbers-crema h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.numbers-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.number-pair {
  display: flex;
  gap: 40px;
  align-items: center;
}

.number-content, .number-image {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.number-content.visible, .number-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.number-content .number {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.number-content .description {
  font-size: 1.2em;
  line-height: 1.4;
}

.number-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .container-narrow {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .container-narrow {
    width: 85%;
  }
  
  .number-pair {
    flex-direction: column;
    gap: 20px;
  }
  
  .number-content, .number-image {
    text-align: center;
  }
}
.number-pair {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  margin-bottom: 40px;
  position: relative; /* Importante para el pseudo-elemento */
}

/* Pseudo-elemento para el borde */
.number-pair::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Cuando el contenido es visible, mostramos el borde */
.number-pair.visible::before {
  opacity: 1;
}

/* Media queries para pantallas pequeÃ±as */
@media (max-width: 768px) {
  .number-pair {
    flex-direction: column;
    gap: 20px;
    padding: 20px; /* Reducimos el padding en mÃ³vil */
  }
}

@media (max-width: 480px) {
  .number-pair {
    padding: 15px; /* AÃºn menos padding para pantallas muy pequeÃ±as */
  }
}
.typewriter-text {
    opacity: 1;
    visibility: visible;
    line-height: 1.6;
}

.typewriter-word {
    display: inline-block;
    transition: opacity 0.1s ease;
    position: relative;
    margin-right: 0.4em; /* Agrega espacio entre palabras */
}

.typewriter-word.typed {
    animation: fadeInWord 0.5s ease forwards;
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Estilos para el contenedor principal de secciones */
.sections-menu {
  background-color: #ffe3c2;
  padding: 60px 0;
  margin-top: 40px;
}

/* Estilos para la secciÃ³n "Read Next" */
.next-section-container {
  background-color: white;
  padding: 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.next-section-container .section-links {
  max-width: 1200px;
  margin: 0 auto;
}

.next-section-container .fluid-cell {
  width: 100%;
}

.next-section-container .full-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-section-container .full-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Estilos para el tÃ­tulo "All sections" */
.sections-title {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.sections-title h2 {
  font-size: 2.5rem;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.sections-title p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Estilos para la grid de secciones */
.all-sections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.section-card .full-image-card {
  height: 300px;
}

.section-card .full-card-text {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  padding: 30px;
}

.section-card .subheading {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: var(--orange);
}

.section-card .faux-h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 10px;
}

/* Media queries */
@media screen and (max-width: 1200px) {
  .all-sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .all-sections-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .sections-title h2 {
    font-size: 2rem;
  }
  
  .section-card .full-image-card {
    height: 250px;
  }
}

/* Eliminar estilos antiguos */
.home-links-wrap {
  display: none;
}

/* Actualizar bordes redondeados en cards existentes */
.full-image-card {
  border-radius: 20px;
  overflow: hidden;
}
.full-image-card:hover .full-card-text {
  background-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%);
}

/* Aseguramos que las imÃ¡genes se carguen correctamente */
.full-card-image[loading="lazy"] {
  opacity: 1;
}
.highlight-section {
  background-color: #00205c;
  color: white;
  padding: 80px 0;
  width: 100%;
}

.highlight-section .container-narrow {
  width: 50%;
  margin: 0 auto;
  max-width: 800px;
}

.highlight-header h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
}

.highlight-intro {
  margin-bottom: 60px;
}

.highlight-emphasis {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 500;
}

.highlight-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.highlight-stats {
  margin-top: 80px;
}

.highlight-stats h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5em;
}

.highlight-stats h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.7em;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.stat-pair {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.stat-content, .stat-image {
  flex: 1;
}

.stat-content .stat-number {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}

.stat-content .stat-description {
  font-size: 1.2em;
  line-height: 1.4;
}

.stat-image img {
  width: 80%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .highlight-section .container-narrow {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .highlight-section .container-narrow {
    width: 85%;
  }
  
  .highlight-header h2 {
    font-size: 2.2rem;
  }
  
  .stat-pair {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .stat-image img {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stat-pair {
    padding: 15px;
  }
  
  .highlight-header h2 {
    font-size: 1.8rem;
  }
  
  .highlight-emphasis {
    font-size: 1.2rem;
  }
}
.stat-pair {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-pair.visible {
  opacity: 1;
  transform: translateY(0);
}
.maps-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden; /* Previene desbordamiento */
  margin-bottom: 60px; /* Espacio adicional al final */
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.map-item {
  width: 100%;
  height: 450px; /* Altura fija para cada mapa */
  position: relative;
}

.map-item .flourish-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Media queries para responsividad */
@media screen and (max-width: 1200px) {
  .maps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-item {
    height: 850px; /* Altura ajustada para tablets */
  }
}

@media screen and (max-width: 768px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }
  
  .map-item {
    height: 850px; /* Altura mayor para mÃ³viles */
  }
  
  .maps-container {
    padding: 10px;
    margin-bottom: 40px;
  }
}
.carousel-section {
  background-color: #ffe3c2;
  padding: 60px 0;
  width: 100%;
}

.container-narrow {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-title {
  color: #00205c;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 1.2;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.publication-card {
  background: #ffe3c2;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-5px);
}

.publication-cover {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.publication-info {
  text-align: center;
}

.publication-info h3 {
  color: #00205c;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.3;
  height: 4.5em;
  overflow: hidden;
}

.publication-info p {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 3.8em;
  overflow: hidden;
}

.download-button {
  display: inline-block;
  background-color: #00205c;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #003080;
  text-decoration: none;
  color: white;
}

.download-button-crema {
  background-color: #ffe3c2;
  color: black;
	  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
	display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
	
}

.download-button-crema:hover {
  background-color: #003080;
  text-decoration: none;
  color: white;
}


.download-button-blanco {
  background-color: #ffffff;
  color: #00205c !important; 
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem; 
  font-weight: 700; 
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 180px;
  height: 40px;
  line-height: 24px;
  border: 1px solid #cccccc; /* Borde mÃ¡s visible */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 5px 0;
}

.download-button-blanco:hover {
  background-color: #00205c;
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 1200px) {
  .container-narrow {
    width: 95%;
  }
  
  .publication-info h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .publications-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-title {
    font-size: 2rem;
	    color: #00205c;

  }
  
  .publication-info h3 {
    height: auto;
  }
  
  .publication-info p {
    height: auto;
  }
}

.highlight-cards {
  background-color: #00205c;
  padding: 60px 0;
  width: 100%;
}

.highlight-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  position: relative;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
}

.highlight-cards.two-cards-only .highlight-grid {
  max-width: 800px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.highlight-cards.three-cards-only .highlight-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

/* Ajustes responsivos para tres tarjetas */
@media (max-width: 1200px) {
  .highlight-cards.three-cards-only .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-cards.three-cards-only .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .highlight-cards.three-cards-only .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes responsivos para dos tarjetas */
@media (max-width: 1200px) {
  .highlight-cards.two-cards-only .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-cards.two-cards-only .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .highlight-cards.two-cards-only .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Estilo para secciÃ³n de cuatro tarjetas */
.highlight-cards.four-cards-only .highlight-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Ajustes responsivos para cuatro tarjetas */
@media (max-width: 1200px) {
  .highlight-cards.four-cards-only .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-cards.four-cards-only .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .highlight-cards.four-cards-only .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  padding: 20px;
  background-color: #ffe3c2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  background-color: #ffe3c2;
}

.highlight-card:hover .card-front {
  transform: rotateY(180deg);
}

.highlight-card:hover .card-back {
  transform: rotateY(360deg);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card-front h3 {
  color: #000000;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
}

.card-back p {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

/* Media queries para responsividad */
@media (max-width: 1200px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-card {
    height: 200px;
  }
}
.big-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ff671b;
  margin-bottom: 10px;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
}

.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.card-front h3 {
  font-size: 1.4rem;
  color: #ff671b;
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

.card-back {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-back p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  text-align: center;
}

/* Ajustes responsivos para los nÃºmeros */
@media (max-width: 1200px) {
  .big-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .big-number {
    font-size: 2.5rem;
  }
  
  .card-front h3 {
    font-size: 1.1rem;
  }
}

.hover-instruction {
  text-align: center;
  margin-bottom: 20px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hover-instruction p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}



@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.6; transform: scale(1); }
}

/* Para dispositivos tÃ¡ctiles */
@media (hover: none) {
  .hover-instruction p::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 11.24V7.5C9 6.12 10.12 5 11.5 5S14 6.12 14 7.5v3.74c1.21-.81 2-2.18 2-3.74C16 5.01 13.99 3 11.5 3S7 5.01 7 7.5c0 1.56.79 2.93 2 3.74zm9.84 4.63l-4.54-2.26c-.17-.07-.35-.11-.54-.11H13v-6c0-.83-.67-1.5-1.5-1.5S10 6.67 10 7.5v10.74l-3.43-.72c-.08-.01-.15-.03-.24-.03-.31 0-.59.13-.79.33l-.79.8 4.94 4.94c.27.27.65.44 1.06.44h6.79c.75 0 1.33-.55 1.44-1.28l.75-5.27c.01-.07.02-.14.02-.2 0-.62-.38-1.16-.91-1.38z'/%3E%3C/svg%3E");
  }

  .hover-instruction p {
    content: "Tap on the cards to see more information";
  }
}


.fullscreen-scroll-section {
  position: relative;
  height: 300vh; /* Reducido de 400vh a 300vh para acortar el espacio total */
  background-color: #00205c;
  margin-top: -50vh; /* Esto harÃ¡ que la secciÃ³n comience antes */
}

.scroll-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1; /* Asegura que las imÃ¡genes aparezcan sobre el fondo */
}

/* Aseguramos que el texto introductorio quede por encima */
.highlight-section {
  position: relative;
  z-index: 2;
  background-color: #00205c;
}

.scroll-image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.scroll-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.scroll-image.active {
  opacity: 1;
}

/* Aseguramos que se vea bien en mÃ³viles */
@media (max-width: 768px) {
  .scroll-container {
    height: 100vh; /* Mantiene altura completa en mÃ³viles */
  }
}
.program-nav {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 32, 92, 0.1);
  position: sticky;
  top: 144px;
  z-index: 999;
  width: 100%;
}

.program-menu {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

.program-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #252627;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-align: center;
  min-width: fit-content;
}

.program-link:hover {
  color: #00205c;
  text-decoration: none;
  background-color: rgba(0, 32, 92, 0.05);
}

.program-title {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .program-menu {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .program-link {
    flex: 0 1 33.333%; /* Tres elementos por fila */
    padding: 0.75rem 1rem;
  }
}


@media (max-width: 767px) {
  .program-nav,
  .program-nav .navtainer,
  .program-nav .program-menu {
    display: none;
  }
}


.cream-highlight-section {
  background-color: #ffe3c2;
  color: #000000;
  padding: 80px 0;
  width: 100%;
}

.cream-highlight-section .container-narrow {
  width: 50%;
  margin: 0 auto;
  max-width: 800px;
}

.cream-highlight-section .highlight-header h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
  color: #00205c;
}

.cream-highlight-section .highlight-intro {
  margin-bottom: 60px;
}

.cream-highlight-section .highlight-emphasis {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 500;
  color: #00205c;
}

.cream-highlight-section .highlight-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #00205c;
}

.cream-highlight-section .highlight-stats {
  margin-top: 80px;
}

.cream-highlight-section .highlight-stats h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5em;
  color: #00205c;
}

.cream-highlight-section .highlight-stats h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.7em;
  color: #00205c;
}

.cream-highlight-section .stats-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cream-highlight-section .stat-pair {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  border: 1px solid rgba(0, 32, 92, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
}

.cream-highlight-section .stat-content, 
.cream-highlight-section .stat-image {
  flex: 1;
}

.cream-highlight-section .stat-content .stat-number {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #00205c;
}

.cream-highlight-section .stat-content .stat-description {
  font-size: 1.2em;
  line-height: 1.4;
  color: #00205c;
}

.cream-highlight-section .stat-image img {
  width: 80%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .cream-highlight-section .container-narrow {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .cream-highlight-section .container-narrow {
    width: 85%;
  }
  
  .cream-highlight-section .highlight-header h2 {
    font-size: 2.2rem;
  }
  
  .cream-highlight-section .stat-pair {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cream-highlight-section .stat-image img {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cream-highlight-section .stat-pair {
    padding: 15px;
  }
  
  .cream-highlight-section .highlight-header h2 {
    font-size: 1.8rem;
  }
  
  .cream-highlight-section .highlight-emphasis {
    font-size: 1.2rem;
  }
}

/* Animaciones */
.cream-highlight-section .stat-pair {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cream-highlight-section .stat-pair.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Contenedor principal */
.main-container {
    width: 200vw; /* Dos pantallas de ancho */
    height: 100vh;
    display: flex;
    overflow-x: hidden;
    transition: transform 0.8s ease;
	    position: relative;

}

/* SecciÃ³n de introducciÃ³n */
.intro-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    flex-shrink: 0;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://live.staticflickr.com/65535/52766411119_34897d9e16_5k.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.intro-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.intro-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.explore-button {
    background-color: rgba(0, 32, 92, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
	    z-index: 10;

}

.explore-button:hover {
    background-color: rgba(0, 32, 92, 1);
    transform: translateX(10px);
}

.arrow-right {
    font-size: 2rem;
    animation: bounceRight 2s infinite;
}

.timeline-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
        padding-top: 220px; /* Ajustado para mÃ³viles */
}

.timeline-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://live.staticflickr.com/65535/52766411119_34897d9e16_5k.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.5);
    z-index: 1;
}

.timeline-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-column-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem 4rem;
    text-align: center;
    position: sticky;
    top: 200px;
    z-index: 3;
    margin-bottom: 4rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.timeline-column-header {
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
}

.timeline-column-header:first-child {
    background-color: rgba(0, 32, 92, 0.9);
    color: white;
}

.timeline-column-header:last-child {
    background-color: rgba(255, 227, 194, 0.9);
    color: #00205c;
}

.timeline {
    position: relative;
    padding: 2rem 0; /* Reducido el padding superior */
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #00205c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
    width: 100px; /* Ancho fijo */
    text-align: center;
    height: 36px; /* Altura fija */
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-regional,
.timeline-country {
    padding: 1.5rem;
    border-radius: 8px;
    color: white;
    width: 90%;
	    min-height: 100px;
    max-height: 310px;
	min-width: 200px;
	max-width: 200px;
    overflow-y: auto;
	    margin-top: 1rem; /* AÃ±adido espacio superior */

}

.timeline-regional {
    background-color: rgba(0, 32, 92, 0.9);
    transform: translateX(-20px);
    transition: all 0.8s ease-out;
    margin-left: auto;
}

.timeline-country {
    background-color: rgba(255, 227, 194, 0.9);
    transform: translateX(20px);
    transition: all 0.8s ease-out;
    color: #00205c;
}
.timeline-country {
    background-color: rgba(255, 227, 194, 0.9);
    transform: translateX(20px);
    transition: all 0.8s ease-out;
    color: #00205c;
}
.timeline-description {
    font-size: 0.9rem;
	line-height: normal;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    min-height: 40px; /* AÃ±adido para mantener alineaciÃ³n */
}
.timeline-icon {
    width: 36px; 
    height: 36px; 
    margin-right: 12px;
    vertical-align: middle;
}

.timeline-disease {
    font-weight: bold;
    font-size: 1rem;
	line-height: normal;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    min-height: 40px; /* AÃ±adido para mantener alineaciÃ³n */
}

.timeline-countries {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
.timeline-column-headers {
        top: 250px; /* Ajustado para mÃ³viles */
        padding: 1rem;
        gap: 1rem;
    }

    .timeline-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-gap: 15px;
        margin-bottom: 2rem;
    }

    .timeline-year {
        position: relative;
        left: auto;
        transform: none;
        grid-column: 1;
        margin-top: 10px;
        width: max-content;
    }

    .timeline-line {
        left: 40px; /* Ajustado para alinearse mejor */
    }

    .timeline-regional,
    .timeline-country {
        grid-column: 2;
        margin: 0;
        width: 100%;
        transform: none;
		    margin-top: 1rem; /* AÃ±adido espacio superior */

    }

    /* Ajuste adicional para el espacio entre elementos */
    .timeline-regional + .timeline-country {
        margin-top: 1rem;
    }
}

/* Ajustes adicionales para pantallas muy pequeÃ±as */
@media (max-width: 480px) {
    .timeline-column-headers {
        top: 124px;
        padding: 0.5rem;
    }

    .timeline-column-header {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .timeline-item {
        grid-gap: 10px;
    }

    .timeline-year {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
}
.timeline-intro {
    text-align: center;
    color: white;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.timeline-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline-container {
        padding-top: 320px; /* MÃ¡s espacio en mÃ³viles */
    }
.scrollytelling {
  position: relative;
  height: 300vh;
  margin: 40px 0;
}

.background-image-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.content-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-slide {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.content-box {
  background-color: rgba(0, 32, 92, 0.9);
  color: white;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
}

.content-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.content-box ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.content-box li {
  margin-bottom: 0.5rem;
  color: white;
}
	.scrollytelling {
  position: relative;
  height: 300vh;
  margin: 40px 0;
}

.background-image-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.background-image-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.content-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.content-slide {
  position: sticky;
  top: 30vh;
  height: 40vh;
  opacity: 0;
  transition: opacity 0.5s ease;
  visibility: hidden;
}

.content-slide.active {
  opacity: 1;
  visibility: visible;
}

.content-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 32, 92, 0.95);
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.content-box ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.content-box li {
  color: white;
  margin-bottom: 0.5rem;
}
	
	@media screen and (max-width: 767px) {
  .full-image-card {
    height: 350px; /* Aumentamos la altura para dar mÃ¡s espacio */
    position: relative;
  }

  .full-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column-reverse; /* Invierte el orden de los elementos */
    justify-content: flex-start;
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
    padding: 20px;
    min-height: 150px; /* Altura mÃ­nima para asegurar visibilidad */
  }

  .section-card .subheading {
    position: relative; /* Asegura que se mantenga en su lugar */
    margin-bottom: 10px;
    order: 2; /* Se muestra despuÃ©s del tÃ­tulo */
  }

  .section-card .faux-h3 {
    order: 1; /* Se muestra primero */
    margin-top: 0;
    margin-bottom: 15px;
  }
}
	@media screen and (max-width: 414px) {
  .full-image-card {
    height: 400px; /* Aumentamos aÃºn mÃ¡s la altura */
  }

  .full-card-text {
    min-height: 180px; /* MÃ¡s espacio para el texto */
    padding: 15px;
  }

  .section-card .faux-h3 {
    font-size: 1.3rem; /* Reducimos un poco el tamaÃ±o del tÃ­tulo */
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .section-card .subheading {
    font-size: 0.8rem; /* Texto mÃ¡s pequeÃ±o */
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .all-sections-grid {
    gap: 15px; /* Reducimos el espacio entre cards */
    padding: 0 10px;
  }
}
	@media screen and (max-width: 767px) {
  .container.header-content {
    padding: 0 20px; /* AÃ±ade padding horizontal */
  }

  .fluid-cell._110-p,
  .fluid-cell._50-p {
    padding: 20px; /* Aumenta el padding del contenedor del tÃ­tulo */
    width: 100%;
  }

  .header-content h1 {
    margin-left: 10px; /* AÃ±ade margen izquierdo especÃ­fico al tÃ­tulo */
    font-size: 2.2rem; /* Ajusta el tamaÃ±o de fuente si es necesario */
    line-height: 1.2;
  }
}

/* Ajustes adicionales para pantallas muy pequeÃ±as */
@media screen and (max-width: 479px) {
  .container.header-content {
    padding: 0 15px; /* Reduce ligeramente el padding en pantallas muy pequeÃ±as */
  }

  .fluid-cell._110-p,
  .fluid-cell._50-p {
    padding: 15px;
  }

  .header-content h1 {
    margin-left: 5px;
    font-size: 2rem;
  }
}
	/* Estilo general para enlaces en secciones de fondo oscuro */
.highlight-section a {
    color: #55c0dd; /* Color celeste claro */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.highlight-section a:hover {
    color: #ffe3c2; /* Color crema al hover */
    text-decoration: underline;
}

/* Ajustes especÃ­ficos para mÃ³viles */
@media screen and (max-width: 767px) {
    .highlight-section a {
        color: #55c0dd; /* Mantenemos el color visible */
        font-weight: 500; /* Hacemos el texto un poco mÃ¡s bold */
        text-decoration: underline;
    }

    .highlight-section .highlight-text a,
    .highlight-section .highlight-emphasis a,
    .highlight-section p a {
        color: #55c0dd;
        text-decoration: underline;
    }

    .highlight-section a:hover,
    .highlight-section a:active {
        color: #ffe3c2;
    }
}
.strategy-carousel {
    background-color: #00205c;
    padding: 60px 0;
    width: 100%;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-title {
    color: #00000;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.carousel-wrapper {
    position: relative;
}

.carousel-slide {
    background-color: #ffe3c2;
    border-radius: 8px;
    padding: 40px;
    min-height: 400px;
    display: none;
    align-items: center;
}

.carousel-slide.active {
    display: block;
}

.carousel-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.carousel-text {
    flex: 1;
}

.strategy-number {
    font-size: 4rem;
    font-weight: 700;
    color: #00205c;
    margin-bottom: 20px;
    line-height: 1;
}

.strategy-title {
    font-size: 2rem;
    font-weight: 600;
    color: #00205c;
    margin-bottom: 20px;
}
		

.strategy-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #00205c;
}

.carousel-image {
    flex: 1;
}

.carousel-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #fff;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-button.prev {
    left: -25px;
}

.carousel-button.next {
    right: -25px;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

@media (max-width: 768px) {
    .carousel-content {
        flex-direction: column;
    }

    .carousel-slide {
        padding: 20px;
    }

    .strategy-number {
        font-size: 3rem;
    }

    .strategy-title {
        font-size: 1.5rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button.prev {
        left: -10px;
    }

    .carousel-button.next {
        right: -10px;
    }
}
	/* Dropdown Navigation Styles */
.main-nav-dropdown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 60px; /* Leave space for mobile menu button */
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0 15px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
  text-decoration: none;
}

.home-icon {
  font-size: 1.2rem;
}

.dropdown-toggle {
  position: relative;
  padding-right: 20px;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-bg);
  min-width: 240px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 103, 27, 0.2);
  color: var(--orange);
  padding-left: 1.75rem;
  text-decoration: none;
}

/* Active state styles */
.nav-item.active .nav-link,
.dropdown-item.active {
  color: var(--orange);
  font-weight: 700;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
  .main-nav-dropdown {
    display: none; /* Hide dropdown nav on mobile */
  }
}

/* Desktop only adjustments */
@media screen and (min-width: 992px) {
  .nav-open {
    display: none; /* Hide hamburger on desktop */
  }
}

/* Optional animation for dropdown */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  animation: fadeInDown 0.3s ease-out;
}
/* Estilos especÃ­ficos para Read Next - */
.next-section-container .full-image-card .full-card-text {
  display: flex !important;
  flex-direction: column !important;
}

.next-section-container .full-image-card .full-card-text .subheading.blue {
  order: -1 !important;
  margin-bottom: 10px;
}

.next-section-container .full-image-card .full-card-text h2.faux-h3 {
  order: 1 !important;
  margin-top: 5px;
}

/* Reforzar para dispositivos mÃ³viles */
@media screen and (max-width: 767px) {
  .next-section-container .full-image-card .full-card-text {
    flex-direction: column !important;
    display: flex !important;
  }

  .next-section-container .full-image-card .full-card-text .subheading.blue {
    order: -1 !important;
    margin-bottom: 10px; 
    position: relative;
    z-index: 100;
  }

  .next-section-container .full-image-card .full-card-text h2.faux-h3 {
    order: 1 !important;
    margin-top: 5px;
  }
}	
</pre></body></html>