/* ==========================
   GTRAKER — estilos sobrios
   ========================== */

:root{
  --bg: #0b1020;
  --paper:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;

  --brand:#2f8f2e;      /* verde */
  --brand2:#1b78b0;     /* azul */
  --accent:#f59e0b;     /* ámbar */
  --shadow: 0 10px 30px rgba(2,6,23,.08);

  --radius: 18px;
  --wrap: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: #f4f7fb;
  line-height: 1.55;
}

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

.wrap{ width: min(var(--wrap), calc(100% - 40px)); margin: 0 auto; }

/* TOPBAR */
.topbar{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(244,247,251,.86);
  border-bottom: 1px solid rgba(226,232,240,.75);
}
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 6px; padding: 6px 0;
}
.brand{ display:flex; align-items:center; gap: 12px; }
.brand-mark{
  width: 38px; height: 38px; border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9) 0 25%, transparent 26%),
    linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 8px 18px rgba(2,6,23,.12);
}
.brand-name{ font-weight: 950; letter-spacing: .6px; }
.brand-tag{ font-size: 12px; color: var(--muted); margin-top: -2px; }

.nav{ display:flex; gap: 14px; align-items:center; }
.nav a{
  font-size: 14px;
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{ background: rgba(226,232,240,.7); text-decoration:none; }

.nav-cta{ display:flex; gap: 10px; align-items:center; }

.burger{
  display:none;
  border: 1px solid rgba(226,232,240,1);
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.burger span{
  display:block;
  width: 18px; height: 2px;
  background: #0f172a;
  margin: 4px 0;
  border-radius: 2px;
}

.mobile-nav{
  padding: 10px 0 16px;
  display:grid;
  gap: 6px;
}
.mobile-nav a{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(226,232,240,.9);
}
.mobile-cta{ display:flex; gap:10px; flex-wrap:wrap; padding-top: 8px; }

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 850;
  border: 1px solid rgba(2,6,23,.06);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn.ghost{
  background: rgba(255,255,255,.85);
  color: #0f172a;
  box-shadow: none;
  border: 1px solid rgba(226,232,240,1);
}
.btn.ghost:hover{ background: rgba(255,255,255,1); }

.req{ color: #ef4444; }

/* HERO */
.hero{
  padding-top: 18px;      /* antes 36px o 70px según tu duplicado */
  padding-bottom: 10px;  
  background:
    radial-gradient(1200px 600px at 30% 10%, rgba(47,143,46,.18), transparent 55%),
    radial-gradient(1000px 520px at 90% 0%, rgba(27,120,176,.16), transparent 55%),
    linear-gradient(to bottom, #f4f7fb, #f4f7fb);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items: start;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(226,232,240,.95);
  font-size: 13px;
  color: var(--muted);
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.h1{
  margin: 14px 0 8px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: -.4px;
}
.em{
  background: linear-gradient(135deg, rgba(47,143,46,.18), rgba(27,120,176,.18));
  padding: 0 .25em;
  border-radius: 10px;
}
.lead{
  margin: 0;
  font-size: 16.5px;
  color: #0f172a;
}
.hero-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }
.micro{ margin-top: 10px; color: var(--muted); font-size: 13px; }

.pill-row{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 14px; }
.pill{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(226,232,240,.95);
  color: #0f172a;
}

/* SECTIONS */
section{
  padding-top: 22px;      /* antes 34px */
  padding-bottom: 30px;   /* deja un poco de aire abajo */
}
section.alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,.75));
  border-top: 1px solid rgba(226,232,240,.7);
  border-bottom: 1px solid rgba(226,232,240,.7);
}
.section-title{
  margin: 0;
  font-size: 28px;
  letter-spacing: -.2px;
}
.section-sub{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 820px;
}

/* CARDS + GRIDS */
.card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad{ padding: 18px; }
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }

.card h3{ margin: 0; font-size: 18px; }
.small{ font-size: 13px; color: var(--muted); }
.fineprint{ margin-top: 12px; font-size: 12px; color: var(--muted); }

.hr{ height: 1px; background: rgba(226,232,240,1); margin: 12px 0; border-radius: 1px; }

/* HERO CARD */
.hero-card-title{ font-weight: 900; }
.hero-card-sub{ margin-top: 3px; font-size: 12px; color: var(--muted); }
.imgbox{
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.95);
  background: #fff;
}
.imgbox img{ width: 100%; height: auto; display:block; }

/* STEPS */
.steps{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(226,232,240,.95);
}
.step-n{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(47,143,46,.22), rgba(27,120,176,.22));
}
.step-t{ font-weight: 900; }
.step-d{ color: var(--muted); margin-top: 2px; }

/* LIST */
.list{ list-style:none; margin: 12px 0 0; padding: 0; display:grid; gap: 10px; }
.list li{ display:flex; gap: 10px; align-items:flex-start; }
.tick{
  width: 22px; height: 22px; border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(47,143,46,.14);
  color: #0f172a;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}
.li-title{ font-weight: 850; }
.li-desc{ font-size: 16px; color: var(--muted); margin-top: 2px; }

/* FORMS */
.form label{ display:block; font-weight: 750; font-size: 13px; margin: 10px 0 6px; }
.form input, .form textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,1);
  background: rgba(255,255,255,.9);
  font: inherit;
}
.form textarea{ min-height: 110px; resize: vertical; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form button{ margin-top: 12px; width: 100%; }

/* CTA */
.cta{
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,143,46,.14), rgba(27,120,176,.12));
  border: 1px solid rgba(226,232,240,.95);
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* FOOTER */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(226,232,240,.85);
  background: rgba(255,255,255,.75);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

/* Garantiza que el atributo HTML `hidden` siempre oculte el elemento */
[hidden] { display: none !important; }

/* En escritorio, el menú móvil NO debe verse aunque alguien quite hidden */
@media (min-width: 981px){
  .mobile-nav { display: none !important; }
}


/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav, .nav-cta{ display:none; }
  .burger{ display:block; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

.brand-logo{
  height: 36px;
  width: auto;
  display: block;
}

section{
  scroll-margin-top: 30px;
}

.cta-big{
  padding: 28px;
  border-radius: 22px;
}

.cta-title{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.cta-sub{
  margin-top: 6px;
  font-size: 15px;
  opacity: .85;
}

#contacto .card:nth-child(2){
  transform: scale(1.02);
}

/* ===== Modal Gracias (GTRAKER) ===== */
.gtmodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.gtmodal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.gtmodal-card{
  position: relative;
  width: min(520px, calc(100% - 26px));
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.gtmodal-head{
  display: flex;
  gap: 12px;
  align-items: center;
}

.gtmodal-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #e8f5e9;
  color: #1b5e20;
  flex: 0 0 auto;
}

.gtmodal-title{
  font-weight: 950;
  font-size: 18px;
  margin: 0;
}

.gtmodal-sub{
  margin-top: 2px;
  font-size: 13px;
  opacity: .85;
}

.gtmodal-actions{
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* ================================
   

/* =========================================
   PATCH: HERO FLOW (AISLADO)
   No toca .wrap, .btn, .h1, etc.
========================================= */

/* Card derecha (solo si quieres mejorarla sin romper nada) */
.hero .hero-visual{ display:flex; justify-content:center; }
.hero .visual-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  width:100%;
}

/* Header del card */
.hero .visual-head{ margin-bottom:18px; }
.hero .visual-title{ font-weight:800; font-size:16px; color:#0B1F3F; margin-bottom:6px; }
.hero .visual-steps{ font-size:13px; color:#6c7a89; }
.hero .visual-steps .sep{ margin:0 5px; color:#a0aec0; }

/* Contenedor de animación */
.hero .flow-anim{
  background:linear-gradient(180deg,#f4f7fb 0%,#eef4fb 100%);
  border-radius:12px;
  padding:18px;
  margin-bottom:18px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(11,31,63,.06);
}

/* Lienzo interno */
.hero .flow-live{ position:relative; height:210px; }

/* Línea vertical + pulso */
.hero .flow-line{
  position:absolute;
  left:22px; top:16px; bottom:19px;
  width:2px;
  background:rgba(32,85,159,.15);
  border-radius:2px;
  overflow:hidden;
}
.hero .flow-line::after{
  content:"";
  position:absolute; left:0; top:-40%;
  width:100%; height:40%;
  background:rgba(32,85,159,.55);
  filter:blur(.2px);
  animation:heroFlowPulse 8s linear infinite;
}
@keyframes heroFlowPulse{
  0%   { transform: translateY(-20%); opacity: .15; }
  10%  { opacity: .65; }
  30%  { opacity: .35; }
  100% { transform: translateY(360%); opacity: .15; }
}

/* Pasos */
.hero .flow-step{ position:absolute; left:0; right:0; }
.hero .flow-step.s0{ top: -18px; }
.hero .flow-step.s1{ top: 42px; }
.hero .flow-step.s2{ top: 105px; }
.hero .flow-step.s3{ top: 168px; }
.hero .flow-step.s4{ top: 231px; }

/* Bubble (IMPORTANTE: position:relative para el halo ::before) */
.hero .bubble{
  position:relative;
  margin-left:36px;
  background:#fff;
  border-radius:12px;
  padding:12px;
  display:grid;
  grid-template-columns:26px 1fr 30px;
  align-items:center;
  gap:10px;
  border:1px solid rgba(11,31,63,.07);
  box-shadow:0 10px 18px rgba(0,0,0,.06);
  opacity:.45;
}

/* Badge */
.hero .bubble .badge{
  width:26px; height:26px;
  border-radius:8px;
  display:grid; place-items:center;
  font-weight:800; font-size:12px;
  color:#0B1F3F;
  background:rgba(32,85,159,.12);
}

/* Texto */
.hero .bubble .txt .t{ font-weight:800; font-size:13px; color:#0B1F3F; margin-bottom:2px; }
.hero .bubble .txt .d{ font-size:12px; color:#6c7a89; line-height:1.2; }

/* Ícono */
.hero .bubble .ico{
  width:30px; height:30px;
  border-radius:10px;
  display:grid; place-items:center;
  font-weight:900;
  color:#20559f;
  background:rgba(32,85,159,.10);
}

/* Glow por step */
.hero .flow-step.s0 .bubble{ animation:heroStepGlow 8s infinite; animation-delay:-1s; }
.hero .flow-step.s0 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:-1s; }
.hero .flow-step.s1 .bubble{ animation:heroStepGlow 8s infinite; animation-delay:0s; }
.hero .flow-step.s2 .bubble{ animation:heroStepGlow 8s infinite; animation-delay:2s; }
.hero .flow-step.s3 .bubble{ animation:heroStepGlow 8s infinite; animation-delay:4s; }
.hero .flow-step.s4 .bubble{ animation:heroStepGlow 8s infinite; animation-delay:6s;
}

.hero .flow-step.s4 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:6s; }

@keyframes heroStepGlow{
  0%   { opacity:.45; transform:translateY(0); }
  10%  { opacity:1;   transform:translateY(-1px); }
  22%  { opacity:1;   transform:translateY(-1px); }
  28%  { opacity:.45; transform:translateY(0); }
  100% { opacity:.45; transform:translateY(0); }
}

/* Halo (con keyframes aislados) */
.hero .bubble::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:16px;
  background:radial-gradient(circle at 20% 30%, rgba(32,85,159,.20), transparent 60%);
  opacity:0;
  pointer-events:none;
}
.hero .flow-step.s1 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:0s; }
.hero .flow-step.s2 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:2s; }
.hero .flow-step.s3 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:4s; }
.hero .flow-step.s4 .bubble::before{ animation:heroHalo 8s infinite; animation-delay:6s; }

@keyframes heroHalo{
  0%   { opacity:0; }
  10%  { opacity:1; }
  22%  { opacity:1; }
  28%  { opacity:0; }
  100% { opacity:0; }
}

/* Señal final */
.hero .flow-signal{
  position:absolute;
  right:10px;
  bottom:-2px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(46,125,50,.12);
  border:1px solid rgba(46,125,50,.20);
  opacity:0;
  transform:translateY(6px);
  animation:heroSignalIn 8s infinite;
}
.hero .sig-dot{
  width:10px;height:10px;border-radius:50%;
  background:#2E7D32;
  box-shadow:0 0 0 6px rgba(46,125,50,.16);
}
.hero .sig-text{ font-size:12px; font-weight:800; color:#1f3c2a; }

@keyframes heroSignalIn{
  0%,70%{opacity:0;transform:translateY(6px);}
  78%,92%{opacity:1;transform:translateY(0);}
  100%{opacity:0;transform:translateY(6px);}
}

/* Footer card */
.hero .visual-foot{ border-top:1px solid #eef2f7; padding-top:15px; }
.hero .promise{ font-size:14px; margin-bottom:12px; color:#2c3e50; }
.hero .mini-legend{ display:flex; gap:18px; font-size:12px; color:#6c7a89; }
.hero .legend-item{ display:flex; align-items:center; gap:6px; }
.hero .legend-item .dot{ width:10px;height:10px;border-radius:50%; }
.hero .dot.ok{ background:#2E7D32; }
.hero .dot.warn{ background:#F9A825; }
.hero .dot.bad{ background:#C62828; }

/* Responsive solo para el bloque animado */
@media (max-width: 900px){
  .hero .flow-live{ height:255px; }
  .hero .mini-legend{ flex-direction:column; gap:8px; }
}

/* ====== AGRANDAR CAJA DE ANIMACIÓN (derecha) ====== */
.hero .flow-anim{
  padding: 24px;          /* antes 18px */
  min-height: 300px;      /* altura visible del recuadro */
}

.hero .flow-live{
  height: 280px;          /* antes 210/255 */
}

.hero-manifesto{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(226,232,240,.95);
}

.hero-manifesto .m-item{
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 12px;
}

.hero-manifesto .m-item + .m-item{
  border-top: 1px dashed rgba(226,232,240,.95);
}

.hero-manifesto .m-k{
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #334155;
}

.hero-manifesto .m-v{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-manifesto .m-v b{
  color: #0f172a;
}

.hero-manifesto .m-close{
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47,143,46,.12), rgba(27,120,176,.10));
  border: 1px solid rgba(226,232,240,.85);
  font-size: 13px;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 980px){
  .hero-manifesto .m-item{
    grid-template-columns: 1fr;
  }
}

.hero-example{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(226,232,240,.95);
}

.hex-title{
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 8px;
}

.hex-kpis{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hex-pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(226,232,240,.95);
  color: #0f172a;
}

.hex-signal{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

.hex-signal b{ color:#0f172a; }


.hero-example-wrapper{
  margin-top: 14px;
}

.hex-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:8px;
}

.hex-arrow{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 18px;
  cursor:pointer;
}

.hex-current{
  font-weight:900;
  font-size:14px;
}

.hero-example{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(226,232,240,.95);
  transition: all .25s ease;
}

/* HEADER dentro de la tarjeta */
.hex-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:10px;
  margin-bottom:10px;
  border-bottom:1px solid rgba(226,232,240,.9);
}

.hex-title-main{
  font-weight:900;
  font-size:15px;
  text-align:center;
  flex:1;
  color:#0f172a;
}

/* Flechas más limpias */
.hex-arrow{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 8px;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  cursor:pointer;
  transition: all .2s ease;
}

.hex-arrow:hover{
  background:#ffffff;
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

.hex-arrow{ user-select:none; }
.hex-arrow:active{ transform: translateY(0); box-shadow:none; }

#exampleContainer{ transition: opacity .18s ease; }
#exampleContainer.fading{ opacity: 0; }

.hero-proof-img{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(226,232,240,.9);
  margin-bottom: 10px;
}

.proof-title{
  font-size: 13px;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 22px;
  color:#334155;
}

.hero-proof-img img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.visual-title-line{
  font-size:14px;
  margin-bottom:16px;
  color:#334155;
}

.vt-label{
  font-weight:700;
  margin-right:6px;
}

.vt-flow{
  font-weight:700;
  color:#20559f;
}

.mobile-nav .btn{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border: 1px solid rgba(2,6,23,.06);
}

.mobile-nav .btn.ghost{
  background: rgba(255,255,255,.85);
  color: #0f172a;
  border: 1px solid rgba(226,232,240,1);
}

/* ===== PROCESO DE COMPRA ===== */
.purchase-grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.purchase-step{ position:relative; }

.purchase-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.purchase-badge{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
}

.purchase-title{
  font-size:20px;
  font-weight:900;
}

.purchase-text{ margin-top:6px; }

.purchase-example{
  margin-top:10px;
  padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.purchase-chip{
  display:inline-block;
  font-size:16px;
  font-weight:800;
  opacity:.85;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
}

.purchase-url{
  margin-top:8px;
  font-size:15px;
  word-break: break-word;
}

.purchase-note{
  margin-top:10px;
  font-size:13px;
  opacity:.85;
}

.purchase-pay{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:10px;
}

@media (max-width: 520px){
  .purchase-pay{ grid-template-columns: 1fr; }
}

.pay-box{
  padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.pay-title{
  font-weight:900;
  margin-bottom:8px;
}

.pay-line{
  font-size:13px;
  margin:3px 0;
}

.muted{ opacity:.75; }

.purchase-list{ margin-top:10px; }

/* ===============================
   PROCESO COMPRA — TIPOGRAFÍA MÁS GRANDE (solo este bloque)
   =============================== */

#proceso-compra .section-sub{
  font-size: 18px;
}

#proceso-compra .purchase-title{
  font-size: 25px;
}

#proceso-compra .purchase-text,
#proceso-compra .small{
  font-size: 16px;
  line-height: 1.45;
}

#proceso-compra .purchase-url{
  font-size: 22px;
}

#proceso-compra .purchase-note{
  font-size: 20px;
}

#proceso-compra .pay-title{
  font-size: 17px;
}

#proceso-compra .pay-line{
  font-size: 15px;
  line-height: 1.4;
}

#proceso-compra .li-title{
  font-size: 16px;
}

#proceso-compra .li-desc{
  font-size: 14px;
}

.btn-sim {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid #b9d7f2;
  background: linear-gradient(180deg, #eef7ff 0%, #dceeff 100%);
  color: #163b66;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: all .18s ease;
  box-shadow: 0 4px 10px rgba(22, 59, 102, .08);
}

.btn-sim:hover {
  background: linear-gradient(180deg, #e3f2ff 0%, #cfe7ff 100%);
  border-color: #8fbfe8;
  color: #0b2f57;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(22, 59, 102, .12);
}

.btn-sim:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(22, 59, 102, .10);
}

.demo-badge {
  display: inline-block;
  background: linear-gradient(90deg, #1b78b0, #2f8f2e);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* ===== CLIENTES ===== */

.clients {
  padding: 70px 0;
  background:
    linear-gradient(to bottom,
    rgba(248,250,252,.95),
    rgba(255,255,255,1));
}

.clients-head {
  text-align:center;
  max-width:900px;
  margin:0 auto 28px;
}

.clients-head h2{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.1;
  font-weight:950;
  color:#0b1f3f;
}

.clients-head p{
  margin:0;
  font-size:19px;
  line-height:1.7;
  color:#5b6b82;
}

.clients-box{
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  border-radius:24px;
  padding:18px;
  box-shadow: var(--shadow);
}

.clients-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.client-item{
  height:88px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  transition:.25s ease;
}

.client-item:hover{
  transform:translateY(-2px);
  border-color:rgba(220,38,38,.25);
}

.client-item img{
  max-width:100%;
  max-height:58px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.72;
  transition:.25s ease;
}

.client-item:hover img{
  filter:grayscale(0%);
  opacity:1;
}

.clients-foot{
  text-align:center;
  margin-top:18px;
  font-size:17px;
  color:#64748b;
}

@media(max-width:900px){
  .clients-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

  .clients-head h2{
    font-size:34px;
  }
}