:root{
  --bg0:#070A0F;
  --bg1:#0B1018;
  --panel: rgba(12, 16, 24, .68);
  --panel2: rgba(10, 14, 20, .58);
  --border: rgba(255,122,0,.18);
  --border2: rgba(255,122,0,.12);
  --txt: rgba(235,242,255,.96);
  --muted: rgba(235,242,255,.70);
  --muted2: rgba(235,242,255,.55);
  --orange: #FF7A00;
  --orange2:#FF9A1A;
  --ok:#2fd27a;
  --bad:#ff4d4d;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 26px rgba(0,0,0,.45);
  --r: 22px;
  --r2: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --ui: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%; width:100%}
body{
  margin:0;
  font-family: var(--ui);
  color: var(--txt);
  background:
    radial-gradient(900px 420px at 18% -10%, rgba(255,122,0,.22), transparent 55%),
    radial-gradient(760px 520px at 88% 0%, rgba(255,154,26,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 35%, var(--bg0));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%}

.viewport{
  width:100%;
  max-width:none;
  margin:0;
  padding: 18px clamp(14px, 3vw, 34px) 26px;
}

.container{
  width:min(1440px, 100%);
  margin:0 auto;
}

.fullbleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.topbar{
  position:sticky;
  top:0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7,10,15,.62);
  border-bottom: 1px solid rgba(255,122,0,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px clamp(14px, 3vw, 34px);
}

.brand{display:flex; gap:10px; align-items:center}
.logoMark{
  width:34px; height:34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.20), transparent 45%),
    linear-gradient(180deg, rgba(255,122,0,.98), rgba(255,122,0,.60));
  box-shadow: 0 10px 24px rgba(255,122,0,.14);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
/* “Hueco” interior como el logo real */
.logoMark::after{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.75));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brandTitle{font-weight:900; letter-spacing:.3px; font-size:16px; line-height:1}
.brandSub{font-weight:800; letter-spacing:3px; font-size:10px; color: rgba(255,154,26,.92); margin-top:2px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,122,0,.22);
  background: rgba(0,0,0,.24);
  color: rgba(255,229,204,.96);
  font-size: 12px;
}
.pill.ok{border-color: rgba(47,210,122,.35); color: rgba(199,255,227,.95); background: rgba(47,210,122,.10)}
.pill.bad{border-color: rgba(255,77,77,.35); color: rgba(255,220,220,.95); background: rgba(255,77,77,.10)}

.hero{
  position: relative;
  border-radius: var(--r);
  overflow:hidden;
  border: 1px solid rgba(255,122,0,.18);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(900px 320px at 52% 18%, rgba(255,122,0,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.80), rgba(0,0,0,.44) 55%, rgba(0,0,0,.82));
}
.heroBg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity:.88;
  transform: scale(1.03);

  z-index:-1;
}
.heroContent{
  position:relative;
  z-index:2;
  padding: 34px 22px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  max-width: 980px;
}
.h1{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}
.muted{color: var(--muted)}
.small{font-size:12px; color: var(--muted2)}

.actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.btnLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(255,122,0,.22);
  background: linear-gradient(180deg, rgba(255,122,0,.24), rgba(255,122,0,.12));
  box-shadow: var(--shadow2);
  transition: transform .12s ease, filter .12s ease;
  user-select:none;
}
.btnLink:hover{transform: translateY(-1px); filter: brightness(1.08)}
.btnLink:active{transform: translateY(0px); filter: brightness(0.98)}
.btnLink.ghost{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 880px){
  .grid3{grid-template-columns: 1fr}
}

.card{
  border-radius: var(--r);
  overflow:hidden;
  border: 1px solid rgba(255,122,0,.15);
  background: linear-gradient(180deg, rgba(255,122,0,.06), rgba(0,0,0,.08));
  box-shadow: var(--shadow2);
}
.panelHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,122,0,.12);
  background: rgba(0,0,0,.22);
}
.title{font-weight: 950; letter-spacing:.2px}
.panelBody{padding: 14px}

.note{
  border: 1px solid rgba(255,122,0,.16);
  border-radius: var(--r2);
  padding: 14px;
  background: rgba(255,255,255,.03);
}

.shots{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 880px){
  .shots{grid-template-columns:1fr}
}
.shot{
  border: 1px solid rgba(255,122,0,.14);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.18);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 900px){ .steps{grid-template-columns:1fr} }
.step{
  border: 1px solid rgba(255,122,0,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 14px;
}
.stepTitle{font-weight: 950; margin-top:8px}

.licenseContacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px){ .licenseContacts{grid-template-columns:1fr} }
.licenseCard{
  border: 1px solid rgba(255,122,0,.14);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  padding: 14px;
}
.licenseTitle{font-weight: 950; margin-bottom:10px}
.licenseBtns{display:flex; gap:10px; flex-wrap:wrap}
.contactBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, filter .12s ease;
}
.contactBtn:hover{transform: translateY(-1px); filter: brightness(1.08)}
.contactBtn.wa{border-color: rgba(47,210,122,.30)}
.contactBtn.tg{border-color: rgba(90,170,255,.30)}

.input{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.24);
  color: var(--txt);
  outline:none;
}
.input:focus{
  border-color: rgba(255,122,0,.35);
  box-shadow: 0 0 0 3px rgba(255,122,0,.10);
}

.faq{display:grid; gap:10px}
.faqItem{
  border: 1px solid rgba(255,122,0,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
}
.faqItem summary{cursor:pointer; font-weight: 900}
.faqItem[open]{background: rgba(255,122,0,.06)}

.footerCredit{
  padding: 16px clamp(14px, 3vw, 34px) 30px;
  color: rgba(235,242,255,.56);
}
.footerInner{
  width:min(1440px, 100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}


/* Capturas: login grande + 2 imágenes abajo */
.shotsSimple{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.shotsSimple .shot.big{
  grid-column: 1 / -1;
}
@media (max-width: 900px){
  .shotsSimple{grid-template-columns:1fr;}
}

/* Botones un poco más "premium" */
.btnLink{
  border-radius: 16px;
  padding: 11px 15px;
}
.contactBtn{
  border-radius: 16px;
}

/* Hero features (no parecen botones) */
.heroFeatures{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .heroFeatures{grid-template-columns:1fr}
}
.heroFeat{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border: 1px solid rgba(255,122,0,.14);
  background: rgba(0,0,0,.14);
  border-radius: 16px;
  padding: 12px;
}
.heroFeatIco{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,122,0,.20);
  background: rgba(255,122,0,.10);
  color: rgba(255,229,204,.96);
  flex: 0 0 auto;
}
.heroFeatTitle{
  font-weight: 950;
  margin-bottom: 3px;
}


/* === Ajuste de visibilidad de botones en HERO === */
.hero .actions{
  position: relative;
  z-index: 3;
}

/* Botón principal: más contraste */
.hero .btnLink{
  background: linear-gradient(180deg, rgba(255,122,0,.34), rgba(255,122,0,.18));
  border-color: rgba(255,122,0,.34);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

/* Botones ghost: fondo más sólido para que no se pierdan */
.hero .btnLink.ghost{
  background: rgba(0,0,0,.38);
  border-color: rgba(255,255,255,.18);
}

/* El texto/íconos en botones */
.hero .btnLink,
.hero .btnLink.ghost{
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

/* Hover más marcado */
.hero .btnLink:hover,
.hero .contactBtn:hover{
  filter: brightness(1.12);
}

/* Overlay del hero: menos agresivo abajo para que no opaque botones */
.hero::after{
  background:
    radial-gradient(900px 320px at 52% 18%, rgba(255,122,0,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.40) 55%, rgba(0,0,0,.70));
}

/* Actions wrap */
.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
