/* 
 * Hero Section del Catálogo
 * Diseño minimalista para la cabecera del catálogo
 */

.catalogo-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, 
        var(--color-background) 0%, 
        var(--color-surface) 50%, 
        var(--color-background) 100%);
    overflow: hidden;
    z-index: 1;
    display: block;
    width: 100%;
}

.catalogo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 124, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 124, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.catalogo-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        transparent 50%, 
        rgba(245, 124, 0, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-accent);
    font-weight: 500;
}

/* Títulos */
.catalogo-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.catalogo-hero p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Estadísticas del hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.breadcrumb {
    animation-delay: 0.1s;
}

.catalogo-hero h1 {
    animation-delay: 0.2s;
}

.catalogo-hero p {
    animation-delay: 0.3s;
}

.hero-stats {
    animation-delay: 0.4s;
}

.hero-stats .stat:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-stats .stat:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-stats .stat:nth-child(3) {
    animation-delay: 0.7s;
}

/* Responsive */
@media (max-width: 768px) {
    .catalogo-hero {
        padding: 120px 0 60px;
    }
    
    .catalogo-hero h1 {
        font-size: 2.5rem;
    }
    
    .catalogo-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }
    
    .stat-number {
        font-size: 2rem;
        min-width: 80px;
    }
    
    .stat-label {
        text-align: left;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .catalogo-hero {
        padding: 100px 0 50px;
    }
    
    .catalogo-hero h1 {
        font-size: 2rem;
    }
    
    .catalogo-hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}
