/* Contenedor principal para el efecto parallax */
.parallax-divider {
    position: relative;
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 2rem 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
/* Imágenes específicas para cada sección */
.perfil-divider {
     background-image: url("https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg");
}

.habilidades-divider {
   background-image: url("https://images.pexels.com/photos/1181271/pexels-photo-1181271.jpeg");
}

.logros-divider {
     background-image: url("https://images.pexels.com/photos/1181677/pexels-photo-1181677.jpeg");
}

/* Ajustes para dispositivos móviles y tablets */
@media (max-width: 768px) {
    .parallax-divider {
        height: 200px;
        background-attachment: scroll; /* Change to scroll for mobile */
        background-position: center center;
        margin: 1rem 0;
    }
}

/* For devices that don't support fixed background */
@supports (-webkit-touch-callout: none) {
    .parallax-divider {
        background-attachment: scroll;
    }
}


