/* Zury — búsqueda de servicios (inicio + vista de servicios) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --zury-ink: #1f2937;
    --zury-ink-soft: #374151;
    --zury-mist: #f5f8fc;
    --zury-fog: #e8eef6;
    --zury-jade: #2563eb;
    --zury-jade-deep: #1d4ed8;
    --zury-sky: #3b82f6;
    --zury-blue: #2563eb;
    --zury-blue-soft: #dbeafe;
    --zury-text: #1f2937;
    --zury-muted: #6b7280;
    --zury-white: #ffffff;
    --zury-radius: 14px;
    --zury-radius-sm: 10px;
    --zury-shadow: 0 18px 50px rgba(37, 99, 235, 0.12);
    --zury-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
    --zury-font-display: 'Manrope', 'Segoe UI', sans-serif;
    --zury-font-body: 'Manrope', 'Segoe UI', sans-serif;
}

/* ---------- Animaciones ---------- */
@keyframes zuryFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zurySoftPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
}

@keyframes zuryShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Hero móvil: flecha sutil + pulso del punto de luz (solo ≤767px).
 * translateY máximo bajo para no cruzar el borde inferior del Hero. */
@keyframes zuryHeroScrollHint {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.92;
        filter: drop-shadow(0 0 6px rgba(61, 155, 255, 0.32));
    }
    50% {
        transform: translateY(2px);
        opacity: 0.82;
        filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.65));
    }
}

/* Hero móvil: radar original — ondas expansivas */
@keyframes zuryRadarRing {
    0% {
        transform: translate(-50%, -50%) scaleX(0.35) scaleY(0.18);
        opacity: 0.55;
    }
    100% {
        transform: translate(-50%, -50%) scaleX(1.2) scaleY(0.48);
        opacity: 0;
    }
}

@keyframes zuryRadarGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.28;
        filter: blur(0.5px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.52;
        filter: blur(1px);
    }
}

@keyframes zuryRadarBreathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 5px rgba(125, 211, 252, 0.28));
    }
    50% {
        transform: translate(-50%, -50%) scale(1.04);
        filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.5));
    }
}

.zury-hero__radar {
    display: none;
}

/* ---------- Hero inicio (BannerPrincipal) ---------- */
.zury-page {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.zury-hero {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 78vh, 720px);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(243, 247, 252, 0.28) 62%, rgba(232, 241, 251, 0.08) 100%),
        url('../../images/zury-diseno-banner-principal.jpg') right center / auto 100% no-repeat,
        linear-gradient(115deg, #ffffff 0%, #f3f7fc 42%, #e8f1fb 100%);
    color: var(--zury-text);
    overflow: hidden;
    box-sizing: border-box;
    padding: clamp(20px, 3vw, 36px) clamp(16px, 4vw, 48px);
}

.zury-hero::before {
    display: none;
}

.zury-hero__layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 32px);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    flex: 1 1 auto;
    min-height: 0;
}

.zury-hero__copy {
    flex: 1 1 480px;
    max-width: 560px;
    min-width: 0;
    text-align: left;
    animation: zuryFadeUp 0.75s ease-out both;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Escritorio: stage, softbox, ui y track no alteran el flujo visual aprobado */
.zury-hero__ui,
.zury-hero__stage,
.zury-hero__softbox,
.zury-popular__track {
    display: contents;
}

.zury-hero__intro {
    display: contents;
}

.zury-hero__tagline {
    display: none;
}

@media (min-width: 768px) {
    .zury-hero__softbox {
        display: contents;
    }

    .zury-hero__badge {
        order: 1;
    }

    .zury-hero__title {
        order: 2;
    }

    .zury-hero__lead {
        order: 3;
    }

    .zury-search-form {
        order: 4;
    }

    .zury-popular {
        order: 5;
    }

    .zury-hero__tagline {
        display: none !important;
    }
}

.zury-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.85);
    color: var(--zury-blue);
    font-family: var(--zury-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: none;
    margin-bottom: 22px;
}

.zury-hero__badge .fa {
    color: var(--zury-blue);
    font-size: 0.85rem;
}

.zury-hero__title {
    font-family: var(--zury-font-display);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 16px;
    color: var(--zury-ink);
    letter-spacing: -0.03em;
}

.zury-hero__title span {
    color: var(--zury-ink);
    display: inline-block;
}

.zury-hero__lead {
    font-family: var(--zury-font-body);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 28px;
    color: var(--zury-muted);
    text-align: left;
}

.zury-search {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 520px;
    margin: 0;
    background: var(--zury-white);
    border-radius: 999px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: zuryFadeUp 0.9s 0.1s ease-out both;
}

.zury-search:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}

.zury-search__icon {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-right: 8px;
    flex: 0 0 auto;
}

.zury-search .ui-inputfield,
.zury-search input[type="text"],
.zury-search .form-control {
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 999px !important;
    height: 48px !important;
    padding: 0 10px 0 0 !important;
    font-family: var(--zury-font-body) !important;
    font-size: 1rem !important;
    color: var(--zury-text) !important;
    outline: none !important;
}

.zury-search .ui-inputfield:focus,
.zury-search input[type="text"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

.zury-search__btn,
.zury-search .pure-button,
.zury-search button,
.zury-search input[type="submit"] {
    flex: 0 0 auto;
    border: none !important;
    border-radius: 999px !important;
    height: 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--zury-blue) !important;
    color: var(--zury-white) !important;
    font-family: FontAwesome !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    line-height: 48px !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    animation: zurySoftPulse 2.8s ease-in-out 1.2s 2;
    text-align: center;
}

.zury-search__btn:hover,
.zury-search .pure-button:hover,
.zury-search button:hover,
.zury-search input[type="submit"]:hover {
    background: var(--zury-jade-deep) !important;
    transform: scale(1.04);
}

.zury-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    text-align: left;
}

.zury-popular__form {
    display: inline-block;
    margin: 0;
    flex: 0 0 auto;
}

.zury-popular__label {
    font-family: var(--zury-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--zury-ink);
    margin-right: 4px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.zury-popular__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--zury-blue-soft);
    color: var(--zury-blue) !important;
    font-family: var(--zury-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.zury-popular__tag:hover {
    background: #c7dbfc;
    transform: translateY(-1px);
    color: var(--zury-jade-deep) !important;
}

.zury-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    max-width: 860px;
    margin: 18px auto 0;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: var(--zury-shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.9);
    animation: zuryFadeUp 1s 0.2s ease-out both;
}

.zury-features__item {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 10px;
    position: relative;
}

.zury-features__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e5e7eb;
}

.zury-features__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--zury-blue-soft);
    color: var(--zury-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.zury-features__item p {
    margin: 0;
    font-family: var(--zury-font-body);
    font-size: 0.95rem;
    color: var(--zury-muted);
    text-align: left;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.zury-features__item strong {
    color: var(--zury-ink);
    font-weight: 700;
}

.zury-features__item span {
    color: var(--zury-muted);
    font-weight: 400;
}

/* ---------- Sección mid minimalista: ¿Cómo quieres usar Zury? ---------- */
.zury-home-mid {
    width: 100%;
    background: #ffffff;
    padding-top: clamp(80px, 9vw, 120px);
    padding-bottom: clamp(48px, 6vw, 80px);
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.zury-home-mid__inner {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(96px, 11vw, 140px);
}

.zury-paths__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    font-family: var(--zury-font-display);
    font-size: clamp(2.35rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--zury-ink);
    text-align: center;
}

.zury-paths__rule {
    position: relative;
    flex: 0 1 92px;
    max-width: 110px;
    height: 2px;
    background: #334155;
    border-radius: 999px;
}

.zury-paths__rule::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f5c542;
    transform: translate(-50%, -50%);
}

.zury-paths__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: stretch;
    column-gap: clamp(36px, 4.5vw, 56px);
    align-items: stretch;
    position: relative;
    width: 100%;
}

.zury-paths__grid::before {
    content: '';
    position: absolute;
    top: 6%;
    bottom: 6%;
    left: 50%;
    width: 1px;
    background: #e5e7eb;
    transform: translateX(-50%);
    pointer-events: none;
}

.zury-paths__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding: 8px 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    text-align: left;
}

.zury-paths__item:first-child {
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.zury-paths__item:last-child {
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    align-items: flex-start;
    text-align: left;
}

.zury-paths__item:last-child .zury-paths__btn {
    align-self: flex-start;
}

.zury-paths__head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 100%;
}

.zury-paths__illustration {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.zury-paths__illustration svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zury-paths__head h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    font-family: var(--zury-font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--zury-ink);
    white-space: nowrap;
}

.zury-paths__item > p {
    margin: 0;
    width: max-content;
    max-width: 100%;
    font-family: var(--zury-font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.45;
    color: var(--zury-ink-soft);
    white-space: nowrap;
}

.zury-paths__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--zury-blue-soft);
    color: var(--zury-blue) !important;
    font-family: var(--zury-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.zury-paths__btn:hover,
.zury-paths__btn:focus {
    background: #c7dbfc;
    color: var(--zury-jade-deep) !important;
    transform: translateY(-1px);
    box-shadow: none;
}

.zury-paths__btn span {
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
}

@media (max-width: 820px) {
    .zury-paths__grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 40px;
        column-gap: 0;
    }

    .zury-paths__grid::before {
        display: none !important;
        content: none;
    }

    .zury-paths__item,
    .zury-paths__item:first-child,
    .zury-paths__item:last-child {
        padding-left: 0;
        padding-right: 0;
        max-width: 420px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .zury-paths__head {
        justify-content: center;
        width: auto;
        max-width: 100%;
    }

    .zury-paths__btn,
    .zury-paths__item:last-child .zury-paths__btn {
        align-self: center;
    }

    .zury-paths__btn {
        min-height: 44px;
        padding: 11px 18px;
    }

    .zury-paths__head h3,
    .zury-paths__item > p {
        white-space: normal;
    }

    .zury-paths__title {
        gap: 12px;
    }

    .zury-paths__rule {
        max-width: 56px;
    }
}

@media (max-width: 520px) {
    .zury-paths__title {
        flex-wrap: nowrap;
        white-space: nowrap;
        font-size: 16px;
    }

    .zury-paths__rule {
        flex: 1 1 36px;
        max-width: 48px;
    }
}

/* ---------- Sección: Conectamos personas ---------- */
.zury-connect {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: clamp(48px, 6.5vw, 80px) clamp(16px, 4vw, 48px);
    box-sizing: border-box;
    overflow: hidden;
}

.zury-connect::before,
.zury-connect::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: min(280px, 42vw);
    height: min(140px, 22vw);
    pointer-events: none;
    opacity: 0.12;
    background-image: radial-gradient(circle, #60a5fa 1.1px, transparent 1.3px);
    background-size: 10px 10px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 100%, #000 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 100%, #000 20%, transparent 75%);
}

.zury-connect::before {
    left: 0;
    transform: skewX(-12deg);
}

.zury-connect::after {
    right: 0;
    transform: skewX(12deg);
}

.zury-connect__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.zury-connect__copy {
    text-align: left;
    max-width: 540px;
}

.zury-connect__copy h2 {
    margin: 0 0 18px;
    font-family: var(--zury-font-display);
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--zury-ink);
}

.zury-connect__br {
    display: none;
}

@media (max-width: 1024px) {
    .zury-connect__br {
        display: block;
    }

    .zury-connect__copy h2 {
        font-size: clamp(1.75rem, 5.2vw, 2.15rem);
        line-height: 1.25;
    }
}

.zury-connect__copy p {
    margin: 0;
    font-family: var(--zury-font-body);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--zury-muted);
}

.zury-connect__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(320px, 46vw, 520px);
    padding: 12px 0 0;
}

.zury-connect__halo {
    position: absolute;
    top: 4%;
    left: 50%;
    width: min(480px, 96%);
    height: min(480px, 96%);
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.5) 0%, rgba(219, 234, 254, 0.22) 45%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.zury-connect__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: min(680px, 100%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}

.zury-connect__float {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 92px;
    padding: 14px 8px 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.zury-connect__float-ico {
    color: var(--zury-blue);
    font-size: 1.4rem;
    line-height: 1;
}

.zury-connect__float > span:last-child {
    font-family: var(--zury-font-body);
    font-size: 0.86rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    text-align: center;
}

.zury-connect__float--personas {
    top: 8%;
    left: 2%;
}

.zury-connect__float--empresas {
    bottom: 16%;
    left: 2%;
}

.zury-connect__float--profesionales {
    top: 34%;
    right: 2%;
}

@media (max-width: 900px) {
    .zury-connect__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .zury-connect__copy {
        max-width: 640px;
        order: 1;
    }

    .zury-connect__visual {
        order: 2;
        min-height: 340px;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .zury-connect__photo {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .zury-connect {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .zury-connect__visual {
        min-height: 300px;
        max-width: 100%;
    }

    .zury-connect__float {
        width: 78px;
        padding: 12px 6px 10px;
    }

    .zury-connect__float > span:last-child {
        font-size: 0.76rem;
    }

    .zury-connect__float--personas {
        top: 4%;
        left: 2%;
    }

    .zury-connect__float--empresas {
        bottom: 10%;
        left: 2%;
    }

    .zury-connect__float--profesionales {
        top: 30%;
        right: 2%;
    }
}

/* Secciones inferiores inicio */
.zury-about {
    background: linear-gradient(180deg, #ffffff 0%, var(--zury-mist) 100%);
    padding: clamp(36px, 5vw, 56px) clamp(16px, 4vw, 24px) clamp(16px, 3vw, 24px);
    text-align: center;
}

.zury-about__img {
    max-width: min(360px, 100%);
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.zury-about__title {
    font-family: var(--zury-font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--zury-ink);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.zury-split {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1120px;
    width: calc(100% - 32px);
    margin: 24px auto 48px;
    overflow: hidden;
    background: var(--zury-white);
    box-shadow: var(--zury-shadow-soft);
    border-radius: var(--zury-radius);
}

.zury-split__media {
    flex: 1 1 320px;
    min-height: 220px;
    overflow: hidden;
    max-width: 100%;
}

.zury-split__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.zury-split:hover .zury-split__media img {
    transform: scale(1.04);
}

.zury-split__body {
    flex: 1 1 320px;
    padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px);
    font-family: var(--zury-font-body);
    min-width: 0;
}

.zury-split__body h1,
.zury-split__body h2 {
    font-family: var(--zury-font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    color: var(--zury-ink);
    margin: 0 0 16px;
}

.zury-split__body p {
    color: var(--zury-muted);
    font-size: clamp(0.95rem, 2vw, 1.02rem);
    line-height: 1.65;
    margin: 0 0 28px;
    text-align: left;
}

.zury-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--zury-ink);
    color: var(--zury-white) !important;
    text-decoration: none !important;
    font-family: var(--zury-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.zury-cta:hover,
.zury-cta a:hover {
    background: var(--zury-jade);
    color: var(--zury-white) !important;
    transform: translateY(-1px);
}

.zury-cta a {
    color: inherit !important;
    text-decoration: none !important;
}

.zury-cms {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px clamp(16px, 4vw, 28px) clamp(32px, 5vw, 48px);
    box-sizing: border-box;
    text-align: left;
}

.zury-cms__block {
    margin-bottom: 28px;
}

.zury-cms__block h2 {
    font-family: var(--zury-font-display);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    color: var(--zury-ink);
    margin: 0 0 10px;
}

.zury-cms__text h4 {
    font-family: var(--zury-font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--zury-muted);
    margin: 0 0 16px;
}

.zury-cms__img {
    text-align: center;
    margin: 12px 0;
}

.zury-cms__img img,
.zury-cms__img .img-responsive {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block;
}

.zury-cms__img--half {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    padding: 0 1%;
    box-sizing: border-box;
}

/* ---------- Vista de servicios ---------- */
.zury-servicios {
    font-family: var(--zury-font-body);
    color: var(--zury-text);
    background:
        linear-gradient(180deg, var(--zury-mist) 0%, #ffffff 180px);
    min-height: 70vh;
    padding: 28px 16px 64px;
}

.zury-servicios__header {
    max-width: 960px;
    margin: 0 auto 28px;
    text-align: center;
    animation: zuryFadeUp 0.6s ease-out both;
}

.zury-servicios__header h1 {
    font-family: var(--zury-font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--zury-ink);
    margin: 0 0 8px;
}

.zury-servicios__header p,
.zury-servicios__subtitle {
    font-size: 1.05rem;
    color: var(--zury-muted);
    margin: 0 auto;
    max-width: 480px;
}

.zury-servicios__icon {
    width: 72px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
    opacity: 0.9;
}

.zury-servicios__shell {
    max-width: 960px;
    margin: 0 auto;
}

.zury-servicios-search {
    display: flex;
    align-items: stretch;
    gap: 10px;
    background: var(--zury-white);
    border: 1px solid var(--zury-fog);
    border-radius: 999px;
    padding: 8px;
    margin-bottom: 28px;
    box-shadow: var(--zury-shadow-soft);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.zury-servicios-search:focus-within {
    border-color: rgba(31, 138, 124, 0.45);
    box-shadow: 0 10px 30px rgba(31, 138, 124, 0.12);
}

.zury-servicios-search .ui-inputfield,
.zury-servicios-search input[type="text"] {
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    height: 46px !important;
    padding: 0 18px !important;
    font-family: var(--zury-font-body) !important;
    font-size: 1rem !important;
    color: var(--zury-text) !important;
    border-radius: 999px !important;
}

.zury-servicios-search .pure-button,
.zury-servicios-search button,
.zury-servicios-search input[type="submit"] {
    border: none !important;
    border-radius: 999px !important;
    height: 46px !important;
    min-width: 110px;
    padding: 0 24px !important;
    margin: 0 !important;
    background: var(--zury-jade) !important;
    color: var(--zury-white) !important;
    font-family: var(--zury-font-body) !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.zury-servicios-search .pure-button:hover,
.zury-servicios-search button:hover {
    background: var(--zury-jade-deep) !important;
}

.zury-resultados-title {
    font-family: var(--zury-font-display) !important;
    font-size: 1.85rem !important;
    color: var(--zury-ink) !important;
    font-weight: 600 !important;
    display: block;
    margin: 0 0 18px !important;
    text-align: left;
}

.zury-servicio-item {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    background: var(--zury-white);
    border: 1px solid transparent;
    border-radius: var(--zury-radius);
    padding: 18px 20px;
    margin-bottom: 14px;
    box-shadow: var(--zury-shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

.zury-servicio-item:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 138, 124, 0.35);
    box-shadow: 0 16px 40px rgba(12, 18, 24, 0.12);
}

.zury-servicio-item:focus {
    outline: 2px solid var(--zury-jade);
    outline-offset: 2px;
}

.zury-servicio-item .ui-panelgrid,
.zury-servicio-item .ui-panelgrid-content,
.zury-servicio-item table {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
}

.zury-servicio-item .ui-panelgrid td {
    border: none !important;
    background: transparent !important;
    vertical-align: middle !important;
    padding: 4px 8px !important;
}

.zury-servicio-thumb {
    width: 96px;
    height: 96px;
    border-radius: var(--zury-radius-sm);
    object-fit: cover;
    background: var(--zury-fog);
    display: block;
}

.zury-servicio-meta-label {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--zury-muted) !important;
}

.zury-servicio-meta-value {
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: var(--zury-ink) !important;
}

.zury-servicio-divider {
    display: none;
}

.zury-detalle {
    background: var(--zury-white);
    border-radius: var(--zury-radius);
    padding: 36px 28px;
    box-shadow: var(--zury-shadow-soft);
    animation: zuryFadeUp 0.5s ease-out both;
}

.zury-detalle__title {
    font-family: var(--zury-font-display) !important;
    font-size: 2.1rem !important;
    color: var(--zury-ink) !important;
    margin: 0 0 24px !important;
    text-align: center;
    display: block;
}

.zury-detalle-grid {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1.02rem !important;
}

.zury-detalle-grid td {
    padding: 10px 12px !important;
    border-bottom: 1px solid var(--zury-fog) !important;
    vertical-align: top !important;
}

.zury-detalle-grid td:first-child {
    color: var(--zury-muted);
    font-weight: 500;
    width: 38%;
}

.zury-detalle-grid td:last-child {
    color: var(--zury-ink);
    font-weight: 600;
}

.zury-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 16px 0 28px;
}

.zury-galeria img,
.zury-galeria .img-responsive {
    width: 100%;
    max-width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--zury-radius-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zury-galeria img:hover,
.zury-galeria .img-responsive:hover {
    transform: scale(1.03);
    box-shadow: var(--zury-shadow-soft);
}

.zury-btn-back,
.zury-detalle .pure-button {
    display: inline-block;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    background: var(--zury-ink) !important;
    color: var(--zury-white) !important;
    font-family: var(--zury-font-body) !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.zury-btn-back:hover,
.zury-detalle .pure-button:hover {
    background: var(--zury-jade) !important;
    transform: translateY(-1px);
}

/* Override Pure form min-width en estas pantallas */
.zury-servicios .pure-form input[type=text],
.zury-servicios .pure-form input[type=search],
.zury-hero .pure-form input[type=text],
.zury-hero .pure-form input[type=search] {
    min-width: 0 !important;
}

.zury-servicios .ui-datascroller .ui-datascroller-content,
.zury-servicios .ui-datascroller-list,
.zury-servicios .ui-widget-content {
    background: transparent !important;
    border: none !important;
}

.zury-servicios .ui-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.zury-servicios .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .zury-hero {
        min-height: clamp(480px, 62vh, 640px);
        background:
            linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(243, 247, 252, 0.4) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right center / auto 90% no-repeat,
            linear-gradient(115deg, #ffffff 0%, #f3f7fc 42%, #e8f1fb 100%);
        padding: 28px 4% 24px;
    }

    .zury-hero__copy {
        max-width: 48%;
    }

    .zury-features {
        max-width: 100%;
    }

    .zury-servicios {
        padding: 24px 16px 48px;
    }
}

@media (max-width: 1100px) {
    .zury-hero {
        background:
            linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 247, 252, 0.78) 50%, rgba(232, 241, 251, 0.4) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right center / auto 92% no-repeat,
            linear-gradient(115deg, #ffffff 0%, #f3f7fc 42%, #e8f1fb 100%);
    }

    .zury-hero__copy {
        max-width: 520px;
    }
}

@media (max-width: 960px) {
    .zury-hero {
        min-height: clamp(480px, 72vh, 620px);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(243, 247, 252, 0.55) 68%, rgba(232, 241, 251, 0.25) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right bottom / auto 72% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f1fb 100%);
        padding: 28px 5% 22px;
    }

    .zury-hero__layout {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .zury-hero__copy {
        max-width: 100%;
    }

    .zury-features {
        max-width: 100%;
    }

    .zury-features__item:not(:last-child)::after {
        display: none;
    }

    .zury-home-mid {
        padding-top: clamp(64px, 9vw, 88px);
        padding-bottom: clamp(44px, 6vw, 64px);
    }

    .zury-connect {
        padding-top: clamp(40px, 6vw, 56px);
        padding-bottom: clamp(40px, 6vw, 56px);
    }

    .zury-cms__img--half {
        width: 100%;
        padding: 0;
        display: block;
    }
}

@media (max-width: 640px) {
    .zury-hero {
        min-height: clamp(500px, 78vh, 600px);
        padding: 20px 4% 18px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 34%, rgba(255, 255, 255, 0.38) 56%, rgba(243, 247, 252, 0.18) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right bottom / auto 52% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    }

    .zury-hero__title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .zury-hero__badge {
        font-size: 0.7rem;
        padding: 7px 12px;
        margin-bottom: 16px;
    }

    .zury-search {
        max-width: 100%;
        padding-left: 12px;
    }

    .zury-search .ui-inputfield,
    .zury-search input[type="text"] {
        height: 46px !important;
        font-size: 0.95rem !important;
    }

    .zury-search__btn,
    .zury-search .pure-button,
    .zury-search button,
    .zury-search input[type="submit"] {
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
    }

    .zury-popular {
        gap: 6px;
    }

    .zury-popular__label {
        width: 100%;
        margin-bottom: 2px;
    }

    .zury-features {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px;
        gap: 0;
    }

    .zury-features__item {
        justify-content: flex-start;
        padding: 10px 8px;
        border-bottom: 1px solid #eef2f7;
    }

    .zury-features__item:last-child {
        border-bottom: none;
    }

    .zury-split {
        width: calc(100% - 24px);
        margin: 16px auto 32px;
    }

    .zury-split__media img {
        max-height: 260px;
    }

    .zury-split__body {
        padding: 22px 18px;
    }

    .zury-servicios {
        padding: 18px 12px 40px;
    }

    .zury-servicios-search {
        flex-direction: column;
        border-radius: var(--zury-radius);
        padding: 10px;
    }

    .zury-servicios-search .pure-button,
    .zury-servicios-search button,
    .zury-servicios-search input[type="submit"] {
        width: 100% !important;
        min-width: 0 !important;
        border-radius: var(--zury-radius-sm) !important;
    }

    .zury-servicio-item {
        padding: 14px 12px;
    }

    .zury-servicio-item .ui-panelgrid,
    .zury-servicio-item table {
        display: block !important;
        width: 100% !important;
    }

    .zury-servicio-item .ui-panelgrid td,
    .zury-servicio-item td {
        display: block !important;
        width: 100% !important;
        padding: 2px 0 !important;
    }

    .zury-servicio-thumb {
        width: 72px;
        height: 72px;
        margin-bottom: 8px;
    }

    .zury-detalle {
        padding: 20px 14px;
    }

    .zury-detalle-grid,
    .zury-detalle-grid table {
        width: 100% !important;
    }

    .zury-detalle-grid td {
        display: block !important;
        width: 100% !important;
    }

    .zury-detalle-grid td:first-child {
        width: 100%;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .zury-galeria img,
    .zury-galeria .img-responsive {
        max-width: 100%;
        height: auto;
        min-height: 140px;
    }
}

@media (max-width: 400px) {
    .zury-hero {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.45) 56%, rgba(243, 247, 252, 0.2) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') 88% bottom / auto 46% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    }

    .nav > li > a {
        padding: 10px 14px;
    }
}

/* Navbar / footer: estilos base en default.css.
   Aquí solo ajustes que no dupliquen la alineación del logo. */
#header.navbar {
    margin-bottom: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    #menu {
        margin-bottom: 0 !important;
    }

    .footer {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .footer .footer__grid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer [class*="col-"] {
        width: 100%;
        float: none;
        margin-bottom: 8px;
        padding-left: 0;
        padding-right: 0;
    }

    .footer h3 {
        padding-top: 18px;
        font-size: 15px;
    }

    .footer__copyright {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 16px 12px;
        box-sizing: border-box;
    }
}

/* ---------- Inicio: responsive completo (sin alterar desktop ≥992px) ---------- */
.zury-page {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.zury-page img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .zury-page {
        padding-left: 0;
        padding-right: 0;
    }

    .zury-hero {
        min-height: clamp(500px, 68vh, 660px);
        background:
            linear-gradient(100deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(243, 247, 252, 0.35) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right center / auto 92% no-repeat,
            linear-gradient(115deg, #ffffff 0%, #f3f7fc 42%, #e8f1fb 100%);
        padding: 24px clamp(16px, 3.5vw, 32px) 20px;
    }

    .zury-hero__copy {
        max-width: min(520px, 52%);
    }

    .zury-search,
    .zury-search-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .zury-hero__copy .zury-search {
        max-width: 100%;
    }

    .zury-popular {
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    .zury-popular__form {
        max-width: 100%;
    }

    .zury-features {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .zury-home-mid,
    .zury-connect,
    .zury-about {
        padding-left: clamp(16px, 3vw, 32px);
        padding-right: clamp(16px, 3vw, 32px);
    }

    .zury-home-mid {
        padding-top: clamp(72px, 8vw, 100px);
        padding-bottom: clamp(48px, 6vw, 72px);
    }

    .zury-connect {
        padding-top: clamp(44px, 5.5vw, 68px);
        padding-bottom: clamp(44px, 5.5vw, 68px);
    }
}

@media (max-width: 768px) {
    #header.navbar,
    #header .navbar-container,
    #header .navbar-collapse,
    #header .navbar-nav {
        max-width: 100%;
        box-sizing: border-box;
    }

    #header .navbar-collapse.in,
    #header .navbar-collapse.collapsing {
        overflow-x: hidden;
        max-width: 100%;
    }

    .zury-hero {
        min-height: clamp(520px, 78vh, 640px);
        padding: 22px 16px 18px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.4) 58%, rgba(243, 247, 252, 0.18) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') right bottom / auto 56% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    }

    .zury-hero__layout {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .zury-hero__copy {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .zury-hero__title {
        font-size: clamp(1.9rem, 7.2vw, 2.5rem);
    }

    .zury-hero__lead {
        font-size: clamp(0.98rem, 3.4vw, 1.08rem);
        max-width: 100%;
    }

    .zury-search {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .zury-search .ui-inputfield,
    .zury-search input[type="text"],
    .zury-search .form-control {
        min-width: 0 !important;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .zury-popular {
        width: 100%;
        gap: 8px;
    }

    .zury-popular__tag {
        font-size: 0.86rem;
        padding: 7px 12px;
    }

    .zury-features {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 14px;
        padding: 8px 10px;
    }

    .zury-features__item {
        justify-content: flex-start;
        flex: 1 1 auto;
        padding: 10px 6px;
        border-bottom: 1px solid #eef2f7;
    }

    .zury-features__item:last-child {
        border-bottom: none;
    }

    .zury-features__item:not(:last-child)::after {
        display: none;
    }

    .zury-home-mid {
        padding-top: 72px;
        padding-bottom: 52px;
    }

    .zury-home-mid__inner {
        gap: 80px;
    }

    .zury-paths__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        column-gap: 0;
    }

    .zury-paths__grid::before {
        display: none !important;
        content: none;
    }

    .zury-paths__item,
    .zury-paths__item:first-child,
    .zury-paths__item:last-child {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .zury-paths__head {
        justify-content: center;
        width: auto;
        max-width: 100%;
    }

    .zury-paths__head h3,
    .zury-paths__item > p {
        white-space: normal;
    }

    .zury-paths__btn,
    .zury-paths__item:last-child .zury-paths__btn {
        align-self: center;
        min-height: 44px;
        min-width: 200px;
        justify-content: center;
    }

    .zury-paths__title {
        font-size: clamp(1.55rem, 5.5vw, 2rem);
        gap: 10px;
    }

    .zury-connect {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .zury-connect__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zury-connect__copy {
        order: 1;
        max-width: 100%;
    }

    .zury-connect__visual {
        order: 2;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        min-height: 320px;
    }

    .zury-connect__photo {
        width: 100%;
    }

    .zury-about {
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .zury-cms {
        padding-top: 8px;
        padding-bottom: 36px;
    }

    .footer h3 {
        font-size: 15px;
    }

    .footer ul,
    .footer a {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    #header .navbar-container {
        padding: 0 12px !important;
    }

    #header .navbar-brand img,
    #header .navbar-brand .img-responsive,
    #header .zury-logo {
        width: 74px !important;
        max-width: 74px !important;
        max-height: 28px !important;
    }

    .zury-hero {
        min-height: clamp(500px, 82vh, 600px);
        padding: 18px 12px 16px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.45) 56%, rgba(243, 247, 252, 0.2) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') 88% bottom / auto 46% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    }

    .zury-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.15rem);
    }

    .zury-hero__lead {
        font-size: 0.98rem;
        margin-bottom: 20px;
    }

    .zury-search {
        padding: 5px 5px 5px 12px;
    }

    .zury-search .ui-inputfield,
    .zury-search input[type="text"] {
        height: 44px !important;
        font-size: 0.94rem !important;
    }

    .zury-search__btn,
    .zury-search button,
    .zury-search input[type="submit"] {
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
    }

    .zury-popular__tag {
        font-size: 0.82rem;
    }

    .zury-home-mid,
    .zury-connect {
        padding-left: 12px;
        padding-right: 12px;
    }

    .zury-paths__title {
        font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    }

    .zury-paths__head h3 {
        font-size: clamp(1.2rem, 5vw, 1.4rem);
    }

    .zury-paths__item > p {
        font-size: 0.95rem;
    }

    .zury-paths__btn {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }

    .zury-connect__copy h2 {
        font-size: clamp(1.75rem, 5.5vw, 2.1rem);
    }

    .zury-connect__copy p {
        font-size: 0.98rem;
    }

    .zury-connect__float {
        width: 74px;
    }

    .zury-connect__float > span:last-child {
        font-size: 0.72rem;
    }

    .zury-connect__visual {
        min-height: 290px;
        overflow: visible;
    }
}

@media (max-width: 360px) {
    .zury-hero {
        padding: 16px 10px 14px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 36%, rgba(255, 255, 255, 0.5) 58%, rgba(243, 247, 252, 0.22) 100%),
            url('../../images/zury-diseno-banner-principal.jpg') 90% bottom / auto 42% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    }

    .zury-hero__badge {
        font-size: 0.68rem;
        padding: 6px 10px;
    }

    .zury-hero__title {
        font-size: 1.65rem;
    }

    .zury-paths__item,
    .zury-paths__item:first-child,
    .zury-paths__item:last-child {
        max-width: 100%;
    }

    .zury-connect__float--personas {
        top: 2%;
        left: 0;
    }

    .zury-connect__float--empresas {
        bottom: 8%;
        left: 0;
    }

    .zury-connect__float--profesionales {
        top: 28%;
        right: 0;
    }

    .footer__grid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media (max-width: 320px) {
    #header .navbar-brand img,
    #header .zury-logo {
        width: 68px !important;
        max-width: 68px !important;
        max-height: 26px !important;
    }

    .zury-hero {
        min-height: 480px;
        padding: 14px 8px 12px;
    }

    .zury-hero__title {
        font-size: 1.55rem;
    }

    .zury-search {
        padding-left: 8px;
    }

    .zury-home-mid,
    .zury-connect,
    .zury-about,
    .zury-cms {
        padding-left: 10px;
        padding-right: 10px;
    }

    .zury-paths__title {
        font-size: 1.3rem;
    }

    .zury-paths__btn {
        max-width: 100%;
    }

    .zury-connect__float {
        width: 68px;
        padding: 10px 4px;
    }

    .zury-connect__float > span:last-child {
        font-size: 0.66rem;
    }
}

@media (max-width: 991px) {
    .zury-hero .zury-popular {
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }
}

/* Escala tipográfica unificada de inicio — escritorio */
@media (min-width: 992px) {
    /* Búsquedas populares: una sola fila en escritorio (como referencia) */
    .zury-hero .zury-hero__copy {
        max-width: 720px;
        overflow: visible;
    }

    .zury-hero .zury-popular {
        flex-wrap: nowrap;
        width: max-content;
        max-width: none;
        gap: 8px;
    }

    .zury-hero .zury-popular__form,
    .zury-hero .zury-popular__label,
    .zury-hero .zury-popular__tag {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .zury-page .zury-hero__badge {
        font-size: 15px;
    }

    .zury-page .zury-hero__title {
        font-size: clamp(3rem, 5vw, 4rem);
    }

    .zury-page .zury-hero__lead {
        font-size: 20px;
    }

    .zury-page .zury-search .ui-inputfield,
    .zury-page .zury-search input[type="text"],
    .zury-page .zury-search .form-control {
        font-size: 18px !important;
    }

    .zury-page .zury-popular__label {
        font-size: 16px;
    }

    .zury-page .zury-popular__tag {
        font-size: 15px;
    }

    .zury-page .zury-features__item p {
        font-size: 17px;
    }

    .zury-page .zury-paths__title {
        font-size: clamp(2.6rem, 3.6vw, 3.2rem);
    }

    .zury-page .zury-paths__head h3 {
        font-size: 34px;
    }

    .zury-page .zury-paths__item > p {
        font-size: 16px;
    }

    .zury-page .zury-paths__btn {
        font-size: 15px;
    }

    .zury-page .zury-connect__copy h2 {
        font-size: clamp(2.4rem, 3.2vw, 2.85rem);
    }

    .zury-page .zury-connect__copy p {
        font-size: 18px;
    }

    .zury-page .zury-about__title {
        font-size: 38px;
    }

    .zury-page .zury-cms__block h2 {
        font-size: 32px;
    }

    .zury-page .zury-cms__text h4 {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zury-hero__copy,
    .zury-search,
    .zury-features,
    .zury-detalle,
    .zury-split__media img {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   MÓVIL ONLY (≤767px): Hero ~110–115vh (imagen intacta + azul extendido)
   Populares fuera del primer viewport. Escritorio intacto.
   ========================================================= */
@media (max-width: 767px) {
    /* Pegar Hero al header: sin franja blanca superior */
    body {
        padding-top: 56px !important;
    }

    #menu,
    #header.navbar,
    #header .navbar-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .zury-page,
    .zury-page.container-fluid,
    #main.zury-page {
        margin-top: 0 !important;
        padding-top: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .zury-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .zury-hero {
        /* Contenedores transparentes: el flujo móvil queda
           softbox → populares → (features ocultas) → home-mid */
        display: contents;
        position: static;
        min-height: 0;
        height: auto;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        max-width: none;
        overflow: visible;
        background: transparent;
    }

    .zury-hero::before {
        display: none !important;
        content: none !important;
    }

    .zury-hero__layout {
        display: contents;
        width: 100%;
        max-width: none;
        margin: 0;
        flex: none;
        gap: 0;
        min-height: 0;
    }

    .zury-hero__copy {
        display: contents;
        width: 100%;
        max-width: none;
        gap: 0;
        animation: none;
    }

    /* Lead/badge ocultos; el título HTML se recupera abajo */
    .zury-hero__lead,
    .zury-hero__badge {
        display: none !important;
    }

    /*
     * Softbox: misma altura inmersiva (visual + extra).
     * Altura con svh (estable): no se recalcula al mostrar/ocultar
     * la barra del navegador móvil (evita salto interno al scroll).
     * Ancho: 100% de extremo a extremo (sin márgenes laterales).
     */
    .zury-hero__softbox {
        --zury-hero-visual: calc(100svh - 56px);
        --zury-hero-extra: clamp(80px, 10svh, 120px);
        display: block;
        position: relative;
        width: 100%;
        max-width: none;
        height: var(--zury-hero-visual);
        min-height: var(--zury-hero-visual);
        margin: 0 !important;
        padding: 0 0 var(--zury-hero-extra);
        border: 0;
        box-sizing: content-box;
        border-radius: 0;
        overflow: hidden;
        gap: 0;
        background-color: transparent;
        background-image: url('../../images/ImagenMovilHero-sin-buscador.jpeg?v=polish1');
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        background-origin: padding-box;
        background-clip: padding-box;
        background-attachment: scroll !important;
        box-shadow: none;
        transform: none;
        transition: none;
        animation: none;
    }

    .zury-hero__softbox,
    .zury-hero__layout,
    .zury-hero__copy {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Sin capa extra de fondo: evita la franja inferior independiente */
    .zury-hero__softbox::before {
        content: none !important;
        display: none !important;
    }

    /*
     * Radar móvil (restaurado): 3 anillos + glow + respiración.
     * Coordenadas left/top del Hero actual.
     */
    .zury-hero__radar {
        display: block;
        position: absolute;
        left: 24%;
        top: calc(49% + 2px);
        z-index: 2;
        width: clamp(118px, 34vw, 158px);
        height: clamp(118px, 34vw, 158px);
        margin: 0;
        padding: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        contain: layout style;
        transform-origin: center center;
        will-change: transform, filter;
        animation: zuryRadarBreathe 2.75s ease-in-out infinite;
    }

    .zury-hero__radar-glow,
    .zury-hero__radar-ring {
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        will-change: transform, opacity, filter;
        pointer-events: none;
    }

    .zury-hero__radar-glow {
        width: 30%;
        height: 30%;
        background: radial-gradient(
            circle,
            rgba(186, 230, 253, 0.55) 0%,
            rgba(125, 211, 252, 0.28) 40%,
            rgba(59, 130, 246, 0) 74%
        );
        animation: zuryRadarGlow 2.75s ease-in-out infinite;
    }

    .zury-hero__radar-ring {
        width: 100%;
        height: 100%;
        border: 1.25px solid rgba(186, 230, 253, 0.78);
        box-sizing: border-box;
        opacity: 0;
        filter: drop-shadow(0 0 3px rgba(125, 211, 252, 0.55));
        animation: zuryRadarRing 2.75s ease-in-out infinite;
    }

    .zury-hero__radar-ring--b {
        animation-delay: 0.6s;
    }

    .zury-hero__radar-ring--c {
        animation-delay: 1.2s;
    }

    @media (prefers-reduced-motion: reduce) {
        .zury-hero__radar,
        .zury-hero__radar-glow,
        .zury-hero__radar-ring {
            animation: none !important;
            filter: none;
        }

        .zury-hero__radar {
            transform: translate(-50%, -50%) scale(1);
        }

        .zury-hero__radar-glow {
            opacity: 0.3;
            transform: translate(-50%, -50%) scale(1);
        }

        .zury-hero__radar-ring {
            opacity: 0.28;
            transform: translate(-50%, -50%) scale(0.85);
        }

        .zury-hero__radar-ring--b,
        .zury-hero__radar-ring--c {
            opacity: 0;
        }
    }

    /*
     * Flecha anclada al Hero (softbox relative):
     * absolute, centrada, ~28px sobre el borde inferior (rango 24–36).
     */
    .zury-hero__softbox::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 28px;
        z-index: 4;
        width: 56px;
        height: 42px;
        margin: 0 auto;
        padding: 0;
        pointer-events: none;
        background-color: transparent;
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 26' fill='none' stroke='%23e8f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 3 12 9 18 3'/%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3Cpolyline points='6 15 12 21 18 15'/%3E%3C/svg%3E"),
            linear-gradient(90deg, transparent 0%, #3d9bff 32%, #8ec9ff 50%, #3d9bff 68%, transparent 100%);
        background-repeat: no-repeat, no-repeat;
        background-size: 20px 24px, 56px 3px;
        background-position: center 0, center 32px;
        border: none;
        box-shadow: none;
        animation: zuryHeroScrollHint 2.4s ease-in-out infinite;
        opacity: 0.95;
    }

    /*
     * Grupo título + buscador + texto.
     * Título anclado (misma posición visual); buscador + texto más cerca.
     */
    .zury-hero__ui {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(var(--zury-hero-visual) * 0.745 + 32px);
        bottom: auto;
        z-index: 3;
        width: 100%;
        margin: 0;
        padding: 0 5.5%;
        box-sizing: border-box;
        transform: none;
        transition: none;
        animation: none;
        will-change: auto;
    }

    /* La flecha ya no vive en el grupo UI */
    .zury-hero__ui::after {
        content: none !important;
        display: none !important;
    }

    @media (prefers-reduced-motion: reduce) {
        .zury-hero__softbox::after {
            animation: none !important;
            filter: drop-shadow(0 0 8px rgba(61, 155, 255, 0.4));
            opacity: 0.9;
            transform: none;
        }
    }

    .zury-hero__title {
        display: block !important;
        position: absolute;
        left: 5.5%;
        right: 5.5%;
        top: 0;
        z-index: 1;
        width: auto;
        margin: 0;
        padding: 0;
        text-align: center;
        font-family: var(--zury-font-display);
        font-size: clamp(1.7rem, 6.8vw, 2.05rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: #ffffff;
        text-shadow:
            0 1px 2px rgba(1, 12, 40, 0.55),
            0 2px 10px rgba(2, 20, 60, 0.5),
            0 4px 18px rgba(3, 25, 70, 0.35);
        pointer-events: none;
        transform: none;
    }

    .zury-hero__title br {
        display: none;
    }

    .zury-hero__title span {
        display: inline;
        background-image: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        color: #1639a6;
        -webkit-text-fill-color: #1639a6;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    }

    .zury-hero__stage {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        z-index: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        min-height: 0;
        max-height: none;
        height: auto;
        /* Título fijo arriba; buscador ~10px bajo el texto (rango 8–12), +~20px vs gap previo */
        margin: calc(clamp(1.7rem, 6.8vw, 2.05rem) * 0.72 + 10px) 0 0;
        padding: 0;
        box-sizing: border-box;
        border-radius: 0;
        overflow: visible;
        background: none;
        box-shadow: none;
        gap: 12px;
        transform: none;
        animation: none;
    }

    /* Formulario existente (JSF): estable respecto al Hero */
    .zury-search-form {
        position: relative;
        z-index: 3;
        width: 100%;
        margin: 0;
        transform: none;
    }

    .zury-hero__stage .zury-search,
    .zury-search {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 5px 5px 5px 18px;
        box-sizing: border-box;
        /* Fallback sin backdrop-filter */
        background: rgba(255, 255, 255, 0.94) !important;
        border: 1px solid rgba(255, 255, 255, 0.55) !important;
        border-radius: 999px !important;
        box-shadow:
            0 10px 28px rgba(0, 26, 90, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.70) !important;
        opacity: 1;
        animation: none !important;
        transform: none !important;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .zury-hero__stage .zury-search:focus-within,
    .zury-search:focus-within {
        transform: none !important;
    }

    .zury-hero__stage .zury-search__icon {
        opacity: 1;
        color: #9ca3af;
        font-size: 0.85rem;
        margin-right: 11px;
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .zury-hero__stage .zury-search .ui-inputfield,
    .zury-hero__stage .zury-search input[type="text"],
    .zury-hero__stage .zury-search .form-control {
        font-size: clamp(12.2px, 3.4vw, 14.1px) !important;
        height: 36px !important;
        line-height: 1.35 !important;
        min-width: 0 !important;
        padding: 0 14px 0 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: var(--zury-text) !important;
    }

    .zury-hero__stage .zury-search__btn,
    .zury-hero__stage .zury-search button,
    .zury-hero__stage .zury-search input[type="submit"] {
        opacity: 1;
        width: 37px !important;
        min-width: 37px !important;
        max-width: 37px !important;
        height: 37px !important;
        line-height: 37px !important;
        font-size: 0.89rem !important;
        background: var(--zury-blue) !important;
        color: #ffffff !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    @supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
        .zury-hero__stage .zury-search,
        .zury-search {
            background: rgba(255, 255, 255, 0.88) !important;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
    }

    /* Texto inferior bajo el buscador funcional */
    .zury-hero__tagline {
        display: block !important;
        position: relative;
        z-index: 3;
        margin: 0;
        padding: 0;
        text-align: center;
        white-space: nowrap;
        font-family: var(--zury-font-body);
        font-size: clamp(10px, 2.75vw, 12.5px);
        font-weight: 400;
        line-height: 1.3;
        color: #ffffff;
        background: none;
        border: none;
        box-shadow: none;
        letter-spacing: -0.01em;
    }

    .zury-hero__tagline strong {
        color: var(--zury-blue);
        font-weight: 700;
    }

    .zury-features {
        display: none !important;
    }

    .zury-popular {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: none;
        margin: 0;
        padding-top: 28px;
        padding-bottom: 8px;
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
        overflow: hidden;
        background: #ffffff;
    }

    .zury-popular__label {
        display: block;
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
        white-space: nowrap;
    }

    .zury-popular__track {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        padding-bottom: 2px;
    }

    .zury-popular__track::-webkit-scrollbar {
        display: none;
        height: 0;
    }

    .zury-popular__form {
        flex: 0 0 auto;
        margin: 0;
    }

    .zury-popular__tag {
        display: inline-block;
        white-space: nowrap;
        font-size: 15px;
        line-height: 1.35;
        padding: 8px 14px;
    }

    .zury-home-mid {
        padding-top: 72px;
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .zury-connect,
    .zury-about,
    .zury-cms {
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .zury-paths__title {
        font-size: 16px;
        line-height: 1.4;
        gap: 8px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .zury-paths__rule {
        flex: 0 1 28px;
        max-width: 36px;
    }

    .zury-paths__head h3 {
        font-size: clamp(24px, 6.2vw, 30px);
        line-height: 1.25;
        white-space: normal;
    }

    .zury-paths__item > p {
        font-size: clamp(17px, 4.4vw, 19px);
        line-height: 1.5;
        white-space: normal;
        width: auto;
        max-width: 100%;
    }

    .zury-paths__btn {
        font-size: 16px;
        line-height: 1.35;
        padding: 12px 20px;
        min-height: 48px;
    }

    .zury-paths__btn span {
        font-size: 16px;
    }

    .zury-connect__copy h2 {
        font-size: clamp(1.7rem, 6.5vw, 2rem);
        line-height: 1.25;
        text-align: center;
    }

    .zury-connect__copy {
        order: 1;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .zury-connect__visual {
        order: 2;
    }

    .zury-connect__copy p {
        font-size: clamp(17px, 4.4vw, 19px);
        line-height: 1.55;
        text-align: center;
    }

    .zury-connect__float > span:last-child {
        font-size: 15px;
        line-height: 1.2;
    }

    .zury-about__title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.25;
    }

    .zury-cms__block h2 {
        font-size: clamp(26px, 6.5vw, 32px);
        line-height: 1.3;
    }

    .zury-cms__text,
    .zury-cms__text p,
    .zury-cms__text h4 {
        font-size: clamp(17px, 4.4vw, 19px);
        line-height: 1.55;
    }

    .footer h3 {
        font-size: 18px;
        line-height: 1.35;
    }

    .footer ul,
    .footer a,
    .footer p,
    .footer__copyright p {
        font-size: 16px;
        line-height: 1.45;
    }
}

@media (max-width: 430px) {
    .zury-hero__softbox {
        background-position: center top;
        background-image: url('../../images/ImagenMovilHero-sin-buscador.jpeg?v=polish1');
        background-color: transparent;
    }

    .zury-hero__softbox::before {
        content: none !important;
        display: none !important;
    }

    .zury-hero__stage {
        gap: 12px;
    }
}

@media (max-width: 375px) {
    .zury-hero__title {
        font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    }

    .zury-hero__stage {
        gap: 12px;
    }

    .zury-hero__stage .zury-search {
        padding: 4px 5px 4px 16px;
    }

    .zury-hero__stage .zury-search .ui-inputfield,
    .zury-hero__stage .zury-search input[type="text"],
    .zury-hero__stage .zury-search .form-control {
        height: 34px !important;
        font-size: 12px !important;
    }

    .zury-hero__stage .zury-search__btn,
    .zury-hero__stage .zury-search button,
    .zury-hero__stage .zury-search input[type="submit"] {
        width: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 360px) {
    .zury-hero__tagline {
        font-size: 10px;
    }

    .zury-paths__title {
        font-size: 16px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .zury-connect__copy h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 320px) {
    .zury-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .zury-hero {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: none;
    }

    .zury-hero__softbox {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .zury-hero__title {
        font-size: clamp(1.45rem, 6.2vw, 1.75rem);
    }

    .zury-hero__ui {
        padding: 0 4%;
    }

    .zury-hero__tagline {
        font-size: 9.5px;
        letter-spacing: -0.02em;
    }

    .zury-popular {
        padding-left: max(20px, env(safe-area-inset-left, 0px));
        padding-right: max(20px, env(safe-area-inset-right, 0px));
    }

    .zury-popular__tag {
        font-size: 14px;
        padding: 7px 12px;
    }
}

/* Tablet (no escritorio): tipografía intro + márgenes tipo Apple */
@media (min-width: 768px) and (max-width: 1024px) {
    .zury-page {
        padding-left: max(28px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(28px, env(safe-area-inset-right, 0px)) !important;
        box-sizing: border-box;
    }

    .zury-hero__badge {
        order: 1;
        font-size: 10px;
        line-height: 1.25;
        letter-spacing: 0.05em;
        padding: 5px 10px;
    }

    .zury-hero__badge .fa {
        font-size: 10px;
    }

    .zury-connect__copy h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.15rem);
        line-height: 1.25;
    }

    .zury-hero__lead {
        order: 2;
        font-size: 12px;
        line-height: 1.45;
        text-align: center;
        color: #4b5563;
        margin: 0 0 54px;
        max-width: 100%;
    }

    .zury-hero__title {
        order: 3;
        text-align: left;
        white-space: nowrap;
        line-height: 1.2;
    }

    .zury-hero__title br {
        display: none;
    }

    .zury-search-form {
        order: 4;
    }

    .zury-popular {
        order: 5;
    }
}

