/* CADIVE — Proceso de atención */

.cadive-proceso {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 5px 10px 15px;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, sans-serif;
}

.cadive-proceso-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

.cadive-proceso-linea {
    position: absolute;
    top: 28px;
    left: 9%;
    right: 9%;
    height: 1px;
    z-index: 0;
    background: repeating-linear-gradient(
        to right,
        #b7c3d6 0,
        #b7c3d6 2px,
        transparent 2px,
        transparent 7px
    );
}

.cadive-paso {
    position: relative;
    z-index: 1;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: center;
}

.cadive-icono {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 9px;
    overflow: visible;
    border-radius: 50%;
    background: #12469f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cadive-icono svg {
    display: block;
    width: 29px;
    height: 29px;
    overflow: visible;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cadive-numero {
    position: absolute;
    bottom: -3px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #ffffff;
    color: #12469f;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
}

.cadive-paso h3 {
    margin: 0 0 6px;
    color: #18243a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.cadive-paso p {
    margin: 0;
    color: #4d4d4d;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

/* Tablet */
@media (max-width: 900px) {
    .cadive-proceso {
        padding-right: 5px;
        padding-left: 5px;
    }

    .cadive-icono {
        width: 52px;
        height: 52px;
    }

    .cadive-icono svg {
        width: 27px;
        height: 27px;
    }

    .cadive-paso {
        padding: 0 4px;
    }

    .cadive-paso p {
        font-size: 10px;
    }
}

/* Móvil */
@media (max-width: 600px) {
    .cadive-proceso-inner {
        display: block;
    }

    .cadive-proceso-linea {
        top: 28px;
        bottom: 28px;
        left: 50%;
        right: auto;
        width: 1px;
        height: auto;
        background: repeating-linear-gradient(
            to bottom,
            #b7c3d6 0,
            #b7c3d6 2px,
            transparent 2px,
            transparent 7px
        );
    }

    .cadive-paso {
        margin-bottom: 28px;
        padding: 0;
        background: #ffffff;
    }

    .cadive-paso:last-child {
        margin-bottom: 0;
    }

    .cadive-icono {
        width: 56px;
        height: 56px;
    }

    .cadive-icono svg {
        width: 29px;
        height: 29px;
    }

    .cadive-paso p {
        font-size: 11px;
    }
}