/* =========================
   LA PLATA - STYLE (clean)
   ========================= */

/* ---------- Reset / Base ---------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.45;
  background:#fff;
  color:#0f172a;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Variables ---------- */
:root{
  --lp-blue: #0b3ea8;
  --lp-blue-2:#082f7c;
  --lp-white:#ffffff;
  --lp-soft:#f4f6fb;
  --lp-border:#e6e8ef;
  --lp-text:#0f172a;
  --lp-muted:#64748b;
  --lp-yellow:#ffd400;
  --lp-green:#1f8a4c;

  --radius: 18px;
  --shadow: 0 10px 28px rgba(2, 8, 23, .10);
}

/* Scope opcional */
body.lp{
  background: var(--lp-white);
  color: var(--lp-text);
}

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 15px;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11,62,168,.18);
}
.btn-primary:hover{ box-shadow: 0 14px 26px rgba(11,62,168,.22); }

.btn-ghost{
  background: #fff;
  border-color: var(--lp-border);
  color: var(--lp-blue);
}
.btn-ghost:hover{ box-shadow: 0 10px 18px rgba(2,8,23,.08); }

/* =========================
   Header (azul + CTA amarillo)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11,62,168,.92);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 12px 24px rgba(2,8,23,.18);
  backdrop-filter: blur(10px);
}

.site-header .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}

.site-header .brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

/* Logo en cajita blanca */
.brand-box{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 54px;
  height: 44px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease;
}

.brand-logo{
  width: 32px;
  height: auto;
  display:block;
}

.brand-box:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

/* Nav desktop */
.site-header .nav{
  display:flex;
  gap: 10px;
  align-items:center;
}

.site-header .nav a{
  text-decoration:none;
  font-weight: 600;
  font-size: 18px;          /* 20px era mucho */
  color: #fff;
  padding: 11px 14px;
  border-radius: 999px;
  letter-spacing: .01em;
  transition: background .15s ease;
}

.site-header .nav a:hover{ background: rgba(255,255,255,.14); }

/* CTA + hamburger */
.site-header .header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* CTA amarillo SOLO dentro del header */
.site-header .btn.btn-primary{
  background: var(--lp-yellow);
  color: #1a1a1a;
  border: none;
  font-weight: 750;
  font-size: 15px;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(0,0,0,.20);
}
.site-header .btn.btn-primary:hover{
  background: #ffdf2a;
  box-shadow: 0 16px 28px rgba(0,0,0,.24);
}

/* Hamburger: SIEMPRE oculto en desktop */
.site-header .hamburger{
  display:none;                 /* <- clave */
  width: 44px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  flex-direction: column;
  justify-content:center;
  align-items:center;
}

.site-header .hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  margin: 3px 0;
  opacity: .95;
}

/* Mobile menu */
.site-header .mobile-menu{
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(11,62,168,.96);
  backdrop-filter: blur(10px);
}

.site-header .mobile-menu-inner{
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding: 12px 0 16px;
}

.site-header .mobile-menu a{
  text-decoration:none;
  font-weight: 650;
  font-size: 15px;
  padding: 12px 12px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.site-header .mobile-menu a:hover{ background: rgba(255,255,255,.12); }

/* Responsive header */
@media (max-width: 980px){
  .site-header .nav{ display:none; }
  .site-header .hamburger{ display:inline-flex; } /* <- solo mobile */
  .brand-box{ width: 54px; height: 40px; }
  .brand-logo{ width: 28px; }
}

/* =========================
   Hero
   ========================= */
.lp-hero{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  padding: 42px 0 0;
  overflow:hidden;
}

.lp-hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 34px;
}

.lp-hero h1{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  margin: 10px 0 10px;
  letter-spacing: -0.02em;
}

.lp-hero__lead{
  color: var(--lp-muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 12px;
  max-width: 62ch;
}

.lp-hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

.lp-hero__visual{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.lp-hero__visual img{
  width: 115%;
  max-width: 520px;
  height: auto;
}


/* Wave del hero: cuando lo siguiente es sección soft */
.lp-hero__wave{
  height: 34px;
  background: var(--lp-blue);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

/* ✅ Nuevo: wave “soft” para evitar franja azul cortada */
.lp-hero__wave--soft{
  background: #f6f8ff; /* mismo tono que .lp-section--soft */
}


/* KPIs */
.kpi-grid{
  display:flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.kpi-card{
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 140px;
  box-shadow: 0 6px 14px rgba(2,8,23,.06);
}

.kpi-card strong{
  display:block;
  font-size: 24px;
  font-weight: 900;
  color: var(--lp-blue);
  line-height: 1.1;
}

.kpi-card span{
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-muted);
}

/* Responsive hero */
@media (max-width: 980px){
  .lp-hero__grid{ grid-template-columns: 1fr; }
  .lp-hero__visual{ justify-content:center; margin-top: 18px; }
  .lp-hero__visual img{ width: 90%; max-width: 320px; }

  .kpi-card{
    flex: 1 1 calc(50% - 10px);
    min-width: auto;
    text-align:center;
  }
}




/* =========================
   HOME – ÁREA DE CLIENTES
   ========================= */

#clientes{
  background: var(--lp-soft);
  padding: 64px 0;
}

/* Grid principal */
#clientes .lp-cliente__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

/* Card base */
#clientes .lp-card{
  background:#ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(2,8,23,.08);
}

/* Card destacada (KPIs) */
#clientes .lp-card--accent{
  background: linear-gradient(
    180deg,
    rgba(255,212,0,.18),
    rgba(255,212,0,.10)
  );
  border-color: rgba(255,212,0,.45);
}

/* Títulos dentro del bloque */
#clientes h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Texto descriptivo */
#clientes p{
  margin: 0;
  color: var(--lp-muted);
  font-weight: 650;
  line-height: 1.6;
}

/* Listado de beneficios */
#clientes ul{
  margin: 14px 0 0;
  padding-left: 18px;
}

#clientes li{
  margin-bottom: 6px;
  font-weight: 650;
  color: var(--lp-text);
}

/* CTAs */
#clientes .lp-cta-row{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* KPIs */
#clientes .lp-hero__stats{
  display:flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

#clientes .lp-stat{
  background:#ffffff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 120px;
  box-shadow: 0 8px 18px rgba(2,8,23,.06);
}

#clientes .lp-stat strong{
  display:block;
  font-size: 24px;
  font-weight: 900;
  color: var(--lp-blue);
  line-height: 1.1;
}

#clientes .lp-stat span{
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-muted);
}

/* CTA inferior */
#clientes .btn{
  margin-top: 10px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  #clientes .lp-cliente__grid{
    grid-template-columns: 1fr;
  }

  #clientes .lp-stat{
    flex: 1 1 calc(50% - 8px);
    text-align:center;
  }
}










/* =========================
   Footer
   ========================= */
.site-footer{
  background: var(--lp-blue-2);
  color:#fff;
  margin-top: 40px;
  padding: 34px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.site-footer h4{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .95;
}

.site-footer a{
  display:block;
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight: 700;
  padding: 6px 0;
}

.site-footer a:hover{ color:#fff; text-decoration: underline; }

.footer-text{
  color: rgba(255,255,255,.86);
  font-weight: 650;
  margin: 10px 0;
}

.footer-small{
  color: rgba(255,255,255,.82);
  font-weight: 650;
  margin: 0;
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color: rgba(255,255,255,.85);
  font-weight: 650;
}

.footer-dot{ opacity:.6; }

@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================
   CLIENTES – GESTIÓN DE EMPEÑO
   ========================= */

/* Lista de funcionalidades */
.lp-list{
  margin: 14px 0 18px;
  padding-left: 18px;
  line-height: 1.6;
  color: var(--lp-text);
}

.lp-list li{
  margin-bottom: 8px;
  font-weight: 650;
}

.lp-list strong{
  font-weight: 800;
}

/* Columna de CTAs */
.lp-cta-col{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 14px;
}

/* Caja de ayuda / aclaración */
.lp-helper{
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,212,0,.18);
  border: 1px solid rgba(255,212,0,.35);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 650;
  color: var(--lp-text);
}

/* Ajustes responsive */
@media (max-width: 980px){
  .lp-cta-col{
    gap: 12px;
  }

  .lp-helper{
    font-size: 13px;
  }
}
/* =========================
   Cómo empeñar (La Plata)
   ========================= */

:root{
  --lp-blue: #0b3ea8;
  --lp-blue-2: #082f7c;
  --lp-yellow: #ffd400;

  --lp-text: #0f172a;
  --lp-muted: #475569;

  --lp-card: #ffffff;
  --lp-border: rgba(2, 6, 23, .10);
  --lp-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  --lp-shadow-soft: 0 6px 16px rgba(2, 6, 23, .06);

  --lp-radius: 18px;
}

/* Contenedor (si ya tenés lp-container, podés omitir esto) */
.lp-container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* Sección */
.lp-section{
  padding: 56px 0;
}

.lp-section--soft{
  background: #f6f8ff;
}

.lp-section__head{
  max-width: 780px;
  margin: 0 auto 22px;
  text-align: center;
}

.lp-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-lead strong{
  color: var(--lp-text);
}

/* Grilla de pasos */
.lp-steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lp-step{
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-soft);
  padding: 16px 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lp-step:hover{
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
  border-color: rgba(11, 62, 168, .22);
}

.lp-step__icon{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-2));
}

.lp-step__icon--accent{
  color: #111827;
  background: linear-gradient(180deg, var(--lp-yellow), #ffec66);
  border: 1px solid rgba(17, 24, 39, .12);
}

.lp-step__title{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--lp-text);
}

.lp-step__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* Paso destacado (opcional, sutil) */
.lp-step--highlight{
  border-color: rgba(255, 212, 0, .55);
}

/* Nota de política */
.lp-note{
  margin: 16px auto 0;
  max-width: 920px;
  background: #ffffff;
  border: 1px solid rgba(11, 62, 168, .18);
  border-radius: calc(var(--lp-radius) + 2px);
  box-shadow: var(--lp-shadow-soft);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-note__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-blue-2);
  background: rgba(11, 62, 168, .08);
  border: 1px solid rgba(11, 62, 168, .18);
  white-space: nowrap;
}

.lp-note__text{
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  text-align: center;
}

.lp-note__text strong{
  color: var(--lp-text);
}

/* Acciones */
.lp-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.lp-btn--primary{
  background: var(--lp-yellow);
  color: #111827;
  box-shadow: 0 10px 18px rgba(255, 212, 0, .22);
  border-color: rgba(17, 24, 39, .10);
}

.lp-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(255, 212, 0, .28);
}

.lp-btn--ghost{
  background: rgba(255,255,255,.7);
  color: var(--lp-blue-2);
  border-color: rgba(11, 62, 168, .22);
}

.lp-btn--ghost:hover{
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(11, 62, 168, .32);
}

/* Responsive */
@media (max-width: 980px){
  .lp-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .lp-section{
    padding: 44px 0;
  }

  .lp-steps{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-step{
    padding: 14px 14px 16px;
  }

  .lp-note{
    padding: 12px 12px;
  }
}

/* =========================
   FIX: Hero wave + flow steps + band azul
   ========================= */

/* ✅ Asegura que la wave sea soft (y no quede franja azul suelta) */
.lp-hero__wave{ background: var(--lp-blue); }
.lp-hero__wave--soft{ background: #f6f8ff; }

/* ✅ Evitar colisiones: nuevo módulo con clases propias */
.lp-steps-flow{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lp-step-flow{
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(2, 6, 23, .06);
  padding: 16px 16px 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lp-step-flow:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  border-color: rgba(11, 62, 168, .22);
}

.lp-step-flow__icon{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-size: 14px;
  color:#fff;
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-2));
}

.lp-step-flow__icon--accent{
  color:#111827;
  background: linear-gradient(180deg, var(--lp-yellow), #ffec66);
  border: 1px solid rgba(17, 24, 39, .12);
}

.lp-step-flow__title{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
  color: var(--lp-text);
}

.lp-step-flow__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
  font-weight: 650;
}

.lp-step-flow--highlight{
  border-color: rgba(255, 212, 0, .55);
}

/* ✅ Band azul premium */
.lp-band{
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-2));
  color:#fff;
  padding: 38px 0;
}

.lp-band__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:center;
}

.lp-band__pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
  color: #111827;
  background: var(--lp-yellow);
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}

.lp-band__title{
  margin: 10px 0 6px;
  font-size: clamp(18px, 2.0vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lp-band__text{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 650;
  line-height: 1.6;
  max-width: 60ch;
}

.lp-band__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lp-band__card{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.lp-band__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.12);
}

.lp-band__card strong{
  display:block;
  font-weight: 900;
  line-height: 1.15;
}

.lp-band__card span{
  display:block;
  margin-top: 2px;
  color: rgba(255,255,255,.86);
  font-weight: 650;
  font-size: 13.5px;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 980px){
  .lp-steps-flow{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lp-band__inner{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .lp-steps-flow{ grid-template-columns: 1fr; gap: 12px; }
  .lp-band{ padding: 32px 0; }
}


