/* =========================
   VACIADO P1 (ÚNICO CSS)
   - Estilo consistente con tus páginas (cards + steps + imagen derecha)
   - Steps con Lucide
   ========================= */

:root{
  --green:#1f7a4a;
  --text:#111111;
  --line:#e7e7e7;

  --muted:#8b8b8b;
  --border:#e6e6e6;
  --bg-input:#f6f6f8;

  --shadow-card:0 12px 30px rgba(0,0,0,0.10);
  --shadow-soft:0 10px 22px rgba(0,0,0,0.10);

  --radius:18px;
  --font:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

*{ box-sizing:border-box; }
body{ margin:0; font-family:var(--font); color:var(--text); }

/* =========================
   HERO
   ========================= */
.ps-hero{
  max-width:1200px;
  margin:46px auto 8px auto;
  padding:0 18px;
  text-align:center;
}
.ps-hero h1{
  margin:0;
  line-height:1.08;
  letter-spacing:-0.6px;
  font-weight:400;
  font-size:52px;
  white-space:nowrap;
}
.ps-hero .ps-accent{
  color:var(--green);
  font-weight:800;
  font-size:74px;
  letter-spacing:-1px;
}

/* =========================
   STEPS (5 pasos)
   ========================= */
.ps-steps-wrap{
  position:relative;
  max-width:980px;
  margin:28px auto 64px auto;
  padding:0 18px;
}
.ps-steps{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
.ps-step{
  width:160px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color:#bcbcbc;
  font-size:16px;
  font-weight:400;
}
.ps-step-text{
  margin-top:10px;
  line-height:1.1;
}

.ps-step-icon{
  width:92px;
  height:92px;
  border-radius:50%;
  background:#fff;
  border:none;
  box-shadow:0 10px 22px rgba(0,0,0,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:3;
}
.ps-step-icon svg{
  width:50px;
  height:50px;
  color:#cfcfcf;
}

.ps-step.active{ color:var(--green); font-weight:500; }
.ps-step.active .ps-step-icon{
  background:var(--green);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}
.ps-step.active svg{ color:#fff; }

.ps-step.done{ color:var(--green); font-weight:500; }
.ps-step.done svg{ color:var(--green); }

.ps-step-line{
  position:absolute;
  left:calc(18px + 46px);
  right:calc(18px + 46px);
  top:46px;
  height:2px;
  background:var(--line);
  border-radius:999px;
  z-index:1;
}

/* =========================
   LAYOUT (form + imagen)
   ========================= */
.mudanza-main{
  max-width:1180px;
  margin:18px auto 80px auto;
  padding:0 18px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:44px;
}

/* Card del form */
.mudanza-form-card{
  width:520px;
  background:#fff;
  border:1px solid #efefef;
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  padding:34px 34px 26px 34px;
}

.mudanza-form-card h2{
  margin:0 0 18px 0;
  font-size:26px;
  font-weight:700;
  color:#222;
}

.mudanza-form-card label{
  display:block;
  font-size:14px;
  font-family:'Montserrat', system-ui, -apple-system, sans-serif;
  color:#000000;
  padding:0px 0px 6px;
  margin-bottom:0;
  font-weight:600;
}

/* Inputs */
.mudanza-form-card input[type="text"],
.mudanza-form-card input[type="date"],
.mudanza-form-card select{
  width:100%;
  height:44px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--bg-input);
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
  font-size:13px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  margin-bottom:16px;
}
.mudanza-form-card input::placeholder{ color:#9aa0a6; }

.mudanza-form-card input:hover,
.mudanza-form-card select:hover{
  border-color:rgba(31,122,74,0.35);
  box-shadow:0 2px 8px rgba(31,122,74,0.1);
}

.mudanza-form-card input:focus,
.mudanza-form-card select:focus{
  border-color:rgba(31,122,74,0.45);
  box-shadow:0 0 0 4px rgba(31,122,74,0.10);
  background:#fff;
}

/* Filas */
.mudanza-row{ display:flex; gap:14px; }
.mudanza-row > *{ flex:1 1 0; }

/* Título sección */
.mudanza-section-title{
  margin:6px 0 10px 0;
  font-size:13px;
  font-weight:800;
  color:var(--green);
}

/* Checkboxes (sin inline styles) */
.mudanza-checks{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 16px;
  margin-bottom:16px;
}
.mudanza-check{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  color:#2b2b2b;
  font-weight:500;
}
.mudanza-check input{
  width:16px;
  height:16px;
  accent-color: var(--green);
  margin:0;
  flex-shrink:0;
  align-self:center;
}

/* Actions */
.mudanza-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:6px;
}
.mudanza-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:36px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid #d6d6d6;
  background:#fff;
  color:#2b2b2b;
  text-decoration:none;
  font-family:'Open Sans', sans-serif;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mudanza-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(31,122,74,0.35);
  box-shadow:0 10px 22px rgba(0,0,0,0.10);
}

/* Card imagen */
.mudanza-img-card{
  width:380px;
  height:560px;
  border-radius:var(--radius);
  border:1px solid #d6d6d6;
  background:#fff;
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width:1200px){
  .ps-hero h1{ font-size:46px; white-space:normal; }
  .ps-hero .ps-accent{ font-size:66px; }
}

@media (max-width:980px){
  .ps-step-line{ display:none; }
  .ps-steps{ justify-content:center; flex-wrap:wrap; gap:26px 22px; }
  .ps-step{ width:160px; }
}

@media (max-width:1100px){
  .mudanza-main{ flex-direction:column; align-items:center; gap:24px; }
  .mudanza-form-card{ width:100%; max-width:620px; }
  .mudanza-img-card{ width:100%; max-width:620px; height:360px; }
  .mudanza-checks{ grid-template-columns: 1fr; }
}

@media (max-width:520px){
  .ps-hero h1{ font-size:34px; }
  .ps-hero .ps-accent{ font-size:48px; }
}
