/* ═══════════════════════════════════════════
   BIGROOM — css/home.css
═══════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .5;
}
.hero-pixels { position: absolute; inset: 0; pointer-events: none; }
.px {
  position: absolute;
  width: var(--s); height: var(--s);
  background: var(--c);
  border-radius: 4px;
  top: var(--t, auto);
  left: var(--l, auto);
  right: var(--r, auto);
  opacity: .75;
  animation: float 6s var(--d,0s) ease-in-out infinite;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 24px; }
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: .85rem; color: var(--text-3);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 15px; height: 15px; }

/* ─── PHONE MOCKUP ─── */
.hero-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 290px;
  background: var(--dark);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,.05);
}
.phone-screen {
  background: #eef3f0;
  border-radius: 30px;
  padding: 22px 18px 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 480px;
}
.ps-bar {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-display); font-weight: 600;
  font-size: .88rem; color: var(--dark);
}
.ps-logo {
  width: 30px; height: 30px; background: var(--dark);
  color: white; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
}
.ps-unit {
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 14px; padding: 12px;
}
.ps-unit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #dff0e9; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.ps-unit-icon svg { width: 22px; }
.ps-unit > div strong { display: block; font-size: .83rem; font-weight: 700; color: var(--dark); }
.ps-unit > div span  { font-size: .73rem; color: var(--text-3); }
.ps-open-badge {
  margin-left: auto; background: #d3f5e6; color: #1a7a40;
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 99px;
}
.ps-unlock-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--dark); color: white;
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  padding: 14px; border-radius: 14px; width: 100%;
  transition: background .2s, transform .15s;
}
.ps-unlock-btn:hover { background: var(--green); transform: scale(.98); }
.ps-unlock-btn svg  { width: 20px; }
.ps-row { display: flex; gap: 10px; }
.ps-pill {
  flex: 1; background: white; border-radius: 12px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 2px;
}
.ps-pill span { font-size: .68rem; color: var(--text-3); }
.ps-pill strong { font-size: .82rem; font-family: var(--f-display); font-weight: 700; color: var(--dark); }
.ps-log { background: white; border-radius: 12px; padding: 12px 14px; }
.ps-log-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 8px; }
.ps-log-item { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--text); padding: 4px 0; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot.green { background: var(--mint); }
.dot.gray  { background: var(--text-3); }

/* ─── SECCIÓN INTRO ─── */
.section-intro {
  font-size: 1.05rem; color: var(--text-2); max-width: 560px;
  margin: 0 auto 56px; line-height: 1.8;
}

/* ─── PROCESO SLIDER ─── */
.proc-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 48px 0 36px;
}
.proc-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--text-3); font-family: var(--f-display);
  font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: all .25s; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.proc-dot.active { background: var(--dark); border-color: var(--dark); color: white; }
.proc-dot.done   { background: var(--green); border-color: var(--green); color: white; }
.proc-line {
  height: 2px; flex: 1; max-width: 80px;
  background: var(--border); position: relative; overflow: hidden;
}
.proc-line-fill {
  position: absolute; inset: 0;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.proc-line-fill.filled { transform: scaleX(1); }

.proc-slider-wrap { overflow: hidden; border-radius: var(--r-lg); }
.proc-slider {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.proc-slide {
  min-width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 56px 60px;
}
.proc-label {
  font-family: var(--f-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; color: var(--mint);
  text-transform: uppercase; margin-bottom: 14px;
}
.proc-text h3 { font-size: 1.9rem; margin-bottom: 16px; color: var(--dark); }
.proc-desc {
  font-size: .96rem; line-height: 1.82;
  color: var(--text-2); margin-bottom: 22px;
}
.proc-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px; margin-bottom: 4px;
}
.proc-list li {
  display: flex; align-items: center;
  gap: 10px; font-size: .9rem; color: var(--text);
}
.proc-list li svg {
  width: 16px; height: 16px;
  color: var(--green); flex-shrink: 0;
}
.proc-visual {
  display: flex; align-items: center; justify-content: center;
}

/* Nav del slider */
.proc-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 24px; margin-top: 28px;
}
.proc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-xl);
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all .2s;
  background: var(--dark); color: white; border: 2px solid var(--dark);
}
.proc-btn:hover:not(:disabled) { background: var(--green); border-color: var(--green); transform: translateY(-1px); }
.proc-btn:disabled { opacity: .3; cursor: not-allowed; }
.proc-btn svg { width: 18px; }
.proc-btn.proc-prev { background: transparent; color: var(--dark); }
.proc-btn.proc-prev:hover:not(:disabled) { background: var(--cream); border-color: var(--dark); color: var(--dark); }
.proc-counter {
  font-family: var(--f-display); font-weight: 700;
  font-size: .85rem; color: var(--text-3); min-width: 36px; text-align: center;
}

/* Visuales del slider */
.pv-sizes { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pv-size-row { display: flex; gap: 10px; align-items: flex-end; }
.pv-sbox {
  border: 2.5px solid var(--dark); background: rgba(20,43,46,.05);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: .78rem; color: var(--dark);
}
.pv-sbox.s  { width: 58px;  height: 58px; }
.pv-sbox.m  { width: 88px;  height: 88px; }
.pv-sbox.l  { width: 108px; height: 108px; }
.pv-sbox.xl { width: 126px; height: 126px; }
.pv-size-label { font-size: .78rem; color: var(--text-3); margin-top: 10px; }

.pv-locations { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 280px; }
.pv-loc-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 14px 16px; transition: border-color .2s;
}
.pv-loc-card.pv-active { border-color: var(--green); background: #eef8f2; }
.pv-loc-card.pv-muted  { opacity: .5; }
.pv-pin { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pv-pin.orange { background: var(--px-orange); }
.pv-pin.green  { background: var(--mint); }
.pv-pin.blue   { background: var(--px-blue); }
.pv-loc-card div strong { display: block; font-size: .85rem; font-weight: 700; color: var(--dark); }
.pv-loc-card div span   { font-size: .73rem; color: var(--text-3); }
.pv-check  { width: 16px; margin-left: auto; color: var(--green); }
.pv-soon   { margin-left: auto; font-size: .7rem; font-weight: 700; background: var(--border); color: var(--text-3); padding: 3px 8px; border-radius: 99px; }

.pv-doc {
  background: white; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 24px; width: 240px; box-shadow: var(--sh-md);
}
.pv-doc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border-2); }
.pv-doc-logo { width: 32px; height: 32px; background: var(--dark); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; font-family: var(--f-display); }
.pv-doc-title strong { display: block; font-size: .82rem; color: var(--dark); }
.pv-doc-title span   { font-size: .7rem; color: var(--text-3); }
.pv-doc-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pv-line { height: 8px; background: var(--cream); border-radius: 4px; }
.pv-line.w80 { width: 80%; } .pv-line.w60 { width: 60%; }
.pv-line.w90 { width: 90%; } .pv-line.w50 { width: 50%; } .pv-line.w70 { width: 70%; }
.pv-doc-sign { border-top: 1px solid var(--border-2); padding-top: 14px; display: flex; align-items: center; justify-content: space-between; font-size: .73rem; color: var(--text-3); }
.pv-sig { background: #d3f5e6; color: #1a7a40; font-weight: 700; font-size: .72rem; padding: 4px 10px; border-radius: 99px; }

.pv-payment { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pv-card-mock { width: 240px; background: linear-gradient(135deg, var(--dark) 0%, #2a4a4f 100%); border-radius: 16px; padding: 24px; color: white; box-shadow: var(--sh-md); }
.pv-card-chip { width: 32px; height: 24px; background: rgba(255,255,255,.2); border-radius: 4px; margin-bottom: 24px; }
.pv-card-num { font-family: var(--f-display); font-size: .9rem; letter-spacing: .1em; margin-bottom: 16px; opacity: .8; }
.pv-card-row { display: flex; justify-content: space-between; font-size: .68rem; opacity: .5; text-transform: uppercase; letter-spacing: .06em; }
.pv-card-row.bold { opacity: 1; font-weight: 700; font-size: .78rem; margin-top: 2px; }
.pv-secure-badge { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-3); }
.pv-secure-badge svg { width: 14px; color: var(--green); }

.pv-phone-mini { background: var(--dark); border-radius: 24px; padding: 12px; width: 220px; box-shadow: var(--sh-lg); }
.pvm-bar { background: #eef3f0; border-radius: 16px 16px 0 0; padding: 12px 14px; display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--dark); font-family: var(--f-display); border-bottom: 1px solid var(--border); }
.pvm-logo { width: 24px; height: 24px; background: var(--dark); color: white; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 700; }
.pvm-unit { background: #eef3f0; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.pvm-unit-icon { width: 36px; height: 36px; background: #dff0e9; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.pvm-unit-icon svg { width: 18px; }
.pvm-unit strong { display: block; font-size: .78rem; font-weight: 700; color: var(--dark); }
.pvm-unit span   { font-size: .68rem; color: var(--text-3); }
.pvm-unlock { background: var(--green); color: white; width: calc(100% - 28px); margin: 8px 14px; padding: 12px; border-radius: 12px; font-family: var(--f-display); font-weight: 700; font-size: .82rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
.pvm-unlock svg { width: 16px; }
.pvm-status { background: #eef3f0; padding: 10px 14px; border-radius: 0 0 16px 16px; font-size: .72rem; color: var(--text); display: flex; align-items: center; gap: 6px; }

/* ─── SIZES PREVIEW ─── */
.split-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  margin-bottom: 48px;
}
.split-header.light h2 { color: var(--white); }
.sizes-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.size-preview-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  background: var(--cream); border: 1px solid var(--border-2);
  border-radius: var(--r-lg); padding: 32px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: pointer;
}
.size-preview-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: var(--border); }
.size-preview-card.featured { border-color: var(--dark); background: var(--white); }
.spc-tag { font-size: .75rem; font-weight: 700; color: var(--green); letter-spacing: .06em; font-family: var(--f-display); }
.spc-box {
  border: 2.5px solid var(--dark); background: rgba(20,43,46,.05);
  border-radius: 8px;
}
.spc-box.s    { width: 44px;  height: 44px; }
.spc-box.m    { width: 64px;  height: 64px; }
.spc-box.l    { width: 80px;  height: 80px; }
.spc-box.xl   { width: 90px;  height: 90px; }
.spc-box.pro  { width: 90px;  height: 90px; border-color: var(--px-orange); background: rgba(245,166,35,.08); }
.spc-box.moto { width: 40px;  height: 72px; border-radius: 20px; }
.size-preview-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.size-preview-card p  { font-size: .85rem; color: var(--text-2); line-height: 1.65; }

/* ─── UBICACIONES PREVIEW ─── */
.locs-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.loc-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: background .22s, transform .22s;
  cursor: pointer;
}
.loc-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.loc-pin {
  width: 14px; height: 14px; border-radius: 50%; margin-bottom: 18px;
}
.loc-pin.orange { background: var(--px-orange); box-shadow: 0 0 0 4px rgba(245,166,35,.2); }
.loc-pin.green  { background: var(--mint);      box-shadow: 0 0 0 4px rgba(62,207,142,.2); }
.loc-pin.blue   { background: var(--px-blue);   box-shadow: 0 0 0 4px rgba(79,156,247,.2); }
.loc-card h3   { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.loc-card p    { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 16px; line-height: 1.65; }
.loc-tags      { display: flex; flex-wrap: wrap; gap: 6px; }

/* ─── VENTAJAS (split layout) ─── */
.feats-split {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: center;
}
.feats-split-text .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.feats-split-text h2 { margin-bottom: 18px; }
.feats-split-text p  { color: var(--text-2); line-height: 1.8; }
.feats-split-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--cream);
  border: 1px solid var(--border-2); border-radius: var(--r-lg);
  transition: box-shadow .2s, transform .2s;
}
.feat-item:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ic); color: var(--ic2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 20px; }
.feat-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--dark); }
.feat-item p  { font-size: .82rem; line-height: 1.65; color: var(--text-2); margin: 0; }

/* ─── CTA FINAL ─── */
.cta-home { position: relative; overflow: hidden; }
.cta-home h2 { margin-bottom: 0; }
.cta-pixels  { position: absolute; inset: 0; pointer-events: none; }
.cta-search  {
  display: flex; gap: 12px; max-width: 560px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.cta-input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,.13); border: 1.5px solid rgba(255,255,255,.2);
  color: white; font-family: var(--f-body); font-size: .95rem;
  padding: 15px 22px; border-radius: var(--r-xl); outline: none;
  transition: border-color .2s, background .2s;
}
.cta-input::placeholder { color: rgba(255,255,255,.4); }
.cta-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); }
.cta-micro {
  margin-top: 20px; font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phone { display: none; }
  .sizes-preview { grid-template-columns: repeat(2,1fr); }
  .locs-row { grid-template-columns: 1fr; }
  .proc-slide { grid-template-columns: 1fr; padding: 40px 36px; gap: 36px; }
  .proc-visual { order: -1; }
  .feats-split { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .sizes-preview { grid-template-columns: 1fr 1fr; }
  .proc-slide { padding: 28px 20px; }
  .proc-line { max-width: 36px; }
  .proc-dot { width: 34px; height: 34px; font-size: .78rem; }
  .proc-text h3 { font-size: 1.4rem; }
  .feats-split-list { grid-template-columns: 1fr; }
  .pv-sbox.l  { width: 90px; height: 90px; }
  .pv-sbox.xl { width: 104px; height: 104px; }
}
@media (max-width: 400px) {
  .sizes-preview { grid-template-columns: 1fr; }
}
