/* ── Sección principal ── */
.sbp-section {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    padding-bottom: 3rem;
}

.sbp-marca {
    color: var(--color1);
}

/* ══════════════════════════
   HERO
══════════════════════════ */
.sbp-hero {
    padding: 6rem 1.5rem 1rem;
}

.sbp-hero-inner {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.sbp-titulo {
    font-family: "Lexend Deca";
    color: var(--color3);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 65px;
    max-width: 70%;
}

.sbp-subtitulo {
    font-family: "Lexend Deca";
    font-size: 16px;
    font-weight: 300;
    color: var(--color3);
    margin: 0;
}

/* Features */
.sbp-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sbp-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.sbp-feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-top: 2px;
    background-color: var(--color1);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.sbp-feature-titulo {
    color: var(--color3);
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0px;
}

.sbp-feature-desc {
    color: var(--color3);
    font-family: "Lexend Deca";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
    margin-bottom: 0px;
    max-width: 80%;
}

/* Botones */
.sbp-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sbp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 3.5rem;
    min-width: 280px;
    border-radius: 50px;
    font-family: "Lexend Deca";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
}

.sbp-btn--solid {
    background-color: var(--color1);
    color: #fff;
}

.sbp-btn--solid:hover {
    background-color: #d9660f;
    color: #fff;
    text-decoration: none;
}

.sbp-btn--outline {
    background-color: var(--color1);
    color: #fff;
    border: 2px solid var(--color1);
}

.sbp-btn--outline:hover {
    background-color: #d9660f;
    border-color: #d9660f;
    color: #fff;
    text-decoration: none;
}

/* Rating */
.sbp-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Lexend Deca";
    font-size: 14px;
    color: var(--neutro2);
}

.sbp-google-logo {
    width: 21px;
    height: 21px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.sbp-stars img {
    width: 76px;
    height: 16px;
    aspect-ratio: 19/4;
    object-fit: contain;
    display: block;
}

.sbp-rating-score {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    color: var(--color3);
}

.sbp-stars {
    color: #f4b400;
    font-size: 16px;
    letter-spacing: 1px;
}

.sbp-rating-texto {
    color: var(--color3);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.sbp-pasos-titulo-wrap {
    text-align: center;
    padding: 2rem 1.5rem 0.5rem;
}

/* ══════════════════════════
   PASOS
══════════════════════════ */
.sbp-pasos-wrap {
    padding: 0 1.5rem 0rem;
    margin-top: -85px;
    position: relative;
    z-index: 2;
    margin-bottom: 10rem;
}

.sbp-pasos-inner {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.sbp-pasos-titulo {
    color: var(--color3);
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 65px;
    margin-bottom: 80px;
}

.sbp-pasos {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.sbp-paso {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: visible;
}

.sbp-paso--active {
    background: #fff;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    padding: 3.5rem 2rem;
    transform: scale(1.06);
    position: relative;
    z-index: 1;
    border: 1px solid var(--color3);
}

.sbp-paso-arrow {
    position: absolute;
    right: 0;
    transform: translateX(50%);
    z-index: 5;
    line-height: 0;
}

.sbp-arrow-mobile {
    display: none;
}

.sbp-paso-arrow svg {
    width: 88.85px;
    height: 35.54px;
}

.sbp-paso-arrow--bottom {
    bottom: 0rem;
    right: -1.6rem;
}

.sbp-paso-arrow--top {
    top: 0rem;
    right: -0.6rem;
}

.sbp-paso-num {
    font-family: "Lexend Deca";
    font-size: 80px;
    font-weight: 300;
    color: #FD7801;
    line-height: 13px;
    flex-shrink: 0;
}

.sbp-paso--active .sbp-paso-num {
    font-size: 90px;
}

.sbp-paso-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sbp-paso-titulo {
    font-family: "Lexend Deca";
    font-size: 16px;
    font-weight: 900;
    color: var(--color3);
    margin: 0;
    line-height: 13px;
}

.sbp-paso--active .sbp-paso-titulo {
    font-size: 18px;
}

.sbp-paso-desc {
    font-family: "Lexend Deca";
    font-size: 14px;
    font-weight: 300;
    color: #005D68;
    margin: 0;
    line-height: 21px;
}

.sbp-paso--active .sbp-paso-desc {
    font-size: 16px;
}

/* ── Responsive tablet (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .sbp-titulo {
        font-size: 34px;
        line-height: 46px;
    }

    .sbp-features {
        gap: 1.25rem;
    }

    .sbp-btn {
        min-width: auto;
        padding: 12px 2rem;
        font-size: 16px;
    }

    .sbp-pasos {
        gap: 1.25rem;
    }

    .sbp-paso {
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }

    .sbp-paso--active {
        padding: 2rem 1.25rem;
    }

    .sbp-paso-num {
        font-size: 60px;
    }

    .sbp-paso--active .sbp-paso-num {
        font-size: 68px;
    }

    .sbp-paso-titulo {
        font-size: 14px;
        line-height: 18px;
    }

    .sbp-paso--active .sbp-paso-titulo {
        font-size: 15px;
    }

    .sbp-paso-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .sbp-paso-arrow svg {
        width: 60px;
        height: 24px;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .sbp-hero {
        padding: 6rem 0rem 0rem;
    }
    .sbp-hero-inner,
    .sbp-pasos-inner {
        width: 100%;
    }

    .sbp-hero-inner{
        margin-bottom: 30px;
    }

    .sbp-titulo {
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 36px;
        max-width: 100%;
    }

    .sbp-subtitulo{
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px;
    }

    .sbp-feature-titulo{
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .sbp-feature-desc {
        font-size: 10px;
        font-style: normal;
        font-weight: 300;
        line-height: 12px;
        max-width: 100%;
    }

    .sbp-feature-icon{
        width: 34px;
        height: 34px;
    }

    .sbp-features {
        gap: 1rem;
        justify-content: center;
    }

    .sbp-btns {
        flex-direction: column;
    }

    .sbp-btn {
        text-align: center;
    }

    .sbp-pasos {
        flex-direction: column;
    }

    .sbp-paso,
    .sbp-paso--active {
        width: 100%;
        transform: none;
    }

    .sbp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 2rem;
        min-width: 280px;
        border-radius: 50px;
        font-family: "Lexend Deca";
        font-size: 20px;
        font-style: normal;
        font-weight: 800;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .sbp-paso-titulo{
        font-size: 16px;
        font-style: normal;
        font-weight: 900;
        line-height: 13px;
    }

    .sbp-paso-desc{
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 21px;
    }

    .sbp-paso--active .sbp-paso-titulo{
        font-size: 15px;
        font-style: normal;
        font-weight: 900;
        line-height: 13px;
    }

    .sbp-paso--active .sbp-paso-desc{
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 21px;
    }

    .sbp-paso--active{
        padding: 3.5rem 1rem;
    }
    
    .sbp-paso{
        padding: 3.5rem 1rem;
    }

    .sbp-paso-num{
        font-size: 80px;
        font-style: normal;
        font-weight: 300;
        line-height: 13px;
    }

    .sbp-paso--active .sbp-paso-num{
        font-size: 90px;
        font-style: normal;
        font-weight: 300;
        line-height: 13px;
    }


    .sbp-rating-texto{
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .sbp-rating-score{
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .sbp-pasos-titulo{
        display: none;
    }

    .sbp-paso-arrow {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .sbp-paso-arrow--bottom,
    .sbp-paso-arrow--top {
        right: auto;
        left: 50%;
        bottom: -45px;
        top: auto;
        transform: translateX(-50%);
    }

    .sbp-arrow-desktop {
        display: none;
    }

    .sbp-arrow-mobile {
        display: block;
    }

    .sbp-paso-arrow--bottom .sbp-arrow-mobile {
        width: 136.336px;
        height: 54.536px;
    }

    .sbp-paso-arrow--top .sbp-arrow-mobile {
        transform: rotate(-180deg);
        width: 136.336px;
        height: 54.536px;
    }
    .sbp-paso-body {
        gap: 1rem;
    }
}
