/* Desktop - mantém cover */
.page-header-background {
    background-size: cover;
    background-position: center;
}

/* Mobile - não cortar a imagem */
@media (max-width: 768px) {
    .page-header-background {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        min-height: 200px;
    }
}