:root{
  --bg:#05080f;
  --panel:#0b1320;
  --panel2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.12);
  --line2:#2d4055;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.70);
  --muted2:rgba(238,242,255,.55);
  --accent:#c5eb4a;
  --wa:#25D366;
  --call:#2d7ef7;
  --form:#f6a600;
  --r:18px;
  --shadow:0 22px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:0 18px}

/* separators */
.sep{
  height:1px;width:100%;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.18), rgba(255,255,255,0));
  margin:0 0 18px;
}

/* shared */
.kicker{
  color:var(--accent);
  font-weight:900;
  letter-spacing:.12em;
  font-size:.75rem;
  margin-bottom:10px;
}
.lead{color:var(--muted);line-height:1.65}
.muted{color:var(--muted)}
.hint{color:var(--muted2);font-size:.9rem;margin-top:10px}

.card{
  background:var(--panel);
  border:1px solid var(--line2);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.card--pad{padding:22px}
.caption{color:var(--muted2);font-size:.85rem;padding:10px 14px 14px}

/* TOPBAR */
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(5,8,15,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__in{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px; padding:14px 18px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.brand__logo{border-radius:12px}
.brand__txt{display:flex;flex-direction:column;line-height:1.1}
.brand__name{font-weight:800}
.brand__tag{color:var(--muted2);font-size:.9rem}

.topbar__ctas{display:flex;align-items:center;gap:18px}
.cta{
  position:relative;
  font-weight:800;
  padding:8px 2px 12px;
  white-space:nowrap;
}
.cta::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;
  height:6px;border-radius:999px;
  opacity:.95;
}
.cta--wa::after{background:var(--wa)}
.cta--call::after{background:var(--call)}
.cta--form::after{background:var(--form)}

.cta:focus-visible,.btn:focus-visible,.btnPrimary:focus-visible, summary:focus-visible{
  outline:2px solid rgba(197,235,74,.65);
  outline-offset:3px;
  border-radius:10px;
}

/* HERO */
.hero{padding:34px 0 10px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.hero__copy h1{
  font-size:clamp(2.05rem,3.4vw,3.1rem);
  line-height:1.02;
  margin-bottom:12px;
  color:#fff;
}
.sub{color:rgba(238,242,255,.85);font-weight:700;margin-bottom:14px}
.bullets{
  display:inline-block;
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:10px 12px;
  background:rgba(0,0,0,.18);
  margin:6px 0 18px;
}
.bullets__item{
  color:rgba(238,242,255,.82);
  font-weight:500;
  font-size:.95rem;
  line-height:1.5;
  padding:3px 0;
}
.bullets__item::before{content:"• "; color:rgba(238,242,255,.8)}
.hero__ctas{display:flex;gap:18px;flex-wrap:wrap}
.hero__media{overflow:hidden}
.hero__media img{width:100%;height:100%;object-fit:cover}

/* blocks */
.block{padding:34px 0}
.block h2{
  font-size:clamp(1.75rem,2.5vw,2.25rem);
  line-height:1.12;
  margin-bottom:10px;
}

/* Decision easy two col */
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}
.list{list-style:none;display:flex;flex-direction:column;gap:14px}
.dot{display:inline-block;width:20px;color:#fff;opacity:.9}
.list li strong{color:#fff}
.mediaCard{overflow:hidden}
.mediaCard img{width:100%;height:100%;object-fit:cover
/* Equal-height columns (Decision fácil) */
.twoCol > .card{height:100%}
.mediaCard{display:flex;flex-direction:column}
.mediaCard img{flex:1 1 auto;min-height:0}

}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0 14px}
.step__ico{margin:0 0 10px}
.step h3{font-size:1.05rem;margin-bottom:6px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--accent);color:#111;
  padding:12px 18px;border-radius:12px;
  font-weight:900;border:0;
}

/* Pair images */
.pair{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:16px}

/* Accordions */
.accordion, .faqAcc{
  border:1px solid var(--line2);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.accordion>summary, .faqAcc>summary{
  list-style:none; cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  padding:18px 18px 16px;
}
.accordion>summary::-webkit-details-marker, .faqAcc>summary::-webkit-details-marker{display:none}
.accChev{font-size:1.7rem;opacity:.75;transition:transform .18s ease, opacity .18s ease}
details[open] > summary .accChev{transform:rotate(90deg);opacity:1}
.accBody, .faqBody{
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 14px 18px;
}
.grid4{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.mini h3{font-size:1rem;margin-bottom:6px}

/* Examples rail */
.rail{
  display:flex;gap:16px;
  overflow-x:auto;
  padding:12px 6px 10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.rail::-webkit-scrollbar{display:none}
.exCard{flex:0 0 360px;scroll-snap-align:start;overflow:hidden}
.exMedia{height:210px;overflow:hidden}
.exMedia img{width:100%;height:100%;object-fit:cover}
.exBody{padding:14px 14px 16px}
.exBody h3{font-size:1.02rem;margin-bottom:10px}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{
  display:inline-flex;align-items:center;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:rgba(238,242,255,.85);
  font-size:.82rem;
}

/* Form */
.formCard{
  background:var(--panel);
  border:1px solid var(--line2);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}
.formCard h2{color:var(--accent);font-size:1.6rem;margin-bottom:18px}
.formCard__badge{display:block;font-size:.85rem;font-weight:600;color:var(--muted);margin-top:6px}
.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field{display:flex;flex-direction:column;gap:6px}
.field.full{grid-column:1/-1}
label{font-size:.9rem;color:rgba(238,242,255,.85)}
input, textarea{
  background:#c7cfdd;
  border:none;border-radius:10px;
  padding:12px 14px;
  font-size:.95rem;
}
input:focus, textarea:focus{outline:2px solid rgba(197,235,74,.6)}
.actions{grid-column:1/-1;display:flex;flex-direction:column;gap:10px;margin-top:6px}
.btnPrimary{
  align-self:flex-start;
  background:var(--accent);color:#111;
  border:none;border-radius:12px;
  padding:12px 22px;
  font-weight:900;cursor:pointer;
}
.link{color:rgba(238,242,255,.9);text-decoration:underline;text-decoration-color:rgba(197,235,74,.5)}

/* FAQ items */
.qa{
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(0,0,0,.18);
  margin:10px 8px;
  overflow:hidden;
}
.qa>summary{
  list-style:none;cursor:pointer;
  padding:14px 16px;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
}
.qa>summary::-webkit-details-marker{display:none}
.qa .q{font-weight:800}
.qa .chev{font-size:1.4rem;opacity:.7;transition:transform .18s ease, opacity .18s ease}
.qa[open] .chev{transform:rotate(90deg);opacity:1}
.qa .a{padding:0 16px 14px}
.qa .a p{color:var(--muted);line-height:1.55;font-size:.95rem}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0 34px;
  background:rgba(5,8,15,.55);
}
.footer__in{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap}
.footer nav{display:flex;gap:18px;flex-wrap:wrap}
.footer p{color:rgba(238,242,255,.75)}

/* responsive */
@media (max-width:980px){
  .hero__grid{grid-template-columns:1fr;gap:14px}
  .twoCol{grid-template-columns:1fr;gap:14px}
  .pair{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:12px}
  .grid4{grid-template-columns:1fr}
  .topbar__ctas{gap:14px}
}
@media (max-width:720px){
  .formGrid{grid-template-columns:1fr}
  .topbar__in{padding:12px 14px}
  .wrap{padding:0 14px}
  .card--pad{padding:18px}
  .formCard{padding:20px}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .accChev,.qa .chev{transition:none}
}
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Modal de envío formulario */
.modal{
  position:fixed;inset:0;z-index:100;
  display:flex;align-items:center;justify-content:center;
  padding:18px;
  visibility:hidden;opacity:0;
  transition:visibility .2s ease, opacity .2s ease;
}
.modal--open{
  visibility:visible;opacity:1;
}
.modal__backdrop{
  position:absolute;inset:0;
  background:rgba(5,8,15,.82);
  cursor:pointer;
}
.modal__box{
  position:relative;
  background:var(--panel);
  border:1px solid var(--line2);
  border-radius:22px;
  padding:28px 28px 28px 28px;
  box-shadow:var(--shadow);
  max-width:420px;width:100%;
  max-height:90vh;overflow:auto;
}
.modal__content--success .kicker{color:var(--accent)}
.modal__content--error .kicker{color:#e57373}
.modal__title{font-size:1.35rem;margin:8px 0 10px;color:#fff}
.modal__content .lead{margin-bottom:16px}
.modal__urgent{color:var(--muted);font-size:.95rem;margin-bottom:18px;line-height:1.5}
.modal__urgent .link{color:var(--accent);text-decoration:underline;text-underline-offset:3px}
.modal__ctas{display:flex;flex-wrap:wrap;gap:12px}
.modal__close{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;
  border:none;border-radius:10px;
  background:rgba(255,255,255,.1);
  color:var(--text);
  font-size:1.6rem;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.modal__close:hover{background:rgba(255,255,255,.18)}
.modal__close:focus-visible{outline:2px solid rgba(197,235,74,.65);outline-offset:2px}
.modal__urgent{margin-bottom:28px}
.modal__ctas{margin-bottom:8px}
.modal__closeBtn{
  display:block;width:100%;max-width:320px;margin:28px auto 0;
  padding:14px 28px;
  border:1px solid rgba(255,255,255,.25);border-radius:10px;
  background:transparent;color:var(--text);
  font-size:1.05rem;font-weight:600;cursor:pointer;
}
.modal__closeBtn:hover{background:rgba(255,255,255,.08)}
.modal__closeBtn:focus-visible{outline:2px solid rgba(197,235,74,.65);outline-offset:2px}

