:root{
  --blue:#0b4aa6;
  --blue-dark:#082f66;
  --orange:#ff7a18;
  --white:#ffffff;

  --muted: rgba(255,255,255,.78);
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.14);

  --shadow: 0 18px 30px rgba(0,0,0,.25);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.18);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  line-height: 1.45;
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

a{ color: var(--white); text-decoration:none; }

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* Evita que el header sticky tape anclas */
section, main{ scroll-margin-top: 90px; }

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index: 1000;
  background:rgba(8,47,102,.75);
  border-bottom:1px solid var(--border);
  padding:12px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand__logo{
  height: 42px;
  width:auto;
  max-width: 180px;
  object-fit: contain;
  display:block;
}

/* NAV desktop */
.nav--desktop a{
  margin-left:16px;
  color:var(--muted);
  font-weight:700;
}
.nav--desktop a:hover{ color:var(--white); }

/* =========================
   NAV MOBILE
========================= */

.nav__toggle{
  display:none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor:pointer;
  line-height:1;
}

.nav--mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(8,47,102,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav--mobile a{
  display:block;
  padding: 14px 20px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.nav--mobile a:hover{ background: rgba(255,255,255,.06); }

.header.is-open .nav--mobile{ display:block; }

/* CTA opcional en header */
.header__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* =========================
   HERO
========================= */

.hero{
  padding:56px 0;
  padding-top: 80px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:22px;
  align-items:start;
}

h1{
  font-size:46px;
  margin:0 0 10px;
}

.lead{
  max-width: 62ch;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}

.hero__cta{ margin-top:20px; }

/* =========================
   BOTONES
========================= */

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  margin-right:10px;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.btn--primary{
  background:var(--orange);
  color:#0b1830;
  box-shadow: 0 10px 20px rgba(255,122,24,.35);
}
.btn--primary:hover{ box-shadow: 0 14px 28px rgba(255,122,24,.45); }

.btn--ghost{ border-color:var(--border); }

.btn--mini{
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
}

.btn--block{
  display:block;
  width:100%;
  text-align:center;
  margin-top:14px;
}

/* =========================
   TARJETA LATERAL
========================= */

.hero__card{
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:22px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.22);
}

.hero__card p{
  line-height:1.6;
  opacity:.9;
}

.divider{
  height:1px;
  background:var(--border);
  margin:14px 0;
}

.title-ico{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 0 0 10px;
}
.title-ico span{ font-size:20px; opacity:.9; }

/* =========================
   SECCIONES
========================= */

.section{ padding:48px 0; }

.section--alt{
  background: rgba(0,0,0,.15);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section__title{
  font-size: 30px;
  font-weight: 900;
  letter-spacing:.3px;
  margin: 0 0 10px;
}

.section__subtitle{
  color:var(--muted);
  margin: 0 0 20px;
}

/* =========================
   TRUST
========================= */

.trust{
  margin: 14px 0 8px;
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.trust span{
  display:flex;
  align-items:center;
  gap:6px;
}

/* =========================
   QUICK CONTACT CHIPS
========================= */

.quick-contact{
  margin-top: 14px;
  display:grid;
  gap: 10px;
  max-width: 720px;
  position: relative;
  padding-top: 12px;
  font-style: normal;
}

/* Greca sutil */
.quick-contact::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: .9;
}
.quick-contact::after{
  content:"";
  position:absolute;
  left:0;
  top:-8px;
  width: 220px;
  height: 18px;
  background:
    radial-gradient(circle at 8px 9px, rgba(255,255,255,.22) 2px, transparent 3px) 0 0 / 18px 18px;
  opacity: .6;
  pointer-events:none;
}

.qchip{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(255,255,255,.95);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.qchip:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.22);
}
.qchip--static:hover{ transform:none; box-shadow:none; }

.qchip__ico{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 16px;
}
.qchip__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .2px;
  min-width: 76px;
}
.qchip__value{
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
}

/* =========================
   CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

.card{
  position:relative;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  min-height: 220px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.22);
}

.card ul{
  margin-top:10px;
  line-height:1.6;
  color: rgba(255,255,255,.9);
}

.card .ico{
  position:absolute;
  top:14px;
  right:14px;
  color: var(--orange);
  opacity:.95;
  line-height: 1;
}
.ico svg{ color: var(--orange); }

.card__link{
  display:inline-flex;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  opacity: .92;
  transition: transform .15s ease, opacity .15s ease;
}
.card__link:hover{
  transform: translateX(4px);
  opacity: 1;
}

/* =========================
   BENEFICIOS
========================= */

.bullets{
  display:flex;
  gap:20px;
  flex-wrap: wrap;
}

.bullet{
  background:var(--card);
  padding:16px;
  border-radius:14px;
  border: 1px solid var(--border);
}

/* =========================
   FORMAS DE PAGO
========================= */

.section--payments{
  background: rgba(0,0,0,.15);
  text-align:center;
  margin-top: 8px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.payments__grid{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}

.payment{
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding:14px 20px;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:8px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.payment:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* =========================
   UBICACIÓN
========================= */

.section--location{ padding: 70px 0; }

.location__box{
  margin-top: 18px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.location__actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* =========================
   CTA FINAL
========================= */

.section--cta{ text-align:center; }
.cta__actions{ margin:20px 0; }

.cta__note,
.note,
.micro{
  color: var(--muted);
  font-size: 14px;
}

.micro{ margin-top:18px; }

/* =========================
   UPGRADE: PRICING + FORM
========================= */

.section--pricing{
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.08);
}

.pricing{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}

.price-card h3{ margin: 0 0 10px; }

.price{
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .2px;
}

.price span{
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  margin-right: 8px;
}

/* Form */
.section--form{
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(255,255,255,.08);
}

.wform{
  margin-top: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
}

.wform__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.field span{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea{
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 12px;
  color: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 4px rgba(255,122,24,.18);
}

.field--full{ grid-column: 1 / -1; }

.wform__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* =========================
   FOOTER
========================= */

.footer{
  border-top:1px solid var(--border);
  padding:20px 0;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.footer__logo{
  height:34px;
  width:auto;
  display:block;
  opacity: .95;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.wa-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  padding:12px 16px;
  border-radius:30px;
  font-weight:900;
  z-index:999;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}

/* =========================
   SERVICE HERO (para páginas tipo impresiones, escaneos, trámites)
========================= */

.service-hero{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap:22px;
  align-items:start;
}

.service-badge{
  display:flex;
  align-items:center;
  gap:12px;
  width:fit-content;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 16px 28px rgba(0,0,0,.18);
  margin-bottom: 16px;
}

.service-badge__icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.12);
  color: var(--orange);
}

.service-badge__txt strong{
  display:block;
  font-size: 14px;
  letter-spacing:.2px;
}

.service-badge__txt span{
  display:block;
  margin-top:2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top: 14px;
}

.step{
  display:flex;
  gap:12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 14px;
}

.step__num{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--orange);
  font-weight: 900;
}

.step__txt strong{ display:block; }
.step__txt span{
  display:block;
  margin-top:3px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .hero__grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .bullets{ flex-direction:column; }

  /* NAV */
  .nav--desktop{ display:none; }
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }

  /* HERO */
  .hero{ padding-top: 44px; }
  h1{ font-size: 36px; }

  .hero__cta .btn{
    width: 100%;
    text-align:center;
    margin: 0 0 10px 0;
  }

  /* Chips */
  .qchip__label{ min-width: 70px; }
  .qchip{ padding: 12px; }
  .qchip__value{ word-break: break-word; }

  /* Footer */
  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  /* WhatsApp float */
  .wa-float{
    bottom: 14px;
    right: 14px;
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Pricing + form */
  .pricing{ grid-template-columns: 1fr; }
  .wform__grid{ grid-template-columns: 1fr; }

  /* Service pages */
  .service-hero{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
}