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

html {
  font-size: 100%;
}

:root {
  --ti-color-slate: #64748b;
  --ti-color-white: #ffffff;
  --ti-color-mint: #29e2bb;
  --ti-color-teal: #2a7b8e;
  --ti-color-blue: #193a73;
  --ti-color-navy: #001b33;
  --ti-color-primary: #193a73;
  --ti-color-secondary: #29e2bb;
  --ti-color-surface: #ffffff;
  --ti-color-text: #001b33;
  --ti-color-text-muted: #64748b;
}

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

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

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

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

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

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

body {
  background-color: #f4f5f8;
}

main {
  margin-top: var(--header-h, 0px);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.5;
  z-index: 90;
}

.hidden {
  display: none;
}

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

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

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

body {
  --header-h: 0px;
}

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

.ti-site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  transition: padding 0.35s ease, transform 0.35s ease;
}
.ti-site-header__shell, .ti-site-header__dropdown-shell {
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease;
}
.ti-site-header__shell {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
}
.ti-site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.75rem;
  min-height: 4.2rem;
  padding: 0 1.6rem;
}
.ti-site-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.ti-site-header__logo-stack {
  position: relative;
  display: inline-grid;
  align-items: center;
}
.ti-site-header__logo {
  grid-area: 1/1;
  display: block;
  width: auto;
  max-width: min(100%, 13rem);
  max-height: 2.8rem;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.ti-site-header__logo--default {
  opacity: 1;
  visibility: visible;
}
.ti-site-header__logo--active {
  opacity: 0;
  visibility: hidden;
}
.ti-site-header__logo-text {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}
.ti-site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.2rem, 2vw, 2.35rem);
}
.ti-site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.28s ease;
}
.ti-site-header__nav-link span,
.ti-site-header__nav-link svg,
.ti-site-header__nav-link path {
  color: inherit;
  transition: color 0.28s ease;
}
.ti-site-header__nav-link span {
  font: inherit;
  line-height: inherit;
}
.ti-site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  background: #29e2bb;
  color: #193a73;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color 0.28s ease, color 0.28s ease;
}
.ti-site-header__nav-link:not(.ti-site-header__nav-link--services).is-active {
  color: #193a73;
}
.ti-site-header__nav-link:not(.ti-site-header__nav-link--services):hover, .ti-site-header__nav-link:not(.ti-site-header__nav-link--services):focus-visible {
  color: #29e2bb;
}
.ti-site-header__cta:hover, .ti-site-header__cta:focus-visible {
  background: #193a73;
  color: #ffffff;
}
.ti-site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border-radius: 50%;
}
.ti-site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.28s ease, opacity 0.22s ease, background-color 0.28s ease;
}
.ti-site-header__dropdown {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.55rem);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}
.ti-site-header__dropdown-shell {
  margin-top: 0.8rem;
  padding: 1.6rem 1.6rem 1.45rem;
  border: 1px solid rgba(25, 58, 115, 0.08);
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 1.6rem 2.8rem rgba(7, 32, 66, 0.12), 0 0.2rem 0.7rem rgba(7, 32, 66, 0.05);
}
.ti-site-header__services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem;
}
.ti-site-header__service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: 1.1rem;
  background: transparent;
  transition: background-color 0.42s ease;
}
.ti-site-header__service-card:hover, .ti-site-header__service-card:focus-within {
  background: #e6e8eb;
}
.ti-site-header__service-card:hover .ti-site-header__service-image, .ti-site-header__service-card:focus-within .ti-site-header__service-image {
  transform: scale(1.06);
}
.ti-site-header__service-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.55/1;
  border-radius: 0.95rem;
  background: #d9d9d9;
}
.ti-site-header__service-image, .ti-site-header__service-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.ti-site-header__service-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ti-site-header__service-placeholder {
  background: linear-gradient(135deg, #5e6875 0%, #414a54 100%);
}
.ti-site-header__service-title {
  margin: 0;
}
.ti-site-header__service-title a {
  color: #17375f;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}
.ti-site-header__service-link, .ti-site-header__dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7d8ca5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
}
.ti-site-header__dropdown-footer {
  display: flex;
  justify-content: center;
  padding-top: 1.3rem;
}
.ti-site-header__dropdown-link {
  color: #193a73;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.ti-site-header__mobile-menu {
  display: none;
}
.ti-site-header.is-scrolled, .ti-site-header.is-services-open {
  padding-top: 0.65rem;
}
.ti-site-header.is-scrolled .ti-site-header__shell, .ti-site-header.is-services-open .ti-site-header__shell {
  border-color: rgba(25, 58, 115, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.3rem 2.5rem rgba(7, 32, 66, 0.12), 0 0.18rem 0.6rem rgba(7, 32, 66, 0.05);
}
.ti-site-header.is-scrolled .ti-site-header__logo-text,
.ti-site-header.is-scrolled .ti-site-header__nav-link, .ti-site-header.is-services-open .ti-site-header__logo-text,
.ti-site-header.is-services-open .ti-site-header__nav-link {
  color: #193a73;
}
.ti-site-header.is-scrolled .ti-site-header__logo--default, .ti-site-header.is-services-open .ti-site-header__logo--default {
  opacity: 0;
  visibility: hidden;
}
.ti-site-header.is-scrolled .ti-site-header__logo--active, .ti-site-header.is-services-open .ti-site-header__logo--active {
  opacity: 1;
  visibility: visible;
}
.ti-site-header.is-scrolled .ti-site-header__toggle span, .ti-site-header.is-services-open .ti-site-header__toggle span {
  background: #193a73;
}
.ti-site-header.is-services-open .ti-site-header__dropdown {
  max-height: 32rem;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .ti-site-header__bar {
    gap: 1.2rem;
    padding: 0 1.2rem;
  }
  .ti-site-header__nav {
    gap: 1.3rem;
  }
  .ti-site-header__nav-link, .ti-site-header__cta {
    font-size: 0.94rem;
  }
  .ti-site-header__services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .ti-site-header {
    padding-top: 0.55rem;
    padding-bottom: 0.4rem;
  }
  .ti-site-header__bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 3.7rem;
  }
  .ti-site-header__nav {
    display: none;
  }
  .ti-site-header__toggle {
    display: inline-flex;
    position: relative;
    z-index: 120;
  }
  .ti-site-header__dropdown {
    display: none;
  }
  .ti-site-header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #07233d;
  }
  .ti-site-header__mobile-shell {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: 5.3rem;
    padding-bottom: 2rem;
  }
  .ti-site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ti-site-header__mobile-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .ti-site-header__mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3.05rem;
    padding: 0.95rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.22;
    text-align: left;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .ti-site-header__mobile-link span,
  .ti-site-header__mobile-link svg,
  .ti-site-header__mobile-link path {
    color: inherit;
  }
  .ti-site-header__mobile-link span {
    font: inherit;
    line-height: inherit;
  }
  .ti-site-header__mobile-link svg {
    flex: 0 0 auto;
    transition: transform 0.28s ease;
  }
  .ti-site-header__mobile-link--services {
    border-bottom: 0;
  }
  .ti-site-header__mobile-services {
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .ti-site-header__mobile-services-inner {
    padding: 0.25rem 0 0.95rem;
  }
  .ti-site-header__mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 0.85rem;
  }
  .ti-site-header__mobile-service-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .ti-site-header__mobile-service-thumb {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.55/1;
    border-radius: 0.8rem;
    background: #d9d9d9;
  }
  .ti-site-header__mobile-service-image, .ti-site-header__mobile-service-placeholder {
    display: block;
    width: 100%;
    height: 100%;
  }
  .ti-site-header__mobile-service-image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .ti-site-header__mobile-service-placeholder {
    background: linear-gradient(135deg, #5e6875 0%, #414a54 100%);
  }
  .ti-site-header__mobile-service-title {
    margin: 0;
  }
  .ti-site-header__mobile-service-title a {
    color: rgba(230, 238, 246, 0.96);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.28;
  }
  .ti-site-header__mobile-services-all {
    display: inline-flex;
    margin-top: 1rem;
    color: #2fe5cb;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: underline;
    text-underline-offset: 0.18em;
  }
  .ti-site-header__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    min-height: 2.8rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: #29e2bb;
    color: #193a73;
    font-family: "Montserrat", sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.1;
    width: -moz-fit-content;
    width: fit-content;
  }
  .ti-site-header__mobile-socials {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 2rem;
  }
  .ti-site-header__mobile-social-label {
    max-width: 8rem;
    margin: 0;
    color: rgba(232, 240, 247, 0.96);
    font-family: "Montserrat", sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.38;
  }
  .ti-site-header__mobile-social-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
  }
  .ti-site-header__mobile-social-item {
    list-style: none;
  }
  .ti-site-header__mobile-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    background: #29e2bb;
    color: #07233d;
  }
  .ti-site-header__mobile-social-link svg {
    width: 1rem;
    height: 1rem;
    display: block;
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__shell {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__logo-link {
    opacity: 0;
    visibility: hidden;
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__toggle span {
    background: #29e2bb;
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__toggle span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__toggle span:nth-child(2) {
    opacity: 0;
  }
  .ti-site-header.is-mobile-menu-open .ti-site-header__toggle span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }
  .ti-site-header.is-mobile-services-open .ti-site-header__mobile-link--services {
    color: #ffffff;
  }
  .ti-site-header.is-mobile-services-open .ti-site-header__mobile-link--services svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 560px) {
  .ti-site-header__shell {
    border-radius: 1.25rem;
  }
  .ti-site-header__bar {
    padding: 0 0.95rem;
  }
  .ti-site-header__logo {
    max-width: 10.75rem;
    max-height: 2.35rem;
  }
  .ti-site-header__logo-text {
    font-size: 1.6rem;
  }
  .ti-site-header__mobile-shell {
    padding-top: 5rem;
    padding-bottom: 1.8rem;
  }
  .ti-site-header__mobile-link {
    min-height: 3rem;
    font-size: 1.05rem;
  }
  .ti-site-header__mobile-services-grid {
    gap: 0.85rem 0.75rem;
  }
  .ti-site-header__mobile-service-title a {
    font-size: 0.76rem;
  }
  .ti-site-header__mobile-services-all {
    font-size: 0.95rem;
  }
  .ti-site-header__mobile-socials {
    gap: 1rem;
  }
  .ti-site-header__mobile-social-label {
    font-size: 0.88rem;
  }
  .ti-site-header__mobile-social-list {
    gap: 0.55rem;
  }
  .ti-site-header__mobile-social-link {
    width: 2rem;
    height: 2rem;
  }
}

.ti-site-footer-shell {
  --ti-footer-surface: var(--ti-pre-footer-bg, transparent);
  --ti-footer-shell-bg: var(--ti-color-navy);
  background-color: var(--ti-footer-surface) !important;
}

.ti-site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  background-color: var(--ti-footer-shell-bg);
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 round clamp(20rem, 50%, 40rem) clamp(20rem, 50%, 40rem) 0 0/clamp(15rem, 50%, 30rem) clamp(15rem, 50%, 30rem) 0 0);
  filter: drop-shadow(0 -1.8rem 3.2rem rgba(0, 0, 0, 0.58)) drop-shadow(0 -0.45rem 1.2rem rgba(0, 0, 0, 0.45));
}
.ti-site-footer,
.ti-site-footer * {
  font-family: "Montserrat", sans-serif !important;
}
.ti-site-footer__inner, .ti-site-footer__bottom {
  position: relative;
  z-index: 2;
}
.ti-site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-top: clamp(4.5rem, 11vw, 6.4rem);
  padding-bottom: clamp(2.4rem, 5vw, 3rem);
}
.ti-site-footer__top {
  display: flex;
  justify-content: center;
}
.ti-site-footer__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(27.87deg);
  pointer-events: none;
  z-index: 1;
}
.ti-site-footer__decor-gradient, .ti-site-footer__decor-points {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  max-width: none;
  width: auto;
  height: auto;
}
.ti-site-footer__decor-gradient {
  width: min(33rem, 40vw);
  opacity: 0.72;
}
.ti-site-footer__decor-points {
  width: min(38rem, 46vw);
  opacity: 0.42;
}
.ti-site-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}
.ti-site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.ti-site-footer__logo-link {
  display: inline-flex;
  align-items: center;
}
.ti-site-footer__logo-link--text {
  min-height: 3rem;
}
.ti-site-footer__logo {
  display: block;
  width: auto;
  max-width: min(100%, 16rem);
  max-height: 3.8rem;
}
.ti-site-footer__logo-text {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}
.ti-site-footer__description {
  max-width: 18rem;
  margin: 0;
  color: rgba(234, 241, 248, 0.92);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.ti-site-footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.ti-site-footer__social-label {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}
.ti-site-footer__social-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.ti-site-footer__social-item {
  list-style: none;
}
.ti-site-footer__social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  isolation: isolate;
}
.ti-site-footer__social-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
}
.ti-site-footer__social-fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background: var(--ti-color-secondary);
  transform: scale(0);
  pointer-events: none;
  will-change: transform;
}
.ti-site-footer__social-icon {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform, opacity;
}
.ti-site-footer__social-icon svg,
.ti-site-footer__social-icon path,
.ti-site-footer__social-icon circle {
  color: inherit;
  fill: currentColor;
  stroke: currentColor;
}
.ti-site-footer__social-icon--current {
  color: #ffffff;
  opacity: 1;
  transform: translateX(0);
}
.ti-site-footer__social-icon--incoming {
  color: var(--ti-color-navy);
  opacity: 0;
  transform: translateX(140%);
}
.ti-site-footer__social-link .ti-site-footer__social-icon--current {
  color: #ffffff;
}
.ti-site-footer__social-link .ti-site-footer__social-icon--current svg,
.ti-site-footer__social-link .ti-site-footer__social-icon--current path,
.ti-site-footer__social-link .ti-site-footer__social-icon--current circle {
  color: #ffffff;
  fill: currentColor;
  stroke: currentColor;
}
.ti-site-footer__social-link .ti-site-footer__social-icon--incoming {
  color: var(--ti-color-navy);
}
.ti-site-footer__social-link .ti-site-footer__social-icon--incoming svg,
.ti-site-footer__social-link .ti-site-footer__social-icon--incoming path,
.ti-site-footer__social-link .ti-site-footer__social-icon--incoming circle {
  color: var(--ti-color-navy);
  fill: currentColor;
  stroke: currentColor;
}
.ti-site-footer__navs {
  display: grid;
  grid-column: 2/-1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
  justify-items: start;
}
.ti-site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.ti-site-footer__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.ti-site-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.ti-site-footer__menu-item {
  list-style: none;
}
.ti-site-footer__menu-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}
.ti-site-footer__menu-link:visited, .ti-site-footer__menu-link:hover, .ti-site-footer__menu-link:focus, .ti-site-footer__menu-link:focus-visible, .ti-site-footer__menu-link:active {
  color: rgba(255, 255, 255, 0.94) !important;
}
.ti-site-footer__menu-link-label {
  display: inline-block;
  color: inherit !important;
}
.ti-site-footer__menu-underline {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94) !important;
  opacity: 0.92;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  pointer-events: none;
}
.ti-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.ti-site-footer__copyright, .ti-site-footer__credit {
  color: rgba(224, 234, 243, 0.84);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
}
.ti-site-footer__credit {
  text-align: right;
}
@media (max-width: 780px) {
  .ti-site-footer__inner {
    gap: 2rem;
    padding-top: 4.4rem;
  }
  .ti-site-footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ti-site-footer__navs {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
  .ti-site-footer__decor {
    width: min(30rem, 58vw);
    height: min(15rem, 29vw);
  }
  .ti-site-footer__decor-gradient {
    width: min(23rem, 44vw);
  }
  .ti-site-footer__decor-points {
    width: min(27rem, 52vw);
  }
}
@media (max-width: 560px) {
  .ti-site-footer {
    clip-path: inset(0 round 6rem 6rem 0 0/3.2rem 3.2rem 0 0);
  }
  .ti-site-footer__inner {
    padding-top: 3.8rem;
    padding-bottom: 2rem;
  }
  .ti-site-footer__content {
    gap: 1.8rem;
    justify-items: center;
    text-align: center;
  }
  .ti-site-footer__navs {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ti-site-footer__brand, .ti-site-footer__socials, .ti-site-footer__column {
    align-items: center;
    text-align: center;
  }
  .ti-site-footer__description {
    max-width: none;
    font-size: 0.94rem;
  }
  .ti-site-footer__social-list, .ti-site-footer__menu-list {
    justify-content: center;
    align-items: center;
  }
  .ti-site-footer__menu-link {
    align-items: center;
    font-size: 0.94rem;
    text-align: center;
  }
  .ti-site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ti-site-footer__credit {
    text-align: center;
  }
  .ti-site-footer__decor {
    width: 18rem;
    height: 10rem;
    opacity: 0.8;
  }
  .ti-site-footer__decor-gradient {
    width: 13rem;
  }
  .ti-site-footer__decor-points {
    width: 17rem;
    opacity: 0.32;
  }
}

.ti-whatsapp-float {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.8rem);
  bottom: clamp(1rem, 2.2vw, 1.8rem);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.6rem, 4vw, 4.25rem);
  height: clamp(3.6rem, 4vw, 4.25rem);
  border-radius: 100vw;
  background: #ffffff;
  box-shadow: 0 1rem 2.2rem rgba(7, 32, 66, 0.18), 0 0.22rem 0.7rem rgba(7, 32, 66, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ti-whatsapp-float:hover, .ti-whatsapp-float:focus-visible {
  transform: translateY(-0.1rem);
  box-shadow: 0 1.15rem 2.4rem rgba(7, 32, 66, 0.22), 0 0.3rem 0.9rem rgba(7, 32, 66, 0.1);
}
.ti-whatsapp-float__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 560px) {
  .ti-whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0.62rem;
  }
}

html.ti-cookie-consent-lock,
body.ti-cookie-consent-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

.ti-cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}
.ti-cookie-consent,
.ti-cookie-consent * {
  font-family: "Montserrat", sans-serif !important;
}
.ti-cookie-consent.is-visible {
  visibility: visible;
  pointer-events: auto;
}
.ti-cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 10, 19, 0.7);
  opacity: 0;
}
.ti-cookie-consent__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 1.9rem;
  border-top-right-radius: 1.9rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #07233d;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28), 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  will-change: height, opacity, transform;
}
.ti-cookie-consent__compact, .ti-cookie-consent__expanded {
  width: 100%;
}
.ti-cookie-consent__compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2.4rem);
  align-items: end;
  padding: clamp(1.15rem, 1.8vw, 1.45rem) clamp(1.8rem, 3vw, 2.7rem) clamp(1.2rem, 1.9vw, 1.55rem);
}
.ti-cookie-consent__compact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  max-width: 42rem;
}
.ti-cookie-consent__compact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.78rem;
  flex-wrap: nowrap;
  align-self: end;
  padding-bottom: 0.05rem;
}
.ti-cookie-consent__title {
  margin: 0;
  color: #2fe5cb;
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.12;
}
.ti-cookie-consent__text {
  max-width: 38rem;
  margin: 0;
  color: rgba(238, 244, 250, 0.94);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.42;
}
.ti-cookie-consent__text--expanded {
  max-width: none;
}
.ti-cookie-consent__link, .ti-cookie-consent__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ti-cookie-consent__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 250, 255, 0.96);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  margin-right: 0.35rem;
  white-space: nowrap;
}
.ti-cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.68rem 1.32rem;
  border-radius: 100vw;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.ti-cookie-consent__button:hover, .ti-cookie-consent__button:focus-visible {
  transform: translateY(-0.05rem);
}
.ti-cookie-consent__button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  color: #ffffff;
}
.ti-cookie-consent__button--primary {
  background: #29e2bb;
  color: #193a73;
  box-shadow: 0 1rem 2rem rgba(41, 226, 187, 0.18);
}
.ti-cookie-consent__button--light {
  background: #ffffff;
  color: #193a73;
  box-shadow: 0 0.85rem 1.8rem rgba(255, 255, 255, 0.12);
}
.ti-cookie-consent__expanded {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.35rem, 2vw, 1.8rem) clamp(1.25rem, 2vw, 2.2rem) clamp(1.4rem, 2vw, 1.85rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ti-cookie-consent__expanded-scroll {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  min-height: 0;
  padding-right: 0;
  overflow: visible;
}
.ti-cookie-consent__expanded-intro {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 2.55rem;
}
.ti-cookie-consent__expanded-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.3rem;
}
.ti-cookie-consent__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.ti-cookie-consent__preferences {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.ti-cookie-consent__preference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
}
.ti-cookie-consent__preference-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ti-cookie-consent__preference-title {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.ti-cookie-consent__preference-text {
  margin: 0;
  color: rgba(234, 241, 248, 0.92);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.55;
}
.ti-cookie-consent__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 3rem;
  height: 1.7rem;
  padding: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 100vw;
  background: rgba(145, 159, 175, 0.55);
  transition: background-color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}
.ti-cookie-consent__toggle.is-active {
  background: #29e2bb;
  border-color: #29e2bb;
}
.ti-cookie-consent__toggle.is-active .ti-cookie-consent__toggle-thumb {
  transform: translateX(1.25rem);
}
.ti-cookie-consent__toggle.is-locked {
  opacity: 1;
  cursor: default;
}
.ti-cookie-consent__toggle-thumb {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #193a73;
  box-shadow: 0 0.18rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease;
}
@media (max-width: 780px) {
  .ti-cookie-consent__panel {
    width: 100%;
  }
  .ti-cookie-consent__compact {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.95rem;
    padding-inline: 1.25rem;
  }
  .ti-cookie-consent__compact-actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.55rem;
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
  }
  .ti-cookie-consent__link, .ti-cookie-consent__button {
    min-width: 0;
    flex: 0 1 auto;
  }
  .ti-cookie-consent__link {
    margin-right: 0;
  }
  .ti-cookie-consent__expanded {
    padding: 1.05rem 1rem 1rem;
  }
  .ti-cookie-consent__expanded-intro {
    padding-top: 2.1rem;
  }
  .ti-cookie-consent__preference {
    grid-template-columns: 1fr;
  }
  .ti-cookie-consent__toggle {
    justify-self: flex-start;
  }
}
@media (max-width: 560px) {
  .ti-cookie-consent__panel {
    border-top-left-radius: 1.3rem;
    border-top-right-radius: 1.3rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .ti-cookie-consent__compact {
    gap: 0.85rem;
    padding: 0.95rem 0.95rem 1rem;
  }
  .ti-cookie-consent__compact-actions {
    gap: 0.42rem;
  }
  .ti-cookie-consent__title {
    font-size: 0.96rem;
  }
  .ti-cookie-consent__text, .ti-cookie-consent__preference-text {
    font-size: 0.78rem;
    line-height: 1.42;
  }
  .ti-cookie-consent__button, .ti-cookie-consent__link {
    font-size: 0.72rem;
    line-height: 1.1;
  }
  .ti-cookie-consent__link {
    margin-right: 0;
  }
  .ti-cookie-consent__button {
    min-height: 2.2rem;
    padding: 0.58rem 0.72rem;
    flex: 1 1 0;
  }
  .ti-cookie-consent__expanded {
    gap: 0.8rem;
    padding: 0.8rem 0.8rem 0.85rem;
  }
  .ti-cookie-consent__expanded-scroll {
    gap: 1rem;
  }
  .ti-cookie-consent__expanded-intro {
    gap: 0.65rem;
    padding-top: 1.75rem;
  }
  .ti-cookie-consent__preferences {
    gap: 0.95rem;
  }
  .ti-cookie-consent__preference {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
  }
  .ti-cookie-consent__preference-copy {
    gap: 0.45rem;
  }
  .ti-cookie-consent__preference-title {
    font-size: 0.92rem;
  }
  .ti-cookie-consent__toggle {
    justify-self: end;
    align-self: start;
    margin-top: 0.12rem;
  }
  .ti-cookie-consent__close {
    top: 0.6rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.75rem;
  }
  .ti-cookie-consent__expanded-actions {
    justify-content: flex-end;
  }
  .ti-cookie-consent__expanded-actions .ti-cookie-consent__button {
    width: auto;
    min-height: 2.3rem;
    padding-inline: 1rem;
  }
}

.ti-whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 0.26s ease, visibility 0.26s ease, transform 0.26s ease, box-shadow 0.25s ease;
}

body.ti-cookie-consent-resolved .ti-whatsapp-float {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */