/*==============
General
==============*/
:root {
  font-size: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: #302F3D;
  background: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}
main {
  padding-top: 78px;
}
section {
  scroll-margin-top: 88px;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}
h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
}
h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}
h4 {
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}
p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
button,
a,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #FBB03B;
  outline-offset: 4px;
}
.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button-primary {
  color: #FFFFFF;
  background: #BD1C1E;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}
.button-primary:hover,
.button-primary:focus-visible {
  color: #302F3D;
  background: #FBB03B;
}
.button-outline {
  min-height: 56px;
  color: #302F3D;
  background: transparent;
  border-color: #302F3D;
}
.button-outline:hover,
.button-outline:focus-visible {
  color: #FFFFFF;
  background: #302F3D;
}
@media (max-width: 767px) {
  .button {
    min-height: 56px;
    padding: 0.8rem 1.35rem;
  }
}
/*==============
Header
==============*/
.site-header {
  --menu-offset: 82px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: #302F3D;
  border-bottom: 4px solid #F15A24;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}
.site-nav {
  max-width: 1920px;
  min-height: 78px;
  padding: 0;
  margin: auto;
  background: #302F3D;
}
.site-brand {
  display: flex;
  width: 190px;
  height: 74px;
  align-items: center;
  margin: 0;
  padding: 8px 0;
}
.site-brand img {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
}
.site-menu {
  align-items: center;
  gap: 0.15rem;
}
.site-menu .nav-link {
  position: relative;
  padding: 0.65rem 0.75rem;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.site-menu .nav-link:hover,
.site-menu .nav-link:focus-visible,
.site-menu .nav-link.active {
  color: #FBB03B !important;
}
.site-menu-contact {
  margin-left: 0.25rem;
}
.site-menu-contact .nav-link {
  color: #FFFFFF;
  background: #BD1C1E;
}
.site-menu-contact .nav-link:hover,
.site-menu-contact .nav-link:focus-visible,
.site-menu-contact .nav-link.active {
  color: #FFFFFF;
  background: #BD1C1E;
}
.site-toggler {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  border: none !important;
  border-radius: 50%;
  align-content: center;
  display: flex;
  justify-content: center;
}
.site-toggler:focus {
  box-shadow: none !important;
  border: none !important;
}
.site-toggler-icon {
  display: inline-flex;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.site-toggler-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-toggler[aria-expanded='true'] .site-toggler-icon span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.site-toggler[aria-expanded='true'] .site-toggler-icon span:nth-child(2) {
  opacity: 0;
}
.site-toggler[aria-expanded='true'] .site-toggler-icon span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
.site-drawer {
  display: flex;
  justify-content: flex-end;
}
.site-menu-backdrop {
  display: none;
}
body.menu-open {
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .site-menu .nav-link {
    padding-inline: 0.55rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1199px) {
  .site-drawer {
    position: absolute;
    top: 100%;
    right: 0;
    display: block !important;
    width: 88vw;
    max-width: 420px;
    height: calc(100vh - var(--menu-offset));
    height: calc(100dvh - var(--menu-offset));
    padding: 32px 26px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #302F3D;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.34);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  }
  .site-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .site-menu {
    display: flex;
    align-items: stretch;
    gap: 6px;
    margin: 0;
  }
  .site-menu .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(38px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
  }
  .site-menu .nav-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    padding: 0.8rem 1rem;
    text-align: left;
  }
  .site-menu-contact {
    margin: 12px 0 0;
  }
  .site-drawer.is-open .nav-item {
    opacity: 1;
    transform: translateX(0);
  }
  .site-drawer.is-open .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .site-drawer.is-open .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .site-drawer.is-open .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .site-drawer.is-open .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .site-drawer.is-open .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }
  .site-drawer.is-open .nav-item:nth-child(6) {
    transition-delay: 0.35s;
  }
  .site-drawer.is-open .nav-item:nth-child(7) {
    transition-delay: 0.4s;
  }
  .site-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    padding: 0;
    background: rgba(0, 0, 0, 0.58);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .site-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .site-nav {
    min-height: 74px;
  }
  .site-brand {
    height: 70px;
  }
  .site-header {
    --menu-offset: 78px;
  }
}
@media (max-width: 767px) {
  .site-nav {
    min-height: 78px;
  }
  .site-brand {
    width: 170px;
    height: 74px;
  }
  .site-brand img {
    width: 130px;
  }
  .navbar-collapse {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    padding: 16px 16px 22px;
    background: #302F3D;
    border-bottom: 4px solid #F15A24;
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.22);
  }
  .site-menu {
    align-items: stretch;
    gap: 3px;
  }
  .site-menu .nav-link {
    padding: 0.8rem 1rem;
    text-align: left;
  }
  .site-menu-contact {
    margin: 8px 0 0;
  }
}
/*==============
Home
==============*/
.home {
  position: relative;
  width: 100%;
  padding-bottom: clamp(140px, 5.7vw, 110px);
  overflow: hidden;
  background: #FFFFFF;
}
.home .home-stage {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background-color: #302F3D;
  background-image: url('../img/bg/BG_desk.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
.home .home-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.home .home-row {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 4.5%;
}
.home .home-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  color: #FFFFFF;
}
.home .home-title {
  margin-bottom: 40px;
  color: #FFFFFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.home .home-title span {
  color: #F15A24;
}
.home .home-description {
  max-width: 570px;
  margin-bottom: 34px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.22;
}
.home .home-button {
  min-width: 360px;
  min-height: 74px;
  padding: 1rem 2.3rem;
  color: #FFFFFF;
  background: #F15A24;
  border-radius: 18px;
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: none;
}
.home .home-button:hover,
.home .home-button:focus-visible {
  color: #FFFFFF;
  background: #e3460e;
}
.home .home-statistic {
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 50%;
  width: 66.25%;
  max-width: 1272px;
  aspect-ratio: 1272 / 219;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}
.home .home-statistic .home-statistic-reveal {
  width: 100%;
  height: 100%;
}
.home .home-statistic .home-statistic-reveal > .row {
  height: 100%;
  margin: 0;
}
.home .home-statistic-highlight {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 38px;
  background: linear-gradient(180deg, #f04424 0%, #F15A24 45%, #FBB03B 100%);
}
.home .home-statistic-image {
  width: 100%;
  max-width: 315px;
}
.home .home-statistic-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.home .home-statistic-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 30px 42px;
  color: #302F3D;
}
.home .home-statistic-text {
  margin: 0 0 8px;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.13;
}
.home .home-statistic-source {
  display: block;
  font-size: 0.67rem;
  font-weight: 400;
  line-height: 1.2;
}
.home .js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.home .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .home {
    padding-bottom: 180px;
  }
  .home .home-stage {
    max-width: none;
    aspect-ratio: 390 / 913;
    background-image: url('../img/bg/bg_mobile.jpg');
    background-position: center top;
    background-size: 100% 100%;
  }
  .home .home-row {
    top: 45%;
    padding: 0 24px;
  }
  .home .home-content {
    max-width: none;
  }
  .home .home-title {
    margin-bottom: 24px;
    font-size: clamp(2rem, 9.5vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }
  .home .home-description {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 0.82rem;
    line-height: 1.18;
  }
  .home .home-button {
    width: 100%;
    min-width: 0;
    min-height: 55px;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
  }
  .home .home-statistic {
    top: 100%;
    left: 50%;
    width: calc(100% - 44px);
    max-width: 350px;
    aspect-ratio: auto;
    border-radius: 18px;
    transform: translate(-50%, -50%);
  }
  .home .home-statistic .home-statistic-reveal {
    height: auto;
  }
  .home .home-statistic .home-statistic-reveal > .row {
    height: auto;
  }
  .home .home-statistic-highlight {
    min-height: 188px;
    padding: 20px 26px;
  }
  .home .home-statistic-image {
    max-width: 240px;
  }
  .home .home-statistic-content {
    min-height: 132px;
    padding: 22px 24px;
  }
  .home .home-statistic-text {
    margin-bottom: 9px;
    font-size: 0.82rem;
    line-height: 1.03;
  }
  .home .home-statistic-text br {
    display: none;
  }
  .home .home-statistic-source {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home {
    padding-bottom: 90px;
  }
  .home .home-stage {
    aspect-ratio: 4 / 3;
    background-image: url('../img/bg/BG_desk.jpg');
    background-position: center top;
    background-size: cover;
  }
  .home .home-row {
    top: 28%;
    padding: 0 6%;
  }
  .home .home-content {
    max-width: 480px;
  }
  .home .home-title {
    margin-bottom: 28px;
    font-size: 3rem;
    line-height: 1.03;
  }
  .home .home-description {
    max-width: 470px;
    margin-bottom: 30px;
    font-size: 1rem;
  }
  .home .home-button {
    min-width: 285px;
    min-height: 60px;
    font-size: 0.95rem;
  }
  .home .home-statistic {
    left: 50%;
    width: 84%;
    max-width: 900px;
    aspect-ratio: 1272 / 219;
    transform: translate(-50%, -50%);
  }
  .home .home-statistic-highlight {
    padding: 18px 24px;
  }
  .home .home-statistic-image {
    max-width: 230px;
  }
  .home .home-statistic-content {
    padding: 22px 28px;
  }
  .home .home-statistic-text {
    font-size: 1rem;
  }
  .home .home-statistic-source {
    font-size: 0.55rem;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .home .home-row {
    top: 23%;
    padding: 0 5%;
  }
  .home .home-content {
    max-width: 500px;
  }
  .home .home-title {
    margin-bottom: 28px;
    font-size: 3.2rem;
  }
  .home .home-description {
    max-width: 470px;
    margin-bottom: 28px;
    font-size: 1rem;
  }
  .home .home-button {
    min-width: 300px;
    min-height: 62px;
    font-size: 0.95rem;
  }
  .home .home-statistic {
    left: 50%;
    width: 72%;
    transform: translate(-50%, -50%);
  }
  .home .home-statistic-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .home .home-stage {
    max-width: 1920px;
  }
}
/*==============
Necesidad
==============*/
.need {
  position: relative;
  width: 100%;
  padding: 140px 0 110px;
  overflow: hidden;
  background: #FFFFFF;
}
.need .need-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 6.25%;
}
.need .need-main {
  margin: 0;
}
.need .need-image-column,
.need .need-content-column,
.need .need-about-column,
.need .need-benefits-column {
  padding: 0;
}
.need .need-image-column {
  padding-right: 5.5%;
}
.need .need-content-column {
  padding-left: 1.5%;
}
.need .need-image {
  width: 100%;
  max-width: 730px;
  overflow: hidden;
  border-radius: 38px;
}
.need .need-image img {
  display: block;
  width: 100%;
  height: auto;
}
.need .need-content {
  width: 100%;
  max-width: 690px;
}
.need .need-eyebrow {
  margin: 0 0 20px;
  color: #F15A24;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}
.need .need-title {
  margin: 0 0 20px;
  color: #302F3D;
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.need .need-description {
  width: 100%;
  max-width: 670px;
  margin: 0;
  color: #302F3D;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
}
.need .need-bottom {
  margin: 78px 0 0;
}
.need .need-about-column {
  padding-left: 2.5%;
  padding-right: 6%;
}
.need .need-about {
  width: 100%;
  max-width: 450px;
}
.need .need-about-title {
  margin: 0 0 12px;
  color: #F15A24;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.need .need-about-description {
  margin: 0;
  color: #302F3D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
}
.need .need-benefits {
  margin: 0;
}
.need .need-benefits > div {
  padding: 0 12px;
}
.need .need-benefit {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.need .need-benefit-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}
.need .need-benefit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.need .need-benefit-text {
  margin: 0;
  color: #302F3D;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.08;
}
@media (max-width: 767px) {
  .need {
    padding: 125px 0 65px;
  }
  .need .need-container {
    padding: 0 8px;
  }
  .need .need-main {
    display: flex;
    flex-direction: column;
  }
  .need .need-content-column {
    order: 1;
    padding: 0;
  }
  .need .need-image-column {
    order: 2;
    padding: 0;
  }
  .need .need-content {
    max-width: none;
  }
  .need .need-eyebrow {
    margin-bottom: 22px;
    font-size: 0.66rem;
    line-height: 1.08;
  }
  .need .need-eyebrow br {
    display: none;
  }
  .need .need-title {
    margin-bottom: 26px;
    font-size: 1.33rem;
    line-height: 1.08;
  }
  .need .need-title br {
    display: none;
  }
  .need .need-description {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.17;
  }
  .need .need-image {
    max-width: none;
    margin-top: 34px;
    border-radius: 12px;
  }
  .need .need-bottom {
    margin-top: 30px;
  }
  .need .need-about-column {
    padding: 0 14px;
  }
  .need .need-about {
    max-width: none;
    text-align: center;
  }
  .need .need-about-title {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  .need .need-about-description {
    font-size: 0.67rem;
    line-height: 1.18;
  }
  .need .need-benefits-column {
    padding: 0;
  }
  .need .need-benefits {
    margin-top: 28px;
  }
  .need .need-benefits > div {
    padding: 0;
    margin-bottom: 24px;
  }
  .need .need-benefits > div:last-child {
    margin-bottom: 0;
  }
  .need .need-benefit-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 10px;
  }
  .need .need-benefit-text {
    font-size: 0.57rem;
    line-height: 1.1;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .need {
    padding: 160px 0 80px;
  }
  .need .need-container {
    padding: 0 6%;
  }
  .need .need-main {
    display: flex;
    flex-direction: column;
  }
  .need .need-content-column {
    order: 1;
    padding: 0;
  }
  .need .need-image-column {
    order: 2;
    padding: 0;
  }
  .need .need-content {
    max-width: 680px;
    margin: 0 auto;
  }
  .need .need-eyebrow {
    font-size: 0.9rem;
  }
  .need .need-eyebrow br {
    display: none;
  }
  .need .need-title {
    font-size: 2.1rem;
  }
  .need .need-title br {
    display: none;
  }
  .need .need-description {
    max-width: 640px;
    font-size: 0.98rem;
    line-height: 1.22;
  }
  .need .need-image {
    max-width: 680px;
    margin: 42px auto 0;
    border-radius: 26px;
  }
  .need .need-bottom {
    margin-top: 48px;
  }
  .need .need-about-column {
    padding: 0;
  }
  .need .need-about {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .need .need-about-title {
    font-size: 1.3rem;
  }
  .need .need-about-description {
    font-size: 0.88rem;
  }
  .need .need-benefits-column {
    padding: 0;
  }
  .need .need-benefits {
    max-width: 760px;
    margin: 42px auto 0;
  }
  .need .need-benefit-icon {
    width: 108px;
    height: 108px;
  }
  .need .need-benefit-text {
    font-size: 0.72rem;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .need {
    padding: 160px 0 95px;
  }
  .need .need-container {
    padding: 0 5.5%;
  }
  .need .need-image-column {
    padding-right: 4.5%;
  }
  .need .need-content-column {
    padding-left: 1%;
  }
  .need .need-image {
    max-width: 600px;
    border-radius: 30px;
  }
  .need .need-content {
    max-width: 590px;
  }
  .need .need-eyebrow {
    margin-bottom: 16px;
    font-size: 0.9rem;
  }
  .need .need-title {
    margin-bottom: 18px;
    font-size: 2.15rem;
  }
  .need .need-description {
    max-width: 570px;
    font-size: 1rem;
  }
  .need .need-bottom {
    margin-top: 65px;
  }
  .need .need-about-column {
    padding-left: 2%;
    padding-right: 4%;
  }
  .need .need-about {
    max-width: 390px;
  }
  .need .need-about-title {
    font-size: 1.45rem;
  }
  .need .need-about-description {
    font-size: 0.9rem;
  }
  .need .need-benefits > div {
    padding: 0 8px;
  }
  .need .need-benefit-icon {
    width: 108px;
    height: 108px;
    margin-bottom: 14px;
  }
  .need .need-benefit-text {
    font-size: 0.78rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .need .need-container {
    max-width: 1920px;
  }
}
/*==============
Riesgo
==============*/
.risk {
  position: relative;
  width: 100%;
  padding: 70px 0 95px;
  overflow: hidden;
  background: #fafafa;
}
.risk .risk-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 12%;
}
.risk .risk-isotype {
  position: absolute;
  z-index: 1;
  top: 38px;
  right: -35px;
  width: 358px;
  height: 717px;
  pointer-events: none;
}
.risk .risk-isotype img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.risk .risk-header {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.risk .risk-eyebrow {
  margin: 0 0 12px;
  color: #F15A24;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.risk .risk-title {
  margin: 0 0 14px;
  color: #302F3D;
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.risk .risk-description {
  max-width: 690px;
  margin: 0 auto;
  color: #302F3D;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
}
.risk .risk-cards {
  max-width: 960px;
  margin: 52px auto 0;
}
.risk .risk-cards > div {
  display: flex;
  padding: 0 15px;
}
.risk .risk-card {
  display: flex;
  width: 100%;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px 24px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.risk .risk-card-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
}
.risk .risk-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.risk .risk-card-title {
  margin: 0 0 12px;
  color: #302F3D;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}
.risk .risk-card-description {
  margin: 0;
  color: #302F3D;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.18;
}
@media (max-width: 767px) {
  .risk {
    padding: 50px 0 55px;
  }
  .risk .risk-container {
    padding: 0 20px;
  }
  .risk .risk-isotype {
    top: -20px;
    right: -108px;
    width: 220px;
    height: auto;
  }
  .risk .risk-isotype img {
    height: auto;
  }
  .risk .risk-header {
    max-width: none;
  }
  .risk .risk-eyebrow {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }
  .risk .risk-title {
    margin-bottom: 20px;
    font-size: 1.42rem;
    line-height: 1.05;
  }
  .risk .risk-title br {
    display: none;
  }
  .risk .risk-description {
    max-width: none;
    font-size: 0.78rem;
    line-height: 1.22;
  }
  .risk .risk-cards {
    margin-top: 28px;
  }
  .risk .risk-cards > div {
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .risk .risk-cards > div:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .risk .risk-card {
    min-height: 163px;
    padding: 18px 8px 14px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  .risk .risk-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .risk .risk-card-title {
    margin-bottom: 8px;
    font-size: 0.75rem;
  }
  .risk .risk-card-description {
    font-size: 0.62rem;
    line-height: 1.15;
  }
  .risk .risk-card-description br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .risk {
    padding: 65px 0 75px;
  }
  .risk .risk-container {
    padding: 0 8%;
  }
  .risk .risk-isotype {
    top: 10px;
    right: -120px;
    width: 300px;
    height: auto;
  }
  .risk .risk-isotype img {
    height: auto;
  }
  .risk .risk-header {
    max-width: 680px;
  }
  .risk .risk-eyebrow {
    font-size: 0.85rem;
  }
  .risk .risk-title {
    font-size: 2rem;
  }
  .risk .risk-title br {
    display: none;
  }
  .risk .risk-description {
    max-width: 600px;
    font-size: 0.92rem;
  }
  .risk .risk-cards {
    max-width: 650px;
    margin-top: 42px;
  }
  .risk .risk-cards > div {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .risk .risk-cards > div:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .risk .risk-card {
    min-height: 225px;
    padding: 24px 16px 20px;
  }
  .risk .risk-card-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }
  .risk .risk-card-title {
    font-size: 0.95rem;
  }
  .risk .risk-card-description {
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .risk {
    padding: 65px 0 85px;
  }
  .risk .risk-container {
    padding: 0 10%;
  }
  .risk .risk-isotype {
    right: -70px;
    width: 320px;
    height: auto;
  }
  .risk .risk-isotype img {
    height: auto;
  }
  .risk .risk-header {
    max-width: 720px;
  }
  .risk .risk-title {
    font-size: 2.25rem;
  }
  .risk .risk-description {
    font-size: 0.98rem;
  }
  .risk .risk-cards {
    max-width: 880px;
    margin-top: 46px;
  }
  .risk .risk-cards > div {
    padding: 0 12px;
  }
  .risk .risk-card {
    min-height: 255px;
    padding: 26px 16px 22px;
  }
  .risk .risk-card-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
  }
  .risk .risk-card-title {
    font-size: 1rem;
  }
  .risk .risk-card-description {
    font-size: 0.86rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .risk .risk-container {
    max-width: 1920px;
  }
  .risk .risk-isotype {
    width: 358px;
    height: 717px;
  }
}
/*==============
Metodología
==============*/
.methodology {
  position: relative;
  width: 100%;
  padding: 95px 0 105px;
  overflow: hidden;
  background: #FFFFFF;
}
.methodology .methodology-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 12%;
}
.methodology .methodology-header {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.methodology .methodology-eyebrow {
  margin: 0 0 18px;
  color: #F15A24;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
.methodology .methodology-title {
  margin: 0 0 12px;
  color: #302F3D;
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.methodology .methodology-title span {
  color: #f27952;
}
.methodology .methodology-description {
  max-width: 720px;
  margin: 0 auto;
  color: #302F3D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}
.methodology .methodology-tabs {
  width: 100%;
  max-width: 395px;
  margin: 30px auto 0;
}
.methodology .methodology-tabs .nav-tabs {
  border: 0;
}
.methodology .methodology-tabs .nav-link {
  position: relative;
  width: 50%;
  padding: 10px 8px 9px;
  color: #c8c8cc;
  background: transparent;
  border: 0;
  border-bottom: 3px solid #c8c8cc;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.methodology .methodology-tabs .nav-link:hover,
.methodology .methodology-tabs .nav-link:focus {
  border-color: #c8c8cc;
  color: #302F3D;
}
.methodology .methodology-tabs .nav-link.active {
  color: #111;
  background: transparent;
  border-color: transparent transparent #F15A24;
}
.methodology .methodology-content {
  margin-top: 58px;
}
.methodology .methodology-cards {
  max-width: 1350px;
  margin: 0 auto;
}
.methodology .methodology-cards > div {
  display: flex;
  padding: 0 20px;
}
.methodology .methodology-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 365px;
  flex-direction: column;
  justify-content: center;
  padding: 65px 50px 42px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 7px 32px rgba(0, 0, 0, 0.07);
}
.methodology .methodology-card-decoration {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  max-width: 540px;
  height: 320px;
  pointer-events: none;
}
.methodology .methodology-card-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
.methodology .methodology-number {
  position: relative;
  z-index: 2;
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  background: #302F3D;
  border-radius: 7px;
}
.methodology .methodology-number span {
  color: #FBB03B;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.methodology .methodology-card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #302F3D;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.05;
}
.methodology .methodology-card-description {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin: 0;
  color: #161616;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.18;
}
.methodology .methodology-action {
  margin-top: 32px;
  text-align: center;
}
.methodology .methodology-button {
  min-width: 225px;
  min-height: 55px;
  padding: 0.85rem 1.8rem;
  color: #FFFFFF;
  background: #F15A24;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}
.methodology .methodology-button:hover,
.methodology .methodology-button:focus-visible {
  color: #FFFFFF;
  background: #e3460e;
}
@media (max-width: 767px) {
  .methodology {
    padding: 85px 0 65px;
  }
  .methodology .methodology-container {
    padding: 0 30px;
  }
  .methodology .methodology-header {
    max-width: none;
  }
  .methodology .methodology-eyebrow {
    max-width: 290px;
    margin: 0 auto 24px;
    font-size: 0.84rem;
    line-height: 1.15;
  }
  .methodology .methodology-title {
    max-width: 310px;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    line-height: 1.05;
  }
  .methodology .methodology-title span {
    display: inline;
  }
  .methodology .methodology-description {
    max-width: 330px;
    font-size: 0.9rem;
    line-height: 1.22;
  }
  .methodology .methodology-tabs {
    max-width: none;
    margin-top: 50px;
  }
  .methodology .methodology-tabs .nav-link {
    padding: 8px 4px;
    border-bottom-width: 2px;
    font-size: 0.7rem;
  }
  .methodology .methodology-content {
    margin-top: 48px;
  }
  .methodology .methodology-cards {
    margin: 0;
  }
  .methodology .methodology-cards > div {
    padding: 0;
    margin-bottom: 24px;
  }
  .methodology .methodology-cards > div:last-child {
    margin-bottom: 0;
  }
  .methodology .methodology-card {
    min-height: 372px;
    padding: 80px 60px 55px;
    border-radius: 24px;
  }
  .methodology .methodology-card-decoration {
    width: 155px;
    height: 175px;
  }
  .methodology .methodology-number {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    border-radius: 7px;
  }
  .methodology .methodology-number span {
    font-size: 2.3rem;
  }
  .methodology .methodology-card-title {
    margin-bottom: 24px;
    font-size: 1.65rem;
  }
  .methodology .methodology-card-description {
    max-width: 225px;
    font-size: 1rem;
    line-height: 1.2;
  }
  .methodology .methodology-action {
    margin-top: 64px;
  }
  .methodology .methodology-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.95rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .methodology {
    padding: 90px 0 80px;
  }
  .methodology .methodology-container {
    padding: 0 7%;
  }
  .methodology .methodology-header {
    max-width: 700px;
  }
  .methodology .methodology-eyebrow {
    font-size: 0.9rem;
  }
  .methodology .methodology-title {
    font-size: 2.2rem;
  }
  .methodology .methodology-description {
    max-width: 650px;
    font-size: 0.95rem;
  }
  .methodology .methodology-tabs {
    margin-top: 36px;
  }
  .methodology .methodology-content {
    margin-top: 48px;
  }
  .methodology .methodology-cards {
    max-width: 620px;
  }
  .methodology .methodology-cards > div {
    padding: 0;
    margin-bottom: 25px;
  }
  .methodology .methodology-cards > div:last-child {
    margin-bottom: 0;
  }
  .methodology .methodology-card {
    min-height: 330px;
    padding: 65px 70px 45px;
  }
  .methodology .methodology-card-decoration {
    width: 165px;
    height: 185px;
  }
  .methodology .methodology-card-description {
    max-width: 270px;
  }
  .methodology .methodology-action {
    margin-top: 42px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .methodology {
    padding: 85px 0 95px;
  }
  .methodology .methodology-container {
    padding: 0 8%;
  }
  .methodology .methodology-header {
    max-width: 780px;
  }
  .methodology .methodology-title {
    font-size: 2.3rem;
  }
  .methodology .methodology-content {
    margin-top: 50px;
  }
  .methodology .methodology-cards {
    max-width: 1280px;
  }
  .methodology .methodology-cards > div {
    padding: 0 16px;
  }
  .methodology .methodology-card {
    min-height: 340px;
    padding: 58px 42px 38px;
  }
  .methodology .methodology-card-decoration {
    width: 350px;
    height: 240px;
  }
  .methodology .methodology-card-title {
    font-size: 1.65rem;
  }
  .methodology .methodology-card-description {
    max-width: 265px;
    font-size: 0.8rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .methodology .methodology-container {
    max-width: 1920px;
  }
}
/*==============
Componentes
==============*/
.components {
  position: relative;
  width: 100%;
  padding: 105px 0 125px;
  overflow: hidden;
  background: #FFFFFF;
}
.components .components-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 8%;
}
.components .components-header {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.components .components-title {
  margin: 0 0 18px;
  color: #302F3D;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.components .components-description {
  max-width: 980px;
  margin: 0 auto;
  color: #302F3D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}
.components .components-description span {
  color: #F15A24;
  font-weight: 700;
}
.components .components-tabs {
  width: 100%;
  max-width: 590px;
  margin: 105px auto 0;
}
.components .components-tabs .nav-tabs {
  border: 0;
}
.components .components-tabs .nav-link {
  width: 50%;
  padding: 10px 6px 9px;
  color: #c4c4c8;
  background: transparent;
  border: 0;
  border-bottom: 3px solid #c4c4c8;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.components .components-tabs .nav-link:hover,
.components .components-tabs .nav-link:focus {
  color: #302F3D;
  border-color: #c4c4c8;
}
.components .components-tabs .nav-link.active {
  color: #111;
  background: transparent;
  border-color: transparent transparent #F15A24;
}
.components .components-content {
  margin-top: 80px;
}
.components .components-detail {
  max-width: 1450px;
  margin: 0 auto;
}
.components .components-image-column,
.components .components-info-column {
  padding: 0;
}
.components .components-image-column {
  padding-right: 5%;
}
.components .components-info-column {
  padding-left: 5%;
}
.components #virtual-component .components-info-column {
  padding-right: 5%;
  padding-left: 0;
}
.components #virtual-component .components-image-column {
  padding-right: 0;
  padding-left: 5%;
}
.components .components-image {
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  border-radius: 28px;
}
.components .components-image img {
  display: block;
  width: 100%;
  height: auto;
}
.components .components-image-virtual {
  max-width: 650px;
  margin-left: auto;
}
.components .components-info {
  width: 100%;
  max-width: 610px;
}
.components .components-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.components .components-info-icon {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  margin-right: 25px;
}
.components .components-info-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.components .components-info-title {
  margin: 0;
  color: #302F3D;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
}
.components .components-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.components .components-list li {
  display: flex;
  min-height: 52px;
  align-items: center;
  margin-bottom: 18px;
}
.components .components-list li:last-child {
  margin-bottom: 0;
}
.components .components-list li img {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-right: 30px;
  object-fit: contain;
}
.components .components-list li span {
  max-width: 480px;
  color: #302F3D;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.18;
}
@media (max-width: 767px) {
  .components {
    padding: 90px 0 75px;
  }
  .components .components-container {
    padding: 0 16px;
  }
  .components .components-header {
    max-width: none;
  }
  .components .components-title {
    max-width: 345px;
    margin: 0 auto 28px;
    font-size: 1.7rem;
    line-height: 1.08;
  }
  .components .components-title br {
    display: none;
  }
  .components .components-description {
    max-width: 355px;
    font-size: 0.9rem;
    line-height: 1.22;
  }
  .components .components-description br {
    display: none;
  }
  .components .components-tabs {
    max-width: 312px;
    margin-top: 90px;
  }
  .components .components-tabs .nav-link {
    padding: 8px 3px;
    border-bottom-width: 2px;
    font-size: 0.67rem;
  }
  .components .components-content {
    margin-top: 68px;
  }
  .components .components-detail {
    margin: 0;
  }
  .components .components-image-column,
  .components .components-info-column,
  .components #virtual-component .components-info-column,
  .components #virtual-component .components-image-column {
    padding: 0;
  }
  .components .components-image-column {
    order: 2;
  }
  .components .components-info-column {
    order: 1;
  }
  .components .components-info {
    max-width: none;
  }
  .components .components-info-header {
    align-items: flex-start;
    margin-bottom: 36px;
  }
  .components .components-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-right: 14px;
  }
  .components .components-info-title {
    font-size: 1.65rem;
    line-height: 1.05;
  }
  .components .components-info-title br {
    display: none;
  }
  .components .components-list li {
    min-height: 56px;
    margin-bottom: 29px;
  }
  .components .components-list li img {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    margin-right: 24px;
  }
  .components .components-list li span {
    max-width: 275px;
    font-size: 0.86rem;
    line-height: 1.15;
  }
  .components .components-image {
    max-width: none;
    margin-top: 55px;
    border-radius: 17px;
  }
  .components .components-image-virtual {
    max-width: none;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .components {
    padding: 95px 0 90px;
  }
  .components .components-container {
    padding: 0 7%;
  }
  .components .components-header {
    max-width: 720px;
  }
  .components .components-title {
    font-size: 2.15rem;
  }
  .components .components-title br {
    display: none;
  }
  .components .components-description {
    max-width: 680px;
    font-size: 0.95rem;
  }
  .components .components-description br {
    display: none;
  }
  .components .components-tabs {
    margin-top: 75px;
  }
  .components .components-content {
    margin-top: 65px;
  }
  .components .components-image-column,
  .components .components-info-column,
  .components #virtual-component .components-info-column,
  .components #virtual-component .components-image-column {
    padding: 0;
  }
  .components .components-image-column {
    order: 2;
  }
  .components .components-info-column {
    order: 1;
  }
  .components .components-info {
    max-width: 620px;
    margin: 0 auto;
  }
  .components .components-info-header {
    margin-bottom: 38px;
  }
  .components .components-info-icon {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
    margin-right: 22px;
  }
  .components .components-info-title {
    font-size: 1.7rem;
  }
  .components .components-list li {
    margin-bottom: 25px;
  }
  .components .components-list li img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    margin-right: 25px;
  }
  .components .components-list li span {
    font-size: 0.92rem;
  }
  .components .components-image {
    max-width: 680px;
    margin: 55px auto 0;
    border-radius: 24px;
  }
  .components .components-image-virtual {
    margin: 55px auto 0;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .components {
    padding: 95px 0 110px;
  }
  .components .components-container {
    padding: 0 7%;
  }
  .components .components-header {
    max-width: 1020px;
  }
  .components .components-title {
    font-size: 2.45rem;
  }
  .components .components-tabs {
    margin-top: 90px;
  }
  .components .components-content {
    margin-top: 70px;
  }
  .components .components-detail {
    max-width: 1250px;
  }
  .components .components-image-column {
    padding-right: 4%;
  }
  .components .components-info-column {
    padding-left: 4%;
  }
  .components #virtual-component .components-info-column {
    padding-right: 4%;
    padding-left: 0;
  }
  .components #virtual-component .components-image-column {
    padding-right: 0;
    padding-left: 4%;
  }
  .components .components-image {
    max-width: 560px;
  }
  .components .components-info {
    max-width: 530px;
  }
  .components .components-info-icon {
    flex-basis: 86px;
    width: 86px;
    height: 86px;
    margin-right: 22px;
  }
  .components .components-info-title {
    font-size: 1.55rem;
  }
  .components .components-list li {
    margin-bottom: 14px;
  }
  .components .components-list li img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    margin-right: 25px;
  }
  .components .components-list li span {
    font-size: 0.9rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .components .components-container {
    max-width: 1920px;
  }
}
/*==============
Alianza
==============*/
.alliance {
  position: relative;
  width: 100%;
  padding: 85px 0 75px;
  overflow: hidden;
  background: #302F3D;
}
.alliance .alliance-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 6%;
}
.alliance .alliance-isotype {
  position: absolute;
  z-index: 1;
  top: 55px;
  left: 0px;
  width: 358px;
  height: 717px;
  pointer-events: none;
}
.alliance .alliance-isotype img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.alliance .alliance-header {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.alliance .alliance-eyebrow {
  margin: 0 0 14px;
  color: #F15A24;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.alliance .alliance-title {
  margin: 0 0 14px;
  color: #FFFFFF;
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.alliance .alliance-description {
  max-width: 1105px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.22;
}
.alliance .alliance-image {
  width: 100%;
  max-width: 1702px;
  margin: 58px auto 0;
  overflow: hidden;
  border-radius: 28px;
}
.alliance .alliance-image picture {
  display: block;
  width: 100%;
}
.alliance .alliance-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .alliance {
    padding: 72px 0 65px;
  }
  .alliance .alliance-container {
    padding: 0 10px;
  }
  .alliance .alliance-isotype {
    top: 30px;
    left: -25px;
    width: 250px;
    height: auto;
  }
  .alliance .alliance-isotype img {
    height: auto;
  }
  .alliance .alliance-header {
    max-width: none;
    padding: 0 10px;
  }
  .alliance .alliance-eyebrow {
    max-width: 330px;
    margin: 0 auto 15px;
    font-size: 0.7rem;
    line-height: 1.12;
  }
  .alliance .alliance-title {
    max-width: 390px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
    line-height: 1.05;
  }
  .alliance .alliance-description {
    max-width: 360px;
    font-size: 0.72rem;
    line-height: 1.18;
  }
  .alliance .alliance-image {
    max-width: none;
    margin-top: 38px;
    border-radius: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .alliance {
    padding: 80px 0 70px;
  }
  .alliance .alliance-container {
    padding: 0 6%;
  }
  .alliance .alliance-isotype {
    top: 20%;
    left: -30px;
    width: 300px;
    height: auto;
  }
  .alliance .alliance-isotype img {
    height: auto;
  }
  .alliance .alliance-header {
    max-width: 680px;
  }
  .alliance .alliance-eyebrow {
    font-size: 0.82rem;
  }
  .alliance .alliance-title {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    font-size: 2rem;
  }
  .alliance .alliance-description {
    max-width: 640px;
    font-size: 0.9rem;
  }
  .alliance .alliance-image {
    max-width: 650px;
    margin-top: 48px;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .alliance {
    padding: 80px 0 70px;
  }
  .alliance .alliance-container {
    padding: 0 6%;
  }
  .alliance .alliance-isotype {
    top: 45px;
    left: -15px;
    width: 330px;
    height: auto;
  }
  .alliance .alliance-isotype img {
    height: auto;
  }
  .alliance .alliance-header {
    max-width: 1200px;
  }
  .alliance .alliance-title {
    font-size: 2.35rem;
  }
  .alliance .alliance-description {
    max-width: 1105px;
    font-size: 0.95rem;
  }
  .alliance .alliance-image {
    max-width: 1450px;
    margin-top: 52px;
    border-radius: 25px;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .alliance .alliance-container {
    max-width: 1920px;
  }
  .alliance .alliance-isotype {
    width: 358px;
    height: 717px;
  }
}
/*==============
Beneficios
==============*/
.benefits {
  position: relative;
  width: 100%;
  padding: 80px 0 85px;
  overflow: hidden;
  background: #FFFFFF;
}
.benefits .benefits-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
.benefits .benefits-header {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
.benefits .benefits-eyebrow {
  margin: 0 0 16px;
  color: #F15A24;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}
.benefits .benefits-title {
  margin: 0;
  color: #302F3D;
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.benefits .benefits-title span {
  color: #F15A24;
}
.benefits .benefits-slider {
  width: 100%;
  margin-top: 105px;
}
.benefits .benefits-swiper {
  width: 100%;
  padding: 0 34px 62px;
  overflow: visible;
}
.benefits .swiper-wrapper {
  align-items: stretch;
}
.benefits .swiper-slide {
  display: flex;
  height: auto;
}
.benefits .benefits-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 178px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 28px 24px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 21px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}
.benefits .benefits-card-decoration {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 240px;
  height: 180px;
  pointer-events: none;
}
.benefits .benefits-card-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
.benefits .benefits-number {
  position: relative;
  z-index: 2;
  display: flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  background: #f3f3f5;
  border-radius: 7px;
}
.benefits .benefits-number span {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}
.benefits .benefits-number-red span {
  color: #c62026;
}
.benefits .benefits-number-orange span {
  color: #F15A24;
}
.benefits .benefits-number-yellow span {
  color: #FBB03B;
}
.benefits .benefits-card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #302F3D;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}
.benefits .benefits-card-description {
  position: relative;
  z-index: 2;
  max-width: 245px;
  margin: 0;
  color: #302F3D;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.18;
}
.benefits .benefits-pagination {
  bottom: 0 !important;
}
.benefits .benefits-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  margin: 0 3px !important;
  background: #d7d7da;
  border-radius: 10px;
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}
.benefits .benefits-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background: #302F3D;
}
@media (max-width: 767px) {
  .benefits {
    padding: 75px 0 55px;
  }
  .benefits .benefits-header {
    max-width: none;
    padding: 0 18px;
  }
  .benefits .benefits-eyebrow {
    max-width: 330px;
    margin: 0 auto 18px;
    font-size: 0.8rem;
    line-height: 1.15;
  }
  .benefits .benefits-title {
    max-width: 310px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.06;
  }
  .benefits .benefits-title span {
    display: block;
  }
  .benefits .benefits-slider {
    margin-top: 70px;
  }
  .benefits .benefits-swiper {
    padding: 0 20px 58px;
    overflow: hidden;
  }
  .benefits .benefits-card {
    min-height: 180px;
    padding: 40px 20px;
    border-radius: 17px;
  }
  .benefits .benefits-card-decoration {
    width: 240px;
    height: 160px;
  }
  .benefits .benefits-number {
    width: 37px;
    height: 37px;
    margin-bottom: 13px;
    border-radius: 5px;
  }
  .benefits .benefits-number span {
    font-size: 1.4rem;
  }
  .benefits .benefits-card-title {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .benefits .benefits-card-description {
    max-width: 190px;
    font-size: 0.82rem;
    line-height: 1.15;
  }
  .benefits .benefits-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 7px;
  }
  .benefits .benefits-pagination .swiper-pagination-bullet-active {
    width: 31px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .benefits {
    padding: 75px 0 70px;
  }
  .benefits .benefits-header {
    max-width: 720px;
  }
  .benefits .benefits-eyebrow {
    font-size: 0.85rem;
  }
  .benefits .benefits-title {
    font-size: 2rem;
  }
  .benefits .benefits-slider {
    margin-top: 75px;
  }
  .benefits .benefits-swiper {
    padding: 0 35px 60px;
  }
  .benefits .benefits-card {
    min-height: 165px;
    padding: 18px 24px 22px;
  }
  .benefits .benefits-number {
    width: 44px;
    height: 44px;
  }
  .benefits .benefits-number span {
    font-size: 1.65rem;
  }
  .benefits .benefits-card-title {
    font-size: 0.88rem;
  }
  .benefits .benefits-card-description {
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .benefits {
    padding: 80px 0 80px;
  }
  .benefits .benefits-header {
    max-width: 1080px;
  }
  .benefits .benefits-title {
    font-size: 2.35rem;
  }
  .benefits .benefits-slider {
    margin-top: 90px;
  }
  .benefits .benefits-swiper {
    padding: 0 38px 62px;
  }
  .benefits .benefits-card {
    min-height: 175px;
    padding: 20px 26px 22px;
  }
  .benefits .benefits-card-description {
    max-width: 230px;
    font-size: 0.86rem;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .benefits .benefits-container {
    max-width: 1920px;
  }
}
/*==============
NEMI
==============*/
.nemi {
  position: relative;
  width: 100%;
  padding: 95px 0 85px;
  overflow: hidden;
  background: #fafafa;
}
.nemi .nemi-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 4%;
}
.nemi .nemi-main {
  max-width: 1540px;
  margin: 0 auto;
}
.nemi .nemi-brand-column,
.nemi .nemi-content-column,
.nemi .nemi-benefits-column {
  padding: 0;
}
.nemi .nemi-brand-column {
  padding-right: 1%;
}
.nemi .nemi-content-column {
  padding: 0 0 0 2%;
}
.nemi .nemi-benefits-column {
  padding-left: 3%;
}
.nemi .nemi-brand {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.nemi .nemi-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.nemi .nemi-content {
  width: 100%;
  max-width: 520px;
}
.nemi .nemi-eyebrow {
  margin: 0 0 14px;
  color: #F15A24;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
.nemi .nemi-title {
  margin: 0 0 12px;
  color: #302F3D;
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.nemi .nemi-description {
  margin: 0;
  color: #302F3D;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.2;
}
.nemi .nemi-description span {
  color: #F15A24;
  font-weight: 700;
}
.nemi .nemi-benefits {
  margin: 0;
}
.nemi .nemi-benefits > div {
  padding: 0 15px;
}
.nemi .nemi-benefit {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nemi .nemi-benefit-icon {
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
}
.nemi .nemi-benefit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nemi .nemi-benefit-title {
  margin: 0 0 10px;
  color: #302F3D;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}
.nemi .nemi-benefit-description {
  max-width: 180px;
  margin: 0;
  color: #302F3D;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.18;
}
.nemi .nemi-action {
  margin-top: 45px;
  text-align: center;
}
.nemi .nemi-button {
  min-width: 285px;
  min-height: 58px;
  padding: 0.85rem 1.8rem;
  color: #302F3D;
  background: transparent;
  border: 2px solid #F15A24;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.nemi .nemi-button:hover,
.nemi .nemi-button:focus-visible {
  color: #FFFFFF;
  background: #302F3D;
  border-color: #302F3D;
}
@media (max-width: 767px) {
  .nemi {
    padding: 72px 0 55px;
  }
  .nemi .nemi-container {
    padding: 0 16px;
  }
  .nemi .nemi-main {
    margin: 0;
  }
  .nemi .nemi-brand-column,
  .nemi .nemi-content-column,
  .nemi .nemi-benefits-column {
    padding: 0;
  }
  .nemi .nemi-brand {
    max-width: 170px;
    margin-bottom: 22px;
  }
  .nemi .nemi-content {
    max-width: none;
    text-align: center;
  }
  .nemi .nemi-eyebrow {
    max-width: 280px;
    margin: 0 auto 12px;
    font-size: 0.62rem;
    line-height: 1.12;
  }
  .nemi .nemi-title {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.08;
  }
  .nemi .nemi-title br {
    display: none;
  }
  .nemi .nemi-description {
    max-width: 340px;
    margin: 0 auto;
    font-size: 0.7rem;
    line-height: 1.18;
  }
  .nemi .nemi-benefits {
    margin-top: 26px;
  }
  .nemi .nemi-benefits > div {
    padding: 0;
    margin-bottom: 26px;
  }
  .nemi .nemi-benefits > div:last-child {
    margin-bottom: 0;
  }
  .nemi .nemi-benefit-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 10px;
  }
  .nemi .nemi-benefit-title {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }
  .nemi .nemi-benefit-description {
    max-width: 150px;
    font-size: 0.7rem;
    line-height: 1.15;
  }
  .nemi .nemi-action {
    margin-top: 22px;
  }
  .nemi .nemi-button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.68rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .nemi {
    padding: 80px 0 70px;
  }
  .nemi .nemi-container {
    padding: 0 7%;
  }
  .nemi .nemi-brand-column,
  .nemi .nemi-content-column,
  .nemi .nemi-benefits-column {
    padding: 0;
  }
  .nemi .nemi-brand {
    max-width: 200px;
    margin-bottom: 30px;
  }
  .nemi .nemi-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .nemi .nemi-eyebrow {
    font-size: 0.82rem;
  }
  .nemi .nemi-title {
    font-size: 2rem;
  }
  .nemi .nemi-title br {
    display: none;
  }
  .nemi .nemi-description {
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.9rem;
  }
  .nemi .nemi-benefits {
    max-width: 720px;
    margin: 45px auto 0;
  }
  .nemi .nemi-benefit-icon {
    width: 100px;
    height: 100px;
  }
  .nemi .nemi-benefit-title {
    font-size: 0.85rem;
  }
  .nemi .nemi-benefit-description {
    max-width: 150px;
    font-size: 0.72rem;
  }
  .nemi .nemi-action {
    margin-top: 38px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .nemi {
    padding: 85px 0 75px;
  }
  .nemi .nemi-container {
    padding: 0 4%;
  }
  .nemi .nemi-main {
    max-width: 1320px;
  }
  .nemi .nemi-brand {
    max-width: 190px;
  }
  .nemi .nemi-content {
    max-width: 400px;
  }
  .nemi .nemi-eyebrow {
    font-size: 0.85rem;
  }
  .nemi .nemi-title {
    font-size: 2.2rem;
  }
  .nemi .nemi-description {
    font-size: 0.9rem;
  }
  .nemi .nemi-benefits-column {
    padding-left: 2%;
  }
  .nemi .nemi-benefits > div {
    padding: 0 10px;
  }
  .nemi .nemi-benefit-icon {
    width: 100px;
    height: 100px;
  }
  .nemi .nemi-benefit-title {
    font-size: 0.88rem;
  }
  .nemi .nemi-benefit-description {
    max-width: 155px;
    font-size: 0.75rem;
  }
  .nemi .nemi-action {
    margin-top: 40px;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .nemi .nemi-container {
    max-width: 1920px;
  }
}
/*==============
Contacto
==============*/
.contact {
  position: relative;
  width: 100%;
  padding: 95px 0 80px;
  overflow: hidden;
  background: #FFFFFF;
}
.contact .contact-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2.2%;
}
.contact .contact-panel {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 48px 48px 55px;
  overflow: hidden;
  background: #302F3D;
  border-radius: 38px;
}
.contact .contact-panel > .row {
  min-height: 520px;
}
.contact .contact-form-column,
.contact .contact-image-column {
  display: flex;
  padding: 0;
}
.contact .contact-form-column {
  align-items: center;
  padding-right: 5.5%;
}
.contact .contact-image-column {
  align-items: stretch;
  justify-content: flex-end;
}
.contact .contact-form-wrapper {
  width: 100%;
  max-width: 610px;
}
.contact .contact-title {
  margin: 0 0 34px;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.contact .contact-form {
  width: 100%;
}
.contact .contact-field {
  width: 100%;
  margin-bottom: 25px;
}
.contact .contact-field input {
  display: block;
  width: 100%;
  height: 62px;
  padding: 0 28px;
  color: #302F3D;
  background: #FFFFFF;
  border: 1px solid rgba(48, 47, 61, 0.08);
  border-radius: 5px;
  outline: 0;
  font-size: 1rem;
  font-weight: 400;
}
.contact .contact-field input::placeholder {
  color: #c8c8ce;
  opacity: 1;
}
.contact .contact-field input:disabled {
  cursor: default;
  opacity: 1;
}
.contact .contact-button {
  min-width: 170px;
  min-height: 58px;
  padding: 0.85rem 2rem;
  color: #FFFFFF;
  background: #F15A24;
  border: 0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}
.contact .contact-button:disabled {
  color: #FFFFFF;
  background: #F15A24;
  cursor: default;
  opacity: 1;
}
.contact .contact-image {
  width: 100%;
  max-width: 540px;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
}
.contact .contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .contact {
    padding: 45px 0 55px;
    background: #f5f5f5;
  }
  .contact .contact-container {
    padding: 0 16px;
  }
  .contact .contact-panel {
    max-width: none;
    padding: 24px 48px 22px;
    border-radius: 20px;
  }
  .contact .contact-panel > .row {
    min-height: 0;
  }
  .contact .contact-form-column,
  .contact .contact-image-column {
    padding: 0;
  }
  .contact .contact-form-wrapper {
    max-width: none;
  }
  .contact .contact-title {
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.08;
  }
  .contact .contact-title br {
    display: none;
  }
  .contact .contact-field {
    margin-bottom: 11px;
  }
  .contact .contact-field input {
    height: 36px;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 0.62rem;
  }
  .contact .contact-button {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    margin-top: 0;
    padding: 0.55rem 1rem;
    border-radius: 4px;
    font-size: 0.68rem;
  }
  .contact .contact-image-column {
    margin-top: 22px;
  }
  .contact .contact-image {
    max-width: none;
    min-height: 0;
    aspect-ratio: 720 / 785;
    border-radius: 13px;
  }
  .contact .contact-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact {
    padding: 70px 0 65px;
  }
  .contact .contact-container {
    padding: 0 5%;
  }
  .contact .contact-panel {
    max-width: 720px;
    padding: 38px 68px;
    border-radius: 28px;
  }
  .contact .contact-panel > .row {
    min-height: 0;
  }
  .contact .contact-form-column,
  .contact .contact-image-column {
    padding: 0;
  }
  .contact .contact-form-wrapper {
    max-width: none;
  }
  .contact .contact-title {
    margin-bottom: 28px;
    font-size: 2rem;
  }
  .contact .contact-title br {
    display: none;
  }
  .contact .contact-field {
    margin-bottom: 18px;
  }
  .contact .contact-field input {
    height: 52px;
    padding: 0 20px;
    font-size: 0.9rem;
  }
  .contact .contact-button {
    min-width: 160px;
    min-height: 52px;
  }
  .contact .contact-image-column {
    margin-top: 32px;
  }
  .contact .contact-image {
    max-width: none;
    min-height: 0;
    aspect-ratio: 720 / 785;
    border-radius: 22px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .contact {
    padding: 85px 0 75px;
  }
  .contact .contact-container {
    padding: 0 3%;
  }
  .contact .contact-panel {
    max-width: 1320px;
    padding: 42px 42px 42px 48px;
    border-radius: 32px;
  }
  .contact .contact-panel > .row {
    min-height: 470px;
  }
  .contact .contact-form-column {
    padding-right: 4.5%;
  }
  .contact .contact-form-wrapper {
    max-width: 540px;
  }
  .contact .contact-title {
    font-size: 2rem;
  }
  .contact .contact-field {
    margin-bottom: 21px;
  }
  .contact .contact-field input {
    height: 56px;
    padding: 0 24px;
    font-size: 0.95rem;
  }
  .contact .contact-button {
    min-width: 160px;
    min-height: 54px;
  }
  .contact .contact-image {
    max-width: 480px;
    min-height: 470px;
    border-radius: 24px;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .contact .contact-container {
    max-width: 1920px;
  }
}
/*==============
Footer
==============*/
.site-footer {
  position: relative;
  width: 100%;
  padding: 68px 0 30px;
  background: #302F3D;
  color: #FFFFFF;
}
.site-footer .footer-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 6.5%;
}
.site-footer .footer-main {
  margin: 0;
  padding-bottom: 42px;
}
.site-footer .footer-brand-column,
.site-footer .footer-contact-column,
.site-footer .footer-app-column {
  padding: 0;
}
.site-footer .footer-brand {
  width: 100%;
  max-width: 300px;
}
.site-footer .footer-brand a {
  display: inline-block;
}
.site-footer .footer-brand img {
  display: block;
  width: 170px;
  height: auto;
}
.site-footer .footer-tagline {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.2;
}
.site-footer .footer-contact {
  display: flex;
  width: 100%;
  max-width: 340px;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
}
.site-footer .footer-contact-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer .footer-contact-item:hover,
.site-footer .footer-contact-item:focus-visible {
  color: #FFFFFF;
}
.site-footer .footer-contact-icon {
  display: block;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-right: 18px;
}
.site-footer .footer-contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer .footer-app {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}
.site-footer .footer-nemi {
  flex: 0 0 125px;
  width: 125px;
  margin-right: 20px;
}
.site-footer .footer-nemi img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer .footer-app-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer .footer-app-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}
.site-footer .footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer-store-buttons a {
  display: block;
  width: 125px;
}
.site-footer .footer-store-buttons img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer .footer-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
}
.site-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 42px 0 22px;
  }
  .site-footer .footer-container {
    padding: 0 20px;
  }
  .site-footer .footer-main {
    padding-bottom: 28px;
  }
  .site-footer .footer-brand {
    max-width: none;
    text-align: center;
  }
  .site-footer .footer-brand img {
    width: 130px;
    margin: 0 auto;
  }
  .site-footer .footer-tagline {
    margin-top: 18px;
    font-size: 0.8rem;
  }
  .site-footer .footer-contact {
    max-width: none;
    gap: 10px;
    margin-top: 22px;
  }
  .site-footer .footer-contact-item {
    justify-content: flex-start;
    font-size: 0.8rem;
  }
  .site-footer .footer-contact-icon {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
  .site-footer .footer-app {
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
  }
  .site-footer .footer-nemi {
    flex-basis: auto;
    width: 100px;
    margin: 0 auto;
  }
  .site-footer .footer-app-content {
    width: 100%;
    align-items: center;
    margin-top: 20px;
  }
  .site-footer .footer-app-title {
    margin-bottom: 12px;
    font-size: 0.8rem;
    text-align: center;
  }
  .site-footer .footer-store-buttons {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .site-footer .footer-store-buttons a {
    width: 140px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    padding-top: 18px;
  }
  .site-footer .footer-copyright {
    font-size: 0.8rem;
    text-align: center;
  }
  .site-footer .footer-legal {
    gap: 14px;
    margin-top: 6px;
  }
  .site-footer .footer-legal a {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer {
    padding: 55px 0 25px;
  }
  .site-footer .footer-container {
    padding: 0 7%;
  }
  .site-footer .footer-main {
    padding-bottom: 35px;
  }
  .site-footer .footer-brand-column,
  .site-footer .footer-contact-column,
  .site-footer .footer-app-column {
    margin-bottom: 30px;
  }
  .site-footer .footer-brand-column:last-child,
  .site-footer .footer-contact-column:last-child,
  .site-footer .footer-app-column:last-child {
    margin-bottom: 0;
  }
  .site-footer .footer-brand {
    max-width: none;
    text-align: center;
  }
  .site-footer .footer-brand img {
    width: 150px;
    margin: 0 auto;
  }
  .site-footer .footer-tagline {
    margin-top: 20px;
  }
  .site-footer .footer-contact {
    max-width: 320px;
    margin: 0 auto;
  }
  .site-footer .footer-app {
    justify-content: center;
  }
  .site-footer .footer-nemi {
    width: 115px;
  }
  .site-footer .footer-store-buttons {
    flex-direction: row;
  }
  .site-footer .footer-store-buttons a {
    width: 115px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .site-footer {
    padding: 62px 0 28px;
  }
  .site-footer .footer-container {
    padding: 0 5.5%;
  }
  .site-footer .footer-main {
    padding-bottom: 38px;
  }
  .site-footer .footer-brand img {
    width: 155px;
  }
  .site-footer .footer-contact {
    max-width: 310px;
  }
  .site-footer .footer-contact-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    margin-right: 15px;
  }
  .site-footer .footer-nemi {
    flex-basis: 115px;
    width: 115px;
    margin-right: 17px;
  }
  .site-footer .footer-store-buttons a {
    width: 115px;
  }
}
@media (min-width: 1451px) and (max-width: 2050px) {
  .site-footer .footer-container {
    max-width: 1920px;
  }
}
.back-to-top {
  --scroll-progress: 0%;
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 950;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  padding: 5px;
  color: #FFFFFF;
  background: conic-gradient(#FBB03B 0 var(--scroll-progress), rgba(255, 255, 255, 0.22) var(--scroll-progress) 100%);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(18px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top::before {
  content: '';
  position: absolute;
  inset: 5px;
  background: #302F3D;
  border-radius: inherit;
  transition: background-color 0.25s ease;
}
.back-to-top:hover {
  color: #302F3D;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px) scale(1);
}
.back-to-top:hover::before {
  background: #FBB03B;
}
.back-to-top:focus-visible {
  outline-color: #F15A24;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top-icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: currentColor;
}
body.menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .back-to-top {
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    padding: 4px;
  }
  .back-to-top::before {
    inset: 4px;
  }
  .back-to-top-icon {
    width: 26px;
    height: 26px;
  }
}
