.hero-section {
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1; /* Aseguramos que está detrás del contenido */
    pointer-events: none; /* Permite clicks a través de la capa */
}

.container.position-relative.z-index-1 {
    position: relative;
    z-index: 2; /* Traemos el contenido al frente */
}

/* Asegúrate que el botón tenga posición relativa */
.btn-cta {
    position: relative;
    z-index: 3;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shadow-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animate__animated {
    animation-duration: 1s;
}