/* Servicios Page Specific Styles */
:root {
  --bsl-red:#e63946;
  --bsl-red-dark:#c92f3a;
  --bsl-black:#0b0f14;
  --bsl-black-2:#0f1720;
  --bsl-text:#0f172a;
  --bsl-muted:#64748b;
  --bsl-border:#e5e7eb;
  --white:#ffffff;
}

.section { 
  padding: 80px 0; 
}

.section-alt { 
  background: #f8fafc; 
}

.section-title { 
  font-family:'Outfit',sans-serif; 
  font-weight: 800; 
  color: #111827; 
  font-size: clamp(2rem, 4vw, 3rem); 
}

.section-subtitle {
  margin: 32px 0 0 0; 
  font-size: 1.4rem; 
  color: #374151; 
  font-weight: 800; 
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.section-intro { 
  color: var(--bsl-muted); 
  max-width: 800px; 
  line-height: 1.7; 
  margin: 0 auto 32px auto;
  text-align: center;
}

.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  margin-top: 40px;
}

.card { 
  background: #fff; 
  border: 1px solid #e5eaf4; 
  border-radius: 16px; 
  padding: 32px 28px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
  transition: .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 16px 40px rgba(0,0,0,.10); 
}

.card h3 { 
  margin: 10px 0 8px; 
  font-weight: 800; 
  color: #1f2937; 
  font-family: 'Outfit', sans-serif; 
}

.card p { 
  color: #374151; 
  margin: 0 0 10px; 
  line-height: 1.7; 
}

.card ul { 
  margin: 8px 0 16px 18px; 
  color: #374151; 
}

.card ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Service Images */
.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card:hover .service-image {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card Actions */
.card-actions {
  display: flex; 
  gap: 12px; 
  align-items: center; 
  justify-content: flex-start; 
  margin-top: auto; 
  flex-wrap: wrap;
  padding-top: 20px;
}

/* Buttons */
.btn { 
  display: inline-block; 
  padding: 10px 16px; 
  border-radius: 10px; 
  font-weight: 700; 
  text-decoration: none; 
  transition: background-color .2s, border-color .2s, box-shadow .2s, color .2s, transform .06s; 
}

.btn:active { 
  transform: translateY(1px); 
}

.btn-outline { 
  color: #111827; 
  border: 1.5px solid #cfd6e4; 
  background: #fff; 
}

.btn-outline:hover { 
  border-color: #9aa5b8; 
  background: #fff5f5; 
  color: #7f1d1d; 
}

.btn-primary { 
  background: var(--bsl-red); 
  color: #fff; 
  border: 1.5px solid var(--bsl-red); 
  box-shadow: 0 8px 24px rgba(230,57,70,.25); 
}

.btn-primary:hover { 
  background: var(--bsl-red-dark); 
  border-color: var(--bsl-red-dark); 
  box-shadow: 0 10px 28px rgba(230,57,70,.35); 
}

.btn-solid { 
  background: #111827; 
  color: #fff; 
  border: 1.5px solid #111827; 
}

.btn-solid:hover { 
  background: #1f2937; 
  border-color: #1f2937; 
}

/* Infografía */
.infografia { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 36px; 
  align-items: center; 
}

.infografia img { 
  width: 100%; 
  height: 360px; 
  object-fit: cover; 
  border-radius: 16px; 
  box-shadow: 0 12px 35px rgba(0,0,0,.15); 
  background: #ddd; 
}

/* Section Kicker */
.section-kicker { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  background: #fee2e2; 
  color: #7f1d1d; 
  padding: 6px 12px; 
  border-radius: 999px; 
  font-weight: 800; 
  letter-spacing: .2px; 
  font-size: .92rem; 
}

.visual-title { 
  position: relative; 
  font-weight: 800; 
  color: #111827; 
  margin: 12px 0 10px; 
  font-size: clamp(1.4rem, 2.5vw, 2rem); 
  font-family: 'Outfit', sans-serif; 
}

.visual-title::after { 
  content: ""; 
  position: absolute; 
  left: 0; 
  bottom: -6px; 
  width: 96px; 
  height: 6px; 
  border-radius: 6px; 
  background: linear-gradient(90deg, var(--bsl-red), #111827); 
  opacity: .25; 
}

/* Pills */
.pills { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
}

.pill { 
  background: #fef2f2; 
  color: #7f1d1d; 
  border: 1px solid #fecaca; 
  padding: 6px 10px; 
  border-radius: 999px; 
  font-weight: 600; 
  font-size: .9rem; 
}

/* CTA Box */
.cta-box { 
  background: linear-gradient(180deg, var(--bsl-black-2) 0%, var(--bsl-black) 100%); 
  color: #fff; 
  border-radius: 16px; 
  padding: 28px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px; 
  box-shadow: 0 10px 30px rgba(0,0,0,.25); 
  border: 1px solid #1f2632; 
}

.cta-box p { 
  margin: 0; 
  line-height: 1.6; 
  font-size: 1.05rem; 
}

/* Responsive */
@media (max-width: 1024px) { 
  .grid-3 { 
    grid-template-columns: 1fr 1fr; 
    gap: 24px;
  } 
}

@media (max-width: 900px) {
  .nav {
    gap: 24px;
    margin-right: 0;
  }
}

@media (max-width: 700px) { 
  .cta-box { 
    flex-direction: column; 
    align-items: flex-start; 
  } 
}

@media (max-width: 640px) { 
  .grid-3 { 
    grid-template-columns: 1fr; 
  } 
  
  .card-actions { 
    flex-wrap: wrap; 
  }
  
  .infografia { 
    grid-template-columns: 1fr; 
  } 
  
  .infografia img { 
    height: 280px; 
  } 
}

@media (max-width: 460px) {
  .card-actions { 
    flex-wrap: wrap; 
  }
}