.parallax-section {
    position: relative;
    overflow: hidden;
    height: 400px; /* Ajusta según tus necesidades */
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('../images/universe-parallax.png'); /* Ajusta la ruta según tu estructura de archivos */
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -1;
}

.slogan-text {
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 3rem;
    text-align: center;
    z-index: 1;
}

.slogan-line {
    display: block;
}

@media (max-width: 768px) {
    .parallax-section {
        height: 300px;
    }

    .slogan-text {
        font-size: 2rem;
    }
}