
.page-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Opacidad del velo oscuro */
    z-index: 1;
}
/* Ajustar el contenedor del texto */
.page-title .page-title-content {
    position: relative;
    z-index: 2; /* Asegurar que el texto esté sobre el velo */
    width: 100%;
    padding: 20px;
}
/* Ocultar la versión móvil en escritorio */
.page-title-mobile {
    display: none;
}

/* Ocultar la versión de escritorio en móviles y mostrar la de móvil */
@media screen and (max-width: 768px) {
    .page-title-desktop {
    display: none;
    }
    
    .page-title-mobile {
    display: flex;
    align-items: center;  /* Centrar verticalmente */
    justify-content: center;  /* Centrar horizontalmente */
    text-align: center;  /* Asegurar que el texto quede centrado */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh; /* Ocupar toda la pantalla en móvil */
    position: relative;
    color: #fff; /* Asegurar que el texto sea blanco */
    }

    /* Agregar el velo oscuro */
    .page-title-mobile::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Opacidad del velo oscuro */
    z-index: 1;
    }

    /* Ajustar el contenedor del texto */
    .page-title-mobile .page-title-content {
    position: relative;
    z-index: 2; /* Asegurar que el texto esté sobre el velo */
    width: 100%;
    padding: 20px;
    }

    /* Ajustar el texto */
    .page-title-mobile .page-title-header {
    font-size: 50px; /* Ajusta el tamaño del texto según necesidad */
    font-weight: bold;
    color: #fff; /* Asegurar que el texto sea blanco */
    }
}