/* =========================================
   ESTILOS DE MANTENIMIENTO (NUEVO)
   ========================================= */
.maintenance-box {
  margin-top: 40px;
  background: #020817; /* Slate-950 equivalent */
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 30px;
  color: white;
  text-align: left;
}

.m-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.m-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.m-icon {
  color: #94a3b8;
}

.m-divider {
  margin: 25px 0;
}

.m-price {
  font-size: 24px;
  font-weight: 800;
}

.m-price span {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
}

.m-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.m-list {
  margin-bottom: 0;
}

.m-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  background: rgba(30, 41, 59, 0.5);
  padding: 15px;
  border-radius: 8px;
}

.m-footer svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.m-footer p {
  margin: 0;
  line-height: 1.5;
}

/* Ajuste Responsivo para la caja de mantenimiento */
@media (max-width: 768px) {
  .m-header {
    text-align: center;
    justify-content: center;
  }
}
