/* ========================================
   Digitaliza Lab — Landing Premium
   ======================================== */

:root{
  --color-bg:#0b1016;
  --color-surface:#101722;
  --color-surface-2:#171f2d;
  --color-border:rgba(255,255,255,.09);
  --color-text:#e9edf4;
  --color-muted:#9ba7bb;
  --color-primary:#f58220;
  --color-primary-2:#ff9a3c;
  --color-primary-soft:rgba(245,130,32,.12);
  --color-white:#ffffff;
  --color-dark:#05080d;
  --shadow-lg:0 18px 50px rgba(0,0,0,.38);
  --shadow-md:0 10px 30px rgba(0,0,0,.18);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --font-heading:'Manrope', sans-serif;
  --font-body:'Inter', sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-body);
  color:var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at top right, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at bottom left, rgba(245,130,32,.08), transparent 16%),
    radial-gradient(circle at bottom right, rgba(245,130,32,.08), transparent 18%),
    var(--color-bg);
  line-height:1.65;
}

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

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

a:hover{
  color:inherit;
}

.section-light{
  padding:100px 0;
  background:linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
  color:#111827;
}

.section-dark{
  padding:100px 0;
  position:relative;
}

.topbar{
  position:relative;
  z-index:1035;
  background:linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:.92rem;
  padding:.7rem 0;
  backdrop-filter:blur(10px);
}

.topbar strong{
  color:var(--color-primary-2);
}

.topbar-divider{
  width:1px;
  height:18px;
  background:rgba(255,255,255,.15);
}

.navbar{
  padding:1rem 0;
  transition:all .35s ease;
  background:rgba(7,10,16,.45);
  backdrop-filter:blur(14px);
}

.navbar.scrolled{
  background:rgba(7,10,16,.82);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
  padding:.75rem 0;
}

.navbar-brand{
  font-family:var(--font-heading);
  font-size:1.08rem;
  letter-spacing:.2px;
}

.navbar-brand strong,
.footer-brand strong{
  color:var(--color-primary);
}

.nav-link{
  color:rgba(255,255,255,.86);
  font-weight:500;
}

.nav-link:hover,
.nav-link.active{
  color:var(--color-primary-2) !important;
}

.btn{
  border-radius:999px;
  font-weight:700;
  padding:.9rem 1.4rem;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-brand{
  background:linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  border:none;
  color:#fff;
  box-shadow:0 14px 28px rgba(245,130,32,.25);
}

.btn-brand:hover,
.btn-brand:focus{
  color:#fff;
  box-shadow:0 18px 34px rgba(245,130,32,.32);
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus{
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 0 90px;
}

.hero-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:.7;
  pointer-events:none;
}

.hero-orb-1{
  width:280px;
  height:280px;
  background:rgba(255,255,255,.08);
  top:120px;
  right:10%;
}

.hero-orb-2{
  width:210px;
  height:210px;
  background:rgba(245,130,32,.10);
  bottom:30px;
  left:6%;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  border:1px solid rgba(245,130,32,.22);
  background:rgba(245,130,32,.10);
  color:var(--color-primary-2);
  padding:.55rem .9rem;
  border-radius:999px;
  font-size:.88rem;
  font-weight:700;
}

.hero h1{
  font-family:var(--font-heading);
  font-size:clamp(2.6rem, 4vw, 4.7rem);
  line-height:1.04;
  letter-spacing:-.03em;
  max-width:11ch;
}

.hero h1 span{
  color:var(--color-primary-2);
}

.hero .lead{
  max-width:58ch;
}

.hero-bullets div{
  color:rgba(255,255,255,.90);
  display:flex;
  align-items:flex-start;
  gap:.75rem;
}

.hero-bullets i,
.cta-points i{
  color:var(--color-primary-2);
  margin-top:.15rem;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:1rem 1.4rem;
  color:var(--color-muted);
  font-size:.95rem;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
}

.premium-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}

.section-light .premium-card{
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:var(--shadow-md);
}

.hero-panel{
  padding:1.4rem;
}

.code-chip{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.92rem;
  border-radius:999px;
  padding:.55rem .85rem;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.04);
  color:#dfe6f0;
  margin-bottom:1rem;
}

.screen-frame{
  border-radius:24px;
  background:#06090e;
  min-height:430px;
  padding:1.4rem;
  border:1px solid rgba(255,255,255,.06);
  position:relative;
  overflow:hidden;
}

.screen-glow{
  position:absolute;
  inset:auto auto 18px 50%;
  transform:translateX(-50%);
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(245,130,32,.6) 0%, rgba(245,130,32,.18) 26%, transparent 62%);
  filter:blur(24px);
  pointer-events:none;
}

.screen-content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  height:100%;
}

.screen-label{
  color:rgba(255,255,255,.72);
  font-size:.92rem;
  letter-spacing:.03em;
}

.screen-list li{
  position:relative;
  padding-left:1.1rem;
  color:rgba(255,255,255,.78);
  margin-bottom:.6rem;
}

.screen-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--color-primary-2);
}

.mini-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin-top:1rem;
}

.mini-proof-item{
  padding:1rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  text-align:center;
}

.mini-proof-item strong{
  display:block;
  font-family:var(--font-heading);
  font-size:1.6rem;
  color:#fff;
}

.mini-proof-item span{
  color:var(--color-muted);
  font-size:.9rem;
}

.proof-strip{
  background:#111826;
  padding:0 0 40px;
}

.proof-badge{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  color:#dce4ef;
  padding:1rem 1.1rem;
  border-radius:20px;
  font-weight:600;
  height:100%;
}

.proof-badge i{
  color:var(--color-primary-2);
  margin-right:.55rem;
}

.section-heading{
  max-width:820px;
  margin:0 auto 10px;
}

.section-heading h2{
  font-family:var(--font-heading);
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.08;
  margin:1rem 0;
  letter-spacing:-.03em;
}

.section-heading p{
  color:#5f6b7c;
  font-size:1.08rem;
}

.section-heading-dark p{
  color:var(--color-muted);
}

.icon-wrap{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:var(--color-primary-soft);
  color:var(--color-primary);
  font-size:1.35rem;
  margin-bottom:1rem;
}

.pain-card,
.benefit-card,
.service-card,
.step-card,
.testimonial-card{
  padding:1.7rem;
}

.pain-card p,
.benefit-card p,
.service-card p,
.step-card p,
.testimonial-card p{
  margin-bottom:0;
  color:#5f6b7c;
}

.section-dark .pain-card p,
.section-dark .benefit-card p,
.section-dark .service-card p,
.section-dark .step-card p,
.section-dark .testimonial-card p{
  color:var(--color-muted);
}

.include-card{
  padding:1.7rem;
}

.include-item{
  display:flex;
  align-items:flex-start;
  gap:.8rem;
  padding:1rem 0;
  border-bottom:1px solid rgba(17,24,39,.08);
  font-weight:500;
  color:#1f2937;
}

.include-item:last-child{
  border-bottom:none;
}

.include-item i{
  color:var(--color-primary);
  margin-top:.18rem;
}

.include-item.muted{
  color:#6b7280;
}

.include-item.muted i{
  color:#a0a7b3;
}

.price-card{
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.price-tag{
  display:inline-flex;
  padding:.45rem .8rem;
  border-radius:999px;
  background:var(--color-primary-soft);
  color:var(--color-primary);
  font-weight:700;
  width:max-content;
  margin-bottom:1rem;
}

.price-display{
  font-family:var(--font-heading);
  font-size:clamp(2.4rem, 4vw, 3.8rem);
  line-height:1;
  letter-spacing:-.04em;
  margin:1rem 0;
  color:#111827;
}

.price-card p,
.price-card small{
  color:#5f6b7c;
}

.service-number{
  font-family:var(--font-heading);
  font-size:.92rem;
  letter-spacing:.22em;
  color:var(--color-primary-2);
  margin-bottom:1rem;
}

.service-card{
  min-height:100%;
}

.service-card.featured{
  border-color:rgba(245,130,32,.28);
  box-shadow:0 18px 50px rgba(245,130,32,.12);
}

.service-cta{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:#dbe4ef;
  font-weight:600;
}

.step-pill{
  display:inline-flex;
  padding:.45rem .8rem;
  border-radius:999px;
  background:rgba(245,130,32,.10);
  color:var(--color-primary);
  font-weight:700;
  margin-bottom:1rem;
}

.stars{
  color:var(--color-primary-2);
  letter-spacing:.12em;
  margin-bottom:1rem;
}

.premium-accordion{
  max-width:920px;
  margin-inline:auto;
}

.accordion-item{
  border:none;
  border-radius:20px !important;
  overflow:hidden;
  margin-bottom:1rem;
  box-shadow:var(--shadow-md);
}

.accordion-button{
  font-weight:700;
  padding:1.25rem 1.35rem;
}

.accordion-button:not(.collapsed){
  color:#111827;
  background:rgba(245,130,32,.08);
  box-shadow:none;
}

.accordion-button:focus{
  box-shadow:0 0 0 .25rem rgba(245,130,32,.15);
}

.accordion-body{
  color:#4b5563;
}

.cta-section{
  padding:100px 0;
  background:
    radial-gradient(circle at top right, rgba(245,130,32,.14), transparent 22%),
    linear-gradient(180deg, #0b1016 0%, #101722 100%);
}

.cta-section h2{
  font-family:var(--font-heading);
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.08;
  margin:1rem 0;
}

.cta-section p{
  color:var(--color-muted);
}

.cta-points{
  display:grid;
  gap:.7rem;
}

.form-card{
  padding:1.7rem;
}

.form-label{
  color:#e4ebf4;
  font-weight:600;
}

.form-control{
  min-height:54px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.05);
  color:#fff;
  padding:0 1rem;
}

textarea.form-control{
  padding:1rem;
  min-height:150px;
}

.form-control::placeholder{
  color:#9ba7bb;
}

.form-control:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
  border-color:rgba(245,130,32,.42);
  box-shadow:0 0 0 .25rem rgba(245,130,32,.15);
}

.form-feedback{
  color:#ffc98c;
  font-weight:500;
}

.site-footer{
  padding:70px 0 30px;
  background:#070b11;
  color:#dbe4ef;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-brand{
  font-family:var(--font-heading);
  font-size:1.15rem;
}

.footer-title{
  color:#fff;
  margin-bottom:1rem;
  font-family:var(--font-heading);
}

.footer-links li{
  margin-bottom:.7rem;
  color:var(--color-muted);
}

.footer-links a{
  color:var(--color-muted);
}

.footer-links a:hover{
  color:var(--color-primary-2);
}

.footer-social a{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  transition:all .25s ease;
}

.footer-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,130,32,.35);
  color:var(--color-primary-2);
}

.footer-bottom{
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  color:#92a0b4;
  font-size:.95rem;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, #25d366 0%, #1ab85a 100%);
  color:#fff;
  font-size:1.65rem;
  box-shadow:0 18px 35px rgba(37,211,102,.35);
  z-index:1040;
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus{
  transform:translateY(-3px) scale(1.02);
  color:#fff;
  box-shadow:0 22px 40px rgba(37,211,102,.42);
}

.form-control.is-invalid{
  border-color:#ffb4b4;
}

@media (max-width: 991.98px){
  .hero{
    min-height:auto;
    padding-top:130px;
  }

  .mini-proof{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .navbar-collapse{
    margin-top:1rem;
    background:rgba(6,10,16,.95);
    padding:1rem;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 767.98px){
  .topbar{
    font-size:.84rem;
  }

  .section-light,
  .section-dark,
  .cta-section{
    padding:78px 0;
  }

  .hero h1{
    max-width:13ch;
  }

  .mini-proof{
    grid-template-columns:1fr;
  }

  .proof-strip{
    padding-bottom:25px;
  }

  .footer-bottom{
    flex-direction:column;
  }

  .whatsapp-float{
    right:16px;
    bottom:16px;
    width:58px;
    height:58px;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    animation:none !important;
    transition:none !important;
  }
}


/* ====== Refinamientos visuales ====== */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.36), transparent 60%);
  opacity:.35;
}

.premium-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,0), rgba(245,130,32,.18));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  pointer-events:none;
}

.premium-card:hover{
  transform:translateY(-4px);
  transition:transform .35s ease, box-shadow .35s ease;
}

.hero-panel,
.price-card,
.service-card.featured{
  overflow:hidden;
}

.hero-panel::after,
.price-card::after,
.service-card.featured::after{
  content:"";
  position:absolute;
  inset:-40% auto auto -30%;
  width:180px;
  height:180%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.09), transparent);
  transform:rotate(18deg);
  opacity:.45;
  pointer-events:none;
}

.hero-bonus{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  max-width:620px;
  padding:1rem 1.1rem;
  border-radius:20px;
  border:1px solid rgba(245,130,32,.22);
  background:linear-gradient(180deg, rgba(245,130,32,.10), rgba(255,255,255,.03));
  box-shadow:0 18px 36px rgba(0,0,0,.18);
}

.hero-bonus-icon{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  box-shadow:0 12px 25px rgba(245,130,32,.18);
}

.hero-bonus-label{
  display:inline-block;
  margin-bottom:.3rem;
  color:var(--color-primary-2);
  font-size:.78rem;
  letter-spacing:.16em;
  font-weight:800;
}

.hero-bonus p{
  color:#d8e0eb;
  line-height:1.5;
}

.signature-strip{
  padding:0 0 100px;
  background:linear-gradient(180deg, #111826 0%, #f7f8fb 100%);
}

.signature-card{
  padding:2rem;
}

.signature-card h2{
  font-family:var(--font-heading);
  letter-spacing:-.03em;
}

.signature-card p{
  color:#5f6b7c;
}

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

.signature-pill{
  min-height:100%;
  border-radius:20px;
  padding:1.1rem 1rem;
  background:linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 10px 26px rgba(15,23,42,.07);
}

.signature-pill strong{
  display:block;
  margin-bottom:.35rem;
  font-family:var(--font-heading);
  color:#111827;
}

.signature-pill span{
  color:#5f6b7c;
  line-height:1.5;
}

.price-extra{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin:0 0 1rem;
  padding:.8rem .95rem;
  border-radius:16px;
  background:#f7f8fb;
  border:1px dashed rgba(245,130,32,.35);
  color:#374151;
  font-weight:600;
}

.price-extra i{
  color:var(--color-primary);
}

.js-ready .reveal-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
  transition-delay:var(--reveal-delay, 0ms);
}

.js-ready .reveal-up.is-visible{
  opacity:1;
  transform:none;
}

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

@media (max-width: 767.98px){
  body::before{
    opacity:.18;
    background-size:26px 26px;
  }

  .hero-bonus{
    padding:.95rem;
  }

  .signature-strip{
    padding-bottom:78px;
  }
}
/* ===== Arreglo cabecera superior ===== */

.topbar{
  position: relative;
  z-index: 1050;
  background: rgba(18, 22, 29, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden;
}

.navbar{
  position: relative;
  z-index: 1040;
  background: rgba(10, 14, 20, 0.88) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.navbar.scrolled{
  background: rgba(10, 14, 20, 0.96) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* evita que los brillos del hero se vean detrás de la cabecera */
.hero-orb-1,
.hero-orb-2{
  z-index: 0;
  opacity: .35;
}

/* asegura que el contenido principal quede por debajo de la cabecera */
.hero{
  position: relative;
  z-index: 1;
  padding-top: 170px;
}

/* opcional: si el grid brillante se nota mucho arriba, lo suaviza */
body::before{
  opacity: .18;
}