/* Añadido para el filtro de búsqueda */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 2px solid var(--color-border, #e9ecef);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--color-bg-light);
    color: var(--color-dark);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 4px rgba(249, 231, 182, 0.4);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-dark-light);
    font-size: 1.1rem;
}

.page-header {
    padding: 6rem 1rem 4rem 1rem;
    text-align: center;
    background: linear-gradient(rgba(244, 238, 209, 0.88), rgba(244, 238, 209, 0.88)), url('../img/bg2.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1rem 3rem 1rem;
        background-attachment: scroll;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
}

@supports (-webkit-touch-callout: none) {
    .page-header {
        background-attachment: scroll;
    }
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}