.cormorant-infant {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "FS Elliot Pro Regular";
  src: url("../fonts/fs_elliot_proregular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FS Elliot Pro Bold";
  src: url("../fonts/fs_elliot_probold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "FS Elliot Pro Light";
  src: url("../fonts/fs_elliot_prolight-webfont.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "FS Elliot Pro Thin";
  src: url("../fonts/fs_elliot_prothin-webfont.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
body {
  font-family: "FS Elliot Pro Regular", sans-serif;
}

/* El smooth-scroll se activa por JS recién después de cargar, para que la
   restauración de scroll al recargar no se anime (causaba un salto raro). */
html.smooth-scroll {
  scroll-behavior: smooth;
}

strong {
  font-family: "FS Elliot Pro Bold", sans-serif;
}

summary::-webkit-details-marker {
  display: none;
}

.text-blue {
  color: #0076cf;
}

.FSElliotProLight {
  font-family: "FS Elliot Pro Light", sans-serif;
}

.FSElliotProThin {
  font-family: "FS Elliot Pro Thin", sans-serif;
}

.logo {
  z-index: 70;
  position: relative;
  width: 200px;
  height: auto;
}
@media (max-width: 580px) {
  .logo {
    width: 130px;
  }
}

.faq-icon {
  max-width: 22px;
  height: auto;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.hero-gradient {
  background: linear-gradient(36deg, #042C54 40%, #0A4D92 100%);
}

.normal-gradient {
  background: linear-gradient(72deg, #042C54 30%, #0A4D92 100%);
}

.accordion-content {
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease;
  transition: max-height 0.3s ease-out, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.accordion-content.active {
  max-height: 500px;
  opacity: 1;
}

.arrow-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.arrow-icon.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header nav .bg-white {
  margin-right: 10%;
}
header nav .logo {
  padding-left: 0;
}
header nav a {
  position: relative;
  padding: 0.5rem 0.5rem;
  font-size: 14px;
  font-weight: 600;
}
header nav a.nav-link::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 1px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.15);
}
header nav a.nav-link:nth-child(3)::after {
  display: none;
}
header nav a.nav-link:hover {
  color: #003865 !important;
}
header nav a.bg-blue {
  border-radius: 30px;
  background-color: #0076cf !important;
  color: white;
}
header nav a.bg-blue:hover {
  background-color: #0056B3 !important;
  color: white;
}
@media (max-width: 1366px) {
  header nav .bg-white {
    margin-right: 4%;
  }
  header nav .logo {
    padding-left: 18px;
  }
}
@media (max-width: 1100px) {
  header nav .logo {
    padding-left: 14px;
  }
  header nav a {
    font-size: 13px;
  }
  header nav a.nav-link::after {
    right: -5px;
  }
}
@media (max-width: 934px) {
  header nav a {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  header nav .logo {
    padding-left: 2px;
  }
  header nav .bg-white {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  header nav a {
    padding: 0.15rem 0.18rem;
    font-size: 12px;
  }
}
@media (max-width: 857px) {
  header nav a {
    font-size: 11px;
    margin-left: 10px !important;
  }
}
@media (max-width: 820px) {
  header nav a {
    padding: 0.1rem 0.1rem;
    font-size: 12px;
    margin-left: 7px !important;
  }
}
@media (min-width: 1367px) {
  header nav .bg-white {
    position: absolute;
    right: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-right: 0;
  }
}

#videoModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  max-width: calc(100vw - 24px);
  height: 206px;
  z-index: 9999;
  position: fixed !important;
  bottom: 1.5rem;
  right: 1.5rem;
  overflow: hidden;
  background: transparent;
}

.video-modal-hidden {
  display: none !important;
}

#videoModal video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  vertical-align: middle;
  background: #000;
}

#videoModal > .relative {
  width: 100%;
  height: 100%;
}

#videoModal .video-modal__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

#videoModal .video-modal__label {
  color: #f8fafc;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#videoModal .video-modal__button {
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 9999px;
  padding: 0.6rem 0.72rem;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  font-size: 0.95rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#videoModal .video-modal__button:hover {
  background: rgba(255, 255, 255, 0.24);
}

#videoModal .video-modal__button svg {
  width: 1rem;
  height: 1rem;
}

#videoModal:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  border-radius: 0 !important;
  max-width: none;
  -webkit-transform: none !important;
          transform: none !important;
}

#videoModal:-webkit-full-screen,
#videoModal:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  border-radius: 0 !important;
  max-width: none;
  -webkit-transform: none !important;
          transform: none !important;
}

#videoModal:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#videoModal:-webkit-full-screen video,
#videoModal:fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#videoModal:-webkit-full-screen > .relative {
  width: 100%;
  height: 100%;
}

#videoModal:-webkit-full-screen > .relative,
#videoModal:fullscreen > .relative {
  width: 100%;
  height: 100%;
}

#videoModal:-webkit-full-screen .video-modal__footer {
  background: rgba(0, 0, 0, 0.35);
}

#videoModal:-webkit-full-screen .video-modal__footer,
#videoModal:fullscreen .video-modal__footer {
  background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
  header nav {
    -webkit-transition: background-color 0.45s ease, backdrop-filter 0.45s ease, opacity 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-transform 0.45s ease;
    transition: background-color 0.45s ease, backdrop-filter 0.45s ease, opacity 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-transform 0.45s ease;
    transition: background-color 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
    transition: background-color 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease, opacity 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-transform 0.45s ease;
  }
  header nav.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 56, 101, 0.822);
    backdrop-filter: blur(14px);
    -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    z-index: 90;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  header nav.sticky-nav.visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 1367px) and (max-height: 700px) {
  #modalVentajas .bg-white img,
  #modalSistema img,
  #modalCambioPersonas img,
  #modalAhorroVoluntario img,
  .modal img {
    max-width: 100%;
    width: 100%;
    max-height: 300px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  #modalVentajas .lg\:p-12,
  #modalSistema .lg\:p-12,
  #modalCambioPersonas .lg\:p-12,
  #modalAhorroVoluntario .lg\:p-12 {
    padding: 20px;
  }
  #modalVentajas .p-4,
  #modalVentajas .p-5 {
    padding: 0.55rem;
  }
  #modalVentajas h2,
  #modalSistema h2,
  #modalCambioPersonas h2,
  #modalAhorroVoluntario h2 {
    font-size: 0.95rem !important;
    margin-bottom: 0.45rem !important;
  }
}
@media (max-width: 1366px) {
  .space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }
  .right-8 {
    top: 20px !important;
  }
  #modalVentajas h2 {
    margin-bottom: 0.9rem !important;
  }
  #modalVentajas .lg\:p-12 {
    padding: 0.7rem;
  }
  #modalVentajas .p-4,
  #modalVentajas .p-5 {
    padding: 0.7rem;
  }
}
@media (max-width: 1166px) {
  .rounded-\[2\.5rem\] {
    border-radius: 1rem;
  }
  #modalVentajas h2 {
    margin-bottom: 0.6rem !important;
  }
  #modalVentajas .lg\:p-12 {
    padding: 0.5rem;
  }
  #modalVentajas .p-4,
  #modalVentajas .p-5 {
    padding: 0.5rem;
  }
}
@media (max-width: 1024px) {
  #modalVentajas .bg-white img,
  #modalSistema img,
  #modalCambioPersonas img,
  #modalAhorroVoluntario img,
  .modal img {
    max-width: 100%;
    width: auto;
    max-height: 55vh;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  #modalVentajas .bg-white h2,
  .modal .bg-white h2 {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.6rem !important;
  }
  #modalVentajas .bg-white p,
  .modal p {
    font-size: 0.98rem !important;
  }
  header nav.sticky-nav {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }
  #videoModal {
    width: 300px;
    height: 180px;
    right: 12px;
    bottom: 12px;
  }
}
@media (max-width: 768px) {
  .right-8 {
    right: 10px !important;
    top: 10px !important;
    scale: 0.8;
  }
  #modalVentajas .bg-white p,
  .modal p {
    font-size: 0.7rem !important;
  }
  #videoModal {
    width: 66.666vw;
    max-width: 66.666vw;
    height: 39.9996vw;
    right: 8px;
    bottom: 8px;
    left: auto;
    /* Oculto temporalmente en mobile por rendimiento de carga */
    display: none !important;
  }
  #videoModal .video-modal__footer {
    padding: 0.6rem;
    gap: 0.35rem;
    backdrop-filter: blur(4px);
    background: rgba(15, 23, 42, 0.55);
  }
  #videoModal .video-modal__button {
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }
  #modalVentajas .space-y-4 .flex {
    display: block !important;
    gap: 0 !important;
  }
  #modalSistema img,
  #modalVentajas img,
  #modalCambioPersonas img,
  #modalAhorroVoluntario img {
    width: 100% !important;
    height: 185px !important;
    -o-object-position: center top;
       object-position: center top;
  }
  #modalSistema .text-sm,
  #modalVentajas .text-sm,
  #modalCambioPersonas .text-sm,
  #modalAhorroVoluntario .text-sm {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
  #modalVentajas .space-y-4 .flex > div {
    width: 100% !important;
    padding: 0.3rem 0.9rem !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    border-radius: 10px 10px 0px 0px !important;
  }
  #modalVentajas .bg-white p,
  .modal p {
    font-size: 0.7rem !important;
  }
  #modalVentajas .space-y-4 .flex > div.w-2\/3 {
    display: block !important;
    background: #f0f7fb !important;
    border-radius: 0px 0px 20px 20px !important;
  }
  #modalVentajas .space-y-4 .flex > div.w-2\/3 p {
    margin: 0 !important;
    font-size: 0.75rem !important;
  }
  #modalVentajas .space-y-4 .flex > div.w-1\/3 .hero-gradient,
  #modalVentajas .space-y-4 .flex > div.w-2\/3 .hero-gradient {
    width: 100% !important;
    height: auto !important;
  }
  #modalVentajas .space-y-4 .w-2\/3 p,
  #modalVentajas .space-y-4 .w-1\/3 span {
    font-size: 0.95rem !important;
  }
  #modalVentajas h2, #modalSistema h2, #modalCambioPersonas h2, #modalAhorroVoluntario h2 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.45rem !important;
  }
  .world-image {
    padding-top: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.35rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.35rem * var(--tw-space-y-reverse));
  }
}
.logo-color {
  padding-top: 5px;
  padding-left: 10px;
}

.logo-color {
  padding-top: 10px;
}

@media (max-width: 643px) {
  .logo-color {
    display: block !important;
  }
}
@media (min-width: 644px) {
  .logo-color {
    display: block !important;
  }
}
@media (max-width: 420px) {
  #modalVentajas .bg-white {
    padding: 0.6rem !important;
    max-height: 90vh !important;
  }
  #modalVentajas .bg-white h2 {
    font-size: 0.95rem !important;
    margin-bottom: 0.45rem !important;
  }
  #modalVentajas .space-y-4 .w-2\/3 p,
  #modalVentajas .space-y-4 .w-1\/3 span {
    font-size: 0.9rem !important;
  }
}
@media (max-height: 640px) {
  .space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.35rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.35rem * var(--tw-space-y-reverse));
  }
  .lg\:text-base {
    font-size: 0.81rem;
    line-height: 1.1rem;
  }
  #modalVentajas .bg-white img,
  #modalSistema img,
  #modalCambioPersonas img,
  #modalAhorroVoluntario img,
  .modal img {
    max-height: 260px !important;
  }
  header .py-3 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  header nav a {
    padding: 0.3rem 0.3rem;
    font-size: 13px;
  }
}
#hero {
  min-height: 75vh;
}
#hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#hero picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero #nuevo-texto {
  top: 75%;
  left: 50%;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 40px);
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#hero #nuevo-texto h1 {
  font-size: clamp(2rem, 5vw, 5.625rem);
  line-height: 1;
  margin-bottom: clamp(12px, 2vw, 20px);
}
#hero #nuevo-texto span {
  display: inline-block;
  max-width: 100%;
  padding: clamp(10px, 1.4vw, 20px) clamp(18px, 5vw, 100px);
  border-radius: 100px;
  background-color: #003865;
  font-size: clamp(1rem, 2vw, 1.875rem);
  line-height: 1.15;
}
@media (max-width: 767px) {
  #hero #nuevo-texto {
    top: 68%;
  }
  #hero #nuevo-texto h1 {
    font-size: clamp(1.75rem, 9vw, 3rem);
  }
  #hero #nuevo-texto span {
    font-size: clamp(0.95rem, 4vw, 1.35rem);
  }
}
#hero h1 {
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (max-width: 1890px) {
  #hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 580px) {
  #hero h1 {
    font-size: 34px;
  }
}
#hero #textos {
  right: 0%;
  top: 13%;
  width: 40%;
}
@media (min-width: 1680px) {
  #hero #textos {
    width: 38%;
    top: 18%;
  }
}
@media (max-width: 1680px) {
  #hero #textos {
    top: 13%;
    width: 35%;
  }
}
@media (max-width: 1600px) {
  #hero #textos {
    width: 46%;
  }
}
@media (max-width: 1337px) {
  #hero #textos {
    width: 41%;
    top: 16%;
  }
}
@media (max-width: 1280px) {
  #hero #textos {
    width: 42%;
    top: 17%;
  }
}
@media (max-width: 1199px) {
  #hero #textos {
    width: 62%;
  }
}
@media (max-width: 1066px) {
  #hero #textos {
    width: 47%;
  }
}
@media (max-width: 1024px) {
  #hero #textos {
    width: 60%;
  }
}
@media (max-width: 580px) {
  #hero #textos {
    width: 100%;
    padding: 20px;
    top: 13%;
  }
}
#hero .this-border {
  position: relative;
  width: 80%;
  font-size: 22px;
  margin-left: 60px;
}
#hero .this-border::after {
  content: "";
  position: absolute;
  left: -60px;
  top: -15%;
  width: 1px;
  height: 130%;
  background-color: #F2AF32;
}
@media (max-width: 1600px) {
  #hero .this-border {
    margin-left: 60px;
  }
}
@media (max-width: 1199px) {
  #hero .this-border {
    margin-left: 60px;
  }
}
@media (max-width: 911px) {
  #hero .this-border {
    margin-left: 30px;
  }
}
#hero .la-ventaja {
  font-family: "Fs Elliot Pro Light", sans-serif;
  position: absolute;
  right: 3%;
  bottom: 6%;
  font-size: 1.8rem;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.224);
  padding: 10px 10px 10px 20px;
  border-radius: 30px;
}
#hero .la-ventaja span {
  background-color: #F2AF32;
  border-radius: 30px;
  padding: 5px 15px;
}
@media (max-width: 580px) {
  #hero .la-ventaja {
    font-size: 1.2rem;
  }
}
#hero .fdo {
  position: absolute;
  left: 3%;
  bottom: 6%;
  font-size: 1.2rem;
  font-weight: 300;
}
@media (max-width: 580px) {
  #hero .fdo {
    font-size: 1rem;
    left: 5%;
    bottom: 5%;
  }
}

@media (max-width: 1023px) {
  #respaldo-principal #cards-container {
    padding: 0px 25px;
  }
}
#respaldo-principal .normal-gradient .bg-white, #respaldo-principal .normal-gradient h3, #respaldo-principal .normal-gradient svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#respaldo-principal .normal-gradient:hover {
  cursor: default;
}
#respaldo-principal .normal-gradient:hover svg {
  color: white;
}
#respaldo-principal .normal-gradient:hover h3 {
  text-shadow: 0 1px 0px #ffffff;
}
#respaldo-principal .normal-gradient:hover .bg-white {
  background-color: #0056B3;
  -webkit-box-shadow: 0px 0px 17px rgba(0, 118, 207, 0.4509803922);
          box-shadow: 0px 0px 17px rgba(0, 118, 207, 0.4509803922);
}

#experiencia .text-xl {
  font-size: 1.29rem;
}

#reforma-previsional article p, #reforma-previsional article span, #reforma-previsional article img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: default;
}
#reforma-previsional article:hover p {
  color: #0076cf;
  text-shadow: 0 1px 0px #0076cf;
}
#reforma-previsional article:hover a {
  text-decoration: none;
}
#reforma-previsional article:hover img {
  -webkit-box-shadow: 0px 0px 14px rgba(0, 117, 207, 0.2666666667) !important;
          box-shadow: 0px 0px 14px rgba(0, 117, 207, 0.2666666667) !important;
}

#timeline {
  background-color: #0a3b73;
  background-image: url("../img/bg_timeline.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #timeline {
    background-position: bottom left;
  }
}
#timeline .timeline-panel__inner {
  min-height: 760px;
  padding: 52px 54px 44px;
}
#timeline .timeline-panel__title {
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.1;
  font-family: "FS Elliot Pro Bold", sans-serif;
  margin-bottom: 42px;
}
#timeline .timeline-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  min-height: 590px;
}
@media (max-width: 1299px) {
  #timeline .timeline-layout {
    gap: 8px;
  }
}
#timeline .timeline-rail {
  width: 265px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 265px;
          flex: 0 0 265px;
}
#timeline .timeline-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-left: 0;
  padding-right: 16px;
  padding-bottom: 8px;
  max-height: 100%;
  overflow-y: auto;
}
#timeline .timeline-nav::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 18px;
  width: 2px;
  background: rgba(255, 255, 255, 0.72);
}
@media (max-width: 1023px) {
  #timeline .timeline-nav::before {
    display: none;
  }
}
#timeline .timeline-nav::-webkit-scrollbar {
  width: 3px;
}
#timeline .timeline-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
#timeline .timeline-btn {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22px 14px minmax(0, 1fr) 14px 22px;
  grid-template-columns: 22px minmax(0, 1fr) 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
  font-size: 1.15rem;
  line-height: 1.25;
  -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
#timeline .timeline-btn:hover {
  color: #ffffff;
}
#timeline .timeline-btn.active {
  color: #f6b23b;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#timeline .timeline-btn.active .timeline-btn__label {
  font-family: "FS Elliot Pro Bold", sans-serif;
}
#timeline .timeline-btn.active .timeline-btn__dot {
  width: 16px;
  height: 16px;
  margin-left: 3px !important;
  background: #f6b23b;
  -webkit-box-shadow: 0 0 0 6px #0a3b73;
          box-shadow: 0 0 0 6px #0a3b73;
}
#timeline .timeline-btn.active .timeline-btn__arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#timeline .timeline-btn__dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#timeline .timeline-btn__label {
  display: block;
}
#timeline .timeline-btn__arrow {
  opacity: 0;
  color: #f6b23b;
  font-size: 1.6rem;
  line-height: 1;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
#timeline .timeline-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding: 52px 0 24px;
}
@media (max-width: 1023px) {
  #timeline .timeline-detail {
    min-height: 340px;
  }
}
#timeline .timeline-content {
  max-width: 400px;
}
#timeline .timeline-date {
  display: block;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: "FS Elliot Pro Light", sans-serif;
  font-size: 4.5rem;
  line-height: 0.9;
}
#timeline .timeline-date strong {
  display: block;
  font-family: "FS Elliot Pro Bold", sans-serif;
  font-size: 0.9em;
  line-height: 1.15;
}
#timeline .timeline-text {
  color: #ffffff;
  font-family: "FS Elliot Pro Light", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  white-space: pre-line;
  max-width: 440px;
}
@media (max-width: 1279px) {
  #timeline .timeline-panel__inner {
    min-height: 680px;
    padding: 42px 36px;
  }
  #timeline .timeline-layout {
    gap: 14px;
  }
  #timeline .timeline-rail {
    width: 230px;
    -ms-flex-preferred-size: 230px;
        flex-basis: 230px;
  }
  #timeline .timeline-date {
    font-size: 5rem;
  }
  #timeline .timeline-text {
    font-size: 1.65rem;
  }
}
@media (max-width: 1023px) {
  #timeline .timeline-panel__inner {
    min-height: auto;
    padding: 42px 24px;
  }
  #timeline .timeline-panel__title {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }
  #timeline .timeline-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    min-height: auto;
  }
  #timeline .timeline-rail {
    width: 100%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-right: -24px;
  }
  #timeline .timeline-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 18px 24px 14px 0;
    scroll-padding-inline: 24px;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #timeline .timeline-nav::before {
    left: 0;
    right: 24px;
    top: 26px;
    bottom: auto;
    width: auto;
    height: 2px;
  }
  #timeline .timeline-nav::-webkit-scrollbar {
    display: none;
  }
  #timeline .timeline-btn {
    min-width: 148px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    scroll-snap-align: center;
  }
  #timeline .timeline-btn__dot {
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #timeline .timeline-btn__arrow {
    display: none;
  }
  #timeline .timeline-btn.active {
    -webkit-transform: none;
            transform: none;
  }
  #timeline .timeline-btn.active .timeline-btn__dot {
    margin-left: 0 !important;
  }
  #timeline .timeline-detail {
    padding: 8px 0 0;
  }
  #timeline .timeline-date {
    font-size: 4.1rem;
    margin-bottom: 20px;
  }
  #timeline .timeline-text {
    font-size: 1.45rem;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  #timeline .timeline-panel__inner {
    padding: 34px 18px;
  }
  #timeline .timeline-rail {
    margin-right: -18px;
  }
  #timeline .timeline-panel__title {
    font-size: 1.55rem;
  }
  #timeline .timeline-btn {
    font-size: 1rem;
    min-width: 132px;
    gap: 10px;
  }
  #timeline .timeline-btn__arrow {
    font-size: 1.25rem;
  }
  #timeline .timeline-date {
    font-size: 3.35rem;
  }
  #timeline .timeline-text {
    font-size: 1.15rem;
    line-height: 1.25;
  }
}

#paraconocermas a:hover {
  background-color: #003865 !important;
  color: white;
}

#paraconocermas a:hover {
  background-color: #003865 !important;
  color: white;
}

@media (max-width: 1024px) {
  #hero .this-border {
    font-size: 18px;
  }
}
@media (min-width: 1680px) {
  #hero #textos {
    width: 38%;
    top: 18%;
  }
}
@media (max-width: 911px) and (max-height: 900px) {
  #hero #textos {
    width: 70%;
    padding: 40px;
    top: 13%;
  }
}
@media (max-width: 680px) {
  #hero #textos {
    width: 100%;
    padding: 20px;
    top: 13%;
  }
}
@media (max-height: 674px) and (max-width: 540px) {
  #hero #textos {
    width: 100%;
    padding: 20px;
    top: 13%;
  }
}
@media (max-width: 1890px) {
  #hero #textos h1 {
    font-size: 50px;
  }
}
@media (max-width: 1280px) {
  #hero #textos h1 {
    font-size: 40px;
  }
}
@media (max-width: 1066px) {
  #hero #textos h1 {
    font-size: 36px;
  }
}
@media (max-width: 580px) {
  #hero #textos h1 {
    font-size: 34px;
  }
}
@media (max-width: 1066px) {
  #hero .la-ventaja {
    font-size: 1rem;
  }
}
@media (max-width: 580px) {
  #hero .la-ventaja {
    font-size: 1.2rem;
  }
}
@media (max-width: 580px) {
  #hero .fdo {
    font-size: 1rem;
    left: 5%;
    bottom: 5%;
  }
}

@media (max-width: 1199px) {
  footer h1 {
    font-size: 2.6rem !important;
  }
}

.hover\:text-blue-800:hover {
  color: #003865 !important;
}

.hover\:bg-blue-800:hover {
  background-color: #003865 !important;
}

.animations-ready .scroll-reveal {
  opacity: 0;
  -webkit-transform: translateY(26px);
          transform: translateY(26px);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease, -webkit-transform 0.65s ease;
  will-change: opacity, transform;
}

.animations-ready .scroll-reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#videoModal {
  opacity: 0;
  -webkit-transform: translateY(14px) scale(0.98);
          transform: translateY(14px) scale(0.98);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
}

#videoModal > .relative {
  width: 100%;
  height: 100%;
}

#videoModal.video-modal-entered {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

#videoModal:-webkit-full-screen {
  -webkit-transform: none !important;
          transform: none !important;
}

#videoModal:fullscreen,
#videoModal:-webkit-full-screen {
  -webkit-transform: none !important;
          transform: none !important;
}

#videoModal:-webkit-full-screen video {
  object-position: center top;
}

#videoModal:fullscreen video,
#videoModal:-webkit-full-screen video {
  object-position: center top;
}

#videoModal:-webkit-full-screen > .relative {
  width: 100%;
  height: 100%;
}

#videoModal:fullscreen > .relative,
#videoModal:-webkit-full-screen > .relative {
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .animations-ready .scroll-reveal,
  .animations-ready .scroll-reveal.is-visible,
  #videoModal,
  #videoModal.video-modal-entered {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}