.txv-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.txv-page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 3rem;
    animation: fadeInUp 1s ease;
}

.txv-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.txv-page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.txv-breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.txv-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.txv-breadcrumb a:hover {
    opacity: 0.7;
}

.txv-breadcrumb span {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .txv-page-title {
        font-size: 2.2rem;
    }
    
    .txv-page-subtitle {
        font-size: 1.1rem;
    }
}
