/* Page Banner */
.page-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: var(--space-64) 0 var(--space-48);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.page-banner-content .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.page-banner-label {
    font-family: var(--font-mono);
    font-size: var(--font-xs);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-banner-title {
    font-size: var(--font-5xl);
    font-weight: var(--weight-black);
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.page-banner-desc {
    font-size: var(--font-lg);
    color: var(--gray-300);
    max-width: 600px;
    line-height: 1.6;
}

/* Home Banner (Hero alternativo con banner) */
.hero-banner {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 72px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner-content {
    max-width: 800px;
}

.hero-banner-content .hero-label {
    opacity: 1;
}

.hero-banner-content h1 {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-banner-content .hero-desc {
    color: var(--gray-300);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }
    
    .page-banner-title {
        font-size: var(--font-4xl);
    }
    
    .page-banner-desc {
        font-size: var(--font-base);
    }
    
    .hero-banner {
        height: calc(100vh - 64px);
        min-height: 500px;
        margin-top: 64px;
    }
}

@media (max-width: 640px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner-content {
        padding: var(--space-48) 0 var(--space-32);
    }
    
    .page-banner-title {
        font-size: var(--font-3xl);
    }
    
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-banner-content h1 {
        font-size: var(--font-3xl);
    }
}