/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap'); */

.rc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .rc-steps {
    box-shadow: 0px 4px 6px 0px #00000026;
    border-radius: 20px;
    padding: 35px;
}
}

.rc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* padding: 20px 0; */
    padding-bottom: 36px;
    position: relative;
}



/* Línea punteada vertical entre iconos */
.rc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: 0;
    width: 1px;
    background-image: repeating-linear-gradient(
        to bottom,
        #024442 0px,
        #024442 6px,
        transparent 6px,
        transparent 12px
    );
}

.rc-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 1.5px solid #024442;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.rc-icon img {
    /* width: 30px;
    height: 30px; */
    object-fit: contain;
}

.rc-content {
    padding-top: 8px;
}

.rc-content strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1C1C;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.rc-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #546067;
    margin: 0;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 768px) {
    .rc-step {
        gap: 16px;
        padding: 16px 0;
    }

    .rc-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    /* .rc-icon img {
        width: 26px;
        height: 26px;
    } */

    .rc-step:not(:last-child)::after {
        left: 23px;
        top: 62px;
    }

    .rc-content strong {
        font-size: 17px;
    }

    .rc-content p {
        font-size: 14px;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .rc-step {
        gap: 14px;
        padding: 14px 0;
    }

    .rc-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    /* .rc-icon img {
        width: 24px;
        height: 24px;
    } */

    .rc-step:not(:last-child)::after {
        left: 21px;
        top: 57px;
    }

    .rc-content strong {
        font-size: 15px;
    }

    .rc-content p {
        font-size: 13px;
    }
}