/* Estilos unificados del sitio GDP21. */

/* ===== index.html :: page-index ===== */
body.page-index{
  --ink:       #14203a;
  --ink-soft:  #46557a;
  --ink-muted: #7a8aaa;
  --paper:     #ffffff;
  --panel:     #f5f7fb;
  --line:      #e2e7f0;
  --teal:      #0f6e82;
  --teal-d:    #0b5867;
  --teal-soft: #e4f1f3;
  --red:       #bd3b34;
  --red-soft:  #fdf0ef;
  --amber:     #cf8a1c;
  --amber-soft:#fbf4e3;
  --green:     #2c8159;
  --green-soft:#edf7f2;
  --serif:     'Fraunces', 'Georgia', serif;
  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm:      8px;
  --r-md:      12px;
  --r-lg:      18px;
  --r-xl:      24px;
  --shadow:    0 1px 3px rgba(20,32,58,.06), 0 8px 28px rgba(20,32,58,.08);
  --shadow-lg: 0 4px 6px rgba(20,32,58,.06), 0 20px 60px rgba(20,32,58,.14);
}

body.page-index *,body.page-index *::before,body.page-index *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; font-size: 16px; padding: 0px!important;}
body.page-index{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
	padding: 0px!important;
	margin:0px!important;
}
body.page-index img{ max-width: 100%; display: block; }
body.page-index a{ color: inherit; text-decoration: none; }
body.page-index button{ font-family: inherit; cursor: pointer; border: none; background: none; }

body.page-index .wrap{ max-width: 1100px; margin: 0 auto; padding: 0 28px; }
body.page-index .wrap-narrow{ max-width: 780px; margin: 0 auto; padding: 0 28px; }
body.page-index .serif{ font-family: var(--serif); }
body.page-index .eyebrow{
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal);
}
body.page-index .tag{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 999px; border: 1px solid currentColor;
}
body.page-index .btn{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 26px;
  border-radius: var(--r-md); cursor: pointer;
  transition: background .15s, transform .1s;
  border: none; text-decoration: none;
}
body.page-index .btn:hover{ transform: translateY(-1px); }
body.page-index .btn-primary{ background: var(--teal); color: #fff; }
body.page-index .btn-primary:hover{ background: var(--teal-d); }
body.page-index .btn-dark{ background: var(--ink); color: #fff; }
body.page-index .btn-dark:hover{ background: #0d1929; }
body.page-index .btn-ghost{ background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
body.page-index .btn-ghost:hover{ border-color: var(--teal); color: var(--teal); }
body.page-index .btn-lg{ font-size: 16px; padding: 15px 32px; }
body.page-index .hidden{ display: none !important; }
body.page-index .page{ display: none; }
body.page-index .page.active{ display: block; }

body.page-index #announcement{
  background: var(--ink);
  color: #9fb0d2;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .01em;
}
body.page-index #announcement b{ color: #fff; }
body.page-index #announcement .countdown-inline{ color: var(--teal); font-weight: 700; }

body.page-index header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
body.page-index .nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 20px;
}
body.page-index .brand{
  display: flex; align-items: center; gap: 11px;
  cursor: pointer; flex-shrink: 0;
}
body.page-index .brand-mark{
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body.page-index .brand-mark svg{ display: block; }
body.page-index .brand-name{
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  color: var(--ink); letter-spacing: -.015em; line-height: 1;
}
body.page-index .brand-sub{
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 3px;
}
body.page-index .nav-links{
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
body.page-index .nav-links a{
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  padding: 6px 12px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  cursor: pointer;
}
body.page-index .nav-links a:hover,body.page-index .nav-links a.active{ color: var(--ink); background: var(--panel); }
body.page-index .nav-cta{ flex-shrink: 0; }
body.page-index .hamburger{
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; background: none; border: none;
}
body.page-index .hamburger span{
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: .2s;
}

body.page-index .mobile-nav{
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--paper); padding: 0;
  flex-direction: column;
}
body.page-index .mobile-nav.open{ display: flex; }
body.page-index .mobile-nav-header{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
body.page-index .mobile-nav-links{
  list-style: none; padding: 20px; display: flex;
  flex-direction: column; gap: 4px; flex: 1;
}
body.page-index .mobile-nav-links a{
  display: block; padding: 14px 16px; font-size: 18px;
  font-weight: 600; color: var(--ink); border-radius: var(--r-md);
  cursor: pointer; transition: background .15s;
}
body.page-index .mobile-nav-links a:hover{ background: var(--panel); }
body.page-index .mobile-nav-footer{ padding: 20px; border-top: 1px solid var(--line); }

body.page-index .section{ padding: 88px 0; }
body.page-index .section-sm{ padding: 60px 0; }
body.page-index .section-dark{ background: var(--ink); color: #dbe4f5; }
body.page-index .section-panel{ background: var(--panel); }
body.page-index .section-teal{ background: var(--teal); color: #fff; }
body.page-index .section-head{ margin-bottom: 52px; }
body.page-index .section-head h2{
  font-family: var(--serif);
  font-size: 38px; font-weight: 500; line-height: 1.1;
  letter-spacing: -.025em; margin-top: 10px; margin-bottom: 14px;
}
body.page-index .section-head p{
  font-size: 17px; color: var(--ink-soft);
  max-width: 56ch; line-height: 1.65;
}
body.page-index .section-dark .section-head p{ color: #8faabf; }
body.page-index h3{
  font-family: var(--serif);
  font-size: 22px; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 10px;
}

body.page-index .hero{
  padding: 80px 0 60px;
  background: var(--paper);
  position: relative; overflow: hidden;
}
body.page-index .hero::before{
  content: '';
  position: absolute; top: -120px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--teal-soft) 0%, transparent 70%);
  pointer-events: none;
}
body.page-index .hero-grid{
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center;
}
body.page-index .hero-eyebrow{
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
body.page-index .hero-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
body.page-index .hero h1{
  font-family: var(--serif);
  font-size: 52px; font-weight: 500; line-height: 1.04;
  letter-spacing: -.03em; margin-bottom: 22px;
}
body.page-index .hero h1 em{
  font-style: normal;
  background: linear-gradient(transparent 58%, var(--teal-soft) 58%);
  color: var(--teal);
}
body.page-index .hero-lead{
  font-size: 18px; color: var(--ink-soft);
  max-width: 44ch; margin-bottom: 32px; line-height: 1.65;
}
body.page-index .hero-actions{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
body.page-index .hero-trust{
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
body.page-index .trust-item{
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
}
body.page-index .trust-icon{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-soft); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal); font-size: 12px; font-weight: 700; flex-shrink: 0;
}

body.page-index .dpi-card{
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
body.page-index .dpi-card::before{
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(15,110,130,.3);
  pointer-events: none;
}
body.page-index .dpi-card::after{
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(15,110,130,.5);
  pointer-events: none;
}
body.page-index .dpi-card-label{
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
}
body.page-index .gauge-wrap{
  position: relative; width: 180px; height: 180px;
  margin: 0 auto 20px;
}
body.page-index .gauge-wrap svg{ transform: rotate(-90deg); }
body.page-index .gauge-center{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
body.page-index .gauge-center b{
  font-family: var(--serif);
  font-size: 52px; font-weight: 600; line-height: 1; color: #fff;
}
body.page-index .gauge-center small{
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #9fb0d2; margin-top: 4px;
}
body.page-index .dpi-badge{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; padding: 7px 14px;
  border-radius: 999px; margin-bottom: 16px;
}
body.page-index .dpi-verdict{
  font-family: var(--serif);
  font-size: 16px; font-weight: 400; color: #c8d6e8;
  line-height: 1.4; margin-bottom: 18px;
}
body.page-index .dpi-dims{ display: flex; flex-direction: column; gap: 8px; }
body.page-index .dpi-dim{
  display: flex; align-items: center; gap: 10px; font-size: 12px;
}
body.page-index .dpi-dim-label{ color: #8faabf; flex: 1; }
body.page-index .dpi-dim-track{
  width: 80px; height: 5px; background: rgba(255,255,255,.1);
  border-radius: 3px; overflow: hidden;
}
body.page-index .dpi-dim-bar{ height: 100%; border-radius: 3px; }
body.page-index .dpi-dim-val{ color: #9fb0d2; font-weight: 600; width: 24px; text-align: right; }

body.page-index .countdown-strip{
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
body.page-index .countdown-inner{
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
body.page-index .countdown-text{ font-size: 15px; }
body.page-index .countdown-text b{ font-weight: 700; }
body.page-index .countdown-units{ display: flex; gap: 10px; }
body.page-index .countdown-unit{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 10px 18px;
  text-align: center; min-width: 72px;
  box-shadow: var(--shadow);
}
body.page-index .countdown-unit b{
  display: block; font-family: var(--serif);
  font-size: 28px; font-weight: 600; line-height: 1; color: var(--ink);
}
body.page-index .countdown-unit span{
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-muted);
}

body.page-index .stakes-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
body.page-index .stake-card{
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; background: var(--paper);
  transition: border-color .2s, transform .2s;
}
body.page-index .stake-card:hover{ border-color: var(--teal); transform: translateY(-2px); }
body.page-index .stake-num{
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  color: var(--teal); line-height: 1; margin-bottom: 14px;
}
body.page-index .stake-card h3{ font-size: 17px; margin-bottom: 8px; }
body.page-index .stake-card p{ font-size: 13.5px; color: var(--ink-soft); }

body.page-index .steps-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
body.page-index .step{ position: relative; }
body.page-index .step-connector{
  display: none;
}
body.page-index .step-num{
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--teal-soft); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--teal);
}
body.page-index .step h3{ font-size: 20px; margin-bottom: 10px; }
body.page-index .step p{ font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
body.page-index .step-arrow{
  position: absolute; right: -20px; top: 11px;
  color: var(--line); font-size: 22px; display: none;
}

body.page-index .analyze-block{
  background: var(--ink); border-radius: var(--r-xl);
  padding: 52px; position: relative; overflow: hidden;
}
body.page-index .analyze-block::before{
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(15,110,130,.2); pointer-events: none;
}
body.page-index .analyze-block::after{
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(15,110,130,.35); pointer-events: none;
}
body.page-index .analyze-block .eyebrow{ color: #5fc7d8; }
body.page-index .analyze-block h2{ color: #fff; }
body.page-index .analyze-block .section-head p{ color: #8faabf; }
body.page-index .dims-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  overflow: hidden;
}
body.page-index .dim-row{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px; color: #c8d6e8; transition: background .15s;
}
body.page-index .dim-row:nth-child(odd):not(:last-child){ border-right: 1px solid rgba(255,255,255,.08); }
body.page-index .dim-row:hover{ background: rgba(255,255,255,.04); }
body.page-index .dim-row:last-child:nth-child(odd){ border-right: none; }
body.page-index .dim-ic{ color: var(--teal); font-weight: 700; font-size: 16px; }
body.page-index .dim-pct{
  margin-left: auto; font-size: 12px; font-weight: 600;
  color: var(--teal); background: rgba(15,110,130,.15);
  padding: 3px 9px; border-radius: 999px;
}

body.page-index .sectors-wrap{ display: flex; flex-wrap: wrap; gap: 10px; }
body.page-index .sector-chip{
  display: flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px;
  font-size: 14px; font-weight: 600;
  transition: border-color .15s, background .15s;
  cursor: default;
}
body.page-index .sector-chip:hover{ border-color: var(--teal); background: var(--teal-soft); }
body.page-index .sector-chip .si{ font-size: 16px; }

body.page-index .urgency-band{
  background: linear-gradient(135deg, var(--red) 0%, #8a1a15 100%);
  color: #fff; padding: 40px 0; text-align: center;
}
body.page-index .urgency-band h2{
  font-family: var(--serif);
  font-size: 32px; font-weight: 500; margin-bottom: 10px; color: #fff;
}
body.page-index .urgency-band p{ font-size: 16px; color: rgba(255,255,255,.8); max-width: 54ch; margin: 0 auto 24px; }

body.page-index .services-hero{
  background: var(--ink); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
body.page-index .services-hero::before{
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(15,110,130,.2);
}
body.page-index .services-hero h1{
  font-family: var(--serif);
  font-size: 48px; font-weight: 500; letter-spacing: -.03em;
  line-height: 1.08; color: #fff; margin: 12px 0 18px;
}
body.page-index .services-hero p{ font-size: 18px; color: #8faabf; max-width: 50ch; }

body.page-index .ladder{
  display: flex; flex-direction: column; gap: 2px;
  margin: 0; list-style: none;
}
body.page-index .ladder-item{
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .2s;
}
body.page-index .ladder-item:hover{ border-color: var(--teal); }
body.page-index .ladder-header{
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 32px; cursor: pointer; background: var(--paper);
  transition: background .15s;
}
body.page-index .ladder-header:hover{ background: var(--panel); }
body.page-index .ladder-tier{
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  color: var(--teal); line-height: 1; flex-shrink: 0; width: 36px;
}
body.page-index .ladder-info{ flex: 1; }
body.page-index .ladder-name{
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); margin-bottom: 6px; line-height: 1.2;
}
body.page-index .ladder-desc{ font-size: 15px; color: var(--ink-soft); }
body.page-index .ladder-badge{
  flex-shrink: 0; font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; align-self: flex-start;
  margin-top: 4px;
}
body.page-index .badge-free{ background: var(--teal-soft); color: var(--teal); }
body.page-index .badge-paid{ background: var(--panel); color: var(--ink-soft); border: 1px solid var(--line); }
body.page-index .badge-recurrent{ background: var(--amber-soft); color: var(--amber); }

body.page-index .ladder-body{ padding: 0 32px 28px 88px; background: var(--paper); }
body.page-index .ladder-features{
  display: flex; flex-direction: column; gap: 8px;
  list-style: none; margin-bottom: 18px;
}
body.page-index .ladder-features li{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-soft);
}
body.page-index .feat-check{ color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

body.page-index .legal-callout{
  background: var(--teal-soft); border: 1px solid #bfe0e4;
  border-radius: var(--r-lg); padding: 28px 32px;
  display: flex; gap: 18px; align-items: flex-start;
}
body.page-index .legal-callout svg{ flex-shrink: 0; margin-top: 3px; }
body.page-index .legal-callout p{ font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
body.page-index .legal-callout b{ color: var(--teal); }

body.page-index .diag-hero{ padding: 72px 0 52px; }
body.page-index .diag-hero h1{
  font-family: var(--serif);
  font-size: 48px; font-weight: 500; letter-spacing: -.03em;
  line-height: 1.06; margin: 12px 0 16px;
}
body.page-index .diag-grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
body.page-index .diag-benefits{ display: flex; flex-direction: column; gap: 22px; }
body.page-index .benefit{
  display: flex; gap: 16px; align-items: flex-start;
}
body.page-index .benefit-icon{
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--teal-soft); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal); font-weight: 700; font-size: 20px; flex-shrink: 0;
}
body.page-index .benefit h4{ font-size: 16px; font-weight: 700; margin-bottom: 4px; }
body.page-index .benefit p{ font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

body.page-index .form-card{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-lg);
}
body.page-index .form-card h2{
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  letter-spacing: -.015em; margin-bottom: 6px;
}
body.page-index .form-subtitle{ font-size: 14.5px; color: var(--ink-soft); margin-bottom: 28px; }
body.page-index .form-row{ margin-bottom: 16px; }
body.page-index .form-cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
body.page-index .form-row label,body.page-index .form-cols label{
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px; letter-spacing: .02em;
}
body.page-index .form-row input,body.page-index .form-row select,body.page-index .form-cols input,body.page-index .form-cols select{
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  background: var(--paper);
}
body.page-index .form-row input:focus,body.page-index .form-row select:focus,body.page-index .form-cols input:focus,body.page-index .form-cols select:focus{
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
body.page-index .form-checks{
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 8px;
}
body.page-index .check-item{
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink-soft); cursor: pointer;
}
body.page-index .check-item input[type="checkbox"]{
  width: 17px; height: 17px; accent-color: var(--teal);
  cursor: pointer;
}
body.page-index .consent-row{
  display: flex; gap: 11px; align-items: flex-start;
  margin: 18px 0 20px; font-size: 13px; color: var(--ink-soft); line-height: 1.55;
}
body.page-index .consent-row input[type="checkbox"]{ width: 17px; height: 17px; accent-color: var(--teal); margin-top: 2px; flex-shrink: 0; }
body.page-index .consent-row a{ color: var(--teal); text-decoration: underline; cursor: pointer; }
body.page-index .form-note{ font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 14px; line-height: 1.55; }
body.page-index .form-success{
  display: none; text-align: center; padding: 30px 20px;
}
body.page-index .form-success h3{
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--green); margin-bottom: 12px;
}
body.page-index .form-success p{ font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

body.page-index .ley-hero{ background: var(--panel); padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
body.page-index .ley-hero h1{
  font-family: var(--serif);
  font-size: 48px; font-weight: 500; letter-spacing: -.03em;
  line-height: 1.06; margin: 12px 0 18px;
}
body.page-index .ley-hero p{ font-size: 18px; color: var(--ink-soft); max-width: 54ch; line-height: 1.65; }

body.page-index .timeline{ position: relative; padding-left: 32px; }
body.page-index .timeline::before{
  content: '';
  position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
body.page-index .timeline-item{ position: relative; margin-bottom: 40px; }
body.page-index .timeline-dot{
  position: absolute; left: -30px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--teal);
}
body.page-index .timeline-item h3{ font-size: 20px; margin-bottom: 6px; }
body.page-index .timeline-item .tdate{
  font-size: 12px; font-weight: 700; color: var(--teal);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px;
}
body.page-index .timeline-item p{ font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

body.page-index .sanctions-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
body.page-index .sanction-card{
  border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--line);
}
body.page-index .sanction-card.leve{ background: var(--green-soft); border-color: #b6dfc8; }
body.page-index .sanction-card.grave{ background: var(--amber-soft); border-color: #f0d898; }
body.page-index .sanction-card.gravisima{ background: var(--red-soft); border-color: #f4c2be; }
body.page-index .sanction-label{
  font-size: 10px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 12px;
}
body.page-index .leve .sanction-label{ color: var(--green); }
body.page-index .grave .sanction-label{ color: var(--amber); }
body.page-index .gravisima .sanction-label{ color: var(--red); }
body.page-index .sanction-fine{
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  line-height: 1; margin-bottom: 8px;
}
body.page-index .leve .sanction-fine{ color: var(--green); }
body.page-index .grave .sanction-fine{ color: var(--amber); }
body.page-index .gravisima .sanction-fine{ color: var(--red); }
body.page-index .sanction-card p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

body.page-index .rights-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
body.page-index .right-card{
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px; background: var(--paper);
}
body.page-index .right-initial{
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  color: var(--teal); margin-bottom: 10px;
}
body.page-index .right-card h4{ font-size: 16px; font-weight: 700; margin-bottom: 6px; }
body.page-index .right-card p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

body.page-index .about-hero{ padding: 80px 0 60px; }
body.page-index .about-hero h1{
  font-family: var(--serif);
  font-size: 48px; font-weight: 500; letter-spacing: -.03em;
  line-height: 1.06; margin: 12px 0 18px;
}
body.page-index .about-grid{ display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
body.page-index .founder-card{
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px; text-align: center;
}
body.page-index .founder-avatar{
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
  font-family: var(--serif); font-size: 36px; font-weight: 500; color: #fff;
}
body.page-index .founder-name{ font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
body.page-index .founder-title{ font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.55; }
body.page-index .founder-links{ display: flex; flex-direction: column; gap: 8px; }
body.page-index .founder-link{
  display: flex; align-items: center; gap: 9px; justify-content: center;
  font-size: 13.5px; font-weight: 600; color: var(--teal);
  padding: 9px; border: 1px solid var(--teal-soft); border-radius: var(--r-sm);
  cursor: pointer; transition: background .15s;
}
body.page-index .founder-link:hover{ background: var(--teal-soft); }

body.page-index .about-content{ display: flex; flex-direction: column; gap: 32px; }
body.page-index .about-block h3{ font-size: 22px; margin-bottom: 10px; }
body.page-index .about-block p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
body.page-index .method-steps{ display: flex; flex-direction: column; gap: 16px; list-style: none; }
body.page-index .method-step{
  display: flex; gap: 14px; align-items: flex-start;
}
body.page-index .method-num{
  width: 30px; height: 30px; border-radius: var(--r-sm);
  background: var(--teal); color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; font-weight: 600; flex-shrink: 0;
}
body.page-index .method-step p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
body.page-index .method-step strong{ color: var(--ink); }

body.page-index .privacy-hero{
  background: var(--panel); border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}
body.page-index .privacy-hero h1{
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  letter-spacing: -.025em; margin: 10px 0 14px;
}
body.page-index .privacy-hero .updated{ font-size: 13px; color: var(--ink-soft); }
body.page-index .privacy-content{ padding: 60px 0 80px; }
body.page-index .privacy-doc{
  max-width: 740px; margin: 0 auto;
}
body.page-index .privacy-doc h2{
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin: 40px 0 14px; padding-top: 12px; border-top: 1px solid var(--line);
}
body.page-index .privacy-doc h2:first-child{ margin-top: 0; padding-top: 0; border-top: none; }
body.page-index .privacy-doc p{
  font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px;
}
body.page-index .privacy-doc ul{
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
body.page-index .privacy-doc ul li{
  display: flex; gap: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.65;
}
body.page-index .privacy-doc ul li::before{ content: '›'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
body.page-index .privacy-doc .highlight-box{
  background: var(--teal-soft); border: 1px solid #bfe0e4;
  border-radius: var(--r-md); padding: 18px 22px; margin: 20px 0;
}
body.page-index .privacy-doc .highlight-box p{ color: var(--ink); margin-bottom: 0; font-size: 14px; }
body.page-index .privacy-doc .highlight-box b{ color: var(--teal); }

body.page-index footer{
  background: var(--ink); color: #6a82aa;
  padding: 56px 0 32px;
}
body.page-index .footer-grid{
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
body.page-index .footer-brand .brand-name{ color: #fff; margin-bottom: 4px; }
body.page-index .footer-brand .brand-sub{ color: #4a6080; }
body.page-index .footer-tagline{ font-size: 14px; color: #8faabf; margin-top: 12px; line-height: 1.65; }
body.page-index .footer-col h4{
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #4a6080; margin-bottom: 14px;
}
body.page-index .footer-links{ display: flex; flex-direction: column; gap: 9px; list-style: none; }
body.page-index .footer-links a{
  font-size: 14px; color: #8faabf; cursor: pointer;
  transition: color .15s;
}
body.page-index .footer-links a:hover{ color: #fff; }
body.page-index .footer-bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
}
body.page-index .footer-badge{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,110,130,.2); padding: 5px 12px;
  border-radius: 999px; font-size: 11.5px; font-weight: 600;
  color: var(--teal); border: 1px solid rgba(15,110,130,.3);
}

@media (max-width: 900px){
  body.page-index .hero-grid, body.page-index .diag-grid, body.page-index .about-grid{ grid-template-columns: 1fr; }
  body.page-index .hero h1{ font-size: 38px; }
  body.page-index .dpi-card{ max-width: 440px; }
  body.page-index .stakes-grid{ grid-template-columns: repeat(2, 1fr); }
  body.page-index .steps-grid{ grid-template-columns: 1fr; gap: 24px; }
  body.page-index .dims-grid{ grid-template-columns: 1fr; }
  body.page-index .sanctions-grid, body.page-index .rights-grid{ grid-template-columns: 1fr; }
  body.page-index .footer-grid{ grid-template-columns: 1fr 1fr; }
  body.page-index .services-hero h1{ font-size: 36px; }
  body.page-index .section-head h2{ font-size: 30px; }
  body.page-index .nav-links, body.page-index .nav-cta{ display: none; }
  body.page-index .hamburger{ display: flex; }
  body.page-index .form-cols{ grid-template-columns: 1fr; }
  body.page-index .analyze-block{ padding: 32px; }
  body.page-index .countdown-inner{ flex-direction: column; align-items: flex-start; }}
@media (max-width: 600px) {
  body.page-index .wrap{ padding: 0 16px; }
  body.page-index .hero{ padding: 52px 0 40px; }
  body.page-index .hero h1{ font-size: 32px; }
  body.page-index .hero-lead{ font-size: 16px; }
  body.page-index .section{ padding: 60px 0; }
  body.page-index .stakes-grid{ grid-template-columns: 1fr; }
  body.page-index .form-checks{ grid-template-columns: 1fr; }
  body.page-index .footer-grid{ grid-template-columns: 1fr; }
  body.page-index .hero-actions{ flex-direction: column; align-items: flex-start; }
  body.page-index .countdown-units{ gap: 6px; }
  body.page-index .countdown-unit{ min-width: 58px; padding: 8px 12px; }
  body.page-index .countdown-unit b{ font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  body.page-index *,body.page-index *::before,body.page-index *::after{ animation: none !important; transition: none !important; }
}

/* ===== landing.html :: page-landing ===== */
body.page-landing{
    --ink:#14203a; --ink-soft:#46557a; --paper:#ffffff; --panel:#f5f7fb;
    --line:#e2e7f0; --teal:#0f6e82; --teal-d:#0b5867; --teal-soft:#e4f1f3;
    --red:#bd3b34; --amber:#cf8a1c; --green:#2c8159;
  }
  body.page-landing *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body.page-landing{margin:0;color:var(--ink);background:var(--paper);
    font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;line-height:1.55;
    -webkit-font-smoothing:antialiased}
  body.page-landing .display{font-family:"Fraunces","Iowan Old Style",Georgia,serif}
  body.page-landing a{color:inherit}
  body.page-landing .wrap{max-width:1080px;margin:0 auto;padding:0 24px}
  body.page-landing .btn{display:inline-block;background:var(--teal);color:#fff;font-weight:600;font-size:15px;
    padding:13px 26px;border-radius:9px;text-decoration:none;border:0;cursor:pointer;transition:background .15s}
  body.page-landing .btn:hover{background:var(--teal-d)}
  body.page-landing .btn.lg{font-size:16px;padding:15px 30px}
  body.page-landing .eyebrow{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal);font-weight:600}

  body.page-landing header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.88);
    backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid var(--line)}
  body.page-landing header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
  body.page-landing .brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:16px;letter-spacing:-.01em;text-decoration:none}
  body.page-landing .brand .mark{width:30px;height:30px;border-radius:8px;background:var(--teal);
    display:grid;place-items:center;color:#fff;font-weight:700}
  body.page-landing .brand span{color:var(--ink-soft);font-weight:500;font-size:13px}

  body.page-landing .ticker{background:var(--ink);color:#dbe4f5;font-size:13px;text-align:center;padding:8px 16px}
  body.page-landing .ticker b{color:#fff}

  body.page-landing .hero{padding:64px 0 40px}
  body.page-landing .hero .grid{display:grid;grid-template-columns:1.15fr .85fr;gap:48px;align-items:center}
  body.page-landing h1{font-size:46px;line-height:1.06;letter-spacing:-.025em;font-weight:600;margin:14px 0 18px}
  body.page-landing h1 em{font-style:normal;color:var(--teal);background:linear-gradient(transparent 62%,var(--teal-soft) 62%)}
  body.page-landing .lead{font-size:18px;color:var(--ink-soft);max-width:48ch;margin:0 0 26px}
  body.page-landing .hero .cues{display:flex;gap:20px;margin-top:20px;font-size:13.5px;color:var(--ink-soft);flex-wrap:wrap}
  body.page-landing .cues .c{display:flex;align-items:center;gap:7px}
  body.page-landing .tick{color:var(--green);font-weight:700}

  body.page-landing .gcard{background:var(--ink);border-radius:18px;padding:30px;color:#eaf0fb;text-align:center;
    box-shadow:0 20px 50px rgba(20,32,58,.22)}
  body.page-landing .gcard .gauge{position:relative;width:200px;height:200px;margin:6px auto 8px}
  body.page-landing .gcard svg{transform:rotate(-90deg)}
  body.page-landing .gcard .qn{position:absolute;inset:0;display:grid;place-content:center;text-align:center}
  body.page-landing .gcard .qn b{font-family:"Fraunces",serif;font-size:60px;font-weight:600;line-height:1;color:#fff}
  body.page-landing .gcard .qn small{display:block;font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#9fb0d2;margin-top:6px}
  body.page-landing .gcard p{font-size:13.5px;color:#bcc9e4;margin:6px 0 0}
  body.page-landing .gcard .leg{display:flex;justify-content:center;gap:14px;margin-top:14px;font-size:11.5px;color:#9fb0d2}
  body.page-landing .gcard .leg i{display:inline-block;width:9px;height:9px;border-radius:50%;margin-right:5px}

  body.page-landing .count{background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:28px 0}
  body.page-landing .count .wrap{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
  body.page-landing .count .txt{font-size:15px;color:var(--ink-soft)}
  body.page-landing .count .txt b{color:var(--ink)}
  body.page-landing .cd{display:flex;gap:12px}
  body.page-landing .cd .u{background:#fff;border:1px solid var(--line);border-radius:10px;padding:10px 16px;text-align:center;min-width:74px}
  body.page-landing .cd .u b{display:block;font-family:"Fraunces",serif;font-size:30px;line-height:1;color:var(--ink)}
  body.page-landing .cd .u span{font-size:10.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-soft)}

  body.page-landing section{padding:64px 0}
  body.page-landing .sec-head{max-width:62ch;margin-bottom:36px}
  body.page-landing h2{font-size:32px;line-height:1.12;letter-spacing:-.02em;font-weight:600;margin:10px 0 12px}
  body.page-landing .sec-head p{font-size:16.5px;color:var(--ink-soft);margin:0}

  body.page-landing .stakes{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
  body.page-landing .stake{border:1px solid var(--line);border-radius:13px;padding:22px}
  body.page-landing .stake .n{font-family:"Fraunces",serif;font-size:30px;color:var(--teal);line-height:1}
  body.page-landing .stake h3{font-size:16px;margin:12px 0 6px}
  body.page-landing .stake p{font-size:13.5px;color:var(--ink-soft);margin:0}

  body.page-landing .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;counter-reset:s}
  body.page-landing .step{position:relative;padding-top:8px}
  body.page-landing .step::before{counter-increment:s;content:"0" counter(s);font-family:"Fraunces",serif;
    font-size:15px;color:var(--teal);font-weight:600}
  body.page-landing .step h3{font-size:18px;margin:8px 0 7px}
  body.page-landing .step p{font-size:14.5px;color:var(--ink-soft);margin:0}
  body.page-landing .step .ln{height:2px;background:linear-gradient(90deg,var(--teal),transparent);margin-top:14px;border-radius:2px}

  body.page-landing .analyze{background:var(--ink);color:#dbe4f5;border-radius:20px;padding:46px}
  body.page-landing .analyze h2{color:#fff}
  body.page-landing .analyze .sec-head p{color:#aebbd6}
  body.page-landing .dims{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 40px;margin-top:8px}
  body.page-landing .dimrow{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:15px}
  body.page-landing .dimrow b{margin-left:auto;color:#9fb0d2;font-size:12.5px;font-weight:500}
  body.page-landing .dimrow .ic{color:var(--teal);font-weight:700}

  body.page-landing .who{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
  body.page-landing .chip{border:1px solid var(--line);border-radius:999px;padding:9px 18px;font-size:14px;font-weight:500;background:#fff}

  body.page-landing .formsec{background:var(--teal-soft)}
  body.page-landing .fcard{background:#fff;border:1px solid #bfe0e4;border-radius:18px;padding:38px;max-width:680px;margin:0 auto;
    box-shadow:0 18px 44px rgba(15,110,130,.12)}
  body.page-landing .fcard h2{margin-top:0}
  body.page-landing .fld{margin:14px 0}
  body.page-landing .fld label{display:block;font-size:13px;font-weight:600;margin-bottom:6px}
  body.page-landing .fld input,body.page-landing .fld select{width:100%;padding:12px 13px;border:1px solid var(--line);border-radius:9px;
    font:inherit;font-size:15px;background:#fff}
  body.page-landing .fld input:focus,body.page-landing .fld select:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
  body.page-landing .two{display:grid;grid-template-columns:1fr 1fr;gap:14px}
  body.page-landing .checks{display:grid;grid-template-columns:1fr 1fr;gap:8px 16px;margin-top:6px}
  body.page-landing .chk{display:flex;align-items:center;gap:9px;font-size:14px;color:var(--ink-soft)}
  body.page-landing .chk input{width:17px;height:17px;accent-color:var(--teal)}
  body.page-landing .consent{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--ink-soft);margin:16px 0 6px}
  body.page-landing .consent input{margin-top:3px;width:17px;height:17px;accent-color:var(--teal)}
  body.page-landing .consent a{color:var(--teal);text-decoration:underline}
  body.page-landing .fnote{font-size:12px;color:var(--ink-soft);text-align:center;margin-top:14px}
  body.page-landing .ok{display:none;text-align:center;padding:20px}
  body.page-landing .ok h3{font-family:"Fraunces",serif;font-size:24px;color:var(--green);margin:0 0 8px}

  body.page-landing footer{border-top:1px solid var(--line);padding:34px 0;font-size:13px;color:var(--ink-soft)}
  body.page-landing footer .wrap{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
  body.page-landing footer a{text-decoration:none}
  body.page-landing footer a:hover{color:var(--teal)}

  body.page-landing :focus-visible{outline:2px solid var(--teal);outline-offset:2px}
  @media (max-width:860px){
    body.page-landing .hero .grid,body.page-landing .stakes,body.page-landing .steps,body.page-landing .dims,body.page-landing .two{grid-template-columns:1fr}
    body.page-landing h1{font-size:34px}body.page-landing .stakes{gap:12px}body.page-landing .analyze{padding:30px}
    body.page-landing .gcard{max-width:340px;margin:0 auto}
  }
  @media (prefers-reduced-motion:reduce){body.page-landing *{transition:none!important;scroll-behavior:auto}}

/* ===== diagnostico_gdp21.html :: page-diagnostico ===== */
body.page-diagnostico{
  --navy:#14203a;--teal:#0f6e82;--teal-d:#0b5867;
  --teal-soft:#e4f1f3;--ink-soft:#46557a;
  --panel:#f5f7fb;--line:#e2e7f0;--paper:#fff;
  --red:#bd3b34;--amber:#cf8a1c;--green:#2c8159;
  --shadow:0 1px 3px rgba(20,32,58,.06),0 10px 32px rgba(20,32,58,.09);
}
body.page-diagnostico *,body.page-diagnostico *::before,body.page-diagnostico *::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px}
body.page-diagnostico{font-family:'Plus Jakarta Sans',system-ui,sans-serif;color:var(--navy);
  -webkit-font-smoothing:antialiased;min-height:100vh}
body.page-diagnostico .display{font-family:'Fraunces',Georgia,serif}
body.page-diagnostico a{color:inherit}

body.page-diagnostico #vista-publica{
  background:var(--teal-soft);min-height:100vh;padding:48px 20px 64px;
}
body.page-diagnostico .card{background:#fff;border:1px solid #bfe0e4;border-radius:20px;
  padding:42px;max-width:700px;margin:0 auto;
  box-shadow:0 18px 48px rgba(15,110,130,.14)}
body.page-diagnostico .eyebrow{font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal);font-weight:700;margin-bottom:6px}
body.page-diagnostico .card h2{font-size:28px;font-weight:600;margin-bottom:4px}
body.page-diagnostico .card>p{color:var(--ink-soft);font-size:15px;margin-bottom:24px}
body.page-diagnostico .fld{margin:14px 0}
body.page-diagnostico .fld label{display:block;font-size:13px;font-weight:700;color:var(--navy);margin-bottom:6px}
body.page-diagnostico .fld input:not([type="checkbox"]),body.page-diagnostico .fld select{
  width:100%;padding:12px 14px;border:1.5px solid var(--line);border-radius:9px;
  font:inherit;font-size:15px;color:var(--navy);
  background:#fff;transition:border-color .15s;appearance:none}
body.page-diagnostico .fld select{background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2346557a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;padding-right:38px;cursor:pointer}
body.page-diagnostico .fld input:focus,body.page-diagnostico .fld select:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
body.page-diagnostico .two{display:grid;grid-template-columns:1fr 1fr;gap:14px}
body.page-diagnostico .checks{display:grid;grid-template-columns:1fr 1fr;gap:10px 16px;margin-top:10px}
body.page-diagnostico .chk{display:flex;align-items:center;gap:9px;font-size:14px;color:var(--ink-soft);cursor:pointer;user-select:none}
body.page-diagnostico .chk input[type="checkbox"]{width:18px;height:18px;flex-shrink:0;accent-color:var(--teal);cursor:pointer}
body.page-diagnostico .consent{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--ink-soft);margin:18px 0 6px}
body.page-diagnostico .consent input[type="checkbox"]{margin-top:3px;width:18px;height:18px;flex-shrink:0;accent-color:var(--teal);cursor:pointer}
body.page-diagnostico .consent a{color:var(--teal);text-decoration:underline}
body.page-diagnostico .btn-submit{width:100%;margin-top:10px;padding:14px 20px;
  background:var(--navy);color:#fff;border:none;border-radius:10px;
  font:inherit;font-size:16px;font-weight:700;cursor:pointer;transition:background .15s}
body.page-diagnostico .btn-submit:hover{background:#0f1c35}
body.page-diagnostico .btn-submit:disabled{background:#8899b4;cursor:not-allowed}
body.page-diagnostico .fnote{font-size:12px;color:var(--ink-soft);text-align:center;margin-top:12px;line-height:1.6}
body.page-diagnostico .alt-link{background:rgba(255,255,255,.7);border:1px solid #bfe0e4;border-radius:12px;
  padding:14px 20px;max-width:700px;margin:16px auto 0;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
body.page-diagnostico .alt-link p{font-size:14px;color:var(--ink-soft);margin:0}
body.page-diagnostico .alt-link a{color:var(--teal);font-weight:700;text-decoration:none;font-size:14px}

body.page-diagnostico #prog-area{display:none;max-width:700px;margin:0 auto}
body.page-diagnostico .prog-card{background:#fff;border-radius:20px;padding:44px;text-align:center;
  box-shadow:0 18px 48px rgba(15,110,130,.14)}
body.page-diagnostico .spinner{width:48px;height:48px;border:3px solid var(--line);border-top-color:var(--teal);
  border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 22px}
@keyframes spin{to{transform:rotate(360deg)}}
body.page-diagnostico .prog-card h2{font-size:20px;font-weight:700;margin-bottom:8px}
body.page-diagnostico .prog-card p{color:var(--ink-soft);font-size:14px}
body.page-diagnostico .steps-track{margin:24px auto 0;max-width:380px;text-align:left}
body.page-diagnostico .step-item{display:flex;align-items:center;gap:12px;padding:9px 0;font-size:13px;
  color:#8899b4;border-bottom:1px solid var(--line);transition:color .3s}
body.page-diagnostico .step-item:last-child{border-bottom:none}
body.page-diagnostico .step-item.active{color:var(--navy);font-weight:700}
body.page-diagnostico .step-item.done{color:var(--green)}
body.page-diagnostico .step-dot{width:22px;height:22px;border-radius:50%;background:var(--line);
  flex-shrink:0;display:grid;place-items:center;font-size:10px;font-weight:700;transition:background .3s}
body.page-diagnostico .step-item.active .step-dot{background:var(--teal);color:#fff}
body.page-diagnostico .step-item.done .step-dot{background:var(--green);color:#fff}

body.page-diagnostico #gracias-area{display:none;max-width:700px;margin:0 auto}
body.page-diagnostico .gracias-card{background:#fff;border:1px solid #bfe0e4;border-radius:20px;
  padding:52px 42px;text-align:center;box-shadow:0 18px 48px rgba(15,110,130,.14)}
body.page-diagnostico .check-circle{width:72px;height:72px;border-radius:50%;background:#e7f3ec;
  display:flex;align-items:center;justify-content:center;margin:0 auto 24px;font-size:32px}
body.page-diagnostico .gracias-card h2{font-size:30px;font-weight:600;margin-bottom:12px;color:var(--green)}
body.page-diagnostico .gracias-card p{font-size:15px;color:var(--ink-soft);line-height:1.7;max-width:44ch;margin:0 auto 8px}
body.page-diagnostico .plazo{display:inline-block;margin-top:20px;background:var(--teal-soft);
  border:1px solid #bfe0e4;border-radius:10px;padding:14px 22px;
  font-size:14px;color:var(--teal);font-weight:600}
body.page-diagnostico .plazo span{display:block;font-size:12px;font-weight:400;color:var(--ink-soft);margin-top:3px}
body.page-diagnostico .gracias-divider{border:none;border-top:1px solid var(--line);margin:32px 0}
body.page-diagnostico .next-steps{text-align:left;background:var(--panel);border-radius:12px;padding:20px 24px}
body.page-diagnostico .next-steps h3{font-size:14px;font-weight:700;margin-bottom:12px}
body.page-diagnostico .ns-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:10px;font-size:13px;color:var(--ink-soft)}
body.page-diagnostico .ns-row:last-child{margin-bottom:0}
body.page-diagnostico .ns-num{width:22px;height:22px;border-radius:50%;background:var(--teal);
  color:#fff;font-size:11px;font-weight:700;flex-shrink:0;display:grid;place-items:center}
body.page-diagnostico .gracias-card .alt{margin-top:24px;font-size:13px;color:var(--ink-soft)}
body.page-diagnostico .gracias-card .alt a{color:var(--teal);font-weight:700;text-decoration:none}

body.page-diagnostico #err-area{display:none;max-width:700px;margin:0 auto}
body.page-diagnostico .err-card{background:#fdf2f2;border:1px solid #f0cdc9;border-radius:16px;padding:30px 34px}
body.page-diagnostico .err-card h3{color:var(--red);margin-bottom:8px;font-size:18px}
body.page-diagnostico .err-card p{font-size:14px;color:#6b2929;line-height:1.6}
body.page-diagnostico .btn-retry{margin-top:16px;padding:10px 22px;background:var(--red);
  color:#fff;border:none;border-radius:8px;font:inherit;font-size:14px;font-weight:700;cursor:pointer}

body.page-diagnostico #vista-panel{display:none;min-height:100vh;background:#edf0f7}

body.page-diagnostico #login-panel{display:flex;align-items:center;justify-content:center;
  min-height:100vh;background:#edf0f7;padding:20px}
body.page-diagnostico .login-card{background:#fff;border-radius:16px;padding:40px;max-width:360px;width:100%;
  box-shadow:var(--shadow);text-align:center}
body.page-diagnostico .login-card .mark{width:48px;height:48px;background:var(--teal);border-radius:12px;
  display:grid;place-items:center;color:#fff;font-size:20px;font-weight:700;margin:0 auto 16px}
body.page-diagnostico .login-card h2{font-size:22px;font-weight:600;margin-bottom:6px}
body.page-diagnostico .login-card p{font-size:13px;color:var(--ink-soft);margin-bottom:22px}
body.page-diagnostico .login-card input{width:100%;padding:12px 14px;border:1.5px solid var(--line);border-radius:9px;
  font:inherit;font-size:15px;color:var(--navy);margin-bottom:12px}
body.page-diagnostico .login-card input:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
body.page-diagnostico .btn-login{width:100%;padding:13px;background:var(--navy);color:#fff;border:none;
  border-radius:9px;font:inherit;font-size:15px;font-weight:700;cursor:pointer}
body.page-diagnostico .btn-login:hover{background:#0f1c35}
body.page-diagnostico .login-err{font-size:13px;color:var(--red);margin-top:8px;display:none}

body.page-diagnostico #panel-app{display:none;min-height:100vh;flex-direction:column}
body.page-diagnostico .panel-topbar{background:var(--navy);padding:0 24px;height:54px;
  display:flex;align-items:center;gap:12px;position:sticky;top:0;z-index:50}
body.page-diagnostico .panel-topbar .logo{display:flex;align-items:center;gap:8px;color:#fff;font-weight:700;font-size:14px}
body.page-diagnostico .panel-topbar .logo .m{width:26px;height:26px;border-radius:7px;background:var(--teal);
  display:grid;place-items:center;font-size:12px;font-weight:700;color:#fff}
body.page-diagnostico .panel-topbar .badge{background:rgba(15,110,130,.4);border:1px solid rgba(15,110,130,.6);
  color:#5fc7d8;font-size:10px;font-weight:700;padding:2px 8px;border-radius:20px;letter-spacing:.06em;text-transform:uppercase}
body.page-diagnostico .panel-topbar .spacer{flex:1}
body.page-diagnostico .topbar-count{font-size:12px;color:#9fb0d2;margin-right:8px}
body.page-diagnostico .btn-topbar{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);
  color:#fff;font:inherit;font-size:12px;font-weight:600;padding:6px 13px;
  border-radius:7px;cursor:pointer;transition:background .15s}
body.page-diagnostico .btn-topbar:hover{background:rgba(255,255,255,.18)}

body.page-diagnostico .panel-body{display:grid;grid-template-columns:300px 1fr;flex:1;min-height:calc(100vh - 54px)}

body.page-diagnostico .psidebar{background:#fff;border-right:1px solid var(--line);
  height:calc(100vh - 54px);overflow-y:auto;position:sticky;top:54px}
body.page-diagnostico .psidebar-head{padding:16px 18px;border-bottom:1px solid var(--line)}
body.page-diagnostico .psidebar-head h3{font-size:13px;font-weight:700;margin-bottom:2px}
body.page-diagnostico .psidebar-head p{font-size:11px;color:var(--ink-soft)}
body.page-diagnostico .p-filters{display:flex;gap:6px;padding:10px 14px;border-bottom:1px solid var(--line)}
body.page-diagnostico .pf-btn{font:inherit;font-size:11px;font-weight:600;padding:4px 11px;
  border-radius:20px;border:1.5px solid var(--line);background:#fff;
  cursor:pointer;color:var(--ink-soft);transition:all .15s}
body.page-diagnostico .pf-btn.active{background:var(--navy);color:#fff;border-color:var(--navy)}
body.page-diagnostico .p-lista{padding:8px 10px}
body.page-diagnostico .p-empty{padding:32px 18px;text-align:center;color:var(--ink-soft);font-size:13px;line-height:1.6}

body.page-diagnostico .lcard{border:1px solid var(--line);border-radius:9px;padding:13px;margin-bottom:7px;
  cursor:pointer;transition:all .15s;background:#fff}
body.page-diagnostico .lcard:hover{border-color:var(--teal);box-shadow:0 2px 8px rgba(15,110,130,.1)}
body.page-diagnostico .lcard.sel{border-color:var(--teal);background:var(--teal-soft)}
body.page-diagnostico .lcard-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px;margin-bottom:5px}
body.page-diagnostico .lcard-empresa{font-size:13px;font-weight:700;line-height:1.3}
body.page-diagnostico .lcard-url{font-size:11px;color:var(--ink-soft);margin-top:1px}
body.page-diagnostico .lcard-meta{font-size:11px;color:var(--ink-soft);display:flex;gap:8px;align-items:center}
body.page-diagnostico .sdot{display:inline-flex;align-items:center;gap:4px;font-size:10px;font-weight:700;
  padding:2px 8px;border-radius:20px;white-space:nowrap}
body.page-diagnostico .sdot.pendiente{background:#fef3e2;color:#b45309}
body.page-diagnostico .sdot.aprobado{background:#e7f3ec;color:var(--green)}
body.page-diagnostico .sdot.error{background:#fdf2f2;color:var(--red)}
body.page-diagnostico .sdot.generando{background:#e8edf8;color:#3b5bdb}
body.page-diagnostico .dpi-tag{font-weight:700;font-size:11px;padding:2px 7px;border-radius:20px}

body.page-diagnostico .pmain{padding:26px 28px;overflow-y:auto;height:calc(100vh - 54px)}
body.page-diagnostico .pmain-empty{display:flex;flex-direction:column;align-items:center;
  justify-content:center;height:100%;color:var(--ink-soft);text-align:center;gap:10px}
body.page-diagnostico .pmain-empty .ico{font-size:44px;opacity:.25}

body.page-diagnostico .abar{display:flex;align-items:center;gap:8px;margin-bottom:18px;flex-wrap:wrap}
body.page-diagnostico .abar h2{font-size:14px;font-weight:600;flex:1;color:var(--ink-soft)}
body.page-diagnostico .abtn{font:inherit;font-size:12px;font-weight:700;padding:8px 16px;
  border-radius:7px;border:none;cursor:pointer;transition:all .15s}
body.page-diagnostico .abtn-approve{background:var(--green);color:#fff}
body.page-diagnostico .abtn-approve:hover{background:#226b49}
body.page-diagnostico .abtn-approved{background:#e7f3ec;color:var(--green);cursor:default}
body.page-diagnostico .abtn-pdf{background:var(--teal);color:#fff}
body.page-diagnostico .abtn-pdf:hover{background:var(--teal-d)}
body.page-diagnostico .abtn-del{background:transparent;color:var(--red);border:1.5px solid #f0cdc9}
body.page-diagnostico .abtn-del:hover{background:#fdf2f2}
body.page-diagnostico .abtn:disabled{opacity:.5;cursor:not-allowed}

body.page-diagnostico .approved-banner{background:#e7f3ec;border:1px solid #b3dfc4;border-radius:9px;
  padding:11px 16px;margin-bottom:14px;font-size:13px;color:var(--green);
  display:flex;align-items:center;gap:9px;font-weight:600}

body.page-diagnostico .sheet{background:#fff;border-radius:4px;box-shadow:var(--shadow);overflow:hidden}
body.page-diagnostico .s-topbar{display:flex;justify-content:space-between;align-items:flex-start;padding:18px 38px;border-bottom:1px solid var(--line)}
body.page-diagnostico .s-brand{display:flex;align-items:center;gap:9px}
body.page-diagnostico .s-brand .m{width:26px;height:26px;border-radius:6px;background:var(--teal);display:grid;place-items:center;color:#fff;font-weight:700;font-size:12px}
body.page-diagnostico .s-brand .n{font-size:13px;font-weight:700;line-height:1.4}body.page-diagnostico .s-brand .n span{color:var(--ink-soft);font-weight:400}
body.page-diagnostico .doc-meta{text-align:right;font-size:11px;color:var(--ink-soft);line-height:1.8}
body.page-diagnostico .spad{padding:26px 38px}
body.page-diagnostico .eyebrow-sm{font-size:9px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal);font-weight:700;margin-bottom:3px}
body.page-diagnostico h1.s-title{font-size:22px;font-weight:600;letter-spacing:-.02em;line-height:1.1;margin-bottom:15px}
body.page-diagnostico .cgrid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;background:var(--panel);border:1px solid var(--line);border-radius:9px;padding:12px 16px;margin-bottom:18px}
body.page-diagnostico .k{font-size:9px;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-soft)}
body.page-diagnostico .v{font-size:13px;font-weight:700;margin-top:2px}
body.page-diagnostico .s-hero{display:grid;grid-template-columns:165px 1fr;gap:22px;align-items:center;margin-bottom:6px}
body.page-diagnostico .s-gauge{position:relative;width:165px;height:165px;flex-shrink:0}
body.page-diagnostico .s-gauge svg{transform:rotate(-90deg)}
body.page-diagnostico .gqn{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
body.page-diagnostico .gqn b{font-family:'Fraunces',serif;font-size:42px;font-weight:600;line-height:1}
body.page-diagnostico .gqn small{font-size:9px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-soft);margin-top:3px}
body.page-diagnostico .vbadge{display:inline-flex;align-items:center;gap:6px;font-weight:700;font-size:11px;padding:4px 11px;border-radius:99px;margin-bottom:10px}
body.page-diagnostico .bdot{width:7px;height:7px;border-radius:50%}
body.page-diagnostico .verdict h2{font-size:16px;font-weight:600;line-height:1.28;margin-bottom:5px}
body.page-diagnostico .verdict p{font-size:12px;color:var(--ink-soft);line-height:1.65;max-width:44ch}
body.page-diagnostico .dlrow{margin-top:11px;padding-top:10px;border-top:1px solid var(--line);display:flex;align-items:baseline;gap:7px}
body.page-diagnostico .dlrow b{font-family:'Fraunces',serif;font-size:20px;color:var(--red)}
body.page-diagnostico .dlrow span{font-size:11px;color:var(--ink-soft);line-height:1.5}
body.page-diagnostico h3.ssec{font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin:24px 0 10px;padding-bottom:6px;border-bottom:1px solid var(--line)}
body.page-diagnostico .drow{display:grid;grid-template-columns:175px 1fr 32px;gap:8px;align-items:center;margin:7px 0}
body.page-diagnostico .dlbl{font-size:11px}body.page-diagnostico .dtrack{height:6px;background:var(--panel);border-radius:3px;overflow:hidden}
body.page-diagnostico .dbar{height:100%;border-radius:3px}body.page-diagnostico .dval{font-size:11px;font-weight:700;text-align:right}
body.page-diagnostico table{width:100%;border-collapse:collapse;font-size:11.5px}
body.page-diagnostico th{text-align:left;font-size:9px;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;padding:6px 9px;border-bottom:1.5px solid var(--line)}
body.page-diagnostico td{padding:6px 9px;border-bottom:1px solid var(--line);vertical-align:top;line-height:1.5}
body.page-diagnostico .st{font-weight:700;white-space:nowrap;font-size:10px}
body.page-diagnostico .st.ok{color:var(--green)}body.page-diagnostico .st.mid{color:var(--amber)}body.page-diagnostico .st.no{color:var(--red)}
body.page-diagnostico .fbox{display:flex;align-items:center;gap:6px;flex-wrap:wrap;background:var(--panel);border:1px solid var(--line);border-radius:9px;padding:11px 13px}
body.page-diagnostico .fn{background:#fff;border:1px solid var(--line);border-radius:6px;padding:5px 9px;font-size:10.5px;font-weight:700}
body.page-diagnostico .fn.ext{border-color:#e6c4c1;background:#fbf2f1;color:var(--red)}
body.page-diagnostico .farr{color:var(--ink-soft);font-size:12px}
body.page-diagnostico .gap{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:8px;padding:11px 13px;margin:7px 0}
body.page-diagnostico .gap.med{border-left-color:var(--amber)}body.page-diagnostico .gap h4{margin-bottom:3px;font-size:12.5px;font-weight:700}
body.page-diagnostico .gwhy{font-size:11.5px;color:var(--ink-soft);margin-bottom:5px;line-height:1.55}
body.page-diagnostico .gmeta{font-size:10px;color:var(--ink-soft);display:flex;gap:11px}body.page-diagnostico .gmeta b{color:var(--navy)}
body.page-diagnostico .rank{font-family:'Fraunces',serif;color:var(--teal);font-size:12px;margin-right:3px}
body.page-diagnostico .nota{background:var(--teal-soft);border:1px solid #bfe0e4;border-radius:9px;padding:12px 14px;font-size:12px;line-height:1.65}
body.page-diagnostico .cta-block{margin-top:20px;background:var(--navy);color:#eaf0fb;border-radius:10px;padding:20px 24px}
body.page-diagnostico .cta-block h3{font-family:'Fraunces',serif;font-size:17px;font-weight:500;color:#fff;margin-bottom:4px}
body.page-diagnostico .cta-block p{font-size:12px;color:#c4d0e8;margin-bottom:11px;line-height:1.6}
body.page-diagnostico .cta-btn{display:inline-block;background:var(--teal);color:#fff;font-weight:700;font-size:11.5px;padding:8px 16px;border-radius:7px;text-decoration:none}
body.page-diagnostico .cta-contact{margin-top:8px;font-size:10.5px;color:#9fb0d2}
body.page-diagnostico .disc{font-size:9.5px;color:var(--ink-soft);line-height:1.65;margin-top:18px;padding-top:10px;border-top:1px solid var(--line)}

body.page-diagnostico #toast{position:fixed;bottom:22px;left:50%;transform:translateX(-50%);
  background:var(--navy);color:#fff;font-size:13px;font-weight:600;
  padding:11px 20px;border-radius:9px;z-index:9999;
  box-shadow:0 4px 20px rgba(0,0,0,.22);opacity:0;transition:opacity .3s;pointer-events:none}

@media(max-width:640px){
  #vista-publica{padding:24px 14px 48px}
  .card,.gracias-card{padding:28px 20px}
  .two,.checks{grid-template-columns:1fr}
  .panel-body{grid-template-columns:1fr}
  .psidebar{height:auto;position:static;border-right:none;border-bottom:1px solid var(--line)}
  .pmain{height:auto}
}

/* ===== backoffice_gdp21.html :: page-backoffice ===== */
body.page-backoffice{
  --navy:#14203a; --navy-2:#1e2f52; --navy-3:#2a3d63;
  --teal:#0f6e82; --teal-soft:#e3f0f3; --teal-bright:#1592ac;
  --paper:#f4f6f8; --panel:#ffffff; --panel-2:#fafbfc;
  --ink:#1a2438; --muted:#5f6b7e; --line:#dde2e9; --line-strong:#c3cbd6;
  --rojo:#bd3b34; --rojo-soft:#f8e8e7; --ambar:#cf8a1c; --ambar-soft:#f9f0dd; --verde:#2c8159; --verde-soft:#e4f1ea;
  --radius:12px;
  --shadow:0 1px 2px rgba(20,32,58,.06), 0 6px 22px rgba(20,32,58,.08);
}
body.page-backoffice *{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body.page-backoffice{margin:0;background:var(--paper);color:var(--ink);
  font-family:"Plus Jakarta Sans",system-ui,sans-serif;font-size:14px;line-height:1.5}
body.page-backoffice .display{font-family:"Fraunces",serif}
body.page-backoffice button{font-family:inherit}
body.page-backoffice input,body.page-backoffice select,body.page-backoffice textarea{font-family:inherit;font-size:13.5px;color:var(--ink)}
body.page-backoffice h1,body.page-backoffice h2,body.page-backoffice h3,body.page-backoffice h4{margin:0}
body.page-backoffice a{color:var(--teal)}
body.page-backoffice ::selection{background:var(--teal-soft)}
body.page-backoffice :focus-visible{outline:2px solid var(--teal);outline-offset:2px;border-radius:4px}

body.page-backoffice #login-view{min-height:100vh;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 60%,#0d3a47 100%);padding:24px}
body.page-backoffice .login-card{background:var(--panel);border-radius:18px;padding:40px 36px;width:100%;max-width:400px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);text-align:center}
body.page-backoffice .login-mark{width:52px;height:52px;border-radius:14px;background:var(--navy);color:#fff;
  display:grid;place-items:center;margin:0 auto 16px;font-family:"Fraunces",serif;font-size:24px;font-weight:700}
body.page-backoffice .login-card h1{font-size:24px;font-weight:700;margin-bottom:4px}
body.page-backoffice .login-card p{color:var(--muted);font-size:13px;margin:0 0 22px}
body.page-backoffice .login-card input{width:100%;padding:12px 14px;border:1.5px solid var(--line-strong);border-radius:10px;
  font-size:15px;margin-bottom:12px}
body.page-backoffice .login-card input:focus{border-color:var(--teal);outline:none}
body.page-backoffice .btn-primary{background:var(--teal);color:#fff;border:none;border-radius:10px;padding:12px 20px;
  font-weight:700;font-size:14px;cursor:pointer;transition:background .15s;width:100%}
body.page-backoffice .btn-primary:hover{background:var(--teal-bright)}
body.page-backoffice .login-err{color:var(--rojo);font-size:12.5px;margin-top:10px;display:none;font-weight:600}
body.page-backoffice .login-hint{font-size:11px;color:var(--muted);margin-top:18px}

body.page-backoffice #app-view{display:none;min-height:100vh}
body.page-backoffice .topbar{background:var(--navy);color:#fff;display:flex;align-items:center;gap:14px;
  padding:0 20px;height:56px;position:sticky;top:0;z-index:50}
body.page-backoffice .topbar .brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:14.5px}
body.page-backoffice .topbar .brand .m{width:30px;height:30px;border-radius:8px;background:var(--teal);display:grid;place-items:center;
  font-family:"Fraunces",serif;font-size:15px;font-weight:700}
body.page-backoffice .topbar .tag{font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  background:rgba(255,255,255,.14);padding:3px 9px;border-radius:99px}
body.page-backoffice .topbar .deadline{margin-left:auto;font-size:12px;color:#aebdd4}
body.page-backoffice .topbar .deadline b{color:#7fd4e5}
body.page-backoffice .btn-ghost{background:transparent;color:#c6d2e4;border:1px solid rgba(255,255,255,.25);border-radius:8px;
  padding:6px 13px;font-size:12.5px;font-weight:600;cursor:pointer}
body.page-backoffice .btn-ghost:hover{background:rgba(255,255,255,.1);color:#fff}

body.page-backoffice .layout{display:flex;min-height:calc(100vh - 56px)}
body.page-backoffice nav.sidenav{width:200px;flex-shrink:0;background:var(--panel);border-right:1px solid var(--line);padding:16px 10px}
body.page-backoffice .nav-item{display:flex;align-items:center;gap:10px;width:100%;text-align:left;border:none;background:none;
  padding:10px 12px;border-radius:9px;font-size:13.5px;font-weight:600;color:var(--muted);cursor:pointer;margin-bottom:2px}
body.page-backoffice .nav-item:hover{background:var(--panel-2);color:var(--ink)}
body.page-backoffice .nav-item.active{background:var(--teal-soft);color:var(--teal)}
body.page-backoffice .nav-item .ico{width:18px;text-align:center}
body.page-backoffice .nav-count{margin-left:auto;background:var(--rojo);color:#fff;font-size:10px;font-weight:800;
  border-radius:99px;padding:1px 7px;display:none}
body.page-backoffice main.content{flex:1;padding:22px 24px 60px;min-width:0}
@media(max-width:860px){
  .layout{flex-direction:column}
  nav.sidenav{width:100%;display:flex;overflow-x:auto;padding:8px;border-right:none;border-bottom:1px solid var(--line)}
  .nav-item{white-space:nowrap;margin-bottom:0}
}

body.page-backoffice .view{display:none}body.page-backoffice .view.active{display:block}
body.page-backoffice .view-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:18px;flex-wrap:wrap}
body.page-backoffice .view-head h2{font-family:"Fraunces",serif;font-size:26px;font-weight:600;letter-spacing:-.01em}
body.page-backoffice .view-head p{color:var(--muted);font-size:13px;margin:3px 0 0}
body.page-backoffice .head-actions{display:flex;gap:8px;flex-wrap:wrap}

body.page-backoffice .btn{border-radius:9px;padding:9px 16px;font-size:13px;font-weight:700;cursor:pointer;border:1.5px solid transparent;transition:all .13s}
body.page-backoffice .btn.solid{background:var(--teal);color:#fff}body.page-backoffice .btn.solid:hover{background:var(--teal-bright)}
body.page-backoffice .btn.navy{background:var(--navy);color:#fff}body.page-backoffice .btn.navy:hover{background:var(--navy-3)}
body.page-backoffice .btn.line{background:var(--panel);border-color:var(--line-strong);color:var(--ink)}
body.page-backoffice .btn.line:hover{border-color:var(--teal);color:var(--teal)}
body.page-backoffice .btn.danger{background:var(--panel);border-color:#e0b6b3;color:var(--rojo)}
body.page-backoffice .btn.danger:hover{background:var(--rojo-soft)}
body.page-backoffice .btn.sm{padding:6px 11px;font-size:12px}
body.page-backoffice .btn:disabled{opacity:.5;cursor:not-allowed}
body.page-backoffice .btn.wa{background:#1faa53;color:#fff}body.page-backoffice .btn.wa:hover{background:#178a43}

body.page-backoffice .kpis{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px;margin-bottom:18px}
body.page-backoffice .kpi{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:14px 16px;box-shadow:var(--shadow)}
body.page-backoffice .kpi .n{font-family:"Fraunces",serif;font-size:28px;font-weight:700;line-height:1}
body.page-backoffice .kpi .l{font-size:11px;color:var(--muted);font-weight:600;margin-top:4px;text-transform:uppercase;letter-spacing:.06em}
body.page-backoffice .filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px;align-items:center}
body.page-backoffice .pf{border:1.5px solid var(--line-strong);background:var(--panel);border-radius:99px;padding:6px 14px;
  font-size:12px;font-weight:700;color:var(--muted);cursor:pointer}
body.page-backoffice .pf.on{background:var(--navy);border-color:var(--navy);color:#fff}
body.page-backoffice .search{margin-left:auto;padding:8px 13px;border:1.5px solid var(--line-strong);border-radius:99px;width:210px;font-size:13px}
body.page-backoffice .search:focus{border-color:var(--teal);outline:none}

body.page-backoffice .lead-grid{display:grid;grid-template-columns:minmax(300px,380px) 1fr;gap:18px;align-items:start}
@media(max-width:1000px){body.page-backoffice .lead-grid{grid-template-columns:1fr}}
body.page-backoffice .lead-list{display:flex;flex-direction:column;gap:9px;max-height:72vh;overflow-y:auto;padding-right:4px}
body.page-backoffice .lead-card{background:var(--panel);border:1.5px solid var(--line);border-radius:var(--radius);padding:13px 15px;
  cursor:pointer;transition:border-color .13s, box-shadow .13s;position:relative}
body.page-backoffice .lead-card:hover{border-color:var(--teal)}
body.page-backoffice .lead-card.sel{border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
body.page-backoffice .lead-card .row1{display:flex;align-items:center;gap:10px}
body.page-backoffice .lead-card .empresa{font-weight:800;font-size:14px;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
body.page-backoffice .dpi-chip{font-family:"Fraunces",serif;font-weight:700;font-size:15px;min-width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;color:#fff;flex-shrink:0}
body.page-backoffice .lead-card .row2{display:flex;align-items:center;gap:8px;margin-top:6px;font-size:11.5px;color:var(--muted);flex-wrap:wrap}
body.page-backoffice .estado-pill{font-size:10px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;padding:3px 9px;border-radius:99px}
body.page-backoffice .demo-chip{position:absolute;top:-7px;right:10px;background:var(--ambar);color:#fff;font-size:9px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;padding:2px 8px;border-radius:99px}
body.page-backoffice .empty-box{background:var(--panel);border:1.5px dashed var(--line-strong);border-radius:var(--radius);
  padding:40px 24px;text-align:center;color:var(--muted)}
body.page-backoffice .empty-box .big{font-size:32px;margin-bottom:8px}

body.page-backoffice .detail{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
body.page-backoffice .detail-head{padding:18px 22px;border-bottom:1px solid var(--line);display:flex;gap:16px;align-items:flex-start;flex-wrap:wrap}
body.page-backoffice .detail-head .info{flex:1;min-width:200px}
body.page-backoffice .detail-head h3{font-family:"Fraunces",serif;font-size:21px;font-weight:600}
body.page-backoffice .detail-head .meta{font-size:12px;color:var(--muted);margin-top:3px;line-height:1.7}
body.page-backoffice .detail-head .meta b{color:var(--ink)}
body.page-backoffice .gauge-wrap{text-align:center;flex-shrink:0}
body.page-backoffice .gauge-num{font-family:"Fraunces",serif;font-weight:700;font-size:15px}
body.page-backoffice .detail-body{padding:18px 22px}
body.page-backoffice .sec-title{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin:0 0 10px}
body.page-backoffice .estado-row{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:18px}
body.page-backoffice .est-btn{border:1.5px solid var(--line-strong);background:var(--panel-2);border-radius:99px;padding:6px 13px;
  font-size:11.5px;font-weight:700;color:var(--muted);cursor:pointer}
body.page-backoffice .est-btn.on{background:var(--navy);border-color:var(--navy);color:#fff}
body.page-backoffice .dimbars{display:flex;flex-direction:column;gap:7px;margin-bottom:18px}
body.page-backoffice .dimbar{display:grid;grid-template-columns:190px 1fr 34px;gap:10px;align-items:center;font-size:12px}
body.page-backoffice .dimbar .bar{height:8px;border-radius:99px;background:var(--paper);overflow:hidden}
body.page-backoffice .dimbar .fill{height:100%;border-radius:99px;transition:width .4s ease}
body.page-backoffice .dimbar .v{font-weight:700;text-align:right;font-size:12px}
body.page-backoffice .brecha{display:flex;gap:10px;padding:9px 0;border-bottom:1px solid var(--paper);font-size:12.5px;align-items:flex-start}
body.page-backoffice .brecha:last-child{border-bottom:none}
body.page-backoffice .brecha .n{width:20px;height:20px;border-radius:50%;flex-shrink:0;display:grid;place-items:center;
  color:#fff;font-size:10.5px;font-weight:800;margin-top:1px}
body.page-backoffice .brecha b{display:block;font-size:12.5px}
body.page-backoffice .brecha span{color:var(--muted);font-size:12px}
body.page-backoffice .action-bar{display:flex;gap:8px;flex-wrap:wrap;padding:14px 22px;background:var(--panel-2);border-top:1px solid var(--line)}
body.page-backoffice .field-inline{display:flex;gap:8px;align-items:center;margin-bottom:14px;flex-wrap:wrap}
body.page-backoffice .field-inline label{font-size:12px;font-weight:700;color:var(--muted)}
body.page-backoffice .field-inline input{padding:7px 11px;border:1.5px solid var(--line-strong);border-radius:8px;font-size:13px}
body.page-backoffice textarea.notas{width:100%;min-height:70px;padding:10px 12px;border:1.5px solid var(--line-strong);border-radius:9px;
  resize:vertical;font-size:13px}
body.page-backoffice .timeline{margin-top:10px;font-size:12px;color:var(--muted)}
body.page-backoffice .timeline .tl-item{padding:5px 0 5px 14px;border-left:2px solid var(--line);margin-left:4px}
body.page-backoffice .timeline .tl-item b{color:var(--ink)}

body.page-backoffice .calc-grid{display:grid;grid-template-columns:minmax(300px,400px) 1fr;gap:18px;align-items:start}
@media(max-width:1000px){body.page-backoffice .calc-grid{grid-template-columns:1fr}}
body.page-backoffice .card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}
body.page-backoffice .card-pad{padding:18px 20px}
body.page-backoffice .group{padding:16px 20px;border-top:1px solid var(--line)}
body.page-backoffice .field{margin-bottom:15px}body.page-backoffice .field:last-child{margin-bottom:0}
body.page-backoffice .field>label{display:block;font-size:13px;font-weight:700;margin-bottom:7px}
body.page-backoffice .hint{font-weight:500;color:var(--muted);font-size:11.5px;display:block;margin-top:1px}
body.page-backoffice .axis-label{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;display:flex;gap:8px;align-items:center;margin:0 0 3px}
body.page-backoffice .axis-tag{font-size:10px;font-weight:700;padding:2px 8px;border-radius:99px;letter-spacing:0;text-transform:none}
body.page-backoffice .tag-floor{background:var(--paper);color:var(--muted)}
body.page-backoffice .tag-ceil{background:var(--teal-soft);color:var(--teal)}
body.page-backoffice .axis-note{font-size:12px;color:var(--muted);margin:0 0 12px}
body.page-backoffice .seg{display:flex;gap:6px;flex-wrap:wrap}
body.page-backoffice .seg button{flex:1 1 auto;font-size:12px;font-weight:600;padding:8px 6px;border:1.5px solid var(--line-strong);
  background:var(--panel-2);color:var(--muted);border-radius:8px;cursor:pointer;white-space:nowrap}
body.page-backoffice .seg button[aria-pressed="true"]{background:var(--navy);color:#fff;border-color:var(--navy)}
body.page-backoffice .slider-row{display:flex;align-items:center;gap:12px}
body.page-backoffice input[type=range]{-webkit-appearance:none;appearance:none;flex:1;height:5px;border-radius:99px;
  background:linear-gradient(90deg,var(--teal) 0%,var(--teal) var(--p,50%),var(--line) var(--p,50%));outline:none;cursor:pointer}
body.page-backoffice input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border-radius:50%;
  background:#fff;border:2.5px solid var(--navy);cursor:pointer;box-shadow:0 1px 3px rgba(0,0,0,.2)}
body.page-backoffice input[type=range]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:#fff;border:2.5px solid var(--navy);cursor:pointer}
body.page-backoffice .score-badge{font-family:"Fraunces",serif;font-weight:700;font-size:17px;min-width:40px;text-align:right}
body.page-backoffice .mat-word{font-size:10.5px;color:var(--muted);font-weight:700;display:block;text-align:right}
body.page-backoffice .stepper{display:flex;border:1.5px solid var(--line-strong);border-radius:8px;overflow:hidden;width:fit-content}
body.page-backoffice .stepper button{width:36px;height:34px;border:none;background:var(--panel-2);font-size:17px;cursor:pointer}
body.page-backoffice .stepper .val{width:44px;display:grid;place-items:center;font-weight:800;border-left:1px solid var(--line);border-right:1px solid var(--line)}
body.page-backoffice .utm-input{display:flex;align-items:center;gap:8px}
body.page-backoffice .utm-input input{width:110px;padding:8px 10px;border:1.5px solid var(--line-strong);border-radius:8px;font-weight:700}
body.page-backoffice .calc-hero{background:var(--navy);color:#fff;border-radius:var(--radius);padding:20px 22px}
body.page-backoffice .calc-hero .prod{font-size:10.5px;letter-spacing:.13em;text-transform:uppercase;color:#9fb4c9;font-weight:700}
body.page-backoffice .calc-hero h3{font-family:"Fraunces",serif;font-size:18px;font-weight:600;margin:2px 0 16px}
body.page-backoffice .band{position:relative;height:52px}
body.page-backoffice .band-track{position:absolute;left:0;right:0;top:22px;height:6px;border-radius:99px;background:rgba(255,255,255,.16)}
body.page-backoffice .band-fill{position:absolute;top:22px;height:6px;border-radius:99px;background:linear-gradient(90deg,#4a6076,#3fc1d8);transition:width .3s}
body.page-backoffice .band-mark{position:absolute;top:12px;transition:left .3s}
body.page-backoffice .band-mark .dot{width:14px;height:14px;border-radius:50%;background:#fff;border:3px solid var(--teal-bright);box-shadow:0 0 0 4px rgba(21,146,172,.3)}
body.page-backoffice .band-ends{display:flex;justify-content:space-between;margin-top:6px}
body.page-backoffice .band-end .k{font-size:9.5px;letter-spacing:.06em;text-transform:uppercase;color:#9fb4c9;font-weight:700}
body.page-backoffice .band-end .v{font-family:"Fraunces",serif;font-weight:700;font-size:15px}
body.page-backoffice .band-end.sug{text-align:center}body.page-backoffice .band-end.sug .v{color:#7fd4e5;font-size:23px}
body.page-backoffice .band-end.ceil{text-align:right}
body.page-backoffice table.ptable{width:100%;border-collapse:collapse}
body.page-backoffice .ptable th,body.page-backoffice .ptable td{text-align:right;padding:9px 5px;font-size:13px;border-bottom:1px solid var(--paper)}
body.page-backoffice .ptable th{font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);border-bottom:1px solid var(--line)}
body.page-backoffice .ptable th:first-child,body.page-backoffice .ptable td:first-child{text-align:left}
body.page-backoffice .ptable tr:last-child td{border-bottom:none}
body.page-backoffice .pname{font-weight:700;font-size:13px}
body.page-backoffice .psub{font-size:10.5px;color:var(--muted)}
body.page-backoffice td.f{color:var(--muted);font-size:12px}
body.page-backoffice td.s{color:var(--teal);font-weight:800}
body.page-backoffice td.c{font-size:12px}
body.page-backoffice .deal{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px;
  padding:12px 15px;background:var(--teal-soft);border-radius:10px;border:1px solid #bcd9e0}
body.page-backoffice .deal .lab{font-size:12px;color:var(--teal);font-weight:700}
body.page-backoffice .deal .lab small{display:block;font-weight:500;font-size:10.5px;color:#3a7d8d}
body.page-backoffice .deal .amt{font-family:"Fraunces",serif;font-weight:700;font-size:19px;color:var(--teal)}
body.page-backoffice .anchor .big{font-family:"Fraunces",serif;font-weight:700;font-size:25px;color:var(--rojo)}
body.page-backoffice .ratio{height:9px;border-radius:99px;background:var(--rojo-soft);overflow:hidden;margin-top:8px}
body.page-backoffice .ratio-fill{height:100%;background:var(--teal);border-radius:99px;transition:width .3s;min-width:3px}
body.page-backoffice .ratio-cap{font-size:11px;color:var(--muted);margin-top:6px}
body.page-backoffice .calc-lead-banner{background:var(--teal-soft);border:1px solid #bcd9e0;border-radius:10px;padding:10px 14px;
  font-size:12.5px;margin-bottom:14px;display:none;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}
body.page-backoffice .stack{display:flex;flex-direction:column;gap:16px}
@keyframes an-spin{to{transform:rotate(360deg)}}

body.page-backoffice .seq-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:14px}
body.page-backoffice .seq-card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
body.page-backoffice .seq-card h3{font-family:"Fraunces",serif;font-size:17px;font-weight:600;margin-bottom:4px}
body.page-backoffice .seq-card .desc{font-size:12.5px;color:var(--muted);margin:0 0 12px}
body.page-backoffice .seq-mail{border-left:3px solid var(--teal-soft);padding:6px 0 6px 12px;margin-bottom:6px;font-size:12px}
body.page-backoffice .seq-mail b{display:block;font-size:12.5px}
body.page-backoffice .seq-mail span{color:var(--muted)}
body.page-backoffice .seq-foot{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
body.page-backoffice .wa-card textarea{width:100%;min-height:110px;padding:10px 12px;border:1.5px solid var(--line-strong);border-radius:9px;
  font-size:12.5px;resize:vertical;margin:8px 0}
body.page-backoffice select.sel{padding:8px 12px;border:1.5px solid var(--line-strong);border-radius:8px;background:var(--panel);font-weight:600}

body.page-backoffice .set-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:16px;align-items:start}
body.page-backoffice .set-card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)}
body.page-backoffice .set-card h3{font-family:"Fraunces",serif;font-size:17px;font-weight:600;margin-bottom:4px}
body.page-backoffice .set-card .desc{font-size:12px;color:var(--muted);margin:0 0 14px;line-height:1.55}
body.page-backoffice .set-field{margin-bottom:12px}
body.page-backoffice .set-field label{display:block;font-size:12px;font-weight:700;margin-bottom:5px}
body.page-backoffice .set-field input{width:100%;padding:9px 12px;border:1.5px solid var(--line-strong);border-radius:8px;font-size:13px}
body.page-backoffice .status-dot{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:5px}
body.page-backoffice .ok-note{font-size:11.5px;margin-top:6px}

body.page-backoffice .modal-bg{position:fixed;inset:0;background:rgba(20,32,58,.55);z-index:100;display:none;
  align-items:flex-start;justify-content:center;padding:30px 16px;overflow-y:auto}
body.page-backoffice .modal-bg.open{display:flex}
body.page-backoffice .modal{background:var(--panel);border-radius:16px;width:100%;max-width:760px;box-shadow:0 24px 70px rgba(0,0,0,.35)}
body.page-backoffice .modal-head{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;border-bottom:1px solid var(--line)}
body.page-backoffice .modal-head h3{font-family:"Fraunces",serif;font-size:19px;font-weight:600}
body.page-backoffice .modal-x{border:none;background:var(--paper);width:32px;height:32px;border-radius:50%;cursor:pointer;font-size:15px}
body.page-backoffice .modal-body{padding:20px 24px;max-height:65vh;overflow-y:auto}
body.page-backoffice .modal-foot{padding:14px 24px;border-top:1px solid var(--line);display:flex;gap:8px;justify-content:flex-end;flex-wrap:wrap}
body.page-backoffice .q-item{display:grid;grid-template-columns:26px 1fr 150px;gap:12px;align-items:center;padding:11px 0;border-bottom:1px solid var(--paper)}
body.page-backoffice .q-item input[type=checkbox]{width:17px;height:17px;accent-color:var(--teal);cursor:pointer}
body.page-backoffice .q-item .qn{font-weight:700;font-size:13.5px}
body.page-backoffice .q-item .qd{font-size:11.5px;color:var(--muted)}
body.page-backoffice .q-item input[type=text]{padding:7px 10px;border:1.5px solid var(--line-strong);border-radius:8px;text-align:right;font-weight:700;width:100%}
body.page-backoffice .q-total{display:flex;justify-content:space-between;align-items:center;padding:14px 2px 2px;font-weight:800}
body.page-backoffice .q-total .amt{font-family:"Fraunces",serif;font-size:22px;color:var(--teal)}
body.page-backoffice .q-total-split{padding:10px 2px 2px;border-top:1px solid var(--paper);margin-top:6px}
body.page-backoffice .q-total-row{display:flex;justify-content:space-between;align-items:center;padding:6px 0;font-weight:800}
body.page-backoffice .q-total-row .amt{font-family:"Fraunces",serif;font-size:19px;color:var(--teal)}
body.page-backoffice .q-total-row .amt small{font-family:"Inter",sans-serif;font-size:11px;font-weight:600;color:var(--muted);margin-left:2px}
body.page-backoffice .mrow{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:560px){body.page-backoffice .mrow{grid-template-columns:1fr}body.page-backoffice .q-item{grid-template-columns:24px 1fr}}
body.page-backoffice .mfield{margin-bottom:12px}
body.page-backoffice .mfield label{display:block;font-size:12px;font-weight:700;margin-bottom:5px}
body.page-backoffice .mfield input,body.page-backoffice .mfield textarea,body.page-backoffice .mfield select{width:100%;padding:9px 12px;border:1.5px solid var(--line-strong);border-radius:8px;font-size:13px}
body.page-backoffice .mfield textarea{min-height:80px;resize:vertical}

body.page-backoffice #toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);background:var(--navy);color:#fff;
  padding:11px 22px;border-radius:99px;font-size:13px;font-weight:600;opacity:0;transition:opacity .3s;
  z-index:200;pointer-events:none;box-shadow:0 8px 30px rgba(0,0,0,.3);max-width:90vw;text-align:center}

body.page-backoffice .cl-layout{display:grid;grid-template-columns:280px 1fr;gap:16px;align-items:start}
@media(max-width:900px){body.page-backoffice .cl-layout{grid-template-columns:1fr}}
body.page-backoffice .cl-list{display:flex;flex-direction:column;gap:8px;max-height:80vh;overflow-y:auto;padding-right:4px}
body.page-backoffice .cl-card{background:var(--panel);border:1.5px solid var(--line);border-radius:var(--radius);padding:13px 15px;cursor:pointer;transition:border-color .13s}
body.page-backoffice .cl-card:hover{border-color:var(--teal)}
body.page-backoffice .cl-card.sel{border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
body.page-backoffice .cl-card .cl-name{font-weight:800;font-size:14px}
body.page-backoffice .cl-card .cl-meta{font-size:11.5px;color:var(--muted);margin-top:4px}
body.page-backoffice .cl-progress{height:6px;border-radius:99px;background:var(--paper);overflow:hidden;margin-top:8px}
body.page-backoffice .cl-progress-fill{height:100%;border-radius:99px;background:var(--teal);transition:width .4s ease}
body.page-backoffice .cl-progress-label{font-size:10.5px;color:var(--muted);margin-top:3px;display:flex;justify-content:space-between}
body.page-backoffice .cl-detail{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}
body.page-backoffice .cl-head{padding:18px 22px;border-bottom:1px solid var(--line)}
body.page-backoffice .cl-head h3{font-family:"Fraunces",serif;font-size:22px;font-weight:600}
body.page-backoffice .cl-head .cl-hmeta{font-size:12.5px;color:var(--muted);margin-top:4px;line-height:1.8}
body.page-backoffice .cl-phases{padding:0 22px}
body.page-backoffice .phase{margin-bottom:0}
body.page-backoffice .phase-head{display:flex;align-items:center;gap:12px;padding:14px 0;cursor:pointer;border-bottom:1px solid var(--line);user-select:none}
body.page-backoffice .phase-head:last-child{border-bottom:none}
body.page-backoffice .phase-num{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;font-weight:800;font-size:13px;flex-shrink:0;transition:background .2s}
body.page-backoffice .phase-title{flex:1;font-weight:700;font-size:14px}
body.page-backoffice .phase-prog{font-size:11.5px;color:var(--muted);font-weight:600;flex-shrink:0}
body.page-backoffice .phase-arrow{font-size:11px;color:var(--muted);transition:transform .2s;flex-shrink:0}
body.page-backoffice .phase.open .phase-arrow{transform:rotate(90deg)}
body.page-backoffice .phase-body{display:none;padding:8px 0 14px 42px;border-bottom:1px solid var(--paper)}
body.page-backoffice .phase.open .phase-body{display:block}
body.page-backoffice .step-item{display:flex;gap:12px;padding:9px 0;border-bottom:1px dashed var(--line);align-items:flex-start}
body.page-backoffice .step-item:last-child{border-bottom:none}
body.page-backoffice .step-check{flex-shrink:0;margin-top:1px}
body.page-backoffice .step-check input[type=checkbox]{width:17px;height:17px;accent-color:var(--teal);cursor:pointer}
body.page-backoffice .step-content{flex:1;min-width:0}
body.page-backoffice .step-name{font-weight:700;font-size:13.5px;line-height:1.3}
body.page-backoffice .step-name.done{text-decoration:line-through;color:var(--muted)}
body.page-backoffice .step-desc{font-size:12px;color:var(--muted);margin-top:3px;line-height:1.55}
body.page-backoffice .step-guide{font-size:11.5px;background:var(--teal-soft);color:#0a5566;border-left:3px solid var(--teal);
  padding:7px 10px;margin-top:8px;border-radius:0 6px 6px 0;line-height:1.55;display:none}
body.page-backoffice .step-item:hover .step-guide{display:block}
body.page-backoffice .step-tags{display:flex;gap:5px;flex-wrap:wrap;margin-top:5px}
body.page-backoffice .step-tag{font-size:10px;font-weight:700;padding:2px 7px;border-radius:99px;letter-spacing:.02em}
body.page-backoffice .tag-legal{background:#ede9f6;color:#5c3d9e}
body.page-backoffice .tag-cliente{background:var(--teal-soft);color:var(--teal)}
body.page-backoffice .tag-abogado{background:#f0e8e7;color:#8b2318}
body.page-backoffice .tag-entregable{background:var(--verde-soft);color:var(--verde)}
body.page-backoffice .cl-actions{display:flex;gap:8px;flex-wrap:wrap;padding:14px 22px;border-top:1px solid var(--line);background:var(--panel-2)}
body.page-backoffice .phase-summary{display:flex;align-items:center;gap:18px;padding:14px 22px;background:var(--paper);border-bottom:1px solid var(--line);flex-wrap:wrap}
body.page-backoffice .phase-kpi{text-align:center}
body.page-backoffice .phase-kpi .n{font-family:"Fraunces",serif;font-size:22px;font-weight:700}
body.page-backoffice .phase-kpi .l{font-size:10.5px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.06em}
body.page-backoffice .cl-empty{background:var(--panel);border:1.5px dashed var(--line-strong);border-radius:var(--radius);padding:50px 24px;text-align:center;color:var(--muted)}
body.page-backoffice .cl-empty .big{font-size:36px;margin-bottom:10px}

/* ===== backoffice_gdp21.html :: doc-dpi-report ===== */
@page{size:A4;margin:16mm}
body.doc-dpi-report{font-family:"Plus Jakarta Sans",sans-serif;color:#1a2438;margin:0;padding:32px;max-width:820px;margin:0 auto;line-height:1.55}
body.doc-dpi-report h1,body.doc-dpi-report h2{font-family:"Fraunces",serif}
body.doc-dpi-report .hdr{display:flex;justify-content:space-between;align-items:center;border-bottom:3px solid #14203a;padding-bottom:14px;margin-bottom:24px}
body.doc-dpi-report .mark{display:flex;gap:10px;align-items:center;font-weight:800;font-size:15px;color:#14203a}
body.doc-dpi-report .mark .m{width:34px;height:34px;border-radius:9px;background:#14203a;color:#fff;display:grid;place-items:center;font-family:"Fraunces",serif;font-weight:700}
body.doc-dpi-report .badge{font-size:10px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#0f6e82}
body.doc-dpi-report .sec{font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8a93a3;margin:28px 0 10px}
body.doc-dpi-report table{width:100%;border-collapse:collapse}
body.doc-dpi-report .vered{background:#f4f6f8;border-left:4px solid var(--vered-color,var(--teal));padding:16px 18px;border-radius:0 10px 10px 0;margin-top:16px}
@media print{body.doc-dpi-report{padding:0}body.doc-dpi-report .no-print{display:none}}

/* ===== backoffice_gdp21.html :: doc-propuesta ===== */
@page{size:A4;margin:0}
body.doc-propuesta *{-webkit-print-color-adjust:exact!important;print-color-adjust:exact!important;color-adjust:exact!important}
body.doc-propuesta{margin:0;font-family:"Plus Jakarta Sans",sans-serif;line-height:1.55;background:#e7eaee}
body.doc-propuesta h1,body.doc-propuesta h2{font-family:"Fraunces",serif;margin:0}
body.doc-propuesta #doc-pages{width:210mm;margin:0 auto;background:#fff;box-shadow:0 0 0 1px #d6dae1}
@media print{body.doc-propuesta .no-print{display:none} body.doc-propuesta{background:#fff} body.doc-propuesta #doc-pages{box-shadow:none}}
body.doc-propuesta .pdf-bar{position:fixed;bottom:18px;right:18px;display:flex;gap:12px;align-items:center}
body.doc-propuesta .pdf-hint{font-size:11.5px;color:#46557a;max-width:180px;text-align:right;line-height:1.4}
body.doc-propuesta .pdf-btn{padding:12px 24px;border:none;border-radius:10px;font-weight:700;cursor:pointer;font-family:inherit;box-shadow:0 8px 24px rgba(0,0,0,.25)}
body.doc-propuesta .pdf-btn.primary{background:#0f6e82;color:#fff}
body.doc-propuesta .pdf-btn.primary:disabled{background:#9aa4b2;cursor:default;box-shadow:none}
body.doc-propuesta .pdf-btn.ghost{background:#fff;color:#14203a;border:1.5px solid #d6dae1}

/* ===== calculadora-pricing-dpi.html :: page-calculadora ===== */
body.page-calculadora{
    --ink:#16243B;
    --ink-2:#2B3A52;
    --canvas:#E7EAEE;
    --panel:#FFFFFF;
    --panel-2:#FBFCFD;
    --price:#0F6E63;
    --price-soft:#E3F1EE;
    --exposure:#B4451F;
    --exposure-soft:#F6E7E0;
    --muted:#66707E;
    --line:#D6DAE1;
    --line-strong:#BFC6D0;
    --floor:#9AA4B2;
    --radius:14px;
    --shadow:0 1px 2px rgba(22,36,59,.06), 0 8px 28px rgba(22,36,59,.07);
  }
  body.page-calculadora *{box-sizing:border-box}
  html{-webkit-text-size-adjust:100%}
  body.page-calculadora{
    margin:0;
    background:var(--canvas);
    color:var(--ink);
    font-family:"Inter",system-ui,sans-serif;
    line-height:1.45;
    padding:28px 20px 56px;
  }
  body.page-calculadora .wrap{max-width:1080px;margin:0 auto}
  body.page-calculadora .num{font-family:"Space Mono",ui-monospace,monospace;font-variant-numeric:tabular-nums;letter-spacing:-.02em}
  body.page-calculadora .display{font-family:"Space Grotesk",sans-serif}

  body.page-calculadora header.top{margin-bottom:24px}
  body.page-calculadora .eyebrow{
    font-family:"Space Mono",monospace;
    font-size:11px;letter-spacing:.18em;text-transform:uppercase;
    color:var(--exposure);font-weight:700;margin:0 0 8px;
  }
  body.page-calculadora h1{
    font-family:"Space Grotesk",sans-serif;
    font-weight:700;font-size:clamp(26px,4vw,38px);
    line-height:1.05;margin:0 0 10px;letter-spacing:-.02em;
  }
  body.page-calculadora .lede{color:var(--muted);font-size:15px;max-width:62ch;margin:0}

  body.page-calculadora .layout{display:grid;grid-template-columns:minmax(0,420px) minmax(0,1fr);gap:22px;margin-top:26px}
  @media (max-width:860px){body.page-calculadora .layout{grid-template-columns:1fr}}

  body.page-calculadora .card{
    background:var(--panel);border:1px solid var(--line);
    border-radius:var(--radius);box-shadow:var(--shadow);
  }
  body.page-calculadora .card-pad{padding:20px}

  body.page-calculadora .axis-label{
    font-family:"Space Mono",monospace;font-size:10.5px;letter-spacing:.16em;
    text-transform:uppercase;font-weight:700;color:var(--ink);
    display:flex;align-items:center;gap:8px;margin:0 0 4px;
  }
  body.page-calculadora .axis-label.floor-c{color:var(--ink)}
  body.page-calculadora .axis-tag{
    font-family:"Inter",sans-serif;font-size:10px;font-weight:600;letter-spacing:.02em;
    text-transform:none;padding:2px 7px;border-radius:99px;
  }
  body.page-calculadora .tag-floor{background:#EEF1F4;color:var(--ink-2)}
  body.page-calculadora .tag-ceil{background:var(--price-soft);color:var(--price)}
  body.page-calculadora .axis-note{font-size:12px;color:var(--muted);margin:0 0 14px}

  body.page-calculadora .group{padding:18px 20px;border-top:1px solid var(--line)}
  body.page-calculadora .group:first-of-type{border-top:none}

  body.page-calculadora .field{margin-bottom:16px}
  body.page-calculadora .field:last-child{margin-bottom:0}
  body.page-calculadora .field > label{
    display:block;font-size:13px;font-weight:600;color:var(--ink);margin-bottom:7px;
  }
  body.page-calculadora .hint{font-weight:400;color:var(--muted);font-size:11.5px;display:block;margin-top:1px}

  body.page-calculadora .seg{display:flex;gap:6px;flex-wrap:wrap}
  body.page-calculadora .seg button{
    flex:1 1 auto;min-width:0;
    font-family:"Inter",sans-serif;font-size:12.5px;font-weight:500;
    padding:8px 6px;border:1px solid var(--line-strong);background:var(--panel-2);
    color:var(--ink-2);border-radius:9px;cursor:pointer;transition:all .12s ease;
    white-space:nowrap;
  }
  body.page-calculadora .seg button:hover{border-color:var(--ink-2)}
  body.page-calculadora .seg button[aria-pressed="true"]{
    background:var(--ink);color:#fff;border-color:var(--ink);font-weight:600;
  }
  body.page-calculadora .seg.ceil button[aria-pressed="true"]{background:var(--price);border-color:var(--price)}

  body.page-calculadora .slider-row{display:flex;align-items:center;gap:14px}
  body.page-calculadora input[type=range]{
    -webkit-appearance:none;appearance:none;flex:1;height:5px;border-radius:99px;
    background:linear-gradient(90deg,var(--exposure) 0%,var(--exposure) var(--p,50%),var(--line) var(--p,50%),var(--line) 100%);
    outline:none;cursor:pointer;
  }
  body.page-calculadora input[type=range]::-webkit-slider-thumb{
    -webkit-appearance:none;width:18px;height:18px;border-radius:50%;
    background:var(--panel);border:2.5px solid var(--ink);cursor:pointer;
    box-shadow:0 1px 3px rgba(0,0,0,.2);
  }
  body.page-calculadora input[type=range]::-moz-range-thumb{
    width:18px;height:18px;border-radius:50%;background:var(--panel);
    border:2.5px solid var(--ink);cursor:pointer;
  }
  body.page-calculadora .score-badge{
    font-family:"Space Mono",monospace;font-weight:700;font-size:15px;
    min-width:46px;text-align:right;color:var(--ink);
  }
  body.page-calculadora .maturity-word{font-size:11px;color:var(--muted);font-weight:600;text-align:right;display:block}

  body.page-calculadora .stepper{display:flex;align-items:center;gap:0;width:fit-content;border:1px solid var(--line-strong);border-radius:9px;overflow:hidden}
  body.page-calculadora .stepper button{
    width:38px;height:36px;border:none;background:var(--panel-2);color:var(--ink);
    font-size:18px;cursor:pointer;line-height:1;
  }
  body.page-calculadora .stepper button:hover{background:#EEF1F4}
  body.page-calculadora .stepper .val{width:46px;text-align:center;font-family:"Space Mono",monospace;font-weight:700;border-left:1px solid var(--line);border-right:1px solid var(--line)}

  body.page-calculadora .utm-input{display:flex;align-items:center;gap:8px}
  body.page-calculadora .utm-input span{color:var(--muted);font-size:13px}
  body.page-calculadora .utm-input input{
    font-family:"Space Mono",monospace;font-weight:700;font-size:14px;
    width:120px;padding:8px 10px;border:1px solid var(--line-strong);border-radius:9px;
    color:var(--ink);
  }
  body.page-calculadora .utm-input input:focus{outline:2px solid var(--ink);outline-offset:1px}

  body.page-calculadora .hero{
    background:var(--ink);color:#fff;border-radius:var(--radius);
    padding:22px 24px;position:relative;overflow:hidden;
  }
  body.page-calculadora .hero .prod{font-family:"Space Mono",monospace;font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#9FB4C9;margin:0 0 2px}
  body.page-calculadora .hero h2{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:17px;margin:0 0 16px}
  body.page-calculadora .band{position:relative;margin:6px 0 4px;height:54px}
  body.page-calculadora .band-track{position:absolute;left:0;right:0;top:24px;height:6px;border-radius:99px;background:rgba(255,255,255,.16)}
  body.page-calculadora .band-fill{position:absolute;top:24px;height:6px;border-radius:99px;background:linear-gradient(90deg,#6E7C8F,var(--price));transition:all .35s cubic-bezier(.4,0,.2,1)}
  body.page-calculadora .band-mark{position:absolute;top:14px;transition:left .35s cubic-bezier(.4,0,.2,1)}
  body.page-calculadora .band-mark .dot{width:14px;height:14px;border-radius:50%;background:#fff;border:3px solid var(--price);margin:0 auto;box-shadow:0 0 0 4px rgba(15,110,99,.3)}
  body.page-calculadora .band-mark .lab{position:absolute;top:-20px;left:50%;transform:translateX(-50%);font-family:"Space Mono",monospace;font-size:10px;color:#fff;white-space:nowrap}
  body.page-calculadora .band-ends{display:flex;justify-content:space-between;margin-top:34px}
  body.page-calculadora .band-end{font-size:11px}
  body.page-calculadora .band-end .k{color:#9FB4C9;font-family:"Space Mono",monospace;letter-spacing:.04em;text-transform:uppercase;font-size:9.5px}
  body.page-calculadora .band-end .v{font-family:"Space Mono",monospace;font-weight:700;font-size:14px}
  body.page-calculadora .band-end.sug{text-align:center}
  body.page-calculadora .band-end.sug .v{color:#74D7C8;font-size:22px}
  body.page-calculadora .band-end.ceil{text-align:right}

  body.page-calculadora .tbl-head{display:flex;align-items:baseline;justify-content:space-between;margin:0 0 4px}
  body.page-calculadora .tbl-head h3{font-family:"Space Grotesk",sans-serif;font-size:14px;margin:0;font-weight:600}
  body.page-calculadora .tbl-head .legend{font-size:10.5px;color:var(--muted);font-family:"Space Mono",monospace}
  body.page-calculadora table{width:100%;border-collapse:collapse;margin-top:6px}
  body.page-calculadora th,body.page-calculadora td{text-align:right;padding:9px 4px;font-size:13px}
  body.page-calculadora th{font-family:"Space Mono",monospace;font-weight:700;font-size:9.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);border-bottom:1px solid var(--line)}
  body.page-calculadora th:first-child,body.page-calculadora td:first-child{text-align:left}
  body.page-calculadora td{border-bottom:1px solid var(--line)}
  body.page-calculadora tr:last-child td{border-bottom:none}
  body.page-calculadora .pname{font-weight:600;font-size:13px;color:var(--ink)}
  body.page-calculadora .psub{font-size:10.5px;color:var(--muted);font-weight:400}
  body.page-calculadora td.f{font-family:"Space Mono",monospace;color:var(--floor);font-size:12px}
  body.page-calculadora td.s{font-family:"Space Mono",monospace;color:var(--price);font-weight:700}
  body.page-calculadora td.c{font-family:"Space Mono",monospace;color:var(--ink-2);font-size:12px}

  body.page-calculadora .deal{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    margin-top:14px;padding:13px 16px;background:var(--price-soft);
    border-radius:11px;border:1px solid #BCE0D9;
  }
  body.page-calculadora .deal .lab{font-size:12px;color:var(--price);font-weight:600;line-height:1.3}
  body.page-calculadora .deal .lab small{display:block;color:#3C7A70;font-weight:400;font-size:10.5px}
  body.page-calculadora .deal .amt{font-family:"Space Mono",monospace;font-weight:700;font-size:19px;color:var(--price)}

  body.page-calculadora .anchor h3{font-family:"Space Grotesk",sans-serif;font-size:14px;margin:0 0 3px;font-weight:600}
  body.page-calculadora .anchor .cat{font-size:11.5px;color:var(--muted);margin:0 0 14px}
  body.page-calculadora .anchor .cat b{color:var(--exposure)}
  body.page-calculadora .expo-row{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:8px}
  body.page-calculadora .expo-row .big{font-family:"Space Mono",monospace;font-weight:700;font-size:26px;color:var(--exposure);line-height:1}
  body.page-calculadora .expo-row .pct{text-align:right}
  body.page-calculadora .expo-row .pct .n{font-family:"Space Mono",monospace;font-weight:700;font-size:18px;color:var(--ink)}
  body.page-calculadora .expo-row .pct .l{font-size:10px;color:var(--muted);display:block}
  body.page-calculadora .ratio{height:9px;border-radius:99px;background:var(--exposure-soft);overflow:hidden;position:relative}
  body.page-calculadora .ratio-fill{height:100%;background:var(--price);border-radius:99px;transition:width .35s ease;min-width:3px}
  body.page-calculadora .ratio-cap{font-size:10.5px;color:var(--muted);margin-top:7px;font-family:"Space Mono",monospace}
  body.page-calculadora .recid{font-size:11.5px;color:var(--ink-2);margin:12px 0 0;padding-top:12px;border-top:1px dashed var(--line-strong)}
  body.page-calculadora .recid b{color:var(--exposure)}

  body.page-calculadora .note{
    margin-top:0;padding:14px 16px;border-radius:11px;font-size:12.5px;line-height:1.5;
    border:1px solid;display:flex;gap:10px;align-items:flex-start;
  }
  body.page-calculadora .note .ico{flex-shrink:0;font-family:"Space Grotesk";font-weight:700;width:20px;height:20px;border-radius:50%;display:grid;place-items:center;font-size:12px;margin-top:1px}
  body.page-calculadora .note.warn{background:var(--exposure-soft);border-color:#E3B8A6;color:#6B2912}
  body.page-calculadora .note.warn .ico{background:var(--exposure);color:#fff}
  body.page-calculadora .note.info{background:#EAF0F6;border-color:#C5D5E5;color:#1E3A55}
  body.page-calculadora .note.info .ico{background:var(--ink);color:#fff}
  body.page-calculadora .note b{font-weight:600}

  body.page-calculadora .stack{display:flex;flex-direction:column;gap:18px}

  body.page-calculadora footer{margin-top:26px;font-size:11px;color:var(--muted);text-align:center;line-height:1.6}
  body.page-calculadora footer b{color:var(--ink-2)}

  @media (prefers-reduced-motion:reduce){
    body.page-calculadora *{transition:none!important}
  }
  body.page-calculadora :focus-visible{outline:2px solid var(--ink);outline-offset:2px;border-radius:4px}

/* ===== informe_plantilla_dpi.html :: page-informe-plantilla ===== */
body.page-informe-plantilla{
    --ink:#14203a;          /* navy autoridad */
    --ink-soft:#46557a;
    --paper:#ffffff;
    --panel:#f5f7fb;
    --line:#e2e7f0;
    --teal:#0f6e82;         /* acento marca */
    --teal-soft:#e4f1f3;
    --red:#bd3b34;
    --amber:#cf8a1c;
    --green:#2c8159;
    --shadow:0 1px 2px rgba(20,32,58,.06),0 8px 28px rgba(20,32,58,.06);
  }
  body.page-informe-plantilla *{box-sizing:border-box}
  html,body.page-informe-plantilla{margin:0;background:#eef1f6;color:var(--ink);
    font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    -webkit-font-smoothing:antialiased;line-height:1.5}
  body.page-informe-plantilla .display{font-family:"Fraunces","Iowan Old Style",Georgia,serif}

  body.page-informe-plantilla .howto{max-width:820px;margin:22px auto 0;padding:16px 20px;background:var(--ink);
    color:#dbe4f5;border-radius:12px;font-size:13.5px}
  body.page-informe-plantilla .howto b{color:#fff}
  body.page-informe-plantilla .howto code{background:rgba(255,255,255,.12);padding:1px 6px;border-radius:5px;color:#fff}
  body.page-informe-plantilla .panel{max-width:820px;margin:14px auto 0;background:#fff;border:1px solid var(--line);
    border-radius:12px;padding:16px 20px;box-shadow:var(--shadow)}
  body.page-informe-plantilla .panel h4{margin:0 0 12px;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-soft)}
  body.page-informe-plantilla .sliders{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px 22px}
  body.page-informe-plantilla .sld{display:flex;align-items:center;gap:10px;font-size:13px}
  body.page-informe-plantilla .sld label{flex:1;color:var(--ink-soft)}
  body.page-informe-plantilla .sld input[type=number]{width:62px;padding:5px 7px;border:1px solid var(--line);border-radius:7px;
    font:inherit;font-size:13px;text-align:center}

  body.page-informe-plantilla .sheet{max-width:820px;margin:18px auto 60px;background:var(--paper);
    box-shadow:var(--shadow);border-radius:4px;overflow:hidden}
  body.page-informe-plantilla .pad{padding:40px 48px}

  body.page-informe-plantilla .topbar{display:flex;justify-content:space-between;align-items:flex-start;
    padding:26px 48px;border-bottom:1px solid var(--line)}
  body.page-informe-plantilla .brand{display:flex;align-items:center;gap:11px}
  body.page-informe-plantilla .brand .mark{width:30px;height:30px;border-radius:7px;background:var(--teal);
    display:grid;place-items:center;color:#fff;font-weight:700;font-size:15px}
  body.page-informe-plantilla .brand .name{font-weight:700;font-size:15px;letter-spacing:-.01em}
  body.page-informe-plantilla .brand .name span{color:var(--ink-soft);font-weight:500}
  body.page-informe-plantilla .docmeta{text-align:right;font-size:11.5px;color:var(--ink-soft);line-height:1.7}

  body.page-informe-plantilla .eyebrow{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal);font-weight:600}
  body.page-informe-plantilla h1.title{font-size:34px;line-height:1.08;margin:8px 0 18px;font-weight:600;letter-spacing:-.02em}

  body.page-informe-plantilla .client{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;
    background:var(--panel);border:1px solid var(--line);border-radius:10px;padding:16px 18px}
  body.page-informe-plantilla .client .k{font-size:10.5px;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-soft)}
  body.page-informe-plantilla .client .v{font-size:15px;font-weight:600;margin-top:3px}

  body.page-informe-plantilla .hero{display:grid;grid-template-columns:200px 1fr;gap:34px;align-items:center;
    margin:30px 0 10px}
  body.page-informe-plantilla .gauge{position:relative;width:200px;height:200px}
  body.page-informe-plantilla .gauge svg{transform:rotate(-90deg)}
  body.page-informe-plantilla .gauge .num{position:absolute;inset:0;display:grid;place-content:center;text-align:center}
  body.page-informe-plantilla .gauge .num b{font-family:"Fraunces",serif;font-size:54px;font-weight:600;line-height:1}
  body.page-informe-plantilla .gauge .num small{display:block;font-size:11px;letter-spacing:.14em;text-transform:uppercase;
    color:var(--ink-soft);margin-top:4px}
  body.page-informe-plantilla .verdict .badge{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:13px;
    padding:6px 13px;border-radius:999px}
  body.page-informe-plantilla .dot{width:9px;height:9px;border-radius:50%}
  body.page-informe-plantilla .verdict h2{font-family:"Fraunces",serif;font-weight:500;font-size:23px;line-height:1.25;
    margin:14px 0 6px;letter-spacing:-.01em}
  body.page-informe-plantilla .verdict p{margin:0;color:var(--ink-soft);font-size:14px;max-width:42ch}
  body.page-informe-plantilla .deadline{margin-top:16px;display:flex;align-items:baseline;gap:9px;
    border-top:1px solid var(--line);padding-top:14px}
  body.page-informe-plantilla .deadline b{font-family:"Fraunces",serif;font-size:26px;color:var(--red)}
  body.page-informe-plantilla .deadline span{font-size:12.5px;color:var(--ink-soft)}

  body.page-informe-plantilla h3.sec{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);
    margin:38px 0 16px;padding-bottom:9px;border-bottom:1px solid var(--line);font-weight:600}

  body.page-informe-plantilla .dim{display:grid;grid-template-columns:200px 1fr 42px;gap:14px;align-items:center;margin:11px 0}
  body.page-informe-plantilla .dim .lbl{font-size:13px}
  body.page-informe-plantilla .dim .track{height:9px;background:var(--panel);border-radius:5px;overflow:hidden}
  body.page-informe-plantilla .dim .bar{height:100%;border-radius:5px;transition:width .4s}
  body.page-informe-plantilla .dim .val{font-size:13px;font-weight:600;text-align:right;font-variant-numeric:tabular-nums}

  body.page-informe-plantilla table{width:100%;border-collapse:collapse;font-size:13px}
  body.page-informe-plantilla th{text-align:left;font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;
    color:var(--ink-soft);font-weight:600;padding:9px 10px;border-bottom:1.5px solid var(--line)}
  body.page-informe-plantilla td{padding:9px 10px;border-bottom:1px solid var(--line);vertical-align:top}
  body.page-informe-plantilla .st{font-weight:600;white-space:nowrap;font-size:12px}
  body.page-informe-plantilla .st.ok{color:var(--green)} body.page-informe-plantilla .st.mid{color:var(--amber)} body.page-informe-plantilla .st.no{color:var(--red)}
  body.page-informe-plantilla .obl td:first-child{font-weight:600;width:33%}

  body.page-informe-plantilla .gap{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:9px;
    padding:15px 18px;margin:11px 0;break-inside:avoid}
  body.page-informe-plantilla .gap.med{border-left-color:var(--amber)}
  body.page-informe-plantilla .gap h4{margin:0 0 5px;font-size:15px;font-weight:600}
  body.page-informe-plantilla .gap .why{font-size:13px;color:var(--ink-soft);margin:0 0 8px}
  body.page-informe-plantilla .gap .meta{font-size:11px;color:var(--ink-soft);display:flex;gap:16px}
  body.page-informe-plantilla .gap .meta b{color:var(--ink)}
  body.page-informe-plantilla .rank{font-family:"Fraunces",serif;color:var(--teal);font-size:13px;margin-right:6px}

  body.page-informe-plantilla .flow{display:flex;align-items:center;gap:10px;flex-wrap:wrap;background:var(--panel);
    border:1px solid var(--line);border-radius:10px;padding:18px}
  body.page-informe-plantilla .node{background:#fff;border:1px solid var(--line);border-radius:8px;padding:9px 13px;font-size:12.5px;font-weight:600}
  body.page-informe-plantilla .node.ext{border-color:#e6c4c1;background:#fbf2f1;color:var(--red)}
  body.page-informe-plantilla .arr{color:var(--ink-soft);font-size:16px}

  body.page-informe-plantilla .note{background:var(--teal-soft);border:1px solid #bfe0e4;border-radius:10px;padding:16px 18px;
    font-size:13.5px;break-inside:avoid}
  body.page-informe-plantilla .note b{color:var(--teal)}

  body.page-informe-plantilla .cta{margin-top:30px;background:var(--ink);color:#eaf0fb;border-radius:12px;padding:26px 30px;break-inside:avoid}
  body.page-informe-plantilla .cta h3{font-family:"Fraunces",serif;font-weight:500;font-size:22px;margin:0 0 8px;color:#fff}
  body.page-informe-plantilla .cta p{margin:0 0 16px;font-size:14px;color:#c4d0e8;max-width:54ch}
  body.page-informe-plantilla .cta .btn{display:inline-block;background:var(--teal);color:#fff;font-weight:600;font-size:14px;
    padding:11px 22px;border-radius:8px;text-decoration:none}
  body.page-informe-plantilla .cta .contact{margin-top:14px;font-size:12.5px;color:#9fb0d2}

  body.page-informe-plantilla .disc{font-size:11px;color:var(--ink-soft);line-height:1.6;margin-top:24px;
    padding-top:16px;border-top:1px solid var(--line)}

  body.page-informe-plantilla .edit{outline:none}
  @media screen{body.page-informe-plantilla .edit{border-bottom:1px dashed #c3ccdc}body.page-informe-plantilla .edit:focus{border-bottom-color:var(--teal);background:#fbfdff}}

  @media print{
    @page{size:A4;margin:13mm}
    html,body.page-informe-plantilla{background:#fff}
    body.page-informe-plantilla .howto,body.page-informe-plantilla .panel{display:none!important}
    body.page-informe-plantilla .sheet{box-shadow:none;margin:0;max-width:none;border-radius:0}
    body.page-informe-plantilla .edit{border:none!important;background:none!important}
    body.page-informe-plantilla *{-webkit-print-color-adjust:exact;print-color-adjust:exact}
    body.page-informe-plantilla .gap,body.page-informe-plantilla .cta,body.page-informe-plantilla .note,body.page-informe-plantilla .dim,body.page-informe-plantilla .hero{break-inside:avoid}
    body.page-informe-plantilla h3.sec{break-after:avoid}
  }

/* ===== Navegacion compartida ===== */
body .site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid #e2e7f0;
}
body.page-calculadora .site-header{ margin: -28px -20px 28px; }
body.page-backoffice .topbar{ top: 67px; }
body.page-diagnostico .panel-topbar{ top: 67px; }
body.page-diagnostico .panel-body{ min-height: calc(100vh - 121px); }
body.page-diagnostico .psidebar{
  top: 121px;
  height: calc(100vh - 121px);
}
body .site-header .wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
body.page-landing header.site-header .wrap{
  display: block;
  height: auto;
}
body .site-header .nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
body .site-header .brand,
body .mobile-nav .brand{
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  flex-shrink: 0;
  color: #14203a;
  text-decoration: none;
}
body .site-header .brand-mark,
body .mobile-nav .brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #0f6e82;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body .site-header .brand-mark svg,
body .mobile-nav .brand-mark svg{ display: block; }
body .site-header .brand-name,
body .mobile-nav .brand-name{
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: #14203a;
  letter-spacing: 0;
  line-height: 1;
}
body .site-header .brand-sub,
body .mobile-nav .brand-sub{
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #46557a;
  margin-top: 3px;
}
body .site-header .nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .site-header .nav-links a{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #46557a;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  cursor: pointer;
  text-decoration: none;
}
body .site-header .nav-links a:hover,
body .site-header .nav-links a.active{
  color: #14203a;
  background: #f5f7fb;
}
body .site-header .btn,
body .mobile-nav .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  border: none;
  text-decoration: none;
}
body .site-header .btn:hover,
body .mobile-nav .btn:hover{ transform: translateY(-1px); }
body .site-header .btn-primary,
body .mobile-nav .btn-primary{
  background: #0f6e82;
  color: #fff;
}
body .site-header .btn-primary:hover,
body .mobile-nav .btn-primary:hover{ background: #0b5867; }
body .site-header .hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
body .site-header .hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: #14203a;
  border-radius: 2px;
  transition: .2s;
}
body .mobile-nav{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  padding: 0;
  flex-direction: column;
}
body .mobile-nav.open{ display: flex; }
body .mobile-nav-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e7f0;
}
body .mobile-nav-close{
  font-size: 24px;
  color: #46557a;
  background: none;
  border: none;
  cursor: pointer;
}
body .mobile-nav-links{
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
body .mobile-nav-links a{
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #14203a;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
body .mobile-nav-links a:hover{ background: #f5f7fb; }
body .mobile-nav-footer{
  padding: 20px;
  border-top: 1px solid #e2e7f0;
}
body .mobile-nav-footer .btn{ width: 100%; }

@media (max-width: 900px){
  body .site-header .nav-links,
  body .site-header .nav-cta{ display: none; }
  body .site-header .hamburger{ display: flex; }
}
@media (max-width: 600px){
  body .site-header .wrap{ padding: 0 16px; }
}
@media print{
  body .site-header,
  body .mobile-nav{ display: none !important; }
}
