/*
 * expo-actividades-alt.css
 * Propuesta alternativa: Botones tipo pills/badges con diseño más compacto
 */

.expo-actividades-alt {
    background: #ffffff;
}

.expo-actividades-alt__titulo {
    font-family: var(--font-hero, 'Lexend', sans-serif);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    text-align: center;
    margin: 0 0 clamp(0.75rem, 1.5vw, 1rem);
}

.expo-actividades-alt__fecha {
    font-family: var(--font-hero, 'Lexend', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary, #ff6b35);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.expo-actividades-alt__descripcion {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-secondary, #475569);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

/* Container con wrap para pills */
.expo-actividades-alt__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    max-width: 60rem;
    margin: 0 auto;
}

/* Pills más compactos y modernos */
.expo-actividades-alt__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-hero, 'Lexend', sans-serif);
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: var(--pill-bg, #64748b);
    border: 2px solid transparent;
    border-radius: 999rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.expo-actividades-alt__pill:hover {
    transform: translateY(-0.125rem) scale(1.05);
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.expo-actividades-alt__pill:active {
    transform: translateY(0) scale(1);
}

/* Colores específicos */
.expo-actividades-alt__pill--artes {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.expo-actividades-alt__pill--artes:hover {
    box-shadow: 0 0.375rem 1rem rgba(124, 58, 237, 0.35);
}

.expo-actividades-alt__pill--sociales {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.expo-actividades-alt__pill--sociales:hover {
    box-shadow: 0 0.375rem 1rem rgba(220, 38, 38, 0.35);
}

.expo-actividades-alt__pill--ciencias {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.expo-actividades-alt__pill--ciencias:hover {
    box-shadow: 0 0.375rem 1rem rgba(132, 204, 22, 0.35);
}

.expo-actividades-alt__pill--ingenieria {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.expo-actividades-alt__pill--ingenieria:hover {
    box-shadow: 0 0.375rem 1rem rgba(8, 145, 178, 0.35);
}

.expo-actividades-alt__pill--negocios {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.expo-actividades-alt__pill--negocios:hover {
    box-shadow: 0 0.375rem 1rem rgba(22, 163, 74, 0.35);
}

.expo-actividades-alt__pill--padres {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.expo-actividades-alt__pill--padres:hover {
    box-shadow: 0 0.375rem 1rem rgba(234, 88, 12, 0.35);
}

.expo-actividades-alt__pill--profesores {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.expo-actividades-alt__pill--profesores:hover {
    box-shadow: 0 0.375rem 1rem rgba(249, 115, 22, 0.35);
}

.expo-actividades-alt__pill--admin {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.expo-actividades-alt__pill--admin:hover {
    box-shadow: 0 0.375rem 1rem rgba(251, 146, 60, 0.35);
}

/* Responsive */
@media (max-width: 47.99rem) {
    .expo-actividades-alt__container {
        justify-content: stretch;
    }

    .expo-actividades-alt__pill {
        flex: 0 1 calc(50% - 0.5rem);
    }
}

/* Tema oscuro */
[data-theme="dark"] .expo-actividades-alt {
    background: #0f172a;
}

[data-theme="dark"] .expo-actividades-alt__titulo {
    color: #f1f5f9;
}

[data-theme="dark"] .expo-actividades-alt__descripcion {
    color: #cbd5e1;
}
