/* ── PRP Capilar Block – Google Fonts: Montserrat ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Bloque raíz ── */
.prp-capilar-block {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

/* ── Encabezado ── */
.prp-header {
    text-align: center;
    margin-bottom: 40px;
}

.prp-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.prp-tagline::before,
.prp-tagline::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.prp-heading {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    line-height: 1.1;
}

.prp-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Fila de pasos ── */
.prp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

/* ── Flecha separadora ── */
.prp-arrow {
    flex-shrink: 0;
    align-self: center;
    padding: 0 2px;
    margin-top: -60px;
}

/* ── Tarjeta de paso ── */
.prp-step {
    flex: 1 1 190px;
    max-width: 260px;
    min-width: 150px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* ── Número de paso ── */
.prp-step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    z-index: 2;
    background: rgba(0,0,0,0.55);
    box-sizing: border-box;
}

/* ── Imagen ── */
.prp-step-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.prp-step-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Círculo del ícono ── */
.prp-step-icon-wrap {
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-sizing: border-box;
    background: inherit;
}

/* ── Título del paso ── */
.prp-step-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 10px 14px 0;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.prp-title-line { display: block; }

/* ── Descripción ── */
.prp-step-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    margin: 10px 14px 18px;
}

/* ══════════════════════════════════════════
   RESPONSIVE – TABLET  (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .prp-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        justify-items: center;
    }
    .prp-arrow { display: none; }
    .prp-step  { max-width: 100%; width: 100%; min-width: unset; }
    .prp-heading { font-size: clamp(22px, 5vw, 44px) !important; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – MOBILE  (≤ 540px)
══════════════════════════════════════════ */
@media (max-width: 540px) {
    .prp-capilar-block { padding-left: 16px !important; padding-right: 16px !important; }
    .prp-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .prp-step { max-width: 380px; }
    .prp-heading     { font-size: clamp(20px, 7vw, 36px) !important; }
    .prp-subheading  { font-size: 14px !important; }
    .prp-step-title  { font-size: 13px !important; }
    .prp-step-description { font-size: 12px !important; }
}
