body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   CONTAINER GLOBAL
========================= */

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

/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--black-800);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .4s ease, visibility .4s ease;
}

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

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader__logo {
  width: 140px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease;
}

.loader__spinner {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--gold-400);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

/* =========================
   TOPNAV
========================= */

.topnav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gold-400);
  z-index: 1000;
}

.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}

.topnav__brand img {
  height: 48px;
  display: block;
}

/* Desktop menu/actions */
.topnav__menu--desktop {
  display: flex;
  gap: 40px;
  align-items: center;
}

.topnav__menu a {
  text-decoration: none;
  color: var(--black-800);
  font-weight: 600;
  transition: var(--transition);
}

.topnav__menu a:hover {
  opacity: 0.75;
}

.topnav__actions--desktop {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn--dark {
  background: var(--black-800);
  color: var(--gold-500);
}

.btn--dark:hover {
  background: var(--black-700);
}

.btn--light {
  background: var(--white);
  color: var(--black-800);
}

.btn--light:hover {
  background: #f3f3f3;
}

/* Burger */
.topnav__burger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black-800);
}

/* Mobile panel (hidden by default) */
.topnav__mobile {
  display: none;
  background: var(--gold-400);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.topnav__mobileInner {
  padding: 18px 10px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Mobile actions/menu */
.topnav__actions--mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topnav__menu--mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topnav__menu--mobile a {
  font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .topnav__menu--desktop,
  .topnav__actions--desktop {
    display: none;
  }

  .topnav__burger {
    display: block;
  }

  .topnav__mobile.active {
    display: block;
  }

  .topnav__actions--mobile .btn {
    width: 100%;
  }
}

/* =========================
   BASE TOPNAV
========================= */

.topnav {
  position: relative;
  /* 🔥 cambia absolute por relative */
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, color 0.3s ease;
}

.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}

/* =========================
   LIGHT VERSION (como tu segunda imagen)
========================= */

.topnav--light {
  background: var(--gold-400);
}

.topnav--light .topnav__menu a {
  color: var(--black-800);
}

.topnav--light .topnav__burger {
  color: var(--black-800);
}

/* =========================
   DARK VERSION (como tu primera imagen)
========================= */

.topnav--dark {
  background: linear-gradient(135deg, #1c1c1f, #111114);
}

.topnav--dark .topnav__menu a {
  color: #fff;
}

.topnav--dark .topnav__menu a:hover {
  color: var(--gold-400);
}

.topnav--dark .topnav__burger {
  color: #fff;
}

/* BOTONES */
.btn--dark {
  background: var(--black-800);
  color: var(--gold-500);
}

.btn--light {
  background: #fff;
  color: var(--black-800);
}

/* =========================
   ACTIVE BASE
========================= */

.topnav__menu a.active {
  padding: 8px 18px;
  border-radius: 25px;
}

/* LIGHT MODE */
.topnav--light .topnav__menu a.active {
  background: var(--black-800);
  color: var(--gold-400);
}

/* DARK MODE */
.topnav--dark .topnav__menu a.active {
  background: #000;
  color: var(--gold-400);
}

/* =========================
   BOTONES DARK MODE
========================= */

.topnav--dark .btn--dark {
  background: transparent;
  border: 2px solid var(--gold-400);
  color: var(--gold-400);
}

.topnav--dark .btn--dark:hover {
  background: var(--gold-400);
  color: #111;
}

.topnav--dark .btn--light {
  background: var(--gold-400);
  color: #111;
}

.topnav--dark .btn--light:hover {
  background: #e0a800;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  background: url('/assets/img/hero-bg.svg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: white;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.3));
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero__text span {
  color: var(--gold-400);
}

.hero__text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero__text h1 {
    font-size: 32px;
  }

  .hero__text p {
    font-size: 16px;
  }
}

/* Card */

.hero__card {
  background: rgba(0, 0, 0, 0.08);
  border: #FFFFFF 1px solid;
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero__card-inner {
  display: flex;
  flex-direction: column;
}

.hero__card-logo {
  width: 60px;
  margin: 0 auto;
}

.hero__rates {
  display: flex;
  background: var(--white);
  border-radius: 60px;
  padding: 6px;
  width: 100%;
}

.hero__rates span {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black-500);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__rates span.active {
  background: var(--gold-400);
}

/* Exchange inputs */

.hero__exchange {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.hero__input {
  background: #f4f4f4;
  color: #222;
  padding: 10px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.currency {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.currency div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.currency img {
  width: 48px;
}

.currency strong {
  font-size: 20px;
  line-height: 1.1;
}

.currency small {
  font-size: 14px;
  color: var(--black-500);
  line-height: 1.1;
}

.amount {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.prefix {
  font-size: 24px;
  font-weight: 800;
  color: var(--black-700);
}

.amount__input {
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 800;
  text-align: right;
  width: auto;
  max-width: 180px;
  color: var(--black-700);
  font-family: 'Poppins', sans-serif;
  outline: none;
}

@media (max-width: 768px) {

  .currency {
    gap: 8px;
  }

  .currency img {
    width: 32px;
  }

  .amount__input {
    font-size: 18px;
  }

  .currency strong {
    font-size: 15px;
  }

  .currency small {
    font-size: 10px;
  }

  .hero__rates span {
    font-size: 12px;
  }

  .hero__swap {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
  }

  .hero__card {
    order: 1;
  }

  .hero__text {
    order: 2;
  }

  .hero-features {
    order: 3;
  }

  .hero-registered {
    order: 4;
  }

}

/* BOTÓN SWAP CENTRADO Y FLOTANTE */

.hero__swap {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-400);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 5;
}

.hero__swap i {
  cursor: pointer;
  font-size: 22px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: calc(90deg);
}

.hero__saving {
  text-align: center;
  opacity: 0.9;
}

.hero__cta {
  background: var(--gold-400);
  border: none;
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: .3s;
}

.hero__cta:hover {
  background: var(--gold-500);
}

/* features */

/* =========================
   FEATURES
========================= */

.hero-features {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
}

.hero-features__wrapper {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

/* CARD */

.feature-card {
  width: 210px;
  /* 🔥 más compacta */
  height: 180px;
  /* 🔥 proporción mejor */
  padding: 30px 20px;
  border-radius: 28px;

  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
}

/* ICONO */

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 48px;
  /* 🔥 icono más grande */
  height: 48px;
  object-fit: contain;
}

/* TEXTO */

.feature-card p {
  font-weight: 600;
  font-size: 17px;
  color: white;
  line-height: 1.3;
}

/* =========================
   MOBILE SLIDER
========================= */

@media (max-width: 768px) {

  .hero-features__wrapper {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 16px 10px 16px;
    /* 🔥 margen lateral */
    scroll-snap-type: x mandatory;
  }

  .feature-card {
    flex: 0 0 auto;
    width: 180px;
    /* 🔥 más pequeña en móvil */
    height: 160px;
    scroll-snap-align: center;
  }

  .feature-icon img {
    width: 40px;
    height: 40px;
  }

  .hero-features__wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* =========================
   REGISTERED SECTION
========================= */

.hero-registered {
  margin-top: 30px;
  width: 100%;
}

.hero-registered__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.hero-registered__text {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.hero-registered__logo img {
  height: 80px;
  object-fit: contain;
  transition: opacity .3s ease;
}

.hero-registered__logo img:hover {
  opacity: 1;
}

@media (max-width: 768px) {

  .hero-registered__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .hero-registered__text {
    font-size: 25px;
  }

}

/* =========================
   BANKS SECTION
========================= */

.banks-section {
  padding: 80px 0;
}

.banks-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */

.banks-left {
  flex: 0.6;
}

.banks-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
}

.banks-left span {
  color: var(--gold-400);
}

.banks-left p {
  margin-top: 15px;
  color: #666;
  max-width: 400px;
}

/* RIGHT CARD */

.banks-card {
  flex: 1.4;
  position: relative;
  background: #f6e4b8;
  border: 2px solid #e3b23c;
  border-radius: 22px;
  padding: 20px;
}

/* BADGES */

.badge {
  position: absolute;
  top: -18px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.badge-dark {
  background: #1f1f1f;
  color: white;
  left: 25%;
  transform: translateX(-50%);
}

.badge-gold {
  background: var(--gold-400);
  right: 25%;
  transform: translateX(50%);
}

/* GRID */

.banks-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banks-col {
  flex: 1;
  text-align: center;
}

.banks-col h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.bank-logos {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  /* 🔥 UNA SOLA LÍNEA */
  margin: 10px 0;
}

.bank-logos img {
  height: 35px;
  background: white;
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.banks-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.commission-note {
  background: var(--gold-400);
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero--dark {
  background: linear-gradient(135deg, #1c1c1f, #111114);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 20px;
  text-align: center;
}

.hero__inner {
  max-width: 850px;
  margin: 0 auto;
}

.hero--dark h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero--dark p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .banks-col {
    text-align: center;
    /* 🔥 centra texto */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 🔥 centra contenido interno */
  }

  .banks-col h4 {
    text-align: center;
  }

  .banks-col small {
    text-align: center;
    max-width: 260px;
    /* 🔥 evita que se abra demasiado */
  }

  .banks-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .banks-card {
    width: 100%;
  }

  .banks-grid {
    flex-direction: column;
  }

  .banks-divider {
    display: none;
  }

  .bank-logos {
    display: grid;
    gap: 14px;
    justify-items: center;
  }

  .bank-logos-movil {
    grid-template-columns: repeat(2, 1fr);
  }

  .commission-note {
    margin-top: 20px;
    padding: 14px 16px;
    font-size: 13px;
  }

  .banks-left h2 {
    font-size: 20px;
  }

}

.partners-section {
  background: var(--gold-500)
}

.partners-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}

/* LEFT */
.partners-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.partners-image {
  width: 100%;
  height: 100%;
  display: flex;
}

.partners-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transform: translateX(-80px);
  z-index: 1;
}

/* RIGHT */
.partners-right {
  flex: 1.6;
  padding-bottom: 20px;
  z-index: 2;
}

/* CONTENEDOR INTERNO */
.partners-right h2 {
  font-size: 45px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  line-height: 1;
}

.partners-right h2 span {
  color: white;
}

.partners-subtitle {
  font-size: 22px;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 40px;
  color: #2f2f2f;
  line-height: 1.4;
}

/* GRID 2 COLUMNAS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ITEM */
.partner-box {
  display: flex;
  gap: 10px;
}

/* CÍRCULO ÍCONO */
.icon-circle {
  min-width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 35px;
  height: auto;
  filter: brightness(0) saturate(100%);
}

/* TÍTULO DEL ITEM */
.partner-box h4 {
  margin-top: 0px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}

/* TEXTO */
.partner-box p {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 1;
  max-width: 500px;
  margin-top: 2px;
}


/* Responsive */
@media (max-width: 768px) {

  .partners-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .partners-left {
    order: -1;
    /* imagen arriba */
  }

  .partners-right {
    width: 100%;
  }

  .partners-image {
    margin-top: 50px;
  }

  .partners-image img {
    height: auto;
    width: 100%;
    transform: translateX(0px);
  }

  .partners-right h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .partners-subtitle {
    font-size: 18px;
    line-height: 1.4;
  }

  /* 🔥 IMPORTANTE */
  .partners-grid {
    grid-template-columns: 1fr;
    /* UNA SOLA COLUMNA */
    gap: 30px;
  }

  .partner-box {
    align-items: flex-start;
    text-align: left;
    /* evita que se vea raro */
  }

  .partner-box p {
    line-height: 1.4;
    /* quita ese line-height:1 que rompe todo */
  }

}

.steps-banner {
  padding: 10px;
  background: var(--black-800);
  position: relative;
  overflow: hidden;
}

.steps-container {
  max-width: 1200px;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}

.steps-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.steps-content h2 span {
  color: var(--gold-500);
  /* tu dorado */
}

.steps-content p {
  font-size: 18px;
  color: #d1d1d1;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* DECORACIÓN BILLETES */
.money {
  position: absolute;
  width: 120px;
  opacity: 0.9;
}

.money-top {
  top: -20px;
  left: 0;
}

.money-bottom {
  bottom: -20px;
  left: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps-content h2 {
    font-size: 26px;
  }

  .steps-content p {
    font-size: 16px;
  }

  .money {
    width: 80px;
  }
}

.steps {
  padding: 50px 0px;
  text-align: center;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

.step-card {
  position: relative;
}

.step-phone {
  background: #FFE8B1;
  border: 2px solid #F9B410;
  border-radius: 30px;
  padding: 40px 20px;
  position: relative;
}

.step-phone img {
  max-width: 220px;
}

.step-number {
  position: absolute;
  top: -28px;
  left: -28px;
  /* 🔥 arriba izquierda */
  width: 70px;
  height: 70px;
  background: var(--black-700);
  color: var(--gold-500);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.step-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 18px;
  color: #555;
}

/* CTA */
.steps__button {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold-500);
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.steps__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .step-phone img {
    max-width: 180px;
  }
}

.about {
  background: #FDECC3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  align-items: stretch;
}

/* LEFT */
.about__content {
  flex: 1.6;
}

.about__content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
}

.about__content h2 span {
  color: var(--gold-500);
}

.about__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about__content p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}

/* MÉTRICAS */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black-800);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 40px;
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--gold-500);
}

.stat span {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

/* BOTÓN */
.about__btn {
  display: inline-block;
  padding: 16px 35px;
  background: var(--gold-500);
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.about__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* RIGHT IMAGE */
.about__image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* 🔥 FONDO DERECHO FULL */
.about__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5vw;
  /* rompe el límite del container */
  width: 50vw;
  /* ocupa la mitad de la pantalla */
  height: 100%;
  background: var(--gold-500);
  border-top-left-radius: 80px;
  z-index: 0;
}

.about__image img {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about {
    padding: 20px;
  }

  .about__content h2 {
    line-height: 1;
  }

  .about__wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* 🔥 Quitar fondo lateral en mobile */
  .about__image::before {
    left: 5vw;
    width: 100vw;
  }

  /* Imagen centrada */
  .about__image {
    order: -1;
    /* imagen arriba */
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .about__image img {
    max-width: 320px;
    width: 100%;
  }

  /* Stats en 2 columnas */
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

}

.trusted-banks {
  padding: 50px 0;
  text-align: center;
}

.trusted-banks__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1;
}

.trusted-banks__title span {
  color: var(--gold-500);
}

/* Carousel */

.trusted-banks__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-banks__track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

.trusted-banks__track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}

.trusted-banks__card {
  min-width: 200px;
  height: 80px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1d99a;
}

.trusted-banks__card img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

/* Arrows */

.trusted-banks__arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 5;
}

.trusted-banks__prev {
  left: -20px;
}

.trusted-banks__next {
  right: -20px;
}

/* Dots */

.trusted-banks__dots {
  margin-top: 30px;
}

.trusted-banks__dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
}

.trusted-banks__dots .active {
  background: var(--gold-500);
  width: 25px;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .trusted-banks__arrow {
    display: none;
  }

  .trusted-banks__title {
    font-size: 28px;
  }

  .trusted-banks__card {
    min-width: 150px;
    height: 80px;
  }

  .trusted-banks__card img {
    max-height: 30px;
    max-width: 100px;
  }
}

.testimonials {
  overflow: hidden;
}

.testimonials__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  align-items: stretch;
  position: relative;
}

/* LEFT IMAGE */
.testimonials__left {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-end;
}

.testimonials__left img {
  width: 100%;
  max-width: 500px;
  display: block;
  position: absolute;
}

/* RIGHT */
.testimonials__right {
  flex: 1.2;
  position: relative;
}

.testimonials__right h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0px;
}

.testimonials__right h2 span {
  color: var(--gold-500);
}

.testimonials__subtitle {
  margin-top: 0px;
  font-size: 18px;
  font-weight: 600;
}

/* CAROUSEL */
.testimonials__carousel {
  position: relative;
}

.testimonials__track-wrapper {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  padding: 10px;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonials__track-wrapper {
  overflow: hidden;
  width: 100%;
}

/* CARD */
.testimonial-card {
  flex: 0 0 75%;
  max-width: 75%;
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  opacity: 0.3;
  transform: scale(0.9);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 320px;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card:not(.active) {
  opacity: 0.5;
}

/* QUOTE */
.quote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote img {
  width: 50px;
}

.testimonial-card p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.testimonial-user {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-user__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef1f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.testimonial-user__icon i {
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
}

/* Bloque nombre + rol pegadito */
.testimonial-user>div:last-child {
  text-align: left;
  /* como la referencia */
  line-height: 1.1;
}

.testimonial-user strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  /* evita saltos */
}

.testimonial-user span {
  display: block;
  margin-top: 2px;
  /* pegadito */
  color: #6b7280;
  font-size: 14px;
}

/* ARROWS */
.testimonials__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.testimonials__prev {
  left: -25px;
}

.testimonials__next {
  right: -25px;
}

/* DOTS */
.testimonials__dots {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 6px;
}

.testimonials__dots .active {
  background: var(--gold-500);
  width: 30px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .testimonials__left img {
    position: relative;
  }

  .testimonials__track-wrapper {
    display: flex;
    justify-content: center;
  }

  .testimonial-card.active {
    display: flex;
  }

  .testimonial-card:not(.active) {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    min-height: auto;
    padding: 25px 20px;
    border-radius: 28px;
    opacity: 1;
  }

  /* Layout en columna */
  .testimonials__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* Imagen arriba centrada */
  .testimonials__left {
    flex: unset;
    width: 100%;
    justify-content: center;
  }

  .testimonials__left img {
    max-width: 260px;
  }

  /* Texto centrado */
  .testimonials__right {
    width: 100%;
    text-align: center;
  }

  .testimonials__right h2 {
    font-size: 26px;
  }

  .testimonials__subtitle {
    font-size: 15px;
    font-weight: 500;
  }

  /* Carrusel limpio */
  .testimonials__track {
    padding: 0;
    gap: 0;
    display: block;
  }

  /* Quitar efecto opacidad en mobile */
  .testimonial-card:not(.active) {
    opacity: 1;
    filter: none;
  }

  /* Ocultar flechas */
  .testimonials__arrow {
    display: none;
  }

  /* Dots más pequeños */
  .testimonials__dots {
    margin-top: 20px;
  }

}

.footer {
  background: linear-gradient(135deg, #1c1c1f, #111114);
  color: #ccc;
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: #aaa;
}

/* TITULOS */
.footer-col h4 {
  color: #f0b90b;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

/* LISTAS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  color: #bbb;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f0b90b;
  padding-left: 5px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-700);
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f0b90b;
  color: #111;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #2a2a2e;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0b90b;
  font-size: 16px;
}

.contact-title {
  color: #f0b90b;
  font-weight: 600;
  font-size: 14px;
}

.contact-item p {
  margin: 5px 0 0;
  color: #ddd;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  border-bottom: 1px solid #2a2a2e;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s ease;
}

.footer-links li a span {
  color: #f0b90b;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: #f0b90b;
  padding-left: 5px;
}

.footer-links li a:hover span {
  transform: translateX(3px);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  position: relative;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
}

/* IMAGE */
.about-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  position: absolute;
  z-index: 1;
}

/* CONTENT */
.about-content {
  flex: 1.2;
  z-index: 2;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content h2 span {
  color: var(--gold-400);
}

.about-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   STATS BLOCK
========================= */

.about-stats {
  width: 100%;
  margin-bottom: 40px;
}

.stats-wrapper {
  background: var(--black-800);
  border-radius: 10px 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.stat h3 {
  color: var(--gold-400);
  font-size: 28px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.stat p {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .stats-wrapper {
    justify-content: center;
  }

  .about-image {
    flex: unset;
    width: 100%;
    justify-content: center;
  }

  .about-image img {
    max-width: 260px;
    position: relative;
  }

}

/* =========================
   PILLARS SECTION
========================= */

.pillars-section {
  background: var(--gold-500);
  padding: 120px 0;
  text-align: center;
}

.pillars-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.pillars-header p {
  font-size: 18px;
  color: #111;
  margin-bottom: 60px;
}

/* GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.pillar-card {
  background: var(--gold-500);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid var(--gold-300);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

/* ICON */
.pillar-icon {
  width: 90px;
  height: 90px;
  background: #111;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.pillar-icon img {
  filter: brightness(0) invert(1);
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

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

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