/* Plantilla compartida para landing pages dedicadas por servicio/ciudad */

.lp-hero{
  position:relative;
  min-height:clamp(460px, 52vw, 680px);
  display:flex;
  align-items:center;
  padding-top:80px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.lp-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.82) 100%);
}

.lp-hero-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:48px 24px;
  width:100%;
}

.lp-hero-badge{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#1a1a1a;
  background:linear-gradient(to right,#d4af37,#f6e27a,#d4af37);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:20px;
}

.lp-hero h1{
  color:#fff;
  font-size:clamp(28px, 4.6vw, 52px);
  font-weight:800;
  line-height:1.12;
  max-width:820px;
  margin:0;
  text-shadow:0 6px 24px rgba(0,0,0,0.35);
}

.lp-hero h1 span{
  color:#BEAA76;
}

.lp-hero .lp-lead{
  color:rgba(255,255,255,0.85);
  font-size:clamp(15px, 1.6vw, 19px);
  max-width:640px;
  margin:18px 0 0;
  line-height:1.6;
}

.lp-hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

/* ===== TRUST STRIP ===== */
.lp-trust{
  background:#0f0f0f;
  padding:22px 0;
}

.lp-trust-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  text-align:center;
}

.lp-trust-item .num{
  font-size:clamp(20px, 2.4vw, 28px);
  font-weight:800;
  color:#BEAA76;
  font-variant-numeric:tabular-nums;
}

.lp-trust-item .label{
  font-size:11px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.65);
  margin-top:4px;
}

@media(max-width:720px){
  .lp-trust-inner{
    grid-template-columns:repeat(2, 1fr);
    gap:22px 16px;
  }
}

/* ===== SERVICIOS RELEVANTES ===== */
.lp-services-section{
  background:#fff;
  padding:70px 20px;
}

.lp-services-grid{
  max-width:1100px;
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}

/* ===== TEXTO + IMAGEN ===== */
.lp-feature{
  max-width:1100px;
  margin:0 auto;
  padding:70px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}

.lp-feature-img{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 48px rgba(0,0,0,0.12);
}

.lp-feature-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.lp-feature-body .sp-h2{
  text-align:left;
}

.lp-feature-body p{
  color:#4b5563;
  font-size:16px;
  line-height:1.7;
  margin-top:16px;
}

.lp-feature-list{
  list-style:none;
  margin:22px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.lp-feature-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#1f2937;
  font-size:15px;
  font-weight:600;
}

.lp-feature-list svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  margin-top:2px;
  color:#BEAA76;
}

@media(max-width:900px){
  .lp-feature{
    grid-template-columns:1fr;
    gap:28px;
  }
  .lp-feature-img{
    order:-1;
  }
}

/* ===== CERTIFICACIONES (insignias, sin fechas de vigencia) ===== */
.lp-certs-section{
  background:#f7f5f0;
  padding:50px 20px;
}

.lp-certs-inner{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.lp-cert-badge{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid rgba(190,170,118,0.35);
  border-radius:999px;
  padding:10px 18px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.3px;
  color:#374151;
}

.lp-cert-badge svg{
  width:18px;
  height:18px;
  color:#BEAA76;
  flex-shrink:0;
}

/* ===== CTA FINAL ===== */
.lp-cta-band{
  background:linear-gradient(120deg, #1a1a1a 0%, #2a2a2a 100%);
  padding:56px 20px;
  text-align:center;
}

.lp-cta-band h2{
  color:#fff;
  font-size:clamp(22px, 3vw, 32px);
  font-weight:800;
  margin:0;
}

.lp-cta-band p{
  color:rgba(255,255,255,0.7);
  margin:12px 0 28px;
  font-size:16px;
}

.lp-cta-band .lp-hero-ctas{
  justify-content:center;
  margin-top:0;
}

/* ===== ÍNDICE DE COBERTURA POR CIUDAD ===== */
.cov-lp-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  border:1px solid rgba(190,170,118,0.35);
  border-radius:10px;
  color:#111827;
  font-weight:700;
  text-decoration:none;
  transition:border-color 200ms ease, background 200ms ease;
}

.cov-lp-link:hover{
  border-color:#BEAA76;
  background:rgba(190,170,118,0.06);
}

.cov-lp-state{
  font-size:12px;
  font-weight:600;
  color:#9ca3af;
  text-transform:uppercase;
  letter-spacing:0.4px;
}
