/* ============================================
   VTORA — Servicios CSS
   ============================================ */

.srv-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ---- SECCIONES ---- */
.srv-sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.srv-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.srv-section:last-child { border-bottom: none; }

.srv-section__header {}

.srv-section__header .label { margin-bottom: 8px; display: block; }

.srv-section__header h2 {
  font-size: 22px;
  line-height: 1.2;
}

.srv-section__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-light);
  margin-bottom: 16px;
}

.srv-section__body p:last-child { margin-bottom: 0; }

/* Lista de entregables */
.srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.srv-list li {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.65;
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.srv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.srv-list li strong { color: var(--white); font-weight: 700; }

a.srv-sector {
  text-decoration: none;
  cursor: pointer;
}

a.srv-sector::after {
  content: '→';
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 14px;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

a.srv-sector:hover::after { opacity: 1; }

.srv-sector {
  background: var(--black);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
  position: relative;
}

.srv-sector:hover { background: rgba(255,107,0,0.06); }

.srv-sector-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.srv-sector-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ---- EQUIPAMIENTO ---- */
.srv-equipo { padding: 64px 0; }

.srv-equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.srv-equipo-item {
  background: var(--black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.srv-equipo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.srv-equipo-uso {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ---- RELACIONADOS ---- */
.srv-relacionados { padding: 64px 0; }

.srv-rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.srv-rel-card {
  background: var(--black);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.srv-rel-card:hover { background: rgba(255,107,0,0.04); }

.srv-rel-title {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.4;
  flex: 1;
}

.srv-rel-arrow {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- OTROS SERVICIOS ---- */
.srv-otros { padding: 48px 0; }

.srv-otros-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.srv-otros-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.2s;
}

.srv-otros-item:hover {
  color: var(--white);
  border-color: var(--orange);
}

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

@media (max-width: 768px) {
  .srv-equipo-grid { grid-template-columns: 1fr; }
  .srv-rel-grid { grid-template-columns: 1fr; }
}
