/* ===== Punto Finder + WhatsApp CTAs (RepaPatín) ===== */

/* Color WhatsApp */
:root {
    --wa-green: #25D366;
    --wa-green-dark: #128C7E;
}

/* Icono SVG inline en botones .thm-btn */
.thm-btn .pf-svg {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    line-height: 0 !important;
    top: 0 !important;
    vertical-align: middle;
    font-size: 0 !important;
}
.thm-btn .pf-svg svg { display: block; }

/* ====== Layout del hero (centrado) ====== */
.pf-hero-centered {
    text-align: center;
    color: var(--crank-white, #fff);
    max-width: 880px;
    margin: 0 auto;
    padding-top: 20px;
}
.pf-hero-accent {
    color: var(--crank-base, #F85E08);
    display: inline;
}
.pf-hero-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--crank-white, #fff) !important;
    opacity: .9;
    justify-content: center;
}
.pf-online-dot {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--wa-green);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    animation: pf-online-pulse 1.8s infinite;
}
@keyframes pf-online-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .7); }
    70%  { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pf-hero-centered .main-slider__title {
    font-size: 60px !important;
    line-height: 1.05 !important;
    max-width: 100% !important;
    margin: 0 auto 22px !important;
    opacity: 1 !important;
}
.pf-hero-centered .main-slider__text {
    font-size: 18px !important;
    max-width: 720px !important;
    margin: 0 auto 30px !important;
    opacity: .85 !important;
}
.pf-hero-cta { margin: 0; }

/* Botón WA principal en hero — sobreescribe el thm-btn a verde */
.thm-btn.rp-wa-btn {
    background-color: var(--wa-green) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 15px;
}
.thm-btn.rp-wa-btn::after {
    background-color: var(--wa-green-dark) !important;
}

.pf-hero-tel {
    margin: 14px 0 0;
    color: var(--crank-white, #fff);
    opacity: .85;
    font-size: 14px;
}
.pf-hero-tel a {
    color: var(--crank-base, #F85E08);
    font-weight: 700;
    text-decoration: none;
}
.pf-hero-tel a:hover { text-decoration: underline; }

/* ====== Sección Mapa ====== */
.pf-map-section {
    padding: 30px 0 90px;
    background: transparent;
}
.pf-map-section__head { margin-bottom: 36px; }
.pf-map-section__head .section-title__title {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-top: 8px !important;
}

/* ====== Card del finder ====== */
.pf-hero-finder {
    background: var(--crank-white, #fff);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    color: var(--crank-black, #171717);
    position: relative;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, .04);
}

/* Banner WhatsApp arriba del finder */
.pf-wa-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
    color: #fff !important;
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 22px;
    text-decoration: none !important;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.pf-wa-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
    color: #fff !important;
}
.pf-wa-banner__icon {
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pf-wa-banner__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.pf-wa-banner__text strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.pf-wa-banner__text small {
    font-size: 12.5px;
    opacity: .9;
    color: #fff;
    margin-top: 2px;
}
.pf-wa-banner__arrow {
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Head del finder */
.pf-hero-finder__head { margin-bottom: 14px; }
.pf-hero-finder__title.section-title__title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin: 6px 0 0 !important;
    font-weight: 700;
    color: var(--crank-black, #171717);
}

/* Controles */
.pf-hero-finder__controls {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: stretch;
}
.pf-hero-finder__locate.thm-btn {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}
.pf-hero-finder__locate.thm-btn[disabled] { opacity: .7; cursor: wait; }
.pf-hero-finder__search {
    flex: 1;
    border: 1.5px solid #e8e8e8;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    font-family: inherit;
    min-width: 0;
    background: #fafafa;
    transition: border-color .2s, background .2s;
}
.pf-hero-finder__search:focus {
    outline: none;
    border-color: var(--crank-base, #F85E08);
    background: #fff;
}

/* Sección CTA WhatsApp (cuadro aparte) */
.pf-cta-section {
    padding: 40px 0;
    background: transparent;
}
.pf-cta-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
    border-radius: 22px;
    padding: 24px 28px;
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .4);
    transition: transform .15s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.pf-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.15), transparent 60%);
    pointer-events: none;
}
.pf-cta-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, .5);
    color: #fff !important;
}
.pf-cta-box__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}
.pf-cta-box__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}
.pf-cta-box__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .9;
}
.pf-cta-box__title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}
.pf-cta-box__sub {
    font-size: 12.5px;
    opacity: .92;
    line-height: 1.4;
    margin-top: 2px;
}
.pf-cta-box__btn {
    background: #fff;
    color: var(--wa-green-dark) !important;
    padding: 11px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: transform .15s;
}
.pf-cta-box:hover .pf-cta-box__btn {
    transform: translateX(2px);
}

/* Body: mapa + lista (2/3 - 1/3) */
.pf-hero-finder__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}
.pf-hero-finder__map {
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f4;
    z-index: 1;
}
.pf-hero-finder__list {
    height: 480px;
    overflow-y: auto;
    list-style: none;
    padding: 0 4px 0 0;
    margin: 0;
}
.pf-hero-finder__list::-webkit-scrollbar { width: 5px; }
.pf-hero-finder__list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.pf-hero-finder__list::-webkit-scrollbar-thumb:hover { background: var(--crank-base, #F85E08); }

/* Item card */
.pf-item {
    background: #faf8f7;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .15s;
}
.pf-item:hover {
    background: #fff;
    border-color: var(--crank-base, #F85E08);
    transform: translateY(-1px);
}
.pf-item.is-active {
    background: #fff;
    border-color: var(--crank-base, #F85E08);
    box-shadow: 0 8px 20px rgba(248, 94, 8, .2);
}
.pf-item__name {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--crank-black, #171717);
    line-height: 1.25;
    font-family: inherit;
}
.pf-item__addr {
    font-size: 12px;
    color: var(--crank-gray, #17080A);
    opacity: .7;
    margin: 0 0 6px;
    line-height: 1.4;
}
.pf-item__meta {
    font-size: 11px;
    color: var(--crank-black, #171717);
    opacity: .7;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}
.pf-distance {
    color: var(--crank-base, #F85E08) !important;
    font-weight: 700;
    opacity: 1 !important;
}
.pf-item__actions {
    display: flex;
    gap: 6px;
}
.pf-item__gmaps,
.pf-item__wa {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: filter .15s, transform .1s;
    letter-spacing: .3px;
}
.pf-item__gmaps {
    background: #f0f0f0;
    color: var(--crank-black, #171717);
}
.pf-item__gmaps:hover {
    background: #e6e6e6;
    color: var(--crank-black, #171717);
}
.pf-item__wa {
    background: var(--wa-green);
    color: #fff !important;
}
.pf-item__wa:hover {
    background: var(--wa-green-dark);
    color: #fff !important;
}
.pf-item__wa svg { flex-shrink: 0; }

.pf-empty {
    text-align: center;
    color: #999;
    padding: 30px 8px;
    font-size: 13px;
    font-style: italic;
}

/* Markers Leaflet */
.pf-marker__pin {
    width: 28px; height: 28px;
    background: var(--crank-base, #F85E08);
    border: 3px solid var(--crank-white, #fff);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.pf-marker__pin.is-active {
    background: var(--crank-black, #171717);
    transform: rotate(-45deg) scale(1.18);
}
.pf-user-pin {
    width: 16px; height: 16px;
    background: #2196F3;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(33, 150, 243, .25);
    animation: pf-pulse 2s infinite;
}
@keyframes pf-pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(33, 150, 243, .25); }
    50%      { box-shadow: 0 0 0 10px rgba(33, 150, 243, .1); }
}
.pf-popup-link {
    color: var(--crank-base, #F85E08) !important;
    font-weight: 700;
    text-decoration: none !important;
}

/* ====== CTA WhatsApp en header ====== */
.main-menu__main-menu-box {
    display: flex !important;
    align-items: center !important;
    gap: 18px;
}
.rp-wa-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--wa-green);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: background .15s, transform .1s, box-shadow .2s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
    text-transform: uppercase;
    line-height: 1;
    height: auto;
}
.rp-wa-cta:hover {
    background: var(--wa-green-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
}
.rp-wa-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.rp-wa-cta__icon svg { width: 16px; height: 16px; display: block; }

/* ====== Sección "Cómo funciona" — pasos a WhatsApp ====== */
.rp-wa-steps {
    background: #f7f5f4;
    padding: 90px 0 100px;
    position: relative;
}
.rp-wa-steps__head { margin-bottom: 50px; }
.rp-wa-steps__head .section-title__title {
    margin-bottom: 14px !important;
    font-size: 42px !important;
    line-height: 1.15 !important;
}
.rp-wa-steps__sub {
    color: var(--crank-gray, #17080A);
    opacity: .7;
    font-size: 16px;
    margin: 0;
}
.rp-wa-steps__list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: rp-step;
}
.rp-wa-step {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px 28px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform .2s, box-shadow .2s;
}
.rp-wa-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(248, 94, 8, .18);
    border-color: rgba(248, 94, 8, .2);
}
/* Conector entre cards */
.rp-wa-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -22px;
    top: 56px;
    font-size: 28px;
    color: var(--crank-base, #F85E08);
    font-weight: 700;
    opacity: .5;
    z-index: 2;
}
.rp-wa-step__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: var(--crank-base, #F85E08);
    opacity: .12;
    line-height: 1;
    font-family: inherit;
}
.rp-wa-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(248, 94, 8, .12);
    color: var(--crank-base, #F85E08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.rp-wa-step__icon--green {
    background: rgba(37, 211, 102, .15);
    color: var(--wa-green);
}
.rp-wa-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--crank-black, #171717);
    margin: 0 0 8px;
    line-height: 1.25;
    font-family: inherit;
    position: relative;
    z-index: 1;
}
.rp-wa-step p {
    font-size: 14px;
    color: var(--crank-gray, #17080A);
    opacity: .75;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.rp-wa-steps__cta {
    text-align: center;
}
.rp-wa-steps__btn.thm-btn {
    padding: 16px 36px !important;
    font-size: 15px !important;
}
.rp-wa-steps__tel {
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--crank-gray, #17080A);
    opacity: .75;
}
.rp-wa-steps__tel a {
    color: var(--crank-base, #F85E08);
    font-weight: 700;
    text-decoration: none;
}
.rp-wa-steps__tel a:hover { text-decoration: underline; }

/* ====== FAB flotante WhatsApp (todas las páginas) ====== */
.rp-wa-fab {
    position: fixed;
    right: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    color: #fff !important;
}
.rp-wa-fab__bubble {
    background: #fff;
    color: var(--crank-black, #171717);
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    line-height: 1.3;
    max-width: 240px;
    position: relative;
    animation: rp-wa-bubble 4s ease-in-out infinite;
}
.rp-wa-fab__bubble::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: #fff;
}
.rp-wa-fab__bubble strong {
    color: var(--wa-green);
    font-weight: 700;
}
.rp-wa-fab__icon {
    width: 60px; height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
    flex-shrink: 0;
    color: #fff;
    transition: transform .2s, background .2s;
    animation: rp-wa-pulse 2.5s ease-in-out infinite;
}
.rp-wa-fab:hover .rp-wa-fab__icon {
    background: var(--wa-green-dark);
    transform: scale(1.05);
    animation-play-state: paused;
}
@keyframes rp-wa-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .5); }
    70%      { box-shadow: 0 8px 24px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0); }
}
@keyframes rp-wa-bubble {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* ====== Responsive ====== */
@media (max-width: 1199px) {
    .pf-hero-centered .main-slider__title { font-size: 50px !important; }
    .pf-hero-finder__map,
    .pf-hero-finder__list { height: 420px; }
    .pf-map-section__head .section-title__title { font-size: 32px !important; }
}
@media (max-width: 991px) {
    /* Hero: altura libre para que respire el contenido */
    .main-slider__static-wrap.\!h-\[55vh\] { height: auto !important; min-height: 520px; }
    .pf-hero-centered .main-slider__title { font-size: 40px !important; }
    .pf-hero-centered .main-slider__text { font-size: 16px !important; }
    .pf-hero-finder__map,
    .pf-hero-finder__list { height: 360px; }
    .rp-wa-cta { display: none !important; }
    .rp-wa-fab__bubble { display: none; }
    /* Pasos: 2x2 */
    .rp-wa-steps { padding: 70px 0; }
    .rp-wa-steps__list { grid-template-columns: 1fr 1fr; gap: 20px; }
    .rp-wa-step:nth-child(2)::after { display: none; }
    .rp-wa-step:not(:last-child)::after { top: 50%; transform: translateY(-50%); }
    .rp-wa-steps__head .section-title__title { font-size: 34px !important; }
}
@media (max-width: 767px) {
    .pf-cta-box {
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 12px;
    }
    .pf-cta-box__icon { width: 50px; height: 50px; }
    .pf-cta-box__icon svg { width: 32px; height: 32px; }
    .pf-cta-box__title { font-size: 15px; }
    .pf-cta-box__sub { font-size: 12px; }
    .pf-cta-box__btn { width: 100%; justify-content: center; padding: 12px 18px; }
}
@media (max-width: 575px) {
    .pf-hero-centered { padding-top: 10px; }
    .pf-hero-centered .main-slider__title { font-size: 30px !important; }
    .pf-hero-centered .main-slider__text { font-size: 14px !important; }
    .pf-map-section { padding: 20px 0 60px; }
    .pf-map-section__head { margin-bottom: 24px; }
    .pf-map-section__head .section-title__title { font-size: 26px !important; }
    .pf-hero-finder { padding: 20px 16px; border-radius: 20px; }
    .pf-hero-finder__body { grid-template-columns: 1fr; }
    .pf-hero-finder__map { height: 280px; }
    .pf-hero-finder__list { height: auto; max-height: 380px; }
    .pf-hero-finder__controls { flex-direction: column; }
    .pf-hero-finder__locate.thm-btn { width: 100%; }
    .pf-item__actions { flex-direction: column; gap: 6px; }
    .rp-wa-fab { right: 14px; bottom: 14px; }
    .rp-wa-fab__icon { width: 54px; height: 54px; }
    /* Pasos: 1 columna */
    .rp-wa-steps { padding: 60px 0; }
    .rp-wa-steps__list { grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
    .rp-wa-step { padding: 26px 22px; }
    .rp-wa-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
        font-size: 22px;
    }
    .rp-wa-steps__head { margin-bottom: 36px; }
    .rp-wa-steps__head .section-title__title { font-size: 28px !important; }
    .rp-wa-steps__btn.thm-btn { padding: 14px 26px !important; font-size: 13px !important; width: 100%; }
}

/* Pasos: 3 columnas (override) */
.rp-wa-steps__list--3 { grid-template-columns: repeat(3, 1fr) !important; }
.rp-wa-steps__list--3 .rp-wa-step:not(:last-child)::after { right: -20px; }

/* ====== Bloque Confianza ====== */
.rp-trust {
    background: var(--crank-white, #fff);
    padding: 70px 0 80px;
    position: relative;
}
.rp-trust__stats {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.rp-trust__stats li {
    background: #faf8f7;
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 16px;
    padding: 24px 16px;
}
.rp-trust__num {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--crank-base, #F85E08);
    line-height: 1;
    margin-bottom: 6px;
    font-family: inherit;
}
.rp-trust__label {
    color: var(--crank-black, #171717);
    font-size: 14px;
    font-weight: 600;
}
.rp-trust__brands {
    text-align: center;
    color: var(--crank-gray, #17080A);
    opacity: .8;
    font-size: 14px;
    margin: 0 0 40px;
}
.rp-trust__brands strong { color: var(--crank-black, #171717); }
.rp-trust__reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.rp-review {
    background: #faf8f7;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 16px;
    padding: 22px;
    transition: transform .15s, box-shadow .2s;
}
.rp-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}
.rp-review__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.rp-review__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--crank-base, #F85E08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.rp-review__head strong {
    display: block;
    color: var(--crank-black, #171717);
    font-size: 15px;
    line-height: 1.2;
}
.rp-review__head small {
    display: block;
    color: var(--crank-gray, #17080A);
    opacity: .6;
    font-size: 12px;
}
.rp-review__head > div { flex: 1; min-width: 0; }
.rp-review__stars {
    color: #FFA726;
    font-size: 14px;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.rp-review p {
    color: var(--crank-gray, #17080A);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: .85;
}

/* ====== Mini CTA WhatsApp ====== */
.rp-mini-cta {
    padding: 24px 0;
    background: transparent;
}
.rp-mini-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
    color: #fff !important;
    border-radius: 14px;
    padding: 16px 24px;
    text-decoration: none !important;
    font-size: 15px;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .3);
    transition: transform .15s, box-shadow .2s;
}
.rp-mini-cta__inner:hover {
    transform: translateX(2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
    color: #fff !important;
}
.rp-mini-cta__inner--orange {
    background: linear-gradient(90deg, var(--crank-base, #F85E08) 0%, #d94e00 100%);
    box-shadow: 0 8px 22px rgba(248, 94, 8, .35);
}
.rp-mini-cta__inner--orange:hover { box-shadow: 0 12px 30px rgba(248, 94, 8, .5); }
.rp-mini-cta__text strong { font-weight: 700; }
.rp-mini-cta__arrow {
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ====== Bloque Servicios ====== */
.rp-services {
    background: #faf8f7;
    padding: 80px 0 90px;
}
.rp-services__head { margin-bottom: 50px; }
.rp-services__head .section-title__title {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-top: 8px !important;
}
.rp-services__sub {
    margin: 14px auto 0;
    color: var(--crank-gray, #17080A);
    opacity: .7;
    font-size: 16px;
    max-width: 620px;
}
.rp-services__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.rp-service {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rp-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(248, 94, 8, .15);
    border-color: rgba(248, 94, 8, .25);
}
.rp-service__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: rgba(248, 94, 8, .12);
    color: var(--crank-base, #F85E08);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.rp-service h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--crank-black, #171717);
    margin: 0 0 8px;
    font-family: inherit;
}
.rp-service p {
    font-size: 13px;
    color: var(--crank-gray, #17080A);
    opacity: .75;
    margin: 0;
    line-height: 1.5;
}

/* ====== Bloque Oferta ====== */
.rp-offer {
    padding: 80px 0 90px;
    background: var(--crank-white, #fff);
}
.rp-offer__box {
    background: linear-gradient(135deg, var(--crank-black, #171717) 0%, #2a2a2a 100%);
    border-radius: 28px;
    padding: 56px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}
.rp-offer__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(248, 94, 8, .25), transparent 60%);
    pointer-events: none;
}
.rp-offer__head {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.rp-offer__urgent {
    display: inline-block;
    background: var(--crank-base, #F85E08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.rp-offer__head h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
    font-family: inherit;
}
.rp-offer__head p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    margin: 0;
    max-width: 620px;
    margin: 0 auto;
}
.rp-offer__badges {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}
.rp-offer__badges li {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(4px);
}
.rp-offer__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: var(--wa-green);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 12px;
}
.rp-offer__badges strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}
.rp-offer__badges small {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
}
.rp-offer__cta {
    text-align: center;
    position: relative;
    z-index: 1;
}
.rp-offer__btn.thm-btn {
    padding: 17px 36px !important;
    font-size: 15px !important;
}
.rp-offer__tel {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}
.rp-offer__tel a {
    color: var(--crank-base, #F85E08);
    font-weight: 700;
    text-decoration: none;
}
.rp-offer__tel a:hover { text-decoration: underline; }

/* ====== Responsive nuevos bloques ====== */
@media (max-width: 1199px) {
    .rp-trust__num { font-size: 32px; }
    .rp-services__list { gap: 14px; }
    .rp-service { padding: 24px 18px; }
    .rp-service h3 { font-size: 16px; }
    .rp-offer__head h2 { font-size: 32px; }
}
@media (max-width: 991px) {
    /* Pasos 3 → 2 cols (tercero solo en su fila, centrado) */
    .rp-wa-steps__list--3 { grid-template-columns: 1fr 1fr !important; }
    .rp-wa-steps__list--3 .rp-wa-step:nth-child(2)::after { display: none; }
    .rp-wa-steps__list--3 .rp-wa-step:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
    .rp-wa-steps__list--3 .rp-wa-step:nth-child(3)::after { display: none; }
    /* Reseñas: 1 col (más cómodas para leer) */
    .rp-trust__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .rp-trust__stats li { padding: 18px 10px; }
    .rp-trust__reviews { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    /* Servicios: 3 col, los 2 últimos centrados */
    .rp-services__list { grid-template-columns: repeat(3, 1fr); }
    .rp-services__list .rp-service:nth-child(4) { grid-column: 1 / span 2; justify-self: end; max-width: 100%; }
    .rp-services__list .rp-service:nth-child(5) { grid-column: 3 / span 1; }
    .rp-services__head .section-title__title { font-size: 30px !important; }
    /* Oferta */
    .rp-offer__box { padding: 40px 28px; }
    .rp-offer__head h2 { font-size: 28px; }
    .rp-offer__badges { grid-template-columns: 1fr 1fr; }
    /* Trust en tablet */
    .rp-trust { padding: 60px 0 70px; }
    .rp-trust__num { font-size: 28px; }
    /* Mini CTA */
    .rp-mini-cta__inner { font-size: 14px; }
    /* CTA Section */
    .pf-cta-section { padding: 30px 0; }
    /* Hero CTA queda alineado al centro al colapsar */
    .pf-hero-online { justify-content: center; }
}
@media (max-width: 767px) {
    /* CTA box (pf-cta-box) ya cambia de orden: icono arriba, texto, botón */
    .pf-cta-box { flex-direction: column; text-align: center; align-items: center; padding: 24px 22px; }
    .pf-cta-box__content { align-items: center; }
    /* Servicios: 2 cols, último a tope */
    .rp-services__list { grid-template-columns: repeat(2, 1fr) !important; }
    .rp-services__list .rp-service:nth-child(4),
    .rp-services__list .rp-service:nth-child(5) { grid-column: auto; max-width: none; justify-self: stretch; }
    .rp-services__list .rp-service:nth-child(5) { grid-column: 1 / -1; max-width: 320px; margin: 0 auto; }
    /* Trust stats: 3 col compactas */
    .rp-trust__stats { gap: 8px; }
    .rp-trust__stats li { padding: 14px 8px; }
    .rp-trust__num { font-size: 22px; }
    .rp-trust__label { font-size: 12px; line-height: 1.3; }
    /* Hero menos altura mínima */
    .main-slider__static-wrap.\!h-\[55vh\] { min-height: 460px; }
    .item.\!pt-32 { padding-top: 80px !important; }
    /* Mini CTA */
    .rp-mini-cta { padding: 16px 0; }
    .rp-mini-cta__inner { padding: 14px 18px; flex-direction: column; text-align: center; gap: 6px; font-size: 13px; }
    .rp-mini-cta__arrow { display: none; }
}
@media (max-width: 575px) {
    /* Hero más compacto */
    .main-slider__static-wrap.\!h-\[55vh\] { min-height: 440px; padding: 30px 0 50px !important; }
    .pf-hero-centered { padding-top: 0 !important; }
    .item.\!pt-32 { padding-top: 60px !important; }
    /* Pasos: 1 col */
    .rp-wa-steps__list--3 { grid-template-columns: 1fr !important; }
    .rp-wa-steps__list--3 .rp-wa-step:nth-child(3) { grid-column: 1; max-width: none; }
    /* Trust */
    .rp-trust { padding: 50px 0 60px; }
    .rp-trust__stats { grid-template-columns: 1fr; gap: 10px; }
    .rp-trust__stats li { padding: 18px 14px; }
    .rp-trust__num { font-size: 28px; }
    .rp-trust__label { font-size: 13px; }
    .rp-trust__brands { font-size: 13px; margin-bottom: 28px; }
    /* Servicios */
    .rp-services { padding: 50px 0 60px; }
    .rp-services__head { margin-bottom: 32px; }
    .rp-services__head .section-title__title { font-size: 24px !important; }
    .rp-services__sub { font-size: 14px; }
    .rp-services__list { grid-template-columns: 1fr !important; gap: 12px; }
    .rp-services__list .rp-service { grid-column: auto !important; max-width: none !important; margin: 0 !important; }
    .rp-service { padding: 22px 18px; text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
    .rp-service__icon { width: 52px; height: 52px; margin-bottom: 0; border-radius: 12px; }
    .rp-service__icon svg { width: 28px; height: 28px; }
    .rp-service h3 { font-size: 16px; margin-bottom: 4px; grid-column: 2; }
    .rp-service p { font-size: 13px; line-height: 1.45; grid-column: 2; }
    /* CTA Section */
    .pf-cta-section { padding: 24px 0; }
    .pf-cta-box { padding: 22px 18px; border-radius: 18px; }
    .pf-cta-box__icon { width: 50px; height: 50px; }
    .pf-cta-box__icon svg { width: 28px; height: 28px; }
    .pf-cta-box__title { font-size: 16px; }
    .pf-cta-box__sub { font-size: 12.5px; }
    .pf-cta-box__btn { width: 100%; justify-content: center; padding: 12px 18px; }
    /* Oferta */
    .rp-offer { padding: 50px 0 60px; }
    .rp-offer__box { padding: 32px 20px; border-radius: 22px; }
    .rp-offer__urgent { font-size: 11px; padding: 5px 12px; }
    .rp-offer__head h2 { font-size: 22px; line-height: 1.2; }
    .rp-offer__head p { font-size: 14px; }
    .rp-offer__badges { grid-template-columns: 1fr; gap: 10px; }
    .rp-offer__badges li { padding: 16px 14px; text-align: left; display: flex; align-items: flex-start; gap: 12px; }
    .rp-offer__check { margin-bottom: 0; flex-shrink: 0; }
    .rp-offer__badges strong { font-size: 15px; }
    .rp-offer__badges small { font-size: 12px; }
    .rp-offer__btn.thm-btn { padding: 14px 24px !important; font-size: 13px !important; width: 100%; }
    .rp-offer__tel { font-size: 13px; }
    /* Header CTA oculto (queda solo el FAB) */
    .main-menu__main-menu-box { gap: 10px; }
}
@media (max-width: 360px) {
    /* Pantallas muy pequeñas */
    .pf-hero-centered .main-slider__title { font-size: 26px !important; }
    .rp-services__list { grid-template-columns: 1fr !important; }
    .rp-trust__num { font-size: 24px; }
    .rp-offer__head h2 { font-size: 20px; }
    .rp-wa-fab__icon { width: 50px; height: 50px; }
}
