:root {
  --blue-dark: #2156f0;
  --blue-light: #0697f2;
  --green-dark: #48a12d;
  --green-light: #9ae238;
  --orange: #f27c16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #0f172a;
  background: #fff;
}

strong {
  font-family: Nunito, system-ui, sans-serif;
}

.bg-top-gradient {
  position: fixed;
  inset: 0 0 auto 0;
  height: 320px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
  filter: blur(64px);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
}

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

.section {
  padding: 64px 0;
}

.section--soft {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

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

.title {
  font-family: Nunito, sans-serif;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 32px;
  margin: 0 0 8px;
}

.title--sm {
  font-family: Nunito, sans-serif;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 28px;
  margin: 0 0 12px;
}

.subtitle {
  color: #475569;
  margin: 0 0 20px;
}

.paragraph {
  color: #334155;
  line-height: 1.6;
  margin: 0 0 14px;
}

.row {
  display: flex;
  align-items: center;
}

.gap-sm {
  gap: 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2cols {
  grid-template-columns: 1fr;
}

.grid--3cols {
  grid-template-columns: 1fr;
}

.gap {
  gap: 24px;
}

@media (min-width: 900px) {
  .grid--2cols {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .grid--3cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ====== CABECERA GENERAL ====== */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  width: auto;
  height: 50px;
}

.brand__text strong {
  color: #003a54;
  font-weight: 800;
  font-size: 18px;
}

.brand__text small {
  color: #64748b;
  font-size: 12px;
}

/* MENÚ PRINCIPAL */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #2156f0;
}

.nav__link.active {
  color: #2156f0;
  font-weight: 600;
}

/* BOTONES */
.header__ctas {
  display: flex;
  gap: 10px;
}

/* ====== MENÚ RESPONSIVE ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #003a54;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(7px) rotate(45deg);
}

/* ====== MODO MÓVIL ====== */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__ctas {
    display: none;
  }

  .nav__buttons-mobile {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }
}

@media (min-width: 1025px) {
  .nav__buttons-mobile {
    display: none;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
}

.btn--outline {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  background: #fff;
}

.btn--orange {
  width: 100%;
  color: #fff;
  background: var(--orange);
}

.btn--orange:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--cta-dynamic {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
}

.btn.small {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.card--row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card__title {
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
  font-family: Nunito, sans-serif;
}

.card__heading {
  font-weight: 900;
  color: var(--blue-dark);
  font-family: Nunito, sans-serif;
  margin: 0 0 4px;
}

.card__desc {
  color: #475569;
  margin: 0;
}

.hero__text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 100%;
}

.hero__note {
  color: #475569;
  margin: 0;
}

.card--calculator {
  padding: 0;
  overflow: hidden;
}

.calc__header {
  padding: 16px 20px;
  color: #fff;
}

.calc__question {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

.calc__rates {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.calc__rate.active.calc__rate--buy {
  background-color: #0583f2;
  color: #fff;
  border-color: #0583f2;
}

.calc__rate.active.calc__rate--sell {
  background-color: #9ae238;
  color: #003a54;
  border-color: #9ae238;
}

.calc__rate:not(.active).calc__rate--buy {
  border-color: #9ae238;
  color: #9ae238;
  background-color: #fff;
}

.calc__rate:not(.active).calc__rate--sell {
  border-color: #9ae238;
  color: #fff;
  background-color: #9ae238;
}

.calc__cta-top .btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.calc__rate {
  border-radius: 12px;
  padding: 12px 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc__rate.active {
  transform: scale(1.03);
}

.btn--cta-blue {
  background: #0583f2;
  color: #fff;
}

.btn--cta-green {
  background: #9ae238;
  color: #fff;
}

.calc__rate-label {
  display: block;
  font-size: 14px;
}

.calc__rate-value {
  display: block;
  font-size: 22px;
}

.calc__cta-top {
  margin-top: 10px;
}

.calc__body {
  padding: 12px 10px;
}

.calc__row + .calc__row {
  margin-top: 10px;
}

.calc__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc__label {
  color: #64748b;
  font-size: 14px;
}

.calc__right {
  display: flex;
  align-items: center;
}

.calc__input {
  font-size: 1.3rem;
  width: 140px;
  border: none;
  outline: none;
  font-weight: 800;
  color: #000;
  background: transparent;
}

.calc__amount {
  font-weight: 800;
}

.flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #fff;
}

.calc__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px;
  margin-top: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 650;
  color: #000;
}

.calc__savings .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.calc__actions {
  margin-top: 10px;
}

.calc__register {
  margin: 8px 0 0;
  color: #475569;
  text-align: center;
}

.link {
  color: var(--blue-dark);
  text-decoration: underline;
}

.banks {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.bank-logo {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  object-fit: cover;
  background-color: #fff;
  padding: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bank-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bank {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px 10px;
  font-weight: 700;
  color: #334155;
  background: #fff;
}

.compat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.compat__item {
  font-weight: 700;
}

.step {
  position: relative;
}

.step__num {
  position: absolute;
  top: -18px;
  right: 20px;
  font-weight: 900;
  font-size: 56px;
  font-family: "Nunito", sans-serif;
  background: linear-gradient(135deg, #0697f2, #2156f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.25;
  z-index: 1;
}

.step--blue {
  border-top: 4px solid #0697f2;
}

.step--green {
  border-top: 4px solid #9ae238;
}

.step--orange {
  border-top: 4px solid #f27c16;
}

.phone {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.phone__screen {
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.phone__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.step--blue .phone__icon {
  background: linear-gradient(135deg, #0697f2, #2156f0);
}

.step--green .phone__icon {
  background: linear-gradient(135deg, #9ae238, #48a12d);
}

.step--orange .phone__icon {
  background: linear-gradient(135deg, #f27c16, #9ae238);
}

.step__title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #0f172a;
  margin-top: 1.2rem;
}

.step__desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}
.step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.panel {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.panel__chip {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--green-light));
  border-radius: 12px;
  color: #fff;
  padding: 8px 12px;
  font-weight: 800;
}

.panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  text-align: center;
}

.panel__metrics strong {
  display: block;
  color: var(--blue-dark);
  font-size: 24px;
}

.panel__metrics small {
  color: #64748b;
}

.footer {
  background: linear-gradient(135deg, #0274d8 0%, #0354a6 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
  padding: 60px 20px 30px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer__logo img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.footer__slogan {
  color: #dbeafe;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer__social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: #9ae238;
  color: #003a54;
  transform: translateY(-3px);
}

.footer__col h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col ul li {
  margin-bottom: 10px;
  color: #e0f2fe;
  font-size: 0.95rem;
}

.footer__col ul li a {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col ul li a:hover {
  color: #9ae238;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand,
  .footer__col {
    align-items: center;
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__col ul li {
    margin-bottom: 8px;
  }

  .footer__bottom {
    font-size: 0.85rem;
  }
}

.calc__rate[aria-pressed="true"].pulse {
  animation: pulse 0.4s ease-in-out 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .calc__input {
    width: 120px;
  }

  .calc__rate-value {
    font-size: 20px;
  }
}

.section--app {
  background: linear-gradient(135deg, #0697f2, #2156f0);
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.app-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-text {
  flex: 1 1 460px;
  z-index: 2;
}

.app-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.app-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 14px;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  width: 210px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-btn img {
  width: 30px;
  height: 30px;
}

.store-btn .small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 1rem;
}

.store-btn--apple {
  background: linear-gradient(135deg, #f27c16, #9ae238);
  color: #fff;
}

.store-btn--android {
  background: linear-gradient(135deg, #9ae238, #48a12d);
  color: #fff;
}

.store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.app-image {
  position: relative;
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image img {
  height: 620px;
  width: auto;
  transform: scaleX(1.1);
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.app-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(154, 226, 56, 0.4), transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  filter: blur(80px);
}

@media (max-width: 768px) {
  .app-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .app-image img {
    width: 250px;
  }

  .store-buttons {
    justify-content: center;
  }
}

.section--app {
  background: linear-gradient(135deg, #0697f2, #2156f0);
  color: #fff;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.section--app::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.15),
      transparent 70%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(154, 226, 56, 0.25),
      transparent 80%
    );
  opacity: 0.7;
  z-index: 1;
}

.app-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-text {
  flex: 1 1 460px;
  z-index: 2;
}

.app-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.app-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.app-image {
  position: relative;
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image img {
  width: 340px;
  z-index: 3;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.bg-design {
  position: absolute;
  inset: 0;
  width: 500px;
  height: 500px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #f27c16 0deg,
    #9ae238 60deg,
    #0697f2 180deg,
    #2156f0 360deg
  );
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: spinBg 18s linear infinite;
  z-index: 1;
}

@keyframes spinBg {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 14px;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  width: 210px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-btn img {
  width: 30px;
  height: 30px;
}

.store-btn .small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 1rem;
}

.store-btn--apple {
  background: linear-gradient(135deg, #f27c16, #9ae238);
  color: #fff;
}

.store-btn--android {
  background: linear-gradient(135deg, #9ae238, #48a12d);
  color: #fff;
}

.store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .app-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .app-image img {
    width: 260px;
  }

  .store-buttons {
    justify-content: center;
  }

  .bg-design {
    width: 360px;
    height: 360px;
    filter: blur(90px);
  }
}

.section--about {
  background: linear-gradient(to bottom right, #f9fbff, #e8f4ff);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1100px;
}

.about-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  flex: 1 1 420px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.about-chip {
  background: linear-gradient(135deg, #f27c16, #9ae238);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.about-metrics {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.about-metrics div {
  flex: 1 1 120px;
  text-align: center;
}

.about-metrics strong {
  display: block;
  font-size: 2.2rem;
  color: #2156f0;
  font-weight: 800;
}

.about-metrics small {
  display: block;
  font-size: 0.9rem;
  color: #444;
  margin-top: 0.3rem;
}

.about-text {
  flex: 1 1 440px;
  color: #1a1a1a;
}

.about-title {
  font-size: 2rem;
  color: #2156f0;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  border: none;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #0697f2, #2156f0);
  color: #fff;
}

.btn--outline {
  border: 2px solid #2156f0;
  background: transparent;
  color: #2156f0;
}

.btn--outline:hover {
  background: #2156f0;
  color: #fff;
}

@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .about-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-metrics div {
    flex: none;
    width: 100%;
  }

  .about-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-metrics strong {
    font-size: 1.8rem;
  }

  .about-metrics small {
    font-size: 0.85rem;
  }
}

/* ===== TIMELINE LINEAL SR CAMBIO ===== */
.timeline-line-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.timeline-line-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-line-header h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #2156F0;
}

.timeline-line-header p {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 1.05rem;
  color: #475569;
}

/* LINEA BASE */
.timeline-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    #F27C16,
    #9AE238,
    #0697F2,
    #2156F0
  );
  border-radius: 10px;
}

/* ITEM */
.timeline-node {
  position: relative;
  width: 180px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

/* POSICIONES */
.timeline-node.up {
  transform: translateY(-120px);
}

.timeline-node.down {
  transform: translateY(120px);
}

/* ICONO */
.timeline-node .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* AÑO */
.timeline-node .year {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px;
}

/* TEXTO */
.timeline-node p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* ===== COLORES ===== */
.timeline-node.orange .icon {
  background: linear-gradient(135deg, #F27C19, #9AE238);
}
.timeline-node.orange .year {
  color: #F27C16;
}

.timeline-node.green .icon {
  background: linear-gradient(135deg, #9AE238, #48A12D);
}
.timeline-node.green .year {
  color: #48A12D;
}

.timeline-node.blue .icon {
  background: linear-gradient(135deg, #0697F2, #2156F2);
}
.timeline-node.blue .year {
  color: #0697F2;
}

.timeline-node.blue-dark .icon {
  background: linear-gradient(135deg, #0583F2, #2156F0);
}
.timeline-node.blue-dark .year {
  color: #2156F0;
}

/* ==============================
   TIMELINE SR CAMBIO – MÓVIL PRO
   ============================== */
@media (max-width: 900px) {

  .timeline-line {
    flex-direction: column;
    padding: 0;
  }

  /* Línea vertical simple */
  .timeline-line::before {
    top: 0;
    left: 32px;
    transform: none;
    width: 4px;
    height: 100%;
  }

  /* Evento */
  .timeline-node {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 24px 0 24px 0;
    margin: 0;
  }

  /* Quitamos offsets desktop */
  .timeline-node.up,
  .timeline-node.down {
    transform: none;
  }

  /* Columna izquierda (icono + año) */
  .timeline-node .icon {
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-node .year {
    margin-top: 6px;
    font-size: 1.4rem;
    text-align: center;
  }

  /* Agrupamos icono + año */
  .timeline-node .icon,
  .timeline-node .year {
    width: 64px;
    text-align: center;
  }

  /* Texto */
  .timeline-node p {
    margin: 0;
    padding-top: 12px;
    line-height: 1.6;
    text-align: left;
    max-width: calc(100% - 100px);
  }
}



/* ======= ERROR 404 ======= */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fafc 0%, #e6f0ff 100%);
  text-align: center;
  padding: 80px 20px;
}

.error-404__code {
  font-size: 140px;
  font-weight: 900;
  color: #003a54;
  margin-bottom: 10px;
  line-height: 1;
}

.error-404__title {
  font-size: 28px;
  font-weight: 700;
  color: #003a54;
  margin-bottom: 10px;
}

.error-404__text {
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.error-404__btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404__btn:hover {
  background: linear-gradient(90deg, #005fcc, #00a6d1);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .error-404__code {
    font-size: 100px;
  }

  .error-404__title {
    font-size: 22px;
  }
}

.reclamos {
  background: linear-gradient(180deg, #f8fafc, #eef6ff);
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.reclamos h2 {
  text-align: center;
  font-size: 2rem;
  color: #003a54;
  font-weight: 800;
  margin-bottom: 10px;
}

.reclamos p.desc {
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.reclamos form {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.reclamos label {
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 6px;
}

.reclamos input,
.reclamos select,
.reclamos textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
  color: #000;
  margin-bottom: 20px;
}

.reclamos textarea {
  min-height: 100px;
  resize: vertical;
}

.reclamos button {
  display: inline-block;
  background: linear-gradient(135deg, #3dd277, #00a97f);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.reclamos button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.reclamos .success {
  text-align: center;
  background: #d1fae5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-weight: 600;
}

.reclamos .alert {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.reclamos .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .reclamos form {
    padding: 24px;
  }

  .reclamos .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* ayuda */
/* AYUDA */
.faq-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header .title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #2156f0;
  font-size: 2.2rem;
}

.faq-header .subtitle {
  color: #555;
  font-size: 1.05rem;
}

/* TABS CON ICONOS */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.faq-tab {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px 26px;
  min-width: 150px;
  display: flex;
  flex-direction: column; /* ICONO ARRIBA */
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #2156f0;
}

.faq-tab img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.faq-tab span {
  font-size: 1rem;
}

/* ACTIVO */
.faq-tab.active {
  background: #2156f0;
  color: #fff;
  box-shadow: 0 12px 30px rgba(33, 86, 240, 0.25);
}

.faq-tab.active img {
  filter: brightness(0) invert(1);
}

/* HOVER */
.faq-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-tab.active {
  background: #2156f0;
  color: #fff;
  box-shadow: 0 10px 25px rgba(33, 86, 240, 0.25);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section-content {
  display: none;
}

.faq-section-content.active {
  display: block;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  color: #2156f0;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-search {
  max-width: 520px;
  margin: 0 auto 50px auto;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 16px 48px 16px 20px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search input:focus {
  border-color: #2156f0;
  box-shadow: 0 0 0 3px rgba(33, 86, 240, 0.15);
}

.faq-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #64748b;
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* contacto */
/* SECCIÓN */
.sc-contact-section {
  background: #f8fbff;
  padding: 80px 20px;
}

/* HEADER */
.sc-contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.sc-contact-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--sc-blue-1);
}

.sc-contact-header h2 span {
  color: var(--sc-blue-3);
}

.sc-contact-header p {
  color: #555;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* CARDS */
.sc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.sc-contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sc-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.sc-contact-card h4 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #003a54;
}

.sc-contact-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ICONOS */
.sc-contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.sc-contact-icon.blue {
  background: var(--grad-blue);
}

.sc-contact-icon.green {
  background: var(--grad-green);
}

.sc-contact-icon.orange {
  background: var(--grad-orange);
}

.sc-contact-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

/* MAPA */
.sc-contact-map {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.sc-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
/* CARD HORIZONTAL */
.sc-contact-card.horizontal {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 32px 36px;
}

/* ICONO */
.sc-contact-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* COLORES SR CAMBIO */
.sc-contact-icon.blue {
  background: linear-gradient(135deg, #0697F2, #2156F0);
}

.sc-contact-icon.green {
  background: linear-gradient(135deg, #9AE238, #48A12D);
}

.sc-contact-icon.orange {
  background: linear-gradient(135deg, #F27C19, #9AE238);
}

/* TEXTO */
.sc-contact-text h4 {
  margin: 0 0 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #003A54;
}

.sc-contact-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* HOVER */
.sc-contact-card:hover .sc-contact-icon {
  transform: scale(1.12);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sc-contact-card.horizontal {
    flex-direction: column;
    text-align: center;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sc-contact-cards {
    grid-template-columns: 1fr;
  }

  .sc-contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-card {
    max-width: 100%;
  }
}

/* ===== NUEVA CALCULADORA ===== */
.calc__header {
  background: #fff;
  padding: 24px 20px 12px;
  text-align: center;
}

.calc__question {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.calc__rates {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.calc__rate {
  flex: 1;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  padding: 12px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc__rate--buy.active {
  background: #0583f2;
  color: #fff;
}

.calc__rate--sell.active {
  background: #9ae238;
  color: #000;
}

.calc__rate:not(.active):hover {
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.calc__rate-label {
  display: block;
  font-size: 0.9rem;
}

.calc__rate-value {
  font-size: 1.4rem;
}

.calc__cta-top {
  margin-top: 16px;
}

.btn--cta-blue,
.btn--cta-green {
  width: 100%;
  font-weight: 800;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  padding: 12px 0;
  text-transform: uppercase;
}

.btn--cta-blue {
  background: #0583f2;
  color: #fff;
}

.btn--cta-green {
  background: #9ae238;
  color: #fff;
}

/* ===== CALCULADORA COMPACTA ===== */
.calc__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 8px;
  margin-bottom: 6px;
}

.calc__currency {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.currency-label {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
  margin-bottom: 2px;
}

.currency-desc {
  font-size: 0.82rem;
  color: #475569;
}

.calc__body {
  position: relative;
  padding-top: 15px;
}

/* --- Botón de intercambio centrado entre los dos campos --- */
.calc__swap {
  position: absolute;
  top: 50px;
  left: 45%;
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.calc__swap:hover {
  background: #e8f0ff;
}

.swap-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  pointer-events: none;
}

.calc__input,
.calc__amount {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #000;
  border: none;
  background: transparent;
  text-align: right;
  width: 120px;
}

.btn--yellow {
  width: 100%;
  background: #f27c16;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 0;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn--yellow:hover {
  filter: brightness(1.1);
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0697f2 50%, #2156f0);
}

.hero__container {
  align-items: center;
}

.hero__title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.2;
}

.hero__title .highlight {
  background: linear-gradient(90deg, #f27c19 0%, #9ae238 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 20px;
  margin: 1rem 0 2rem;
  max-width: 500px;
}

.hero__features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.feature img {
  width: 24px;
  height: 24px;
}

.feature span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 0.95rem;
}

.hero__cta {
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  font-family: "Nunito", sans-serif;
  background: linear-gradient(90deg, #6ede3b 0%, #36b100 100%);
  color: #fff;
  transition: transform 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
}

.hero__sbs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  background: #f5faff;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 520px;
}

.sbs-logo {
  width: 150px;
  height: auto;
}

.sbs-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.3;
}

/* ELEMENTOS FLOTANTES DECORATIVOS */
.hero .floating {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

/* ESTRELLAS */
.hero .star {
  width: 80px;
  opacity: 0.7;
  animation: pulseStar 4s ease-in-out infinite;
}

.hero .star1 {
  top: 10%;
  left: 15%;
}
.hero .star2 {
  bottom: 15%;
  left: 5%;
}
.hero .star3 {
  bottom: 20%;
  right: 15%;
}
.hero .star4 {
  top: 25%;
  right: 8%;
}

/* MONEDAS Y BILLETE */
.hero .money {
  opacity: 0.85;
  animation: moveSide 9s ease-in-out infinite alternate;
}

/* Repeticiones con distintas posiciones */
.hero .coin1 {
  top: 20%;
  right: 60px;
  width: 60px;
  animation-delay: 0s;
}
.hero .coin2 {
  bottom: 25%;
  right: 10%;
  width: 70px;
  animation-delay: 1.5s;
}
.hero .coin3 {
  bottom: 10%;
  left: 50px;
  width: 80px;
  animation-delay: 3s;
}

.hero .bill1 {
  top: 40%;
  left: 60px;
  width: 90px;
  animation-delay: 2s;
}
.hero .bill2 {
  bottom: 30%;
  right: 70px;
  width: 100px;
  animation-delay: 4s;
}

/* === ANIMACIONES === */
@keyframes pulseStar {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes moveSide {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(40px) translateY(15px) rotate(3deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

@media (max-width: 768px) {
  /* 🔹 Orden del contenido: calculadora primero */
  .hero__container {
    display: flex;
    flex-direction: column-reverse; /* Calculadora primero */
    align-items: center;
    gap: 1.5rem;
  }

  .hero__text {
    order: 1;
    text-align: center;
  }

  .card--calculator {
    order: 2;
    margin: 0 auto;
    border-radius: 20px;
    width: 100%;
  }

  .hero .floating {
    display: none !important;
  }

  .hero__title {
    font-size: 1.9rem;
    line-height: 1.3;
    padding: 0 1rem;
    margin-bottom: 0.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }

  .hero__features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .feature {
    flex: 1 1 100px;
    justify-content: center;
  }

  .hero__sbs {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    max-width: 90%;
    margin: 1rem auto 0;
  }

  .sbs-logo {
    width: 120px;
  }

  .calc__header {
    padding: 18px 12px;
  }

  .calc__rate {
    font-size: 1rem;
    padding: 10px 8px;
  }

  .calc__row {
    padding: 10px 10px;
  }

  .calc__input,
  .calc__amount {
    font-size: 1.3rem;
    width: 130px;
  }

  .calc__swap {
    top: 60px;
    left: 50%;
    width: 40px;
    height: 40px;
  }

  .swap-icon {
    width: 30px;
    height: 30px;
  }

  .calc__savings {
    margin-top: 18px;
    font-size: 0.95rem;
    text-align: center;
  }

  .calc__savings .icon {
    width: 38px;
    height: 38px;
  }
}

/* TESTIMONIOS */
.section--testimonios-tkambio {
  background: #f8fbff;
  padding: 6rem 2rem;
}

.tk-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.tk-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tk-title {
  font-family: "Nunito", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #2156f0;
  line-height: 1.2;
}

.tk-title span {
  color: #003a54;
}

.tk-arrows {
  display: flex;
  gap: 12px;
}

.tk-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #eaf1ff;
  color: #2156f0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tk-arrow:hover {
  background: #2156f0;
  color: #fff;
}

.tk-carousel-wrapper {
  overflow: hidden;
}

.tk-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.tk-card {
  min-width: 320px;
  max-width: 360px;
  height: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #dbeafe;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.tk-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.tk-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9ae238;
}

.tk-card h4 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #2156f0;
}

.tk-card span {
  font-size: 0.85rem;
  color: #64748b;
}

.tk-stars {
  color: #fbbf24;
  font-size: 0.95rem;
}

.tk-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

/* Tablet: 2 por fila */
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 24px);
  }
}
@media (max-width: 900px) {
  .tk-layout {
    grid-template-columns: 1fr;
  }

  .tk-side {
    align-items: center;
    text-align: center;
  }

  .tk-arrows {
    justify-content: center;
  }
}

#como-cambiar {
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(6, 151, 242, 0.12),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(154, 226, 56, 0.15),
      transparent 65%
    ),
    linear-gradient(180deg, #f8fbff, #ffffff);
}
/* =========================
   PORTADA PÁGINA NOSOTROS
   ========================= */
.page-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--nosotros {
  background-image: url("/assets/img/banner/nosotros.png");
}

/* Overlay suave para legibilidad */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15)
  );
}

/* Contenido */
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  color: #fff;
}

/* Título */
.page-hero__content h1 {
  font-family: "Nunito", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 12px 0 0;
}

/* =========================
   BREADCRUMB
   ========================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #9ae238;
  text-decoration: none;
  font-weight: 600;
}

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

.breadcrumb span {
  color: #e5e7eb;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .page-hero {
    height: 200px;
  }

  .page-hero__content h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }
}

/* =========================
   MISIÓN · VISIÓN · VALORES (REFINADO)
   ========================= */
.section-mvv {
  padding: 100px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(6,151,242,0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(154,226,56,0.10), transparent 45%),
    linear-gradient(180deg, #f8fbff, #eef6ff);
}

/* CONTENEDOR */
.mvv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.mvv-card {
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow:
    0 20px 45px rgba(15,23,42,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* LÍNEA SUPERIOR */
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 4px;
  border-radius: 0 0 8px 8px;
}

/* COLORES DE LÍNEA */
.mvv-mission::before {
  background: linear-gradient(90deg, #f27c16, #9ae238);
}

.mvv-vision::before {
  background: linear-gradient(90deg, #0697f2, #2156f0);
}

.mvv-values::before {
  background: linear-gradient(90deg, #9ae238, #48a12d);
}

/* HOVER */
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(15,23,42,0.12);
}

/* ICONO */
.mvv-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* ICON COLORS */
.mvv-mission .mvv-icon {
  background: linear-gradient(135deg, #f27c16, #9ae238);
}

.mvv-vision .mvv-icon {
  background: linear-gradient(135deg, #0697f2, #2156f0);
}

.mvv-values .mvv-icon {
  background: linear-gradient(135deg, #9ae238, #48a12d);
}

/* TITULO */
.mvv-card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: #2156f0;
  margin-bottom: 14px;
}

/* TEXTO */
.mvv-card p,
.mvv-card ul li {
  font-family: "Montserrat", sans-serif;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* LISTA */
.mvv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-card ul li {
  margin: 6px 0;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mvv-container {
    grid-template-columns: 1fr;
  }

  .mvv-card {
    padding: 38px 28px;
  }
}
