/* =========================================================
   VARIABLES GLOBALES
========================================================= */
:root {
  --amarillo-payty: #f9e713;
  --blanco: #fff;
  --gris-oscuro: #232323;
  --gris-claro: #b7b7b7;
  --texto: 1rem;
  --titulo: clamp(1.875rem, 3vw, 2.375rem);
  --subtitulo: clamp(1.375rem, 2.2vw, 1.75rem);
  --espacio: clamp(3.5rem, 7vw, 6rem);
  --ancho: 1160px;
  --borde: 1px solid rgba(255, 255, 255, .55);
  --panel: linear-gradient(115deg, #282828, #444 55%, #292929);
}

/* =========================================================
   ESTILOS BASE Y TIPOGRAFÍA
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font: 400 var(--texto)/1.55 "Poppins", sans-serif;
  background: var(--gris-oscuro);
  color: var(--blanco);
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

h1,
h2 {
  font-size: var(--titulo);
  line-height: 1.25;
  letter-spacing: -.025em;
}

h3 {
  font-size: var(--subtitulo);
  line-height: 1.3;
  letter-spacing: -.015em;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.5;
}

p+p,
p+h4,
ul+p,
h4+p,
h4+ul,
h3+p {
  margin-top: 1rem;
}

ul {
  padding-left: 1.25rem;
}

li+li {
  margin-top: .5rem;
}

strong {
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   ACCESIBILIDAD Y ESTRUCTURA GENERAL
========================================================= */
:focus-visible {
  outline: 3px solid var(--amarillo-payty);
  outline-offset: 5px;
}

.header-principal :focus-visible,
.zona-gradiente-modelos :focus-visible,
.pie-pagina :focus-visible {
  outline-color: #232323;
}

section {
  scroll-margin-top: 6rem;
}

main div,
main article,
main section {
  min-width: 0;
}

.saltar-contenido {
  position: fixed;
  top: .5rem;
  left: 1rem;
  z-index: 1100;
  padding: .75rem 1rem;
  background: #232323;
  transform: translateY(-180%);
}

.saltar-contenido:focus {
  transform: none;
}

.contenedor,
.respaldo-efecty,
.venta-agregador,
.medios-pago,
.contenedor-seguridad-efecty-pay,
.contenedor-asi-puedes,
.contenedor-cierre-agregador,
.contenedor-modelo-gateway {
  width: min(var(--ancho), calc(100% - 64px));
  margin-inline: auto;
}

/* =========================================================
   CABECERA Y NAVEGACIÓN
========================================================= */
.header-principal {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--amarillo-payty);
  color: #232323;
}

.contenedor-header {
  max-width: 1224px;
  min-height: 76px;
  margin: auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-header {
  flex-shrink: 0;
}

.logo-header img {
  width: 140px;
}

.navegacion-principal {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.navegacion-principal a {
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1.5;
  padding: .5rem 0;
}

.navegacion-principal a:hover {
  text-decoration: underline;
  text-underline-offset: .4rem;
}

.boton-menu-mobile {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  width: 44px;
  height: 44px;
}

.boton-menu-mobile span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #232323;
}

/* =========================================================
   PRESENTACIÓN DE EFECTY PAY
========================================================= */
.bloque-que-es-payty {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
  max-width: 990px;
  margin: auto;
  padding-top: var(--espacio);
}

.contenido-que-es-payty h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35em;
}

.logo-efecty-pay-principal {
  width: 245px;
  max-width: 56%;
}

.contenido-que-es-payty p {
  max-width: 68ch;
  margin-top: 1.5rem;
  text-align: justify;
}

/* =========================================================
   EFECTY PAY PARA TU NEGOCIO
========================================================= */
.payty-para-ti {
  max-width: 1000px;
  width: calc(100% - 64px);
  margin: var(--espacio) auto 0;
}

.tarjeta-payty-para-ti {
  width: fit-content;
  max-width: 100%;
  min-height: 105px;
  padding: 1.25rem 2rem;
  border: var(--borde);
  border-radius: 25px;
  background: linear-gradient(#555, #252525);
}

.titulo-payty-para-ti {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3em;
}

.etiqueta-payty {
  display: inline-flex;
  background: var(--amarillo-payty);
  border-radius: 10px;
  padding: .3rem .7rem;
}

.logo-efecty-pay-negativo {
  width: 175px;
}

.conexion-payty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
  margin: 2rem 1.5rem 0;
  padding: 1.5rem 0 2rem 2rem;
  border-left: var(--borde);
  border-bottom: var(--borde);
  border-radius: 0 0 0 24px;
}

.texto-conexion-payty {
  max-width: 48ch;
}

.payty-lo-hace-posible {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icono-lo-hace-posible {
  width: 60px;
  flex-shrink: 0;
}

.mensaje-efecty-pay-posible {
  font-size: var(--titulo);
  font-weight: 700;
  line-height: 1.2;
  color: var(--amarillo-payty);
}

.linea-logo-efecty-pay {
  display: flex;
  align-items: center;
  gap: .2em;
}

.logo-efecty-pay-posible {
  width: 190px;
  max-width: 75%;
}

/* =========================================================
   RESPALDO Y COBERTURA
========================================================= */
.respaldo-efecty {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: var(--espacio);
  max-width: 1040px;
}

.titulo-respaldo-efecty {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.flecha-respaldo {
  width: 14px;
  margin-top: .4rem;
  flex-shrink: 0;
}

.titulo-respaldo-efecty h2 {
  font-weight: 300;
  max-width: 15ch;
}

.contenido-respaldo-efecty>p {
  text-align: left;
  text-align-last: left;
  margin: 1.5rem 0 0 30px;
  max-width: 29ch;
}

.metricas-respaldo-efecty {
  display: grid;
  gap: 1rem;
}

.metrica-efecty {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: white;
  color: #232323;
  border-radius: 70px;
}

.icono-metrica {
  display: grid;
  place-items: center;
}

.icono-metrica img {
  width: 68px;
  max-height: 80px;
  object-fit: contain;
}

.contenido-metrica {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contenido-metrica strong {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.contenido-metrica span {
  font-size: 1rem;
  line-height: 1.35;
  margin-top: .35rem;
}

/* =========================================================
   MODELO AGREGADOR
========================================================= */
.modelo-agregador {
  margin-top: var(--espacio);
}

.encabezado-modelo-agregador {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.numero-modelo-agregador,
.numero-modelo-gateway {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: #616161;
  user-select: none;
}

.titulo-modelo-agregador {
  flex: 1;
  text-align: center;
}

.titulo-modelo-agregador h2 {
  font-weight: 300;
}

.titulo-modelo-agregador p {
  font-size: var(--subtitulo);
  margin-top: .25rem;
}

.opciones-modelo-agregador {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 0 2rem 2rem;
}

.opciones-modelo-agregador::before {
  content: "";
  position: absolute;
  inset: 64px 0 0;
  z-index: -1;
  border: var(--borde);
  border-radius: 0 42px 42px;
  background: linear-gradient(130deg, #252525, #454545);
  pointer-events: none;
}

.tarjeta-modelo-agregador {
  position: relative;
}

.grafico-modelo-agregador {
  width: 100%;
  max-width: 380px;
}

.tarjeta-modelo-agregador h3 {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: clamp(1.625rem, 2.5vw, 2rem);
  font-weight: 300;
}

/* =========================================================
   REGISTRO Y BOTONES DE SOLICITUD
========================================================= */
.registro-modelo {
  margin: 1.5rem 0;
}

.registro-modelo>p {
  margin-bottom: .75rem;
  text-wrap: balance;
}

.acciones-registro {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.boton-registro,
.boton-solicitud-agregador {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  max-width: 100%;
  padding: .65rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 30px;
  background: var(--amarillo-payty);
  color: #232323;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.boton-registro:hover,
.boton-solicitud-agregador:hover {
  background: #fff;
}

/* =========================================================
   DESCRIPCIÓN DEL MODELO AGREGADOR
========================================================= */
.descripcion-modelo-agregador h4 {
  margin-bottom: 1rem;
}

/* =========================================================
   RÓTULOS DE MODALIDADES DE VENTA
========================================================= */
.etiqueta-venta-presente,
.etiqueta-venta-no-presente {
  width: min(100%, 22rem);
  min-height: 4.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-inline: auto;
  padding: 1rem 2rem;
  color: var(--amarillo-payty);
  font-size: var(--subtitulo);
  line-height: 1.3;
  text-align: center;
  border: 1px solid var(--amarillo-payty);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

/* =========================================================
   TAP TO PHONE
========================================================= */
.titulo-tap-to-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bullet-tap-to-phone {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}

.texto-tap-to-phone {
  margin-top: 1.5rem;
}

.proceso-tap-to-phone {
  width: min(985px, 100%);
  margin: 1.5rem auto 0;
}

.proceso-tap-to-phone img {
  width: 100%;
}

/* =========================================================
   BENEFICIOS Y VENTA NO PRESENTE
========================================================= */
.venta-agregador {
  margin-top: var(--espacio);
}

.titulo-beneficios-agregador {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-align: center;
  margin-bottom: 2rem;
  font-size: calc(var(--titulo) + .25rem);
}

.titulo-beneficios-gateway,
.encabezado-medios-pago h2 {
  font-size: var(--titulo);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.etiqueta-venta-no-presente {
  margin-right: 5%;
}

.subtitulo-venta-no-presente {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.flecha-venta-no-presente {
  width: 14px;
  flex-shrink: 0;
}

.barra-venta-no-presente {
  flex: 1;
  border: var(--borde);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}

.argumentos-venta-no-presente {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.argumento-venta-no-presente {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid #666;
  border-radius: 40px;
  background: var(--panel);
}

.icono-check-venta {
  width: 32px;
  flex-shrink: 0;
}

.beneficios-venta-no-presente {
  padding: 2.5rem 1.5rem;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(#232323, #494949);
}

.lista-beneficios-venta,
.beneficios-gateway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.beneficio-venta,
.beneficio-gateway {
  text-align: center;
}

.capsula-icono-beneficio,
.icono-beneficio-gateway {
  width: min(150px, 100%);
  height: 44px;
  margin: 0 auto 1rem;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #717171;
  border-radius: 30px;
}

.capsula-icono-beneficio img {
  width: auto;
  max-height: 30px;
}

.capsula-icono-beneficio .logo-breb-beneficio {
  width: 80px;
}

.beneficio-venta p,
.beneficio-gateway p {
  font-size: .9375rem;
  line-height: 1.4;
}

/* =========================================================
   MEDIOS DE PAGO DEL AGREGADOR
========================================================= */
.medios-pago {
  margin-top: var(--espacio);
}

.mapa-medios-pago {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 4rem;
  row-gap: 1.5rem;
}

.encabezado-medios-pago {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: .5rem;
}

.caracteristica-medio {
  padding: 1.25rem 1.5rem;
  border-left: var(--borde);
  border-bottom: var(--borde);
  border-radius: 0 0 0 20px;
}

.seleccion-medio-pago {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.seleccion-medio-pago>h3 {
  font-size: var(--titulo);
  font-weight: 300;
}

.contenido-seleccion-medio-pago {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.lista-medios-seleccion {
  display: grid;
  gap: .75rem;
}

.opcion-medio-seleccion {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: .875rem;
  background: #666;
  border-radius: 9px;
}

.icono-medio-seleccion {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.texto-medio-seleccion {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.texto-medio-seleccion strong {
  font-size: 1.125rem;
}

.texto-medio-seleccion span {
  font-size: .875rem;
  line-height: 1.4;
}

.etiqueta-nuevo {
  color: var(--amarillo-payty);
  font-size: .875rem;
  font-weight: 700;
}

.logos-tarjetas {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logos-tarjetas img {
  width: auto;
  height: 19px;
}

/* =========================================================
   TRANSFERENCIAS BRE-B
========================================================= */
.transferir-breb {
  border-left: var(--borde);
  border-radius: 20px 0 0 20px;
  padding: 0 0 1rem 2rem;
}

.transferir-breb h4 {
  font-size: var(--titulo);
  line-height: 1.25;
}

.transferir-breb h4 br {
  display: none;
}

.subtitulo-transferir-breb {
  margin-top: 1rem;
}

.selector-transferencia-breb {
  margin-top: 1.5rem;
  font-weight: 700;
}

.ayuda-transferencia-breb {
  margin-top: .4rem;
  color: var(--amarillo-payty);
}

.contenido-transferencia-breb {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 85px;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.pasos-transferencia-breb {
  display: grid;
  gap: 1rem;
}

.paso-transferencia {
  display: flex;
  align-items: start;
  gap: .75rem;
}

.numero-paso {
  display: grid;
  place-items: center;
  width: 36px;
  height: 40px;
  flex: 0 0 36px;
  border-radius: 7px;
  background: #fff;
  color: #232323;
  font-weight: 700;
  font-size: 1.25rem;
}

.codigo-qr-demo {
  width: 85px;
  height: 85px;
  border: 8px solid white;
  background: #8d8d8d;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ddd;
}

.informacion-transferencia-breb {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #777;
  display: grid;
  gap: .4rem;
}

/* =========================================================
   SEGURIDAD 3DS Y PORTAL DE COMERCIOS
========================================================= */
.seguridad-efecty-pay {
  margin-top: var(--espacio);
}

.titulo-seguridad-3ds,
.titulo-merchant-hub {
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 1.5rem 2rem;
  border: var(--borde);
  border-radius: 28px 28px 0 0;
  background: var(--panel);
  margin-left: 1rem;
}

.titulo-merchant-hub {
  margin: 0 1rem 0 auto;
}

.tarjeta-seguridad-3ds,
.tarjeta-merchant-hub {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem;
  border: var(--borde);
  border-radius: 28px;
  background: var(--panel);
}

.icono-seguridad {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(#858585, #555);
}

.icono-seguridad img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bloque-merchant-hub {
  margin-top: 3rem;
}

.tarjeta-merchant-hub {
  align-items: start;
}

.contenido-portal {
  flex: 1;
}

/* =========================================================
   POSIBILIDADES DE USO
========================================================= */
.asi-puedes {
  margin-top: var(--espacio);
}

.bloque-asi-puedes {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 2rem;
}

.titulo-vertical-asi-puedes {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: var(--titulo);
  font-weight: 700;
  text-align: center;
}

.linea-asi-puedes-svg {
  display: none;
}

.lista-asi-puedes {
  border-left: var(--borde);
  border-radius: 24px 0 0 24px;
  padding: 1.5rem 0 1.5rem 2rem;
}

.lista-asi-puedes p {
  position: relative;
  padding-left: 1.25rem;
}

.lista-asi-puedes p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* =========================================================
   CARRUSELES DE INFORMACIÓN Y GATEWAY
========================================================= */
.carrusel-informacion-pay,
.contenedor-carrusel-gateway-final {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: .5rem;
  align-items: center;
  max-width: 800px;
  margin: 3rem auto 0;
}

.selector-informacion-pay,
.selector-gateway-final {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.item-selector-pay,
.item-selector-gateway-final {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 20px;
}

.estado-selector,
.estado-gateway-final {
  width: 100%;
}

.estado-activo,
.estado-gateway-activo {
  display: none;
}

.activo>.estado-activo,
.activo>.estado-gateway-activo {
  display: block;
}

.activo>.estado-inactivo,
.activo>.estado-gateway-inactivo {
  display: none;
}

.flecha-carrusel-pay,
.flecha-gateway-final {
  grid-row: 1;
  width: 44px;
  height: 48px;
  border: 0;
  background: transparent;
  font-size: 3rem;
  line-height: 1;
  border-radius: 8px;
}

.flecha-carrusel-anterior,
.flecha-gateway-final-anterior {
  grid-column: 1;
}

.flecha-carrusel-siguiente,
.flecha-gateway-final-siguiente {
  grid-column: 3;
}

.flecha-carrusel-pay:hover,
.flecha-gateway-final:hover {
  background: rgba(255, 255, 255, .12);
}

.estado-carrusel {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* =========================================================
   REGISTRO Y DOCUMENTACIÓN REQUERIDA
========================================================= */
.zona-gradiente-modelos {
  margin-top: var(--espacio);
  background: var(--gris-claro);
}

.cierre-agregador {
  padding: 3rem 0 var(--espacio);
  background: linear-gradient(#232323 0%, #3a3a3a 45%, #707070 80%, #b7b7b7 100%);
}

.intro-cierre-agregador {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

.intro-cierre-agregador p {
  text-align: center;
  text-align-last: center;
}

.texto-cierre-agregador {
  margin-top: 1.5rem;
}

.texto-destacado-cierre {
  color: var(--amarillo-payty);
}

/* =========================================================
   AYUDA DURANTE EL REGISTRO
========================================================= */
.ayuda-registro {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: var(--borde);
  border-radius: 28px;
  background: linear-gradient(135deg, #414141, #252525);
  color: #fff;
  font-size: .9375rem;
  line-height: 1.6;
  text-align: center;
}

/* =========================================================
   REGISTRO DE PERSONAS NATURALES Y JURÍDICAS
========================================================= */
.tipos-persona-agregador {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.tipo-persona {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 2rem;
  border: var(--borde);
  border-radius: 28px;
  background: rgba(35, 35, 35, .92);
}

.tipo-persona h3 br {
  display: none;
}

.flecha-tipo-persona-svg {
  width: 32px;
  margin: 1rem 0 1.5rem;
}

.tipo-persona ul {
  margin-bottom: 1.5rem;
}

.tipo-persona .boton-solicitud-agregador {
  margin-top: auto;
}

/* =========================================================
   MODELO GATEWAY
========================================================= */
.modelo-gateway {
  padding: 2rem 0 var(--espacio);
  color: #232323;
}

.numero-modelo-gateway {
  position: absolute;
  left: 0;
  bottom: calc(100% - 32px);
  margin: 0;
  font-size: clamp(10rem, 18vw, 15rem);
  line-height: .85;
  color: #747474;
  z-index: 0;
}

.intro-modelo-gateway {
  padding-top: calc(clamp(10rem, 18vw, 15rem) * .85 - 52px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.tarjeta-titulo-gateway {
  position: relative;
  isolation: isolate;
}

.tarjeta-titulo-gateway .registro-modelo {
  position: relative;
  z-index: 1;
}

.tarjeta-titulo-gateway h2 {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: white;
}

.tarjeta-titulo-gateway h2 span,
.tarjeta-titulo-gateway h2 strong {
  display: block;
}

.tarjeta-titulo-gateway h2 span {
  font-weight: 300;
}

.gateway-estadisticas {
  position: relative;
  z-index: 1;
  width: 100%;
}

.tarjeta-descripcion-gateway {
  background: linear-gradient(#454545, #626262);
  border: var(--borde);
  border-radius: 32px;
  padding: 2rem;
  color: white;
}

.recomendado-gateway {
  margin-top: var(--espacio);
}

.recomendado-gateway>h3 {
  font-size: var(--titulo);
  margin-bottom: 2rem;
  text-align: center;
}

.icono-beneficio-gateway img {
  width: 42px;
  height: 32px;
  object-fit: contain;
}

/* =========================================================
   VENTA NO PRESENTE - GATEWAY
========================================================= */
.venta-gateway {
  margin-top: var(--espacio);
}

.titulo-venta-no-presente {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-left: 1rem;
  padding: 1.25rem 2rem;
  font-size: var(--titulo);
  font-weight: 400;
  border: 1px solid #373737;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.contenido-venta-no-presente {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.conexion-venta-gateway {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}

.tarjeta-venta-no-presente {
  padding: 2rem;
  border: 1px solid white;
  border-radius: 28px;
  background: linear-gradient(135deg, #414141, #252525);
  color: white;
}

.tarjeta-venta-derecha {
  margin-top: 3rem;
}

/* =========================================================
   MEDIOS DE PAGO - GATEWAY
========================================================= */
.medios-pago-gateway {
  margin-top: var(--espacio);
  text-align: center;
}

.titulo-medios-pago-gateway {
  width: fit-content;
  margin: auto;
  padding: 1rem 2rem 1.5rem;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(#444, transparent);
  color: white;
  font-size: var(--titulo);
}

.intro-medios-pago-gateway {
  max-width: 790px;
  margin: 1rem auto 2rem;
  font-weight: 700;
}

.opciones-medios-gateway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 850px;
  margin: auto;
}

.imagen-icono-medio-gateway {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto .75rem;
}

.medio-gateway h4 {
  color: #fff;
}

/* =========================================================
   MODELOS DE IMPLEMENTACIÓN
========================================================= */
.modelos-implementacion {
  margin-top: var(--espacio);
}

.encabezado-modelos-implementacion {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3.5rem;
  text-align: left;
}

.encabezado-modelos-implementacion h3 {
  font-size: var(--titulo);
}

.encabezado-modelos-implementacion p {
  margin-top: .5rem;
  font-size: var(--subtitulo);
  line-height: 1.3;
  text-align: justify;
}

.grid-modelos-implementacion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.modelo-implementacion-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.linea-modelo-implementacion {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  border-left: 1px solid #232323;
  border-bottom: 1px solid #232323;
  border-bottom-left-radius: 32px;
  pointer-events: none;
}

.contenido-modelo-implementacion h4 {
  font-size: var(--subtitulo);
  line-height: 1.25;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

/* =========================================================
   CARRUSEL GATEWAY Y CONTACTO COMERCIAL
========================================================= */
.carrusel-gateway-final {
  margin-top: var(--espacio);
}

.boton-conoce-mas-gateway {
  grid-column: 1 / -1;
  display: block;
  max-width: 100%;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  border: 1px solid white;
  border-radius: 40px;
  background: linear-gradient(100deg, #494949, #666);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
  width: min(100%, 42rem);
}

.boton-conoce-mas-gateway:hover {
  background: #232323;
}

/* =========================================================
   COMPARACIÓN DE MODELOS Y TARIFAS
========================================================= */
.comparacion-modelos {
  margin-top: var(--espacio);
}

.comparacion-modelos>h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.opciones-comparacion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.opciones-comparacion article {
  padding: 2rem;
  border: 1px solid #777;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.descripcion-comparacion {
  margin-top: 1rem;
}

.enlace-consultar-tarifas {
  display: inline-block;
  margin-top: .75rem;
  color: var(--amarillo-payty);
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.enlace-consultar-tarifas:hover,
.enlace-consultar-tarifas:focus-visible {
  color: #fff;
}

.comparacion-modelos>p {
  max-width: 950px;
  margin: 2rem auto 0;
  text-align: justify;
}

/* =========================================================
   FOOTER Y REDES SOCIALES
========================================================= */
.pie-pagina {
  background: var(--amarillo-payty);
  padding: 1.75rem 0;
}

.contenedor-footer {
  width: min(var(--ancho), calc(100% - 64px));
  margin: auto;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.logo-efecty-footer img {
  width: 140px;
}

.redes-sociales {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.redes-sociales a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.redes-sociales img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* =========================================================
   DIAGRAMA DE MEDIOS DE PAGO
========================================================= */
.diagrama-medios-pago,
.fila-diagrama-medios {
  display: contents;
}

.trazado-medios {
  display: none;
}

/* =========================================================
   DATOS DE ATENCIÓN AL CLIENTE
========================================================= */
.datos-ayuda-registro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .3);
  text-align: left;
}

.datos-ayuda-registro p {
  margin: 0 0 .5rem;
}

.datos-ayuda-registro a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

/* =========================================================
   DISTRIBUCIÓN DEL CONTENIDO AGREGADOR
========================================================= */
.columna-venta-presente>.registro-modelo {
  margin: 8rem 0 0;
}

.columna-venta-presente>.registro-modelo>p {
  text-align: center;
  text-align-last: center;
}

.contenido-agregador-completo {
  grid-column: 1 / -1;
  min-width: 0;
  padding: 0 clamp(1.5rem, 3.5vw, 3rem);
}

.contenido-agregador-completo .descripcion-modelo-agregador {
  margin: 0;
  padding: 0;
  border: 0;
}

/* =========================================================
   CONTENEDOR TAP TO PHONE
========================================================= */
.bloque-tap-to-phone {
  margin-top: 3rem;
}

.bloque-tap-to-phone > .etiqueta-venta-presente {
  margin-right: 5%;
}

.tarjeta-tap-to-phone {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: var(--borde);
  border-radius: 28px;
  background: linear-gradient(130deg, #252525, #454545);
}

/* =========================================================
   ALINEACIÓN DE BOTONES DE REGISTRO
========================================================= */
.columna-venta-presente>.registro-modelo .acciones-registro {
  flex-direction: column;
  align-items: center;
}

/* =========================================================
   DISTRIBUCIÓN DE LÍNEAS DE TEXTO
========================================================= */
p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* =========================================================
   BENEFICIOS TAP TO PHONE
========================================================= */
.beneficios-tap-to-phone {
  margin-top: 1rem;
}

/* =========================================================
   ENLACE DE TÉRMINOS DEL MODELO AGREGADOR
========================================================= */
.enlace-terminos-agregador {
  display: table;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--amarillo-payty);
  font-size: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .15s ease;
}

.enlace-terminos-agregador:hover,
.enlace-terminos-agregador:focus-visible {
  color: #fff;
}

/* =========================================================
   ENLACES DE DOCUMENTACIÓN
========================================================= */
.documentacion-modelo {
  margin-top: 0;
  padding-top: 0;
}

.documentacion-modelo::before {
  content: "";
  display: block;
  width: 75%;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: #888;
}

.boton-documentacion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 1rem 1.25rem;
  border: 1px solid #c5c5c5;
  border-radius: 14px;
  background: #d3d3d3;
  color: #111;
  font-weight: 700;
  line-height: 1.35;
}

.boton-documentacion>span:first-child {
  min-width: 0;
  text-wrap: balance;
}

.boton-documentacion>span:last-child {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.boton-documentacion:hover {
  background: #fff;
}

.documentacion-modelo .boton-documentacion+.boton-documentacion {
  margin-top: 1rem;
}

/* =========================================================
   POLÍTICA DE TRATAMIENTO DE DATOS
========================================================= */
.datos-ayuda-registro .politica-datos {
  margin-top: 0;
  text-align: left;
}

.datos-ayuda-registro .politica-datos a {
  color: var(--amarillo-payty);
  font-size: inherit;
  font-weight: 400;
}

.datos-ayuda-registro .politica-datos a:hover,
.datos-ayuda-registro .politica-datos a:focus-visible {
  color: #fff;
}

/* =========================================================
   DISTRIBUCIÓN Y CERTIFICACIONES DEL FOOTER
========================================================= */
.contenedor-footer>.logo-efecty-footer {
  justify-self: start;
}

.contenedor-footer>.redes-sociales {
  justify-self: end;
  justify-content: flex-end;
}

.certificaciones-footer {
  --altura-certificacion: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: .875rem 1.25rem;
}

.certificacion-logo {
  position: relative;
  display: block;
  height: var(--altura-certificacion);
  overflow: hidden;
  flex-shrink: 0;
}

.certificacion-icontec {
  width: calc(var(--altura-certificacion) * 568 / 840);
}

.certificacion-pci {
  width: calc(var(--altura-certificacion) * 842 / 326);
}

.certificaciones-footer img {
  position: absolute;
  max-width: none;
  height: auto;
}

.certificacion-icontec img {
  width: calc(var(--altura-certificacion) * 1080 / 840);
  left: calc(var(--altura-certificacion) * -256 / 840);
  top: calc(var(--altura-certificacion) * -120 / 840);
}

.certificacion-pci img {
  width: calc(var(--altura-certificacion) * 1080 / 326);
  left: calc(var(--altura-certificacion) * -119 / 326);
  top: calc(var(--altura-certificacion) * -377 / 326);
}

/* =========================================================
   ALINEACIÓN DE PÁRRAFOS Y TEXTO SIN SALTO
========================================================= */
p {
  text-align: justify;
  text-align-last: start;
}

.texto-sin-salto {
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE - HASTA 1024 PX
========================================================= */
@media (max-width: 1024px) {
  .conexion-payty {
    gap: 2rem;
  }

  .icono-lo-hace-posible {
    display: none;
  }

  .respaldo-efecty {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 2rem;
  }

  .metrica-efecty {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 1rem 1.25rem;
  }

  .icono-metrica img {
    width: 52px;
  }

  .opciones-modelo-agregador {
    padding-inline: 1.5rem;
    gap: 1.5rem;
  }

  .contenido-seleccion-medio-pago {
    gap: 2rem;
  }

  .contenido-transferencia-breb {
    grid-template-columns: 1fr;
  }

  .codigo-qr-demo {
    margin-left: 48px;
  }

  .intro-modelo-gateway {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
  }

  .tarjeta-descripcion-gateway {
    padding: 1.5rem;
  }

  .grid-modelos-implementacion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   ESCRITORIO - DESDE 769 PX
========================================================= */
@media (min-width: 769px) {
  /* =========================================================
     COMPARACIÓN DE MODELOS - ESCRITORIO
  ========================================================= */
  .opciones-comparacion {
    row-gap: 1.25rem;
  }

  .opciones-comparacion article {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }

  .descripcion-comparacion {
    margin-top: 0;
  }

  /* =========================================================
     CARRUSELES DE INFORMACIÓN Y GATEWAY - ESCRITORIO
  ========================================================= */
  .carrusel-informacion-pay,
  .contenedor-carrusel-gateway-final {
    grid-template-columns: minmax(0, 128px) 44px minmax(0, 286px) 44px minmax(0, 128px);
    gap: 24px;
    max-width: 726px;
    justify-content: center;
  }

  .selector-informacion-pay,
  .selector-gateway-final {
    display: contents;
  }

  .item-selector-pay,
  .item-selector-gateway-final {
    grid-row: 1;
    justify-self: center;
  }

  .item-selector-pay:nth-child(1),
  .item-selector-gateway-final:nth-child(1) {
    grid-column: 1;
  }

  .item-selector-pay:nth-child(2),
  .item-selector-gateway-final:nth-child(2) {
    grid-column: 3;
  }

  .item-selector-pay:nth-child(3),
  .item-selector-gateway-final:nth-child(3) {
    grid-column: 5;
  }

  .flecha-carrusel-anterior,
  .flecha-gateway-final-anterior {
    grid-column: 2;
  }

  .flecha-carrusel-siguiente,
  .flecha-gateway-final-siguiente {
    grid-column: 4;
  }

  .flecha-carrusel-pay,
  .flecha-gateway-final {
    height: 64px;
    font-size: 3.5rem;
    color: white;
  }

  /* =========================================================
     MODELO AGREGADOR - ESCRITORIO
  ========================================================= */
  .encabezado-modelo-agregador {
    position: relative;
    display: block;
    min-height: clamp(230px, 23vw, 300px);
    margin-bottom: 0;
    padding-left: 100px;
  }

  .titulo-modelo-agregador {
    text-align: right;
  }

  .titulo-modelo-agregador h2 {
    font-size: clamp(2.75rem, 5.7vw, 4.75rem);
    line-height: 1.1;
    letter-spacing: -.045em;
  }

  .titulo-modelo-agregador p {
    text-align: right;
    text-align-last: right;
    margin-top: .5rem;
    font-size: clamp(1.875rem, 3.6vw, 3rem);
    line-height: 1.2;
    font-weight: 300;
  }

  .numero-modelo-agregador {
    position: absolute;
    left: 0;
    bottom: -52px;
    font-size: clamp(10rem, 18vw, 15rem);
    line-height: .85;
    z-index: 0;
  }

  .opciones-modelo-agregador {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 0 0 2rem;
  }

  .opciones-modelo-agregador::before {
    inset: 4.5rem 0 0;
    border-radius: 0 55px 55px;
  }

  .columna-agregador {
    position: relative;
    z-index: 1;
  }

  .grafico-modelo-agregador {
    width: 100%;
    max-width: none;
  }

  .tarjeta-modelo-agregador h3 {
    top: clamp(1.5rem, 3vw, 2.5rem);
    left: 7%;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .columna-venta-presente {
    padding-right: 2rem;
  }

  /* =========================================================
     MEDIOS DE PAGO - ESCRITORIO
  ========================================================= */
  .medios-pago {
    position: relative;
    margin-top: 0;
  }

  .mapa-medios-pago {
    display: block;
  }

  .diagrama-medios-pago {
    display: block;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .encabezado-medios-pago {
    position: relative;
    width: fit-content;
    max-width: 76%;
    margin: 0 auto 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 0;
    background: transparent;
  }

  .fila-diagrama-medios {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24%;
    padding: 1rem 7% 4rem;
    margin-bottom: 1rem;
  }

  .caracteristica-medio {
    border: 0;
    padding: 0;
    border-radius: 0;
  }

  .seleccion-medio-pago {
    position: relative;
    margin-top: 0;
    padding: 2rem 2rem 0;
  }

  .transferir-breb {
    position: relative;
    border: 0;
    border-radius: 0;
    padding-left: 1.5rem;
  }

  .trazado-medios {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  /* =========================================================
     TAP TO PHONE - ESCRITORIO
  ========================================================= */
  .tarjeta-tap-to-phone .bullet-tap-to-phone {
    display: none;
  }

  .tarjeta-tap-to-phone .texto-tap-to-phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .tarjeta-tap-to-phone .beneficios-tap-to-phone {
    margin-top: 0;
    padding-left: 2rem;
    border-left: var(--borde);
  }
}

/* =========================================================
   RESPONSIVE - HASTA 768 PX
========================================================= */
@media (max-width: 768px) {
  /* =========================================================
     COMPARACIÓN Y DESCRIPCIÓN AGREGADOR - RESPONSIVE
  ========================================================= */
  .opciones-comparacion .documentacion-modelo {
    margin-top: 1.25rem;
  }

  .contenido-agregador-completo .descripcion-modelo-agregador {
    border-bottom-left-radius: 20px;
  }
  /* =========================================================
     TIPOGRAFÍA Y CONTENEDORES - RESPONSIVE
  ========================================================= */
  :root {
    --titulo: 1.875rem;
    --subtitulo: 1.5rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .contenedor,
  .respaldo-efecty,
  .venta-agregador,
  .medios-pago,
  .contenedor-seguridad-efecty-pay,
  .contenedor-asi-puedes,
  .contenedor-cierre-agregador,
  .contenedor-modelo-gateway,
  .payty-para-ti {
    width: calc(100% - 40px);
  }

  /* =========================================================
     CABECERA Y MENÚ - RESPONSIVE
  ========================================================= */
  .contenedor-header {
    min-height: 68px;
    padding: 10px 20px;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .logo-header img {
    width: 120px;
  }

  .boton-menu-mobile {
    display: block;
  }

  .navegacion-principal {
    display: none;
    flex: 0 0 100%;
    align-items: stretch;
    gap: .25rem;
    padding-bottom: .5rem;
  }

  .navegacion-principal.activo {
    display: flex;
    flex-direction: column;
  }

  .navegacion-principal a {
    padding: .65rem 0;
  }

  /* =========================================================
     PRESENTACIÓN DE EFECTY PAY - RESPONSIVE
  ========================================================= */
  .bloque-que-es-payty {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2.5rem;
  }

  .imagen-que-es-payty {
    display: none;
  }

  .contenido-que-es-payty {
    text-align: center;
  }

  .contenido-que-es-payty h1 {
    justify-content: center;
  }

  .contenido-que-es-payty h1>span:first-child {
    flex-basis: 100%;
  }

  .logo-efecty-pay-principal {
    width: 235px;
    max-width: 80%;
  }

  .contenido-que-es-payty p {
    text-align: justify;
  }

  .tarjeta-payty-para-ti {
    padding: 1.25rem;
    margin: auto;
  }

  .logo-efecty-pay-negativo {
    width: 160px;
  }

  .conexion-payty {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 1.5rem 1.25rem;
  }

  .payty-lo-hace-posible {
    justify-content: center;
  }

  /* =========================================================
     RESPALDO Y COBERTURA - RESPONSIVE
  ========================================================= */
  .respaldo-efecty {
    grid-template-columns: 1fr;
  }

  .titulo-respaldo-efecty h2 {
    max-width: 22ch;
  }

  .contenido-respaldo-efecty>p {
    max-width: none;
  }

  .metrica-efecty {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .75rem;
    padding: 1rem 1.25rem;
  }

  .contenido-metrica strong {
    font-size: 2.5rem;
  }

  .contenido-metrica span {
    font-size: .9375rem;
  }

  .contenido-metrica br {
    display: none;
  }

  /* =========================================================
     ENCABEZADOS DE LOS MODELOS - RESPONSIVE
  ========================================================= */
  .encabezado-modelo-agregador {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding-bottom: 6rem;
  }

  .numero-modelo-agregador {
    position: absolute;
    left: max(1.5rem, calc((100% - 380px) / 2 + 1.5rem));
    bottom: -1.25rem;
    line-height: 1;
    z-index: 0;
  }

  .columna-agregador {
    position: relative;
    z-index: 1;
  }

  .numero-modelo-agregador,
  .numero-modelo-gateway {
    font-size: 4.5rem;
  }

  .intro-modelo-gateway {
    padding-top: 3.25rem;
  }

  .numero-modelo-gateway {
    left: 1.5rem;
    bottom: calc(100% - .75rem);
    line-height: 1;
  }

  .titulo-modelo-agregador {
    text-align: left;
  }

  .titulo-modelo-agregador h2 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    line-height: 1.15;
  }

  .titulo-modelo-agregador p {
    font-size: clamp(1.375rem, 4vw, 1.875rem);
  }

  /* =========================================================
     MODELO AGREGADOR Y REGISTRO - RESPONSIVE
  ========================================================= */
  .opciones-modelo-agregador {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
  }

  .opciones-modelo-agregador::before {
    display: none;
  }

  .grafico-modelo-agregador {
    margin: auto;
  }

  .tarjeta-modelo-agregador h3 {
    left: max(1.5rem, calc((100% - 380px)/2 + 1.5rem));
  }

  .acciones-registro {
    flex-direction: column;
    align-items: stretch;
  }

  /* =========================================================
     TAP TO PHONE Y MODALIDADES DE VENTA - RESPONSIVE
  ========================================================= */
  .titulo-tap-to-phone {
    gap: .75rem;
  }

  .etiqueta-venta-presente,
  .etiqueta-venta-no-presente {
    padding: 1rem clamp(.5rem, 3vw, 1.25rem);
  }

  .etiqueta-venta-no-presente {
    margin-right: 0;
  }

  .barra-venta-no-presente {
    padding: 1rem;
  }

  .argumento-venta-no-presente {
    gap: .875rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .icono-check-venta {
    width: 28px;
  }

  .beneficios-venta-no-presente {
    padding: 2rem .25rem;
  }

  .lista-beneficios-venta,
  .beneficios-gateway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .capsula-icono-beneficio,
  .icono-beneficio-gateway {
    width: min(125px, 100%);
  }

  /* =========================================================
     MEDIOS DE PAGO Y BRE-B - RESPONSIVE
  ========================================================= */
  .mapa-medios-pago {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .encabezado-medios-pago {
    text-align: left;
  }

  .caracteristica-medio {
    border-left: 0;
    border-radius: 0;
    padding: 1rem 0;
  }

  .contenido-seleccion-medio-pago {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .transferir-breb {
    padding: 0;
    border: 0;
  }

  .contenido-transferencia-breb {
    grid-template-columns: minmax(0, 1fr) 75px;
    gap: .75rem;
  }

  .codigo-qr-demo {
    margin: 0;
    width: 75px;
    height: 75px;
  }

  /* =========================================================
     SEGURIDAD Y PORTAL DE COMERCIOS - RESPONSIVE
  ========================================================= */
  .titulo-seguridad-3ds,
  .titulo-merchant-hub {
    padding: 1.25rem;
  }

  .tarjeta-seguridad-3ds,
  .tarjeta-merchant-hub {
    flex-direction: column;
    align-items: start;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .icono-seguridad {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  /* =========================================================
     POSIBILIDADES DE USO - RESPONSIVE
  ========================================================= */
  .bloque-asi-puedes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .titulo-vertical-asi-puedes {
    writing-mode: initial;
    transform: none;
    text-align: left;
  }

  .lista-asi-puedes {
    padding: 1rem 0 1rem 1rem;
  }

  /* =========================================================
     CARRUSELES DE INFORMACIÓN Y GATEWAY - RESPONSIVE
  ========================================================= */
  .carrusel-informacion-pay,
  .contenedor-carrusel-gateway-final {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: .25rem;
    max-width: 480px;
  }

  .selector-informacion-pay,
  .selector-gateway-final {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .item-selector-pay,
  .item-selector-gateway-final {
    display: none;
    max-width: 220px;
  }

  .item-selector-pay.activo,
  .item-selector-gateway-final.activo {
    display: block;
  }

  /* =========================================================
     DISTRIBUCIÓN DE TARJETAS - RESPONSIVE
  ========================================================= */
  .tipos-persona-agregador,
  .intro-modelo-gateway,
  .contenido-venta-no-presente,
  .opciones-comparacion {
    grid-template-columns: 1fr;
  }

  .tipo-persona {
    padding: 1.5rem;
  }

  /* =========================================================
     MODELO GATEWAY - RESPONSIVE
  ========================================================= */
  .tarjeta-titulo-gateway {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }

  .titulo-venta-no-presente {
    padding: 1.25rem;
  }

  .tarjeta-venta-no-presente {
    padding: 1.5rem;
  }

  .tarjeta-venta-derecha {
    margin-top: 0;
  }

  .contenido-venta-no-presente {
    gap: 1.5rem;
  }

  .titulo-medios-pago-gateway {
    padding-inline: 1.25rem;
  }

  .opciones-medios-gateway {
    gap: .75rem;
  }

  .medio-gateway h4 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .imagen-icono-medio-gateway {
    width: 44px;
    height: 44px;
  }

  .grid-modelos-implementacion {
    grid-template-columns: 1fr;
  }

  .boton-conoce-mas-gateway {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  /* =========================================================
     COMPARACIÓN DE MODELOS - RESPONSIVE
  ========================================================= */
  .opciones-comparacion article {
    padding: 1.5rem;
  }

  /* =========================================================
     FOOTER - RESPONSIVE
  ========================================================= */
  .contenedor-footer {
    width: calc(100% - 40px);
    gap: 1rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  /* =========================================================
     ATENCIÓN AL CLIENTE - RESPONSIVE
  ========================================================= */
  .datos-ayuda-registro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* =========================================================
     REGISTRO Y CONTENIDO AGREGADOR - RESPONSIVE
  ========================================================= */
  .columna-venta-presente>.registro-modelo {
    margin: 0;
    padding: 1.5rem 1.25rem;
    border: var(--borde);
    border-radius: 24px;
    background: linear-gradient(135deg, #252525, #454545);
  }

  .contenido-agregador-completo {
    padding: 1.75rem 1.25rem;
    border: var(--borde);
    border-radius: 28px;
    background: linear-gradient(135deg, #252525, #454545);
  }

  .columna-venta-presente>.registro-modelo>p {
    font-size: clamp(.875rem, 2.8vw, 1rem);
  }

  /* =========================================================
     LOGOS Y CERTIFICACIONES - RESPONSIVE
  ========================================================= */
  .contenedor-footer>.logo-efecty-footer,
  .contenedor-footer>.redes-sociales {
    justify-self: center;
  }

  .certificaciones-footer {
    --altura-certificacion: 48px;
  }
}

/* =========================================================
   RESPONSIVE - HASTA 380 PX
========================================================= */
@media (max-width: 380px) {
  .contenido-transferencia-breb {
    grid-template-columns: 1fr;
  }

  .codigo-qr-demo {
    margin-left: 48px;
  }

  .contenido-metrica strong {
    font-size: 2.125rem;
  }
}

/* =========================================================
   ACCESIBILIDAD - MOVIMIENTO REDUCIDO
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
