:root{
  --bg:#0b1220;
  --bg2:#0f1930;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.12);
  --text:#e8eefc;
  --muted: rgba(232,238,252,.75);
  --line: rgba(255,255,255,.14);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;

  /* NUEVO: acentos pro */
  --primary: #6fe7ff;      /* CTA principal (diagnóstico) */
  --primary2: #2dd0ff;     /* degradado */
  --wa: #25D366;           /* WhatsApp */
  --accent: #6fe7ff;       /* mantenemos para focos */
}


*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; color:var(--text);  background:
    radial-gradient(800px 400px at 15% 10%, rgba(111,231,255,.12), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(124,77,255,.14), transparent 65%),
    linear-gradient(180deg, #05070d, #070b14, #0b1220); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }

.muted{ color:var(--muted); }

.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:14px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo {
  height: 60px;      /* aquí controlas el tamaño */
  width: auto;
  display: block;
}

.brand__text{ line-height:1.1; }
.brand__name{ font-weight:800; letter-spacing:.4px; }
.brand__tagline{ font-size:12px; color:var(--muted); }

.topbar__actions{ display:flex; gap:10px; align-items:center; }

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(135deg, #6fe7ff, #7c4dff);
  color:#04101a;
  border-color: rgba(111,231,255,.55);
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(111,231,255,.20) inset,
    0 0 28px rgba(111,231,255,.22);
  font-weight:800;
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(0,0,0,.42),
    0 0 0 1px rgba(111,231,255,.25) inset,
    0 0 36px rgba(111,231,255,.32);
}


.btn--secondary{ background: rgba(255,255,255,.10); }
.btn--ghost{ background: transparent; }
.btn--lg{ padding:12px 16px; border-radius: 16px; }
.btn--block{ width:100%; padding:12px 14px; border-radius: 16px; }

.hero{ position:relative; overflow:hidden; }
.hero__media{ position:absolute; inset:0; }
.hero__video{
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(111,231,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.72));
}

.hero__content{ position:relative; padding:56px 0 28px; }
.hero__grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:start; }

.pill{
  display:inline-flex; align-items:center;
  padding:8px 12px; border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  font-size:12px; color: rgba(255,255,255,.85);
  margin-bottom:14px;
}

.hero__copy h1{ margin:0; font-size:46px; line-height:1.06; letter-spacing:-.6px; }
.hero__copy h1 span{ color: rgba(255,255,255,.78); }
.hero__copy p{ margin:14px 0 0; font-size:16px; color: rgba(255,255,255,.82); max-width: 620px; }
.hero__chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.chip{
  padding:10px 12px; border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-size:13px;
}
.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }

.hero__formCard{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(12,18,32,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  backdrop-filter: blur(14px);
}
.hero__formCard h3{ margin:0 0 6px; font-size:18px; }
.form{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
label span{ display:block; font-size:12px; color:rgba(255,255,255,.72); margin-bottom:6px; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 11px 12px;
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(111,231,255,.35); box-shadow: 0 0 0 4px rgba(111,231,255,.12); }
.form__note{ font-size:12px; color:rgba(255,255,255,.8); min-height:16px; }

.quick{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.quick__item{
  font-size:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  padding:8px 10px;
  border-radius: 999px;
}

.micro{
  margin-top:18px;
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding:14px;
}
.micro__item{ padding:10px 12px; border-radius: 16px; background: rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.10); }
.micro__title{ font-weight:800; font-size:13px; }
.micro__desc{ font-size:12px; color: rgba(255,255,255,.78); margin-top:4px; }

.section{ padding:64px 0; }
.section--alt{
  background:
    linear-gradient(180deg,
      rgba(124,77,255,.08),
      rgba(255,255,255,.02),
      rgba(111,231,255,.06)
    );
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{ text-align:center; margin-bottom:22px; }
.section__head h2{ margin:0; font-size:30px; letter-spacing:-.4px; }
.section__head p{ margin:10px 0 0; }

.grid3{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }

.card{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.card h3{ margin:0 0 10px; font-size:18px; }
.card p{ margin:0; color: rgba(255,255,255,.80); }
.card--media{ padding:0; overflow:hidden; }
.card--media img{ height:160px; width:100%; object-fit:cover; }
.card__body{ padding:16px 18px; }

.list{ margin:10px 0 0; padding-left:18px; color: rgba(255,255,255,.80); }
.list li{ margin:6px 0; }

.ctaStrip{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  border-radius: 22px;
  padding:18px;
}
.ctaStrip h3{ margin:0 0 6px; }
.ctaStrip__actions{ display:flex; gap:10px; flex-wrap:wrap; }

.floating{ position:fixed; right:14px; bottom:14px; display:flex; flex-direction:column; gap:10px; z-index:60; }
.fab{
  width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  font-size:20px;
}
.fab:hover{ transform: translateY(-1px); }
.fab--wa{ background: rgba(45,206,137,.20); }
.fab--call{ background: rgba(111,231,255,.16); }

.footer{ border-top:1px solid var(--line); padding:22px 0; }
.footer__inner{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; color: rgba(255,255,255,.72); }
.footer__links{ display:flex; gap:10px; align-items:center; }

/* THANKS */
.thanks{ min-height:100vh; display:flex; align-items:center; justify-content:center; }
.thanks__box{ max-width:680px; padding:26px; border:1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.06); box-shadow: var(--shadow); text-align:center; }
.thanks__logo{ height:52px; margin:0 auto 10px; }
.thanks__actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:14px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .topbar__actions{ display:none; }
  .micro{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .hero__copy h1{ font-size:38px; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(8, 15, 30, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-card__img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.btn--wa{
  background: linear-gradient(135deg, rgba(37,211,102,.95), rgba(37,211,102,.75));
  color:#04101a;
  border-color: rgba(37,211,102,.55);
  font-weight:800;
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 0 26px rgba(37,211,102,.20);
}
.btn--wa:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(0,0,0,.42),
    0 0 34px rgba(37,211,102,.28);
}
