body {
    background-color: var(--bg-light);
}

.page-header {
    margin-bottom: 3rem;
}

/* Selección de Sector */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sector-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.sector-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sector-card h5 {
    font-weight: 600;
    color: var(--text-primary);
}

.sector-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Perfil de Sector */
.sector-profile-container {
    background: var(--bg-primary);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 3rem;
}

.sector-profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sector-profile-header h2 {
    font-weight: 700;
    color: var(--text-primary);
}

.sector-profile-header img {
    max-height: 200px;
    width: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.sector-section {
    margin-bottom: 3rem;
}

.sector-section h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sector-section ul {
    list-style: none;
    padding: 0;
}

.sector-section ul li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.sector-section ul li::before {
    content: "\f26a"; /* Icono de check de Bootstrap */
    font-family: "bootstrap-icons" !important;
    font-weight: 900;
    color: var(--secondary);
    margin-right: 0.5rem;
}

.sector-testimonial {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius);
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.sector-testimonial .author {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    display: block;
}
