/* ===== SERVICES.CSHTML ===== */

/* Hero especifico de servicios */
.services-hero {
    min-height: 50vh;
}

/* Panel de filtros */
.filter-panel {
    margin-bottom: 2rem;
}

/* filter-label, filter-input y filter-select ahora estan en site.css (compartidos) */

.filter-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.filter-results-text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.filter-results-text strong {
    color: var(--color-text-primary);
}

/* Mensaje sin resultados */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.no-results-text {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

/* Cards de servicios */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.service-category {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.service-delivery {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.service-cta {
    width: 100%;
}

/* Badge de nivel */
.level-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-basico {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.level-estandar {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.level-avanzado {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.level-empresarial {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}
