/* =========================
   VERIOK-AI Static Site
   Modern, minimal, responsive
   ========================= */

:root{
  --bg: #0B1220;
  --bg2:#0A0F1A;
  --panel:#0F1A2E;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);
  --accent:#7C5CFF;
  --accent2:#26D5FF;
  --good:#2BE4A7;
  --warn:#FFCF5C;

  --radius: 18px;
  --shadow: 0 10px 35px rgba(0,0,0,.35);
  --shadow2: 0 18px 60px rgba(0,0,0,.45);

  --max: 1120px;
  --pad: 22px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: #0B1220 
}


a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
img{ max-width:100%; display:block; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:20px; top:20px;
  width:auto;height:auto;
  padding:10px 12px;
  background:#000;
  border:1px solid var(--border);
  border-radius:10px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,15,26,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:20px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

/* FIX: logo más grande y legible (desktop + móvil).
   Si el SVG “se ve raro”, esto fuerza tamaño consistente. */
.brand-logo{
  width:64px;
  height:64px;
  max-height:64px;
}

.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:900; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color:var(--muted2); margin-top:2px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a.active{ color:var(--text); background: rgba(255,255,255,.06); }
.nav a:hover{ color:var(--text); background: rgba(255,255,255,.06); }

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(255,255,255,.8);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:750;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(124,92,255,.92), rgba(38,213,255,.55));
  color:#0A0F1A;
  box-shadow: var(--shadow);
}
.btn:hover{ filter:brightness(1.03); }
.btn:active{ transform: translateY(1px); }
.btn-small{ padding:10px 14px; border-radius:12px; font-size:14px; }

.btn-ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.link{ color: var(--muted); font-weight:650; }
.link:hover{ color: var(--text); }

.hero{
  padding:58px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.eyebrow{
  color: rgba(255,255,255,.78);
  font-weight:750;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 18px;
  font-size: 18px;
  line-height:1.6;
  color: var(--muted);
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

.trust{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}
.trust-item{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 14px;
  min-width: 150px;
}
.trust-kpi{ font-weight:900; font-size:22px; }
.trust-text{ color:var(--muted2); margin-top:2px; font-size:12px; }


.hero-orb{
  position:absolute;
  inset:auto -120px -140px auto;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.glass{
  padding:22px;
  position:relative;
  z-index:1;
}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-size:12px;
  color:var(--muted);
  font-weight:750;
}
.hero-card h3{
  margin:12px 0 8px;
  font-size:22px;
  letter-spacing:-.01em;
}
.muted{ color:var(--muted); }
.checklist{
  list-style:none;
  padding:0;
  margin:16px 0 0;
}
.checklist li{
  padding:10px 0 10px 28px;
  position:relative;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}
.checklist li:first-child{ border-top:none; }
.checklist li:before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:16px; height:16px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: rgba(43,228,167,.18);
  border: 1px solid rgba(43,228,167,.35);
  box-shadow: 0 0 0 4px rgba(43,228,167,.08);
}
.card-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* Nuevo: caja de nota (sin cambiar estética) */
.note-box{
  margin-top:16px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  line-height: 1.55;
}

.section{
  padding:46px 0;
}
.section-alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{ margin-bottom:18px; max-width: 780px; }
.section-head h2{ margin:0 0 10px; font-size:28px; letter-spacing:-.01em; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{ margin:0 0 8px; font-size:18px; }
.card-large{ padding:22px; }
.card-large h2{ margin:0 0 10px; font-size:24px; letter-spacing:-.01em; }
.pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  margin-bottom:12px;
}

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.callout{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:20px;
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.bullets li{ margin:8px 0; }

.cta{
  border-radius: 26px;
  overflow:hidden;
}
.cta-inner{
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
 
  box-shadow: var(--shadow2);
}
.cta-inner h2{ margin:0 0 8px; font-size:28px; }

.site-footer{
  margin-top:26px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:22px 0;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  width:48px;
  height:48px;
}
.footer-title{ font-weight:900; letter-spacing:.2px; }
.footer-muted{ color:var(--muted2); font-size:13px; }
.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-right a{ color:var(--muted2); font-weight:650; font-size:13px; padding:6px 8px; border-radius:10px; }
.footer-right a:hover{ color:var(--text); background: rgba(255,255,255,.05); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0 22px;
  gap:12px;
  flex-wrap:wrap;
}

.page-hero{
  padding:42px 0 8px;
}
.page-hero h1{ font-size: clamp(30px, 3.6vw, 46px); margin:0 0 10px; }
.divider{
  height:1px;
  background: rgba(255,255,255,.08);
  margin:26px 0;
}

.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.mini-grid h4{
  margin:0 0 6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color: rgba(255,255,255,.78);
}

.cta-strip{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.cta-strip h3{ margin:0 0 4px; }
.cta-strip p{ margin:0; }

.steps{ display:grid; gap:12px; }
.step{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap:12px;
  align-items:start;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:18px;
}
.step-num{
  width:52px;height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  font-weight:950;
  font-size:18px;
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.35);
}
.step-body h2{ margin:0 0 6px; font-size:20px; }
.hint{
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}

.faq{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color: rgba(255,255,255,.85);
}
.faq p{ margin:10px 0 0; }

.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
label{
  display:grid;
  gap:8px;
  color: rgba(255,255,255,.82);
  font-weight:700;
  font-size:13px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(38,213,255,.40);
  box-shadow: 0 0 0 4px rgba(38,213,255,.12);
}
.checkbox{
  grid-template-columns: 18px 1fr;
  align-items:start;
  gap:10px;
  font-weight:650;
  color: var(--muted);
}
.checkbox input{
  width:18px;height:18px;
  margin-top:2px;
}
.form-note{ margin:0; min-height: 20px; line-height:1.55; }

.cta-mini{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Mobile nav */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .mini-grid{ grid-template-columns: 1fr; }
}

/* FIX: logo aún más visible en móvil */
@media (max-width: 760px){
  .brand-logo{
    width:56px;
    height:56px;
  }

  .brand-name{ font-size: 16px; }
  .brand-tag{ font-size: 12px; }

  .nav-toggle{ display:inline-block; }
  .nav{
    position:absolute;
    right: var(--pad);
    top: 78px;
    width: calc(100% - (var(--pad) * 2));
    max-width: 520px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(10,15,26,.92);
    box-shadow: var(--shadow2);
  }
  .nav.open{ display:flex; }
  .nav a{ padding:12px 12px; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}

/* ===================================================
   REDES SOCIALES – BLANCAS, HORIZONTALES, COMPACTAS
   (MISMO DISEÑO, SOLO FUERA DEL MEDIA-QUERY)
   =================================================== */

#social-fix-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

#social-fix-box a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

#social-fix-box a:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

#social-fix-box svg {
  width: 14px;
  height: 14px;
  fill: white;
  opacity: .9;
}

/* Fuerza blanco real (algunos SVG venían negros) */
#social-fix-box svg path{
  fill: white !important;
}

/* Móvil: centrados */
@media (max-width: 768px) {
  #social-fix-box {
    justify-content: center;
    margin-top: 14px;
  }

}
