/* ═══════════════════════════════════════════════════════════
   servicios.css — FUCAI
   Estilos para la sección #servicios.
   El HTML usa Bootstrap .row / .col para el layout principal,
   por lo que NO se necesitan: .sv-layout, .sv-filters,
   .sv-nav-phones, .sv-cofepris, .sv-filter-btn ni .all-btn.
═══════════════════════════════════════════════════════════ */

/* ─── Sección wrapper ─────────────────────────────────── */
#servicios { background: var(--cream); }

/* ─── Panel header ────────────────────────────────────── */
.sv-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.25rem;
}
.sv-panel-header-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.sv-panel-header-icon.green { background: rgba(76,175,112,0.12); }
.sv-panel-header-icon.red   { background: rgba(239,68,68,0.10); }
.sv-panel-header h3 {
  font-family: "Sen", sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.2; margin: 0;
}
.sv-panel-header p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ─── Panel body ──────────────────────────────────────── */
.sv-panel-body { padding: 0.25rem 0 0.75rem; }

/* ─── Pest cards ──────────────────────────────────────── */
.pest-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.35rem;
  padding: 0.75rem 0.4rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
  cursor: pointer; transition: var(--transition);
  text-align: center; height: 100%;
}
.pest-card:hover, .pest-card.highlighted {
  border-color: var(--green-accent);
  background: rgba(76,175,112,0.07);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76,175,112,0.15);
}
.pest-card.dimmed { opacity: 0.3; transform: none; box-shadow: none; }
.pest-card .pest-emoji { font-size: 1.5rem; line-height: 1; }
.pest-card .pest-name {
  font-size: 0.68rem; font-weight: 600;
  color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.2;
}
.pest-card .pest-type {
  font-size: 0.6rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ─── Desinfección strip ──────────────────────────────── */
.desinf-strip {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(90deg,rgba(184,240,74,0.12),rgba(76,175,112,0.08));
  border: 1px dashed rgba(76,175,112,0.4);
  border-radius: var(--radius-md); margin-top: 0.25rem;
}
.desinf-strip .ds-icon { font-size: 1.3rem; flex-shrink: 0; }
.desinf-strip .ds-text { flex: 1; }
.desinf-strip .ds-text strong {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); display: block;
}
.desinf-strip .ds-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Panel CTA footer ────────────────────────────────── */
.sv-panel-cta {
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100); flex-wrap: wrap;
  margin: 1rem -1.5rem -1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.sv-panel-cta p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.sv-panel-cta a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green-deep); color: white;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.55rem 1.1rem; border-radius: var(--radius-xl);
  text-decoration: none; white-space: nowrap;
  transition: var(--transition); flex-shrink: 0;
}
.sv-panel-cta a:hover {
  background: var(--green-mid); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13,43,26,0.2);
}

/* ─── Extintores ──────────────────────────────────────── */
.ext-tagline {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 0.85rem; font-style: italic;
}
.ext-type-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }
.ext-type-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100); transition: var(--transition);
}
.ext-type-row:hover {
  border-color: rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.04); transform: translateX(3px);
}
.ext-badge {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--green-deep); color: var(--lime);
  font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.02em; font-family: "Sen", sans-serif;
}
.ext-badge.co2 { background: #1a3a5c; color: #7dd3fc; }
.ext-badge.h2o { background: #0c3547; color: #67e8f9; }
.ext-badge.k   { background: #3b1f00; color: #fbbf24; }
.ext-info strong {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-primary); display: block; line-height: 1.2;
}
.ext-info span { font-size: 0.72rem; color: var(--text-muted); }

/* ─── Accesorios grid ─────────────────────────────────── */
.acc-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.acc-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.3rem;
  padding: 0.75rem 0.5rem;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); transition: var(--transition); text-align: center;
}
.acc-item:hover {
  border-color: var(--green-accent); transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(76,175,112,0.12);
}
.acc-item .acc-icon { font-size: 1.3rem; }
.acc-item span {
  font-size: 0.67rem; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
  .sv-panel-header h3 { font-size: 0.92rem; }
  .sv-panel-header p  { font-size: 0.7rem;  }
  .pest-card { padding: 0.6rem 0.25rem; }
  .pest-card .pest-emoji { font-size: 1.3rem; }
  .pest-card .pest-name  { font-size: 0.62rem; }
  .pest-card .pest-type  { display: none; }
  .desinf-strip .ds-text strong { font-size: 0.8rem; }
  .desinf-strip .ds-text span   { font-size: 0.7rem; }
  .ext-type-row  { padding: 0.55rem 0.7rem; gap: 0.55rem; }
  .ext-badge     { width: 32px; height: 32px; font-size: 0.65rem; }
  .ext-info strong { font-size: 0.76rem; }
  .ext-info span   { font-size: 0.68rem; }
  .acc-row { gap: 0.4rem; }
  .acc-item { padding: 0.6rem 0.3rem; }
  .acc-item .acc-icon { font-size: 1.1rem; }
  .acc-item span { font-size: 0.6rem; }
  .sv-panel-cta { flex-direction: column; align-items: stretch; }
  .sv-panel-cta p { text-align: center; font-size: 0.75rem; }
  .sv-panel-cta a { width: 100%; justify-content: center; }
}
