/* ============================================================
   Identidad Damji Systems: AZUL MARINO + DORADO/champán,
   Instrument Serif (titulares) + DM Sans (texto). Premium y elegante.
   ============================================================ */
:root {
  --navy-deep: #0D1017;
  --navy: #1A1F2C;
  --navy-mid: #2C3548;
  --blue-soft: #7B9CC8;
  --blue-mist: #C8D6E8;
  --blue-ghost: #EDF1F7;

  --gold: #C2A979;
  --gold-light: #D4BE93;
  --gold-pale: #F5EDD8;
  --gold-ghost: rgba(194,169,121,.10);

  --ink: #1A1F2E;
  --muted: #6B7082;
  --line: #E4DFD5;
  --paper: #F6F4F0;
  --cream: #FAF8F5;
  --white: #ffffff;
  --green: #2B835E;
  --terracotta: #A85A43;
  --terracotta-soft: #F5E8E3;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow: 0 24px 54px rgba(13,16,23,.14);
  --shadow-sm: 0 10px 26px rgba(13,16,23,.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: var(--sans); -webkit-font-smoothing: antialiased; line-height: 1.6;
}
a { color: inherit; }

.kicker { margin: 0 0 10px; color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4.2vw, 46px); line-height: 1.05; margin: 0 0 26px; max-width: 780px; letter-spacing: 0; }
h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; margin: 0 0 8px; }
p { color: var(--muted); }

/* BOTONES — primario = dorado (acción premium) */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 14px 26px; border: 1.5px solid transparent; border-radius: 100px;
  font-family: var(--sans); font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer;
  transition: transform .07s ease, box-shadow .2s ease, background .2s ease;
}
.button:active { transform: translateY(1px); }
.button--primary { background: var(--gold); color: #2a2410; box-shadow: 0 12px 28px rgba(194,169,121,.40); }
.button--primary:hover { background: var(--gold-light); box-shadow: 0 16px 34px rgba(194,169,121,.5); }
.button--ghost-light { border-color: rgba(255,255,255,.45); color: #fff; }
.button--ghost-light:hover { background: rgba(255,255,255,.08); }
.button--ghost-dark { background: #fff; border-color: var(--navy-mid); color: var(--navy); }
.button--ghost-dark:hover { background: var(--gold-pale); border-color: var(--gold); }
.button--sm { min-height: 42px; padding: 10px 20px; font-size: 14px; }
.button--block { width: 100%; margin-top: 8px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 20px;
  padding: 14px clamp(16px, 5vw, 48px);
  background: rgba(250,248,245,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav__brand { font-weight: 700; text-decoration: none; font-size: 17px; letter-spacing: -.01em; white-space: nowrap; }
.nav__brand span { color: var(--gold); }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; font-weight: 500; font-size: 14px; color: var(--muted); }
.nav__links a:hover { color: var(--navy); }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: clamp(48px, 6.5vw, 92px) clamp(16px, 5vw, 48px);
  background:
    radial-gradient(640px 420px at 90% -10%, rgba(194,169,121,.26) 0%, transparent 58%),
    radial-gradient(700px 480px at 2% 112%, rgba(123,156,200,.22) 0%, transparent 58%),
    linear-gradient(152deg, #0D1017 0%, #1A1F2C 55%, #0D1017 100%);
  color: var(--blue-ghost);
}
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { font-family: var(--serif); font-weight: 400; margin: 0; font-size: clamp(33px, 6vw, 74px); line-height: 1.04; color: #fff; letter-spacing: 0; overflow-wrap: break-word; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.lead { margin: 22px 0 0; max-width: 560px; font-size: clamp(16px, 1.9vw, 19px); color: var(--blue-mist); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.actions--center { justify-content: center; }
.trust { margin: 18px 0 0; font-size: 14px; color: var(--blue-soft); }
.trust strong { color: var(--gold-light); }

/* badge programa fundador */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; max-width: 100%;
  background: rgba(168,90,67,.18); border: 1px solid rgba(168,90,67,.5); color: #f0c9bd;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 14px; border-radius: 100px;
}
.hero__badge::before { content: "●"; color: var(--terracotta); animation: pulse 1.9s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero__card { display: flex; justify-content: center; }
.minichat { width: min(360px, 100%); background: var(--cream); border-radius: 22px; padding: 14px; box-shadow: var(--shadow); }
.minichat__head { display: flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; margin: -14px -14px 12px; padding: 13px 15px; border-radius: 22px 22px 0 0; font-size: 13.5px; font-weight: 600; }
.minichat__head .d { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.b { max-width: 86%; padding: 9px 13px; border-radius: 14px; font-size: 14px; margin-bottom: 9px; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.b--in { background: #fff; border: 1px solid #ECE7DE; border-top-left-radius: 4px; }
.b--out { background: var(--gold-pale); margin-left: auto; border-top-right-radius: 4px; }
.minichat__tag { margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--navy); text-align: center; }

/* BANDS */
.band { padding: clamp(50px, 6.5vw, 84px) clamp(16px, 5vw, 48px); max-width: 1120px; margin: 0 auto; }
.band--soft { background: var(--cream); max-width: none; border-block: 1px solid var(--line); }
.band--soft > * { max-width: 1120px; margin-inline: auto; }
.band__cta { margin-top: 30px; }

/* PAIN */
.band--pain .kicker { color: var(--terracotta); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pain-grid div { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 20px; border-top: 3px solid var(--terracotta); box-shadow: var(--shadow-sm); }
.pain-grid strong { display: block; font-size: 16px; margin-bottom: 6px; color: var(--ink); font-family: var(--serif); font-weight: 400; font-size: 20px; }
.pain-grid p { margin: 0; font-size: 14px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold-light); font-family: var(--serif); font-size: 22px; margin-bottom: 16px; }
.steps p { margin: 0; }

/* RECIBES */
.recibes { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.checks li { position: relative; padding-left: 32px; font-weight: 500; color: var(--ink); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: #2a2410; font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.recibes__note { margin: 20px 0 0; font-size: 15px; color: var(--muted); border-left: 2px solid var(--gold); padding-left: 14px; }
.recibes__note strong { color: var(--navy); }
.ticket { margin: 0; padding: 24px; background: var(--navy-deep); color: var(--blue-mist); border-radius: var(--radius); border: 1px solid var(--navy-mid); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; line-height: 1.7; box-shadow: var(--shadow); white-space: pre-wrap; }

/* IA */
.ia { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 38px; align-items: center; }
.ia .kicker { color: var(--gold); }
.ia__lead { font-size: 17px; color: var(--ink); }
.ia__note { font-size: 14px; }
.ia__stat { text-align: center; background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-radius: var(--radius); padding: 34px 24px; box-shadow: var(--shadow); border: 1px solid var(--navy-mid); }
.ia__stat strong { display: block; font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--gold-light); }
.ia__stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--blue-mist); }

/* PRUEBA CON TU MARCA */
.band--try { text-align: center; }
.band--try h2 { margin-inline: auto; }
.try__hint { max-width: 640px; margin: 0 auto 24px; }
.try { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 560px; margin: 0 auto; }
.try input { flex: 1; min-width: 220px; border: 1.5px solid var(--line); border-radius: 100px; padding: 14px 20px; font-size: 16px; font-family: var(--sans); outline: none; background: #fff; }
.try input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-ghost); }
.try__links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* RESULTADOS / CASO */
.res__soon { max-width: 700px; margin: 0 auto; font-size: 18px; color: var(--ink); }
.res__soon a { color: var(--gold); font-weight: 700; text-decoration: none; white-space: nowrap; }
.res__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res__card { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 14px; padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.res__card strong { display: block; font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--navy); }
.res__card span { display: block; margin-top: 8px; font-size: 14px; color: var(--muted); font-weight: 500; }
.res__quote { margin: 24px auto 0; max-width: 720px; font-family: var(--serif); font-size: 24px; color: var(--ink); border-left: 3px solid var(--gold); padding-left: 20px; }
.res__quote cite { display: block; margin-top: 8px; font-family: var(--sans); font-style: normal; font-weight: 700; color: var(--muted); font-size: 14px; }

/* PRICING */
.pricing { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.plan--feature { position: relative; background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.plan__tag { display: inline-block; background: var(--gold-pale); color: #7a5c1f; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 6px 14px; border-radius: 100px; }
.plan__price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.plan__price strong { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--navy); }
.plan__price span { color: var(--muted); font-weight: 500; }
.plan__after { margin: 0 0 18px; font-size: 13px; color: var(--muted); }
.plan__guarantee { margin: 12px 0 0; font-size: 13px; color: var(--green); font-weight: 500; line-height: 1.5; }
.plan__guarantee strong { color: #1f6b48; }
.plan__roi { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-radius: var(--radius); padding: 28px; }
.plan__roi .kicker { color: var(--gold-light); }
.plan__roi p { color: var(--blue-mist); }
.plan__roi-big { font-family: var(--serif); font-size: 24px; color: var(--gold-light) !important; margin-top: 14px; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 16px; }

/* CTA FINAL */
.cta-final { text-align: center; padding: clamp(54px, 7vw, 90px) clamp(16px, 5vw, 48px);
  background: radial-gradient(680px 380px at 50% -20%, rgba(194,169,121,.20), transparent 60%), linear-gradient(160deg, #0D1017, #1A1F2C); color: var(--blue-ghost); }
.cta-final h2 { margin: 0 auto 14px; color: #fff; }
.cta-final p { max-width: 600px; margin: 0 auto; color: var(--blue-mist); }
.cta-final .actions { margin-top: 28px; }
.contact { margin-top: 26px !important; font-weight: 500; color: var(--blue-soft) !important; }
.contact code { background: rgba(255,255,255,.08); padding: 2px 7px; border-radius: 6px; color: var(--gold-pale); }

/* FOOT */
.foot { padding: 24px clamp(16px, 5vw, 48px); background: #090c11; color: #8893a3; }
.foot p { margin: 0 auto; max-width: 1120px; font-size: 13px; color: #8893a3; }
.foot strong { color: var(--gold-light); }
.foot a { color: var(--gold); }
.foot__legal { margin-top: 8px !important; font-size: 12px; }

/* TRUST BAND */
/* EXPLAINER 3 pasos (10s) */
.flow { background: var(--cream); border-bottom: 1px solid var(--line); }
.flow__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  padding: clamp(26px, 4vw, 44px) clamp(16px, 5vw, 48px);
}
.flow__step { flex: 1; text-align: center; padding: 6px 14px; }
.flow__icon { font-size: 30px; line-height: 1; display: block; margin-bottom: 10px; }
.flow__step h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.15; margin: 0 0 5px; color: var(--navy); }
.flow__step p { margin: 0; font-size: 14.5px; line-height: 1.45; color: var(--muted); }
.flow__arrow { align-self: center; color: var(--gold); font-size: 24px; font-weight: 700; flex: none; }
@media (max-width: 720px) {
  .flow__inner { flex-direction: column; gap: 2px; }
  .flow__arrow { transform: rotate(90deg); margin: 2px 0; }
  .flow__step { padding: 12px 14px; max-width: 420px; margin: 0 auto; }
}

.trustband { background: var(--cream); border-bottom: 1px solid var(--line); }
.trustband__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center;
  padding: 18px clamp(16px, 5vw, 48px);
}
.trustband__item {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 15px;
  font-size: 13.5px; color: var(--ink); box-shadow: var(--shadow-sm);
}
.trustband__item b { font-weight: 700; }

/* BAND INTRO (frase de apoyo bajo un h2) */
.band__intro { margin: -14px 0 30px; max-width: 720px; font-size: 17px; color: var(--ink); }

/* GUARANTEE SEAL (en pricing) */
.guarantee-seal {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
  margin-top: 18px; padding: 16px;
  background: var(--gold-pale); border: 1px solid var(--gold);
  border-radius: 14px;
}
.guarantee-seal__badge {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; align-content: center;
  background: var(--navy); color: var(--gold-light);
  font-family: var(--serif); font-size: 26px; line-height: .85;
  border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.guarantee-seal__badge small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }
.guarantee-seal p { margin: 0; font-size: 14px; color: #5a4a22; line-height: 1.5; }
.guarantee-seal strong { color: #1f6b48; }

/* ANTES / DESPUÉS */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; }
.ba__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.ba__col--before { border-top: 3px solid var(--terracotta); }
.ba__col--after { border-top: 3px solid var(--green); }
.ba__tag { margin: 0 0 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.ba__tag--before { color: var(--terracotta); }
.ba__tag--after { color: var(--green); }
.ba__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ba__col li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink); }
.ba__col--before li::before { content: "✕"; position: absolute; left: 0; color: var(--terracotta); font-weight: 800; }
.ba__col--after li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.ba__arrow { display: grid; place-items: center; font-size: 30px; color: var(--gold); }

/* VÍDEO 90s */
.videoposter {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-decoration: none; margin-top: 8px;
  min-height: 220px; padding: 30px;
  background: radial-gradient(600px 300px at 50% -30%, rgba(194,169,121,.22), transparent 60%), linear-gradient(160deg, var(--navy), var(--navy-deep));
  border: 1px solid var(--navy-mid); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .1s ease, box-shadow .2s ease;
}
.videoposter:hover { transform: translateY(-2px); box-shadow: 0 30px 60px rgba(13,16,23,.22); }
.videoposter__play {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 24px;
  background: var(--gold); color: #2a2410; box-shadow: 0 12px 28px rgba(194,169,121,.45);
}
.videoposter__txt { color: #fff; font-family: var(--serif); font-size: 26px; }

/* DATOS SEGUROS */
.safe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.safe__item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); }
.safe__item span { font-size: 26px; }
.safe__item strong { display: block; margin: 8px 0 6px; font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--ink); }
.safe__item p { margin: 0; font-size: 14px; }

/* QUIÉN ESTÁ DETRÁS (founder) */
.founder { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 44px); align-items: center; max-width: 940px; margin: 0 auto; }
.founder__avatar {
  width: 132px; height: 132px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light); font-family: var(--serif); font-size: 64px; line-height: 1;
  border: 2px solid var(--gold); box-shadow: var(--shadow-sm); object-fit: cover;
}
.founder__body h2 { margin: 6px 0 14px; }
.founder__note { font-size: clamp(16px, 1.7vw, 18px); color: var(--ink); max-width: 620px; margin: 0 0 14px; }
.founder__note strong { color: var(--navy); }
.founder__sign { font-family: var(--serif); font-size: 22px; color: var(--navy); margin: 0 0 18px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.founder__sign span { font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; }
  .founder__avatar { width: 104px; height: 104px; font-size: 50px; }
  .founder__note { margin-left: auto; margin-right: auto; }
  .founder__sign { justify-content: center; }
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .recibes, .ia, .pricing, .res__grid { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); }
  .safe { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .safe { grid-template-columns: 1fr; }
  .videoposter__txt { font-size: 20px; }
}
@media (max-width: 560px) {
  .nav__links { display: none; }
  .nav { gap: 10px; padding: 12px 16px; }
  .nav__brand { font-size: 15px; }
  .nav .button--sm { padding: 9px 15px; font-size: 13px; min-height: 38px; flex: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .nav .button--sm { width: auto; }
  .actions { flex-direction: column; }
}

/* CTA FIJA INFERIOR (solo móvil) — persistente al hacer scroll en una página larga */
.mobilecta { display: none; }
@media (max-width: 760px) {
  .mobilecta {
    display: flex; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250,248,245,.94);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(13,16,23,.10);
  }
  .mobilecta .button { width: auto; min-height: 50px; padding: 13px 16px; font-size: 15px; white-space: nowrap; }
  .mobilecta__demo { flex: 0 0 auto; }
  .mobilecta__try { flex: 1; }
  body { padding-bottom: 78px; }            /* hueco para que la barra no tape el final */
  .wafab { display: none !important; }      /* el flotante de WhatsApp chocaría con la barra */
}
