/* ========================================
   Casos de Éxito - Archive & Single Styles
   ======================================== */

:root {
    --bs-deep-blue-01: #2929CC;
    --bs-deep-blue-02: #2134C4;
    --bs-deep-blue-03: #384BF5;
    --bs-blue-core-01: #4D78FF;
    --bs-blue-core-02: #5982FF;
    --bs-blue-core-03: #6A8EF7;
    --bs-light-blue-01: #94B5FA;
    --bs-light-blue-02: #A6C2FF;
    --bs-light-blue-03: #B2C9FF;
}

/* Sección de Estadísticas */
.success-stats {
    background: linear-gradient(135deg, var(--bs-deep-blue-02) 0%, var(--bs-blue-core-01) 50%, var(--bs-deep-blue-03) 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.success-stats .stat-item {
    padding: 2rem 1rem;
}

.success-stats .stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
}

.success-stats .stat-number .counter {
    font-weight: 300;
}

.success-stats .stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Archive - Tabs de Industrias */
.industries-filter {
    background: linear-gradient(135deg, var(--bs-deep-blue-02) 0%, var(--bs-blue-core-01) 50%, var(--bs-deep-blue-03) 100%);
    padding: 2rem 0 3rem 0;
}

.industries-filter .navbar {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.industries-filter .navbar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.industries-filter .navbar li {
    list-style: none;
}

.industries-filter .navbar li a {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.industries-filter .navbar li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.industries-filter .navbar li.active a {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Single - Badges de Industrias */
.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industries-tags .badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industries-tags .badge:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Mensaje de sin resultados */
.no-results {
    padding: 4rem 2rem;
}

.no-results h3 {
    margin-bottom: 1rem;
    color: #333;
}

.no-results p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .success-stats .stat-number {
        font-size: 3rem;
    }
    
    .success-stats .stat-description {
        font-size: 0.9rem;
    }
    
    .industries-filter .navbar ul {
        justify-content: center;
    }
    
    .industries-filter .navbar li a {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}
