/* Estilos para la sección de proceso en 4 pasos */

/* Línea de proceso que conecta los pasos */
.process-line {
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    height: 3px;
    background-color: rgba(var(--bs-primary-rgb), 0.2);
    z-index: 0;
}

/* Iconos de proceso */
.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

/* Número del paso */
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--bs-warning);
    color: var(--bs-dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Efecto hover en las tarjetas */
.process-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .process-line {
        left: 25%;
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .process-line {
        display: none !important;
    }
}