:root{
  --bg:#07070a;
  --bg2:#0b0c14;
  --bg3:#05050a;

  --text: rgba(242,244,255,.92);
  --muted: rgba(242,244,255,.72);
  --muted2: rgba(242,244,255,.52);

  --line: rgba(242,244,255,.12);
  --line2: rgba(242,244,255,.08);

  --shadow: 0 18px 60px rgba(0,0,0,.52);
  --shadow2: 0 10px 30px rgba(0,0,0,.38);

  --r: 18px;
  --r2: 24px;

  --accent: #8b5cff;
  --accent2:#00e5ff;
  --gold:#ffcc66;

  --mx: 50%;
  --my: 20%;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(139,92,255,.16), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(0,229,255,.10), transparent 55%),
    radial-gradient(900px 600px at 30% 120%, rgba(255,204,102,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, textarea, select{ font:inherit; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

/* FX */
.spotlight{
  position:fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(650px 450px at var(--mx) var(--my),
      rgba(139,92,255,.22),
      rgba(0,229,255,.12) 35%,
      transparent 70%);
  mix-blend-mode:screen;
  opacity:.66;
  filter: blur(4px);
  z-index:0;
}
.noise{
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
  opacity:.08;
  z-index:0;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(7,7,10,.55);
  border-bottom:1px solid var(--line2);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  letter-spacing:.4px;
  user-select:none;
}
.brand-mark{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.18), transparent 45%),
    linear-gradient(135deg, rgba(139,92,255,.85), rgba(0,229,255,.75));
  box-shadow: var(--shadow2);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
}
.brand-text{ font-weight:700; }
.brand.small .brand-mark{ width:32px; height:32px; border-radius:12px; }

.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* false bold */
.fb{
  font-weight:800;
  letter-spacing:.2px;
  text-shadow: 0 0 18px rgba(139,92,255,.18);
}

.nav{
  display:flex; gap:18px;
  padding:8px 14px;
  border:1px solid var(--line2);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.navlink{
  font-size:14px;
  color: var(--muted);
  padding:6px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.navlink:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.navlink.active{
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.topbar-cta{
  display:flex; align-items:center; gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:700;
  font-size:14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn.primary{
  border-color: rgba(139,92,255,.38);
  background: linear-gradient(135deg, rgba(139,92,255,.90), rgba(0,229,255,.75));
  color: #061018;
  box-shadow: 0 18px 60px rgba(139,92,255,.22);
}
.btn.primary:hover{
  box-shadow: 0 22px 70px rgba(139,92,255,.26);
}
.btn.ghost{
  color: var(--text);
}
.btn.full{ width:100%; }
.center{ text-align:center; }

/* Burger */
.burger{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  display:none;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
}
.burger span{
  width:18px; height:2px;
  background: rgba(242,244,255,.85);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile */
.mobile{
  border-top: 1px solid var(--line2);
  background: rgba(7,7,10,.72);
}
.mobile-inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.mnav{
  padding:12px 14px;
  border:1px solid var(--line2);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.mnav:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.mobile-actions{ display:flex; gap:10px; margin-top:6px; }

/* Hero */
.hero{
  position:relative;
  z-index:1;
  padding: 54px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
.pill .dot{
  width:9px; height:9px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 20px rgba(139,92,255,.35);
}
.h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height:1.04;
  letter-spacing:-.8px;
}
.lead{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.7;
  max-width: 54ch;
}
.hero-actions{
  display:flex; gap:12px;
  margin:18px 0 18px;
  flex-wrap:wrap;
}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 14px;
}
.trust-item{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding:12px 12px;
  display:flex; gap:10px;
  align-items:center;
  box-shadow: var(--shadow2);
}
.kpi{ font-size:18px; }
.trust-title{ font-weight:800; font-size:14px; }
.trust-sub{ color: var(--muted2); font-size:13px; margin-top:2px; }


/* Social proof */
.proof{
  margin-top: 16px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:14px 14px;
  box-shadow: var(--shadow2);
}
.proof-head{ display:grid; gap:6px; margin-bottom:10px; }
.proof-title{ font-weight:900; letter-spacing:-.2px; }
.proof-sub{ color: var(--muted2); font-size:13px; line-height:1.6; }
.proof-logos{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
.logo-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,7,10,.35);
  color: var(--muted);
  font-size:12px;
  font-weight:800;
}
.proof-quotes{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.quote{
  margin:0;
  border:1px solid rgba(139,92,255,.22);
  background: radial-gradient(900px 260px at 20% 0%, rgba(139,92,255,.12), rgba(255,255,255,.02));
  border-radius: 18px;
  padding:12px 12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.qmark{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-weight:900;
}
.qtxt{ color: var(--muted); line-height:1.6; font-size:13px; }
.qwho{ margin-top:6px; color: var(--muted2); font-size:12px; font-weight:800; }


/* Coverage (Toda España) */
.coverage{
  margin-top: 12px;
  border:1px solid rgba(0,229,255,.18);
  background: radial-gradient(900px 300px at 20% 0%, rgba(0,229,255,.10), rgba(255,255,255,.02));
  border-radius: var(--r2);
  padding:14px 14px;
  box-shadow: var(--shadow2);
}
.coverage-head{ display:grid; gap:6px; margin-bottom:10px; }
.coverage-title{ font-weight:900; letter-spacing:-.2px; }
.coverage-sub{ color: var(--muted2); font-size:13px; line-height:1.6; }
.coverage-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,7,10,.30);
  color: var(--muted);
  font-size:12px;
  font-weight:800;
}

/* Hero visual stack */
.hero-visual{ display:grid; gap:12px; }
.stack{
  position:relative;
  min-height: 420px;
}
.card.shot{
  position:absolute;
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.card.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card.shot.a{
  inset: 0 0 0 0;
}
.card.shot.b{
  width: 54%;
  height: 54%;
  right: -10px;
  top: 20px;
  transform: rotate(2deg);
  opacity:.96;
}
.card.shot.c{
  width: 48%;
  height: 48%;
  left: -10px;
  bottom: -12px;
  transform: rotate(-2deg);
  opacity:.96;
}
.cap{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(7,7,10,.55);
  backdrop-filter: blur(12px);
}
.cap-title{ font-weight:900; }
.cap-sub{ color: var(--muted); font-size:13px; margin-top:2px; }

.minirow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.mini{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding:12px;
  display:flex; align-items:center; gap:10px;
  box-shadow: var(--shadow2);
}
.mini-ic{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.14), rgba(255,255,255,.03));
}
.mini-top{ font-weight:900; font-size:14px; }
.mini-bot{ color: var(--muted2); font-size:13px; margin-top:2px; }

/* Strip */
.hero-foot{ padding: 14px 0 0; }
.strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 10px 12px;
}
.strip-item{
  color: var(--muted);
  font-size:13px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

/* Sections */
.section{
  position:relative;
  z-index:1;
  padding: 72px 0;
}
.section.soft{
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(139,92,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}
.section-head{
  margin-bottom: 22px;
  max-width: 70ch;
}
.h2{
  margin:0 0 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing:-.5px;
}
.h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing:-.2px;
}
.muted{ color: var(--muted); line-height:1.7; margin:0; }
.muted2{ color: var(--muted2); }
/* Micro-claim (brand line) */
.microclaim{
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: -.15px;
  color: rgba(242,244,255,.78);
}
.microclaim-proof{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(242,244,255,.70);
}

/* Human trust card */
.founder-card{
  margin-top: 14px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:12px 12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  box-shadow: var(--shadow2);
}
.founder-ic{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight: 900;
  color:#061018;
  background: linear-gradient(135deg, rgba(255,204,102,.95), rgba(0,229,255,.75));
  flex: 0 0 auto;
}
.founder-top{ font-weight: 900; }
.founder-sub{ margin-top: 4px; color: var(--muted2); font-size: 13px; line-height: 1.6; }

/* Watermark motif (subtle MQ) */
.tile::before,
.pricecard::before,
.proof::before,
.coverage::before{
  content: "MQ";
  position:absolute;
  right: 14px;
  bottom: 10px;
  font-weight: 900;
  font-size: 54px;
  letter-spacing: -1px;
  color: rgba(242,244,255,.06);
  transform: rotate(-8deg);
  pointer-events:none;
  user-select:none;
}
.pricecard::before{ font-size: 64px; bottom: 6px; }
.proof::before, .coverage::before{ font-size: 46px; right: 12px; bottom: 8px; }


/* Tiles */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.tile{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.tile::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 180px at 20% 0%, rgba(139,92,255,.12), transparent 60%);
  pointer-events:none;
}
.tile-ic{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color: var(--muted);
  font-size:14px;
}
.list li{
  position:relative;
  padding-left:18px;
}
.list li::before{
  content:"•";
  position:absolute; left:0; top:0;
  color: rgba(0,229,255,.75);
}

/* Steps */
.steps{ display:grid; gap:12px; }
.step{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:16px;
  display:flex; gap:14px;
  align-items:flex-start;
  box-shadow: var(--shadow2);
}
.step-n{
  width:46px; height:46px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:900;
  color:#071018;
  background: linear-gradient(135deg, rgba(255,204,102,.95), rgba(0,229,255,.75));
}
.step-b p{ margin:0; }


/* Gallery (editorial, robust) */
/*
  Evitamos “spans” complejos porque en ciertos anchos/browsers pueden verse
  solapes visuales durante el reflow de imágenes (especialmente con lazy-load).
  Mantiene look premium y 100% estable.
*/
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  align-items:stretch;
  isolation:isolate;
}
.gcard{
  margin:0;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  overflow:hidden;
  box-shadow: var(--shadow2);
  aspect-ratio: 4 / 3;
}
.gcard img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.03) contrast(1.02);
}
.gcard:hover img{ transform: scale(1.05); filter: saturate(1.06) contrast(1.05); }

/* Tablet */
@media (max-width: 980px){
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile: swipe carousel (calm + big) */
@media (max-width: 640px){
  .gallery{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    gap:12px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .gcard{
    flex: 0 0 84%;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
  }
  .gallery::-webkit-scrollbar{ height: 8px; }
  .gallery::-webkit-scrollbar-track{ background: rgba(255,255,255,.04); border-radius: 999px; }
  .gallery::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.14); border-radius: 999px; }
}


/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.pricecard{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.pricecard::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(700px 280px at 20% 0%, rgba(0,229,255,.10), transparent 60%);
  pointer-events:none;
}
.pricecard.alt::after{
  background: radial-gradient(700px 280px at 20% 0%, rgba(255,204,102,.08), transparent 60%);
}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius: 999px;
  font-size:12px;
  font-weight:900;
  color:#061018;
  background: linear-gradient(135deg, rgba(255,204,102,.95), rgba(0,229,255,.75));
  margin-bottom: 10px;
}
.price{
  display:flex; align-items:baseline; gap:10px;
  margin: 12px 0 8px;
}
.price .big{
  font-size: 40px;
  font-weight: 900;
  letter-spacing:-.8px;
}
.price .small{
  color: var(--muted);
  font-weight: 800;
}

.anchor{
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 800;
}

.fine{
  margin-top:10px;
  color: var(--muted2);
  font-size:13px;
  line-height:1.6;
}
.guarantee{
  margin-top:14px;
  border:1px solid rgba(0,229,255,.18);
  background: rgba(255,255,255,.02);
  border-radius: var(--r2);
  padding:14px 16px;
  display:flex; gap:12px;
  align-items:flex-start;
}
.g-ic{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
}
.g-txt{ color: var(--muted); line-height:1.7; }

/* FAQ */
.faq{ display:grid; gap:10px; }
.qa{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding: 12px 14px;
  box-shadow: var(--shadow2);
}
.qa summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa p{ margin:10px 0 0; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-points{ margin-top:14px; display:grid; gap:10px; }
.cp{
  display:flex; gap:10px; align-items:center;
  color: var(--muted);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding:10px 12px;
}
.cp-ic{
  width:34px; height:34px; border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.form{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadow);
}
.form label{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}
.form span{
  font-size:13px;
  color: var(--muted);
  font-weight:800;
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  color: var(--text);
  outline:none;
}
textarea{ resize: vertical; min-height: 110px; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(0,229,255,.28);
  box-shadow: 0 0 0 4px rgba(0,229,255,.08);
}
.fine.center{ margin-top:10px; }

/* Footer */
.footer{
  margin-top: 34px;
  padding: 18px 0 2px;
  border-top: 1px solid var(--line2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-left{ display:grid; gap:6px; }
.footer-right{ display:flex; gap:14px; }
.footlink{ color: var(--muted2); font-size:13px; }
.footlink:hover{ color: var(--text); }

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(12px);
  filter: blur(6px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .stack{ min-height: 390px; }
  .trust{ grid-template-columns: 1fr; }
  .proof-quotes{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .minirow{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; }
  .btn, .navlink, .gcard img{ transition:none; }
}


/* Urgencia suave */
.urgency{ margin-top:10px; font-weight:800; letter-spacing:.1px; }
.u-badge{
  position:absolute; top:14px; right:14px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,7,10,.45);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size:12px;
  font-weight:900;
  z-index:2;
}

/* Modal (legal / privacidad) */
.modal{ border:none; padding:0; background: transparent; }
.modal::backdrop{ background: rgba(0,0,0,.55); backdrop-filter: blur(6px); }
.modal-card{
  width:min(720px, calc(100vw - 32px));
  margin:10vh auto;
  border-radius: var(--r2);
  border:1px solid var(--line2);
  background: rgba(7,7,10,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px;
  border-bottom:1px solid var(--line2);
  background: rgba(255,255,255,.02);
}
.modal-title{ font-weight:900; letter-spacing:-.2px; }
.modal-x{
  width:40px; height:40px;
  border-radius: 14px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.modal-body{ padding:14px; }
.modal-foot{ padding: 0 14px 14px; display:flex; justify-content:flex-end; }

/* Captcha simple */
.captcha{ display:flex; align-items:center; gap:10px; margin-top:2px; }
.captcha-q{
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  color: var(--muted);
  font-weight:900;
  min-width:150px;
  text-align:center;
}

/* Consent */
.consent{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  margin: 10px 0 12px;
}
.consent input{ width:18px; height:18px; margin-top:2px; accent-color: var(--accent2); }
.consent a{ text-decoration: underline; }

/* Honeypot hidden */
.hp{
  position:absolute !important; left:-9999px !important; top:auto !important;
  width:1px !important; height:1px !important; overflow:hidden !important;
  opacity:0 !important; pointer-events:none !important;
}

/* =========================
   Publish polish — calmer gallery on desktop
========================= */
@media (min-width: 981px){
  .gcard{ animation: none !important; }
}
.proof-note{ margin-top: 6px; font-weight: 800; }


/* =========================
   Mobile fixed CTA (WhatsApp)
   Keeps conversion button always visible on mobile.
========================= */
.fab-wa{
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(139,92,255,.38);
  background: linear-gradient(135deg, rgba(139,92,255,.95), rgba(0,229,255,.78));
  color: #061018;
  font-weight: 900;
  box-shadow: 0 20px 70px rgba(139,92,255,.28);
  min-width: min(520px, calc(100vw - 28px));
}
.fab-wa:hover{
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 24px 78px rgba(139,92,255,.34);
}

@media (max-width: 980px){
  .fab-wa{ display: flex; }
  /* room for fixed CTA */
  body{ padding-bottom: 84px; }
}

/* Don't cover dialog actions */
dialog[open] ~ .fab-wa{ display:none; }
