/* Personalización adicional para los servicios */
.servicio-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.parallax {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 10vh 5vw;
    /* Ajuste en padding para más fluidez */
    height: 60vh;
    /* Usa una altura dinámica */
    width: 100vw;
    background-color: var(--sections-background-color);
}


.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    filter: blur(10px);
    z-index: 0;
}


.parallax h1,
.parallax h2,
.parallax a,
.parallax p {
    position: relative;
    color: white;
    z-index: 1;

}

.parallax h2 {
    font-size: 20px;
}