.fh-search-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.08);
}

.fh-search-field {
    min-width: 0;
}

.fh-search-field label {
    display: block;
    margin-bottom: 7px;
    color: #293448;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.fh-search-form select,
.fh-search-form input[type="number"] {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 14px;
    color: #293448;
    background-color: #ffffff;
    border: 1px solid #d9dee5;
    border-radius: 9px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-search-form select {
    padding-right: 42px;
    cursor: pointer;
}

.fh-search-form input[type="number"]::placeholder {
    color: #929baa;
    opacity: 1;
}

.fh-search-form select:hover,
.fh-search-form input[type="number"]:hover {
    border-color: #bdc5cf;
}

.fh-search-form select:focus,
.fh-search-form input[type="number"]:focus {
    border-color: #d99b2b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 155, 43, 0.16);
}

.fh-search-actions {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding-top: 23px;
}

.fh-search-form button {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 11px 18px;
    color: #ffffff;
    background: #d99b2b;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.fh-search-form button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.fh-search-form button:hover,
.fh-search-form button:focus {
    color: #ffffff;
    background: #b87913;
}

.fh-search-form button:active {
    transform: translateY(1px);
}

.fh-search-clear {
    color: #697386;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.fh-search-clear:hover,
.fh-search-clear:focus {
    color: #b87913;
    text-decoration: underline;
}

.fh-search-advanced {
    min-width: 0;
    grid-column: 1 / -1;
    margin-top: 2px;
}

.fh-search-advanced-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px;
    color: #a96e10;
    background: #fffaf1;
    border: 1px solid #efd8ac;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    list-style: none;
    user-select: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.fh-search-advanced-toggle::-webkit-details-marker {
    display: none;
}

.fh-search-advanced-toggle:hover,
.fh-search-advanced-toggle:focus {
    color: #8e5907;
    background: #fff4df;
    border-color: #dda94e;
    outline: none;
}

.fh-search-advanced-toggle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-search-less-label {
    display: none;
}

.fh-search-advanced[open] .fh-search-more-label {
    display: none;
}

.fh-search-advanced[open] .fh-search-less-label {
    display: inline;
}

.fh-search-advanced[open] .fh-search-advanced-toggle svg {
    transform: rotate(180deg);
}

.fh-search-advanced-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
}

.fh-properties {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 40px 0;
}

.fh-properties .fh-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fh-properties .fh-card:hover {
    transform: translateY(-5px);
    border-color: #d9dde3;
    box-shadow: 0 18px 40px rgba(18, 31, 53, 0.13);
}

.fh-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #edf1f5;
}

.fh-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.fh-card-image .fh-card-image-element {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.fh-card:hover .fh-card-image-element {
    transform: scale(1.045);
}

.fh-card-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #eef2f6, #dfe5eb);
}

.fh-card-image-placeholder svg {
    width: 62px;
    height: 62px;
    fill: #aeb8c4;
}

.fh-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 12px;
    color: #ffffff;
    background: #d99b2b;
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.fh-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.fh-card-price {
    display: flex;
    min-height: 38px;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 8px;
    color: #172033;
}

.fh-card-price-prefix {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.fh-card-price-value {
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.fh-card-price-consult {
    font-size: 22px;
}

.fh-card-title {
    display: -webkit-box;
    min-height: 54px;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.fh-card-title a {
    color: #202a3b;
    text-decoration: none;
}

.fh-card-title a:hover {
    color: #b87913;
}

.fh-card-location {
    display: flex;
    min-height: 24px;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #697386;
    font-size: 14px;
    line-height: 1.4;
}

.fh-card-location svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: #d99b2b;
}

.fh-card-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid #edf0f3;
    border-bottom: 1px solid #edf0f3;
}

.fh-card-feature {
    display: grid;
    min-width: 0;
    grid-template-columns: 18px minmax(0, auto);
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    padding: 0 7px;
    border-right: 1px solid #edf0f3;
    text-align: center;
}

.fh-card-feature:last-child {
    border-right: none;
}

.fh-card-feature svg {
    width: 18px;
    height: 18px;
    fill: #727d8d;
}

.fh-card-feature-value {
    overflow: hidden;
    color: #293448;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-card-feature-label {
    grid-column: 1 / -1;
    margin-top: 5px;
    overflow: hidden;
    color: #7a8493;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-card-button {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding: 12px 18px;
    color: #ffffff;
    background: #d99b2b;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fh-card-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-card-button:hover,
.fh-card-button:focus {
    color: #ffffff;
    background: #b87913;
    text-decoration: none;
}

.fh-card-button:hover svg,
.fh-card-button:focus svg {
    transform: translateX(3px);
}
.fh-pagination {
    display: flex;
    justify-content: center;
    margin: 44px 0 20px;
}

.fh-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-pagination li {
    margin: 0;
    padding: 0;
}

.fh-pagination a,
.fh-pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    color: #293448;
    background: #ffffff;
    border: 1px solid #dfe4ea;
    border-radius: 9px;
    box-shadow: 0 4px 14px rgba(18, 31, 53, 0.06);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.fh-pagination a:hover,
.fh-pagination a:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-pagination .current {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
}

.fh-pagination .dots {
    min-width: 32px;
    padding-right: 6px;
    padding-left: 6px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.fh-properties-empty {
    margin: 40px 0;
    padding: 42px 24px;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.07);
    text-align: center;
}

.fh-properties-empty h3 {
    margin: 0 0 9px;
    color: #202a3b;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.fh-properties-empty p {
    margin: 0;
    color: #697386;
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .fh-properties {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .fh-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh-search-advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fh-search-form {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
    }

    .fh-search-actions {
        padding-top: 0;
    }

    .fh-search-advanced-toggle {
        width: 100%;
    }

    .fh-search-advanced-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 15px;
    }

    .fh-properties {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        margin: 28px 0;
    }

    .fh-card-image {
        height: 225px;
    }

    .fh-card-body {
        padding: 19px;
    }
    .fh-pagination {
    margin-top: 32px;
}

.fh-pagination ul {
    gap: 6px;
}

.fh-pagination a,
.fh-pagination span {
    min-width: 40px;
    min-height: 40px;
    padding: 8px 11px;
    font-size: 13px;
}

.fh-properties-empty {
    margin: 28px 0;
    padding: 32px 18px;
}
}

@media (max-width: 390px) {
    .fh-card-image {
        height: 205px;
    }

    .fh-card-feature {
        padding: 0 4px;
    }

    .fh-card-feature-label {
        font-size: 9px;
    }
}
.fh-properties-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    margin: 0 0 28px;
    padding: 42px 46px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(217, 155, 43, 0.22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202d43 58%,
            #26374f 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(18, 31, 53, 0.18);
}

.fh-properties-header::before {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-properties-header::after {
    position: absolute;
    right: 90px;
    bottom: -125px;
    width: 220px;
    height: 220px;
    background: rgba(217, 155, 43, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-properties-header-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.fh-properties-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #f2bd59;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-properties-header-eyebrow::before {
    width: 30px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-properties-header-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.fh-properties-header-description {
    max-width: 680px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.fh-properties-header-decoration {
    position: relative;
    z-index: 2;
    display: flex;
    width: 112px;
    height: 112px;
    flex: 0 0 112px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 32px rgba(0, 0, 0, 0.14);
    transform: rotate(3deg);
}

.fh-properties-header-decoration svg {
    width: 58px;
    height: 58px;
    fill: #e8ad3f;
    transform: rotate(-3deg);
}

@media (max-width: 720px) {
    .fh-properties-header {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .fh-properties-header-title {
        font-size: clamp(31px, 9vw, 42px);
    }

    .fh-properties-header-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .fh-properties-header-decoration {
        display: none;
    }
}

@media (max-width: 390px) {
    .fh-properties-header {
        padding: 27px 20px;
    }

    .fh-properties-header-title {
        font-size: 30px;
    }
}
/* =========================================================
   Ficha individual premium de propiedad
   ========================================================= */

.fh-single-property {
    padding: 42px 0 72px;
    color: #202a3b;
    background: #f5f7fa;
}

.fh-single-property *,
.fh-single-property *::before,
.fh-single-property *::after {
    box-sizing: border-box;
}

.fh-single-property-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.fh-single-property-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #7a8493;
    font-size: 13px;
    line-height: 1.5;
}

.fh-single-property-breadcrumb a {
    color: #566174;
    font-weight: 600;
    text-decoration: none;
}

.fh-single-property-breadcrumb a:hover,
.fh-single-property-breadcrumb a:focus {
    color: #b87913;
    text-decoration: none;
}

.fh-single-property-breadcrumb span[aria-current="page"] {
    max-width: 520px;
    overflow: hidden;
    color: #929baa;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-single-property-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: end;
    margin-bottom: 28px;
}

.fh-single-property-heading {
    min-width: 0;
}

.fh-single-property-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
}

.fh-single-property-badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    color: #ffffff;
    background: #d99b2b;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
}

.fh-single-property-badge--secondary {
    color: #344054;
    background: #e8edf3;
}

.fh-single-property-title {
    max-width: 850px;
    margin: 0;
    color: #172033;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.fh-single-property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #697386;
    font-size: 15px;
    line-height: 1.5;
}

.fh-single-property-location svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: #d99b2b;
}

.fh-single-property-price-box {
    min-width: 250px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.08);
    text-align: right;
}

.fh-single-property-price-label {
    display: block;
    margin-bottom: 5px;
    color: #7a8493;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fh-single-property-price {
    display: block;
    color: #172033;
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.fh-single-property-gallery {
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    background: #dfe5eb;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(18, 31, 53, 0.14);
}

.fh-single-property-gallery--single {
    grid-template-columns: minmax(0, 1fr);
}

.fh-single-property-gallery-main {
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
}

.fh-single-property-gallery-main > a {
    display: block;
    width: 100%;
    height: 100%;
}

.fh-single-property-main-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.fh-single-property-gallery-main:hover
.fh-single-property-main-image {
    transform: scale(1.025);
}

.fh-single-property-gallery-side {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fh-single-property-gallery-item {
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #dfe5eb;
}

.fh-single-property-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.fh-single-property-gallery-item:hover img,
.fh-single-property-gallery-item:focus img {
    transform: scale(1.045);
}

.fh-single-property-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #8490a1;
    background:
        linear-gradient(
            145deg,
            #edf1f5,
            #dce3ea
        );
    font-size: 14px;
    font-weight: 700;
}

.fh-single-property-image-placeholder svg {
    width: 72px;
    height: 72px;
    fill: #a8b3c0;
}

.fh-single-property-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.07);
}

.fh-single-property-highlight {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 20px 22px;
    border-right: 1px solid #e8ecf1;
}

.fh-single-property-highlight:last-child {
    border-right: none;
}

.fh-single-property-highlight-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff7e8;
    border-radius: 12px;
}

.fh-single-property-highlight-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fh-single-property-highlight-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.fh-single-property-highlight-content strong {
    overflow: hidden;
    color: #202a3b;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-single-property-highlight-content span {
    overflow: hidden;
    color: #7a8493;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-single-property-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.fh-single-property-main-content {
    display: grid;
    min-width: 0;
    gap: 24px;
}

.fh-single-property-section {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(18, 31, 53, 0.06);
}

.fh-single-property-section-heading {
    margin-bottom: 22px;
}

.fh-single-property-section-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #b87913;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fh-single-property-section-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(24px, 2.5vw, 31px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.fh-single-property-description {
    color: #566174;
    font-size: 16px;
    line-height: 1.8;
}

.fh-single-property-description > :first-child {
    margin-top: 0;
}

.fh-single-property-description > :last-child {
    margin-bottom: 0;
}

.fh-single-property-description p {
    margin-bottom: 18px;
}

.fh-single-property-description ul,
.fh-single-property-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.fh-single-property-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    overflow: hidden;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
}

.fh-single-property-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-right: 1px solid #e7ebf0;
    border-bottom: 1px solid #e7ebf0;
}

.fh-single-property-detail:nth-child(2n) {
    border-right: none;
}

.fh-single-property-detail:nth-last-child(-n + 2) {
    border-bottom: none;
}

.fh-single-property-detail dt {
    color: #697386;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.fh-single-property-detail dd {
    margin: 0;
    color: #202a3b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-align: right;
}

.fh-single-property-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-single-property-features li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    color: #465266;
    background: #f7f9fb;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.fh-single-property-features li svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: #d99b2b;
}

.fh-single-property-sidebar {
    min-width: 0;
}

.fh-single-property-contact-card {
    position: sticky;
    top: 28px;
    padding: 28px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 4%,
            rgba(217, 155, 43, 0.22),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #172033,
            #223149
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(18, 31, 53, 0.18);
}

.fh-single-property-contact-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #efb94f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fh-single-property-contact-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.fh-single-property-contact-card > p {
    margin: 15px 0 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.fh-single-property-contact-button,
.fh-single-property-secondary-button,
.fh-single-property-back {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.fh-single-property-contact-button {
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
}

.fh-single-property-contact-button svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.fh-single-property-contact-button:hover,
.fh-single-property-contact-button:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-single-property-secondary-button {
    margin-top: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fh-single-property-secondary-button:hover,
.fh-single-property-secondary-button:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.fh-single-property-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1.5;
}

.fh-single-property-contact-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 1px;
    fill: #efb94f;
}

.fh-single-property-empty {
    max-width: 720px;
    margin: 60px auto;
    padding: 48px 30px;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(18, 31, 53, 0.1);
    text-align: center;
}

.fh-single-property-empty h1 {
    margin: 0 0 12px;
    color: #202a3b;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.fh-single-property-empty p {
    margin: 0 0 24px;
    color: #697386;
    font-size: 15px;
    line-height: 1.7;
}

.fh-single-property-empty .fh-single-property-back {
    width: auto;
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
}

.fh-single-property-empty .fh-single-property-back:hover,
.fh-single-property-empty .fh-single-property-back:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    text-decoration: none;
}

@media (max-width: 1050px) {
    .fh-single-property-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .fh-single-property-gallery {
        min-height: 440px;
        grid-template-columns: minmax(0, 1.7fr) minmax(250px, 1fr);
    }

    .fh-single-property-gallery-main,
    .fh-single-property-main-image,
    .fh-single-property-image-placeholder {
        min-height: 440px;
    }

    .fh-single-property-highlight {
        padding: 18px 16px;
    }
}

@media (max-width: 860px) {
    .fh-single-property-header {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .fh-single-property-price-box {
        min-width: 0;
        text-align: left;
    }

    .fh-single-property-gallery {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-single-property-gallery-main,
    .fh-single-property-main-image,
    .fh-single-property-image-placeholder {
        min-height: 430px;
    }

    .fh-single-property-gallery-side {
        min-height: 220px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1fr);
    }

    .fh-single-property-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh-single-property-highlight {
        border-right: 1px solid #e8ecf1;
        border-bottom: 1px solid #e8ecf1;
    }

    .fh-single-property-highlight:nth-child(2n) {
        border-right: none;
    }

    .fh-single-property-highlight:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .fh-single-property-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-single-property-contact-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .fh-single-property {
        padding: 26px 0 48px;
    }

    .fh-single-property-container {
        width: min(100% - 24px, 1240px);
    }

    .fh-single-property-breadcrumb span[aria-current="page"] {
        display: none;
    }

    .fh-single-property-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .fh-single-property-gallery {
        gap: 8px;
        border-radius: 16px;
    }

    .fh-single-property-gallery-main,
    .fh-single-property-main-image,
    .fh-single-property-image-placeholder {
        min-height: 320px;
    }

    .fh-single-property-gallery-side {
        min-height: 150px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .fh-single-property-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-single-property-highlight,
    .fh-single-property-highlight:nth-child(2n),
    .fh-single-property-highlight:nth-last-child(-n + 2) {
        border-right: none;
        border-bottom: 1px solid #e8ecf1;
    }

    .fh-single-property-highlight:last-child {
        border-bottom: none;
    }

    .fh-single-property-section {
        padding: 23px 19px;
        border-radius: 15px;
    }

    .fh-single-property-details {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-single-property-detail,
    .fh-single-property-detail:nth-child(2n),
    .fh-single-property-detail:nth-last-child(-n + 2) {
        border-right: none;
        border-bottom: 1px solid #e7ebf0;
    }

    .fh-single-property-detail:last-child {
        border-bottom: none;
    }

    .fh-single-property-features {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-single-property-contact-card {
        padding: 24px 20px;
    }
}

@media (max-width: 390px) {
    .fh-single-property-container {
        width: min(100% - 18px, 1240px);
    }

    .fh-single-property-gallery-main,
    .fh-single-property-main-image,
    .fh-single-property-image-placeholder {
        min-height: 270px;
    }

    .fh-single-property-price-box {
        padding: 17px 18px;
    }

    .fh-single-property-detail {
        grid-template-columns: minmax(0, 1fr);
        gap: 5px;
    }

    .fh-single-property-detail dd {
        text-align: left;
    }
}
/* =========================================================
   Propiedades destacadas en Inicio
   ========================================================= */

.fh-home-properties-section {
    position: relative;
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 64px auto;
    padding: 58px 46px 64px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 94% 4%,
            rgba(217, 155, 43, 0.11),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #f8fafc 0%,
            #f3f6f9 100%
        );
    border: 1px solid #e5eaf0;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(18, 31, 53, 0.08);
}

.fh-home-properties-section::before {
    position: absolute;
    top: -130px;
    right: -110px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(217, 155, 43, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-home-properties-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.fh-home-properties-heading-content {
    max-width: 720px;
}

.fh-home-properties-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #b87913;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-home-properties-eyebrow::before {
    width: 30px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-home-properties-title {
    margin: 0;
    color: #172033;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.fh-home-properties-description {
    max-width: 650px;
    margin: 16px 0 0;
    color: #697386;
    font-size: 16px;
    line-height: 1.7;
}

.fh-home-properties-view-all,
.fh-home-properties-mobile-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    color: #293448;
    background: #ffffff;
    border: 1px solid #dce2e9;
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(18, 31, 53, 0.07);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-home-properties-view-all {
    flex: 0 0 auto;
}

.fh-home-properties-view-all svg,
.fh-home-properties-mobile-button svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-home-properties-view-all:hover,
.fh-home-properties-view-all:focus,
.fh-home-properties-mobile-button:hover,
.fh-home-properties-mobile-button:focus {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.2);
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-home-properties-view-all:hover svg,
.fh-home-properties-view-all:focus svg,
.fh-home-properties-mobile-button:hover svg,
.fh-home-properties-mobile-button:focus svg {
    transform: translateX(3px);
}

.fh-home-properties-grid {
    position: relative;
    z-index: 2;
    margin: 35px 0 0;
}

.fh-home-properties-footer {
    display: none;
    margin-top: 28px;
    text-align: center;
}

.fh-home-properties-mobile-button {
    width: 100%;
}

@media (max-width: 900px) {
    .fh-home-properties-section {
        padding: 48px 32px 54px;
    }

    .fh-home-properties-heading {
        align-items: flex-start;
    }

    .fh-home-properties-view-all {
        display: none;
    }

    .fh-home-properties-footer {
        display: block;
    }
}

@media (max-width: 720px) {
  .fh-home-properties-section {
    width: calc(100% - 24px);
    margin: 38px auto;
    padding: 38px 20px 42px;
    border-radius: 18px;
}

    .fh-home-properties-heading {
        display: block;
    }

    .fh-home-properties-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .fh-home-properties-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .fh-home-properties-grid {
        margin-top: 28px;
    }

    .fh-home-properties-footer {
        margin-top: 22px;
    }
}

@media (max-width: 390px) {
    .fh-home-properties-section {
        padding: 32px 16px 36px;
    }

    .fh-home-properties-title {
        font-size: 29px;
    }
}
/* =========================================================
   Sección de confianza y servicios en Inicio
   ========================================================= */

.fh-home-services {
    position: relative;
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto 64px;
    padding: 62px 46px 48px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(217, 155, 43, 0.1),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #172033 0%,
            #202e44 58%,
            #26384f 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(18, 31, 53, 0.18);
}

.fh-home-services::before {
    position: absolute;
    top: -120px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-home-services::after {
    position: absolute;
    right: 170px;
    bottom: -170px;
    width: 280px;
    height: 280px;
    background: rgba(217, 155, 43, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-home-services-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.fh-home-services-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #efb94f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-home-services-eyebrow::before,
.fh-home-services-eyebrow::after {
    width: 28px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-home-services-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.fh-home-services-description {
    max-width: 680px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
}

.fh-home-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fh-home-service-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 34px rgba(0, 0, 0, 0.11);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.fh-home-service-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    background: rgba(217, 155, 43, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-home-service-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(239, 185, 79, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 20px 42px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
}

.fh-home-service-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #efb94f;
    background: rgba(217, 155, 43, 0.12);
    border: 1px solid rgba(239, 185, 79, 0.2);
    border-radius: 15px;
}

.fh-home-service-icon svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.fh-home-service-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.fh-home-service-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.fh-home-services-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 28px;
    padding: 25px 28px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
}

.fh-home-services-cta-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.fh-home-services-cta-content span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.fh-home-services-cta-content strong {
    color: #ffffff;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.fh-home-services-cta-button {
    display: inline-flex;
    min-width: 220px;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.22);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-home-services-cta-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
}

.fh-home-services-cta-button:hover,
.fh-home-services-cta-button:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 13px 28px rgba(184, 121, 19, 0.3);
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .fh-home-services {
        padding: 52px 32px 40px;
    }

    .fh-home-services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-home-service-card {
        padding: 25px;
    }

    .fh-home-services-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .fh-home-services-cta-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .fh-home-services {
        width: calc(100% - 24px);
        margin-bottom: 38px;
        padding: 40px 20px 26px;
        border-radius: 18px;
    }

    .fh-home-services-heading {
        margin-bottom: 30px;
    }

    .fh-home-services-eyebrow::before,
    .fh-home-services-eyebrow::after {
        width: 20px;
    }

    .fh-home-services-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .fh-home-services-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .fh-home-services-grid {
        gap: 14px;
    }

    .fh-home-service-card {
        padding: 23px 20px;
        border-radius: 15px;
    }

    .fh-home-service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

    .fh-home-service-icon svg {
        width: 26px;
        height: 26px;
    }

    .fh-home-services-cta {
        margin-top: 18px;
        padding: 22px 19px;
    }
}

@media (max-width: 390px) {
    .fh-home-services {
        width: calc(100% - 18px);
        padding: 35px 16px 22px;
    }

    .fh-home-services-title {
        font-size: 29px;
    }

    .fh-home-service-card h3 {
        font-size: 19px;
    }
}
/* =========================================================
   Footer global de Full Home Inmobiliaria
   ========================================================= */

.fh-site-footer {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(217, 155, 43, 0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #131c2c 0%,
            #1b293e 58%,
            #22344c 100%
        );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fh-site-footer::before {
    position: absolute;
    top: -170px;
    right: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-site-footer::after {
    position: absolute;
    right: 18%;
    bottom: -210px;
    width: 330px;
    height: 330px;
    background: rgba(217, 155, 43, 0.05);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-site-footer *,
.fh-site-footer *::before,
.fh-site-footer *::after {
    box-sizing: border-box;
}

.fh-site-footer-container {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0 0;
}

.fh-site-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.45fr)
        minmax(150px, 0.7fr)
        minmax(210px, 0.9fr)
        minmax(230px, 1fr);
    gap: 42px;
    padding-bottom: 48px;
}

.fh-site-footer-brand,
.fh-site-footer-column {
    min-width: 0;
}

.fh-site-footer-logo {
    display: inline-flex;
    max-width: 230px;
    align-items: center;
    text-decoration: none;
}

.fh-site-footer-logo:hover,
.fh-site-footer-logo:focus {
    text-decoration: none;
}

.fh-site-footer-logo-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 210px;
    max-height: 92px;
    object-fit: contain;
}

.fh-site-footer-logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.fh-site-footer-description {
    max-width: 390px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
}

.fh-site-footer-heading {
    position: relative;
    margin: 0 0 23px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.fh-site-footer-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-site-footer-links,
.fh-site-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-site-footer-links {
    display: grid;
    gap: 13px;
}

.fh-site-footer-links li {
    margin: 0;
    padding: 0;
}

.fh-site-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.fh-site-footer-links a::before {
    width: 6px;
    height: 6px;
    background: #d99b2b;
    border-radius: 50%;
    content: "";
}

.fh-site-footer-links a:hover,
.fh-site-footer-links a:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

.fh-site-footer-contact-list {
    display: grid;
    gap: 15px;
}

.fh-site-footer-contact-list li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    margin: 0;
    padding: 0;
}

.fh-site-footer-contact-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(217, 155, 43, 0.11);
    border: 1px solid rgba(239, 185, 79, 0.18);
    border-radius: 10px;
}

.fh-site-footer-contact-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.fh-site-footer-contact-list a {
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.fh-site-footer-contact-list a:hover,
.fh-site-footer-contact-list a:focus {
    color: #ffffff;
    text-decoration: none;
}

.fh-site-footer-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.7;
}

.fh-site-footer-contact-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 11px 17px;
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.2);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-site-footer-contact-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-site-footer-contact-button:hover,
.fh-site-footer-contact-button:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 13px 28px rgba(184, 121, 19, 0.28);
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-site-footer-contact-button:hover svg,
.fh-site-footer-contact-button:focus svg {
    transform: translateX(3px);
}

.fh-site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.53);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    line-height: 1.5;
}

.fh-site-footer-bottom p {
    margin: 0;
}

.fh-site-footer-bottom-brand {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

/*
 * El footer original de Kadence se ocultará cuando activemos
 * el footer propio del plugin.
 */
body.fh-custom-footer-active #colophon,
body.fh-custom-footer-active .site-footer {
    display: none;
}

@media (max-width: 1050px) {
    .fh-site-footer-grid {
        grid-template-columns:
            minmax(260px, 1.4fr)
            repeat(2, minmax(180px, 1fr));
    }

    .fh-site-footer-grid > :last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 760px) {
    .fh-site-footer-container {
        width: calc(100% - 32px);
        padding-top: 48px;
    }

    .fh-site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
        padding-bottom: 38px;
    }

    .fh-site-footer-brand {
        grid-column: 1 / -1;
    }

    .fh-site-footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .fh-site-footer-container {
        width: calc(100% - 24px);
        padding-top: 40px;
    }

    .fh-site-footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 31px;
    }

    .fh-site-footer-brand,
    .fh-site-footer-grid > :last-child {
        grid-column: auto;
    }

    .fh-site-footer-logo-image {
        max-width: 185px;
        max-height: 82px;
    }

    .fh-site-footer-description {
        margin-top: 18px;
    }

    .fh-site-footer-heading {
        margin-bottom: 18px;
    }

    .fh-site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        padding: 19px 0;
    }
}
/* =========================================================
   Página profesional de Contacto
   ========================================================= */

.fh-contact-page {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 48px auto 72px;
    color: #202a3b;
}

.fh-contact-page *,
.fh-contact-page *::before,
.fh-contact-page *::after {
    box-sizing: border-box;
}

.fh-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    margin-bottom: 28px;
    padding: 48px 50px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(217, 155, 43, 0.23),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 58%,
            #283a53 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(18, 31, 53, 0.18);
}

.fh-contact-hero::before {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-contact-hero::after {
    position: absolute;
    right: 115px;
    bottom: -145px;
    width: 250px;
    height: 250px;
    background: rgba(217, 155, 43, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.fh-contact-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #efb94f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-contact-hero-eyebrow::before {
    width: 30px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-contact-hero-title {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(35px, 4.2vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.fh-contact-hero-description {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 16px;
    line-height: 1.75;
}

.fh-contact-hero-decoration {
    position: relative;
    z-index: 2;
    display: flex;
    width: 116px;
    height: 116px;
    flex: 0 0 116px;
    align-items: center;
    justify-content: center;
    color: #e8ad3f;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 29px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 15px 34px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.fh-contact-hero-decoration svg {
    width: 60px;
    height: 60px;
    fill: currentColor;
    transform: rotate(-3deg);
}

.fh-contact-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid;
    border-radius: 14px;
    box-shadow: 0 9px 24px rgba(18, 31, 53, 0.07);
}

.fh-contact-notice svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 1px;
    fill: currentColor;
}

.fh-contact-notice > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.fh-contact-notice strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.fh-contact-notice span {
    font-size: 13px;
    line-height: 1.55;
}

.fh-contact-notice--success {
    color: #24764b;
    background: #f0faf5;
    border-color: #bde5ce;
}

.fh-contact-notice--error {
    color: #a13c3c;
    background: #fff4f4;
    border-color: #efc4c4;
}

.fh-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.fh-contact-information,
.fh-contact-form-card {
    min-width: 0;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(18, 31, 53, 0.08);
}

.fh-contact-information {
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(217, 155, 43, 0.09),
            transparent 27%
        ),
        #ffffff;
}

.fh-contact-section-heading,
.fh-contact-form-heading {
    margin-bottom: 25px;
}

.fh-contact-section-heading > span,
.fh-contact-form-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #b87913;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-contact-section-heading h2,
.fh-contact-form-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.fh-contact-section-heading p,
.fh-contact-form-heading p {
    margin: 13px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.fh-contact-methods {
    display: grid;
    gap: 13px;
}

.fh-contact-method {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 22px;
    gap: 13px;
    align-items: center;
    min-width: 0;
    padding: 15px 16px;
    color: #293448;
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 13px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-contact-method:hover,
.fh-contact-method:focus {
    color: #293448;
    background: #ffffff;
    border-color: #dfbd78;
    box-shadow: 0 10px 24px rgba(18, 31, 53, 0.09);
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-contact-method-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff5e2;
    border: 1px solid #efd8ac;
    border-radius: 12px;
}

.fh-contact-method-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.fh-contact-method-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.fh-contact-method-content small {
    color: #7a8493;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fh-contact-method-content strong {
    overflow: hidden;
    color: #293448;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-contact-method-arrow {
    width: 21px;
    height: 21px;
    fill: #9aa4b2;
    transition:
        fill 0.2s ease,
        transform 0.2s ease;
}

.fh-contact-method:hover .fh-contact-method-arrow,
.fh-contact-method:focus .fh-contact-method-arrow {
    fill: #b87913;
    transform: translateX(3px);
}

.fh-contact-assurance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 18px;
    color: #566174;
    background: #f6f9fb;
    border: 1px solid #e4e9ef;
    border-radius: 13px;
}

.fh-contact-assurance > svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    fill: #d99b2b;
}

.fh-contact-assurance > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.fh-contact-assurance strong {
    color: #293448;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.fh-contact-assurance span {
    color: #697386;
    font-size: 12px;
    line-height: 1.6;
}

.fh-contact-form {
    display: grid;
    gap: 17px;
}

.fh-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fh-contact-field {
    min-width: 0;
}

.fh-contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.fh-contact-field input,
.fh-contact-field select,
.fh-contact-field textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    color: #293448;
    background: #ffffff;
    border: 1px solid #d9dfe6;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-contact-field input,
.fh-contact-field select {
    height: 52px;
    padding: 0 14px;
}

.fh-contact-field select {
    padding-right: 42px;
    cursor: pointer;
}

.fh-contact-field textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.fh-contact-field textarea::placeholder {
    color: #929baa;
    opacity: 1;
}

.fh-contact-field input:hover,
.fh-contact-field select:hover,
.fh-contact-field textarea:hover {
    border-color: #bdc5cf;
}

.fh-contact-field input:focus,
.fh-contact-field select:focus,
.fh-contact-field textarea:focus {
    border-color: #d99b2b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 155, 43, 0.16);
}

.fh-contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.fh-contact-submit {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 2px 0 0;
    padding: 12px 20px;
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.21);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-contact-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.fh-contact-submit:hover,
.fh-contact-submit:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 13px 29px rgba(184, 121, 19, 0.29);
    outline: none;
    transform: translateY(-1px);
}

.fh-contact-submit:active {
    transform: translateY(0);
}

.fh-contact-form-note {
    margin: -2px 0 0;
    color: #7a8493;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 900px) {
    .fh-contact-page {
        margin-top: 38px;
    }

    .fh-contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-contact-information,
    .fh-contact-form-card {
        padding: 29px;
    }
}

@media (max-width: 720px) {
    .fh-contact-page {
        width: calc(100% - 24px);
        margin: 28px auto 46px;
    }

    .fh-contact-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 34px 24px;
        border-radius: 18px;
    }

    .fh-contact-hero-title {
        font-size: clamp(31px, 9vw, 42px);
    }

    .fh-contact-hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .fh-contact-hero-decoration {
        display: none;
    }

    .fh-contact-information,
    .fh-contact-form-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .fh-contact-form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .fh-contact-method {
        grid-template-columns: 44px minmax(0, 1fr) 20px;
        gap: 11px;
        padding: 14px;
    }

    .fh-contact-method-icon {
        width: 44px;
        height: 44px;
    }

    .fh-contact-method-icon svg {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 390px) {
    .fh-contact-page {
        width: calc(100% - 18px);
        margin-top: 22px;
    }

    .fh-contact-hero {
        padding: 29px 20px;
    }

    .fh-contact-hero-title {
        font-size: 30px;
    }

    .fh-contact-information,
    .fh-contact-form-card {
        padding: 21px 16px;
    }

    .fh-contact-method {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .fh-contact-method-arrow {
        display: none;
    }

    .fh-contact-method-content strong {
        white-space: normal;
        word-break: break-word;
    }

    .fh-contact-assurance {
        padding: 15px;
    }
}
/* Evitar que el correo del footer se divida en escritorio */
@media (min-width: 901px) {
    .fh-site-footer-contact-list a[href^="mailto:"] {
        font-size: 12px;
        letter-spacing: -0.02em;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }
}

/* Permitir adaptación controlada en pantallas pequeñas */
@media (max-width: 900px) {
    .fh-site-footer-contact-list a[href^="mailto:"] {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
/* =========================================================
   Organización profesional de propiedades
   ========================================================= */

.fh-properties-navigation {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto 28px;
    padding: 30px;
    color: #202a3b;
    background:
        radial-gradient(
            circle at 95% 8%,
            rgba(217, 155, 43, 0.1),
            transparent 28%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(18, 31, 53, 0.08);
}

.fh-properties-navigation *,
.fh-properties-navigation *::before,
.fh-properties-navigation *::after {
    box-sizing: border-box;
}

.fh-properties-navigation-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 30px;
    align-items: end;
    margin-bottom: 27px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8ecf1;
}

.fh-properties-navigation-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #b87913;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-properties-navigation-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.fh-properties-navigation-heading p {
    margin: 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.fh-properties-navigation-label {
    display: block;
    margin-bottom: 11px;
    color: #596579;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fh-properties-operation {
    margin-bottom: 25px;
}

.fh-properties-operation-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fh-properties-operation-link {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 14px;
    color: #344054;
    background: #f6f8fa;
    border: 1px solid #dde3e9;
    border-radius: 10px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-properties-operation-link span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.fh-properties-operation-link strong {
    display: inline-flex;
    min-width: 26px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    color: #6b7585;
    background: #ffffff;
    border: 1px solid #dfe4e9;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.fh-properties-operation-link:hover,
.fh-properties-operation-link:focus {
    color: #293448;
    background: #ffffff;
    border-color: #d8b46b;
    box-shadow: 0 8px 19px rgba(18, 31, 53, 0.09);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-properties-operation-link.is-active {
    color: #ffffff;
    background: #202e44;
    border-color: #202e44;
    box-shadow: 0 9px 21px rgba(18, 31, 53, 0.17);
}

.fh-properties-operation-link.is-active strong {
    color: #8b5c0e;
    background: #f8d992;
    border-color: #f8d992;
}

.fh-properties-types-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.fh-properties-type-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    min-width: 0;
    min-height: 82px;
    padding: 15px;
    color: #293448;
    background: #f8fafc;
    border: 1px solid #e2e7ed;
    border-radius: 13px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-properties-type-card:hover,
.fh-properties-type-card:focus {
    color: #293448;
    background: #ffffff;
    border-color: #dfbd78;
    box-shadow: 0 11px 25px rgba(18, 31, 53, 0.1);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-properties-type-card.is-active {
    background:
        linear-gradient(
            135deg,
            rgba(217, 155, 43, 0.1),
            rgba(217, 155, 43, 0.025)
        ),
        #ffffff;
    border-color: #d9b15e;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.12);
}

.fh-properties-type-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff3dc;
    border: 1px solid #efd6a5;
    border-radius: 12px;
}

.fh-properties-type-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fh-properties-type-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.fh-properties-type-content strong {
    overflow: hidden;
    color: #293448;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-properties-type-content small {
    color: #7a8493;
    font-size: 12px;
    line-height: 1.35;
}

.fh-properties-type-arrow {
    width: 20px;
    height: 20px;
    fill: #a1aab7;
    transition:
        fill 0.2s ease,
        transform 0.2s ease;
}

.fh-properties-type-card:hover .fh-properties-type-arrow,
.fh-properties-type-card:focus .fh-properties-type-arrow,
.fh-properties-type-card.is-active .fh-properties-type-arrow {
    fill: #b87913;
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .fh-properties-navigation-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .fh-properties-navigation-heading p {
        max-width: 720px;
    }

    .fh-properties-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fh-properties-navigation {
        width: calc(100% - 24px);
        margin-bottom: 22px;
        padding: 23px 20px;
        border-radius: 16px;
    }

    .fh-properties-navigation-heading {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }

    .fh-properties-navigation-heading h2 {
        font-size: 27px;
    }

    .fh-properties-operation-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh-properties-operation-link {
        justify-content: space-between;
    }

    .fh-properties-types-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 390px) {
    .fh-properties-navigation {
        width: calc(100% - 18px);
        padding: 21px 16px;
    }

    .fh-properties-navigation-heading h2 {
        font-size: 25px;
    }

    .fh-properties-operation-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-properties-type-card {
        grid-template-columns: 44px minmax(0, 1fr) 19px;
        gap: 11px;
        min-height: 76px;
        padding: 13px;
    }

    .fh-properties-type-icon {
        width: 44px;
        height: 44px;
    }

    .fh-properties-type-icon svg {
        width: 22px;
        height: 22px;
    }
}
/* =========================================================
   Encabezado y ordenamiento de resultados de propiedades
   ========================================================= */

.fh-properties-results-header {
    box-sizing: border-box;
    display: grid;
    width: min(1240px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin: 0 auto 24px;
    padding: 25px 28px;
    color: #202a3b;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(217, 155, 43, 0.08),
            transparent 30%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 17px;
    box-shadow: 0 12px 32px rgba(18, 31, 53, 0.07);
}

.fh-properties-results-header *,
.fh-properties-results-header *::before,
.fh-properties-results-header *::after {
    box-sizing: border-box;
}

.fh-properties-results-summary {
    min-width: 0;
}

.fh-properties-results-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #b87913;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-properties-results-summary h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.fh-properties-results-summary > p {
    margin: 7px 0 0;
    color: #697386;
    font-size: 13px;
    line-height: 1.55;
}

.fh-properties-results-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.fh-properties-results-filters span {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding: 6px 10px;
    color: #755011;
    background: #fff5e2;
    border: 1px solid #ecd39f;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.fh-properties-results-sort {
    display: flex;
    min-width: 290px;
    flex-direction: column;
    gap: 7px;
}

.fh-properties-results-sort > label {
    color: #596579;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fh-properties-results-sort-controls {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto;
    gap: 8px;
}

.fh-properties-results-sort select {
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    margin: 0;
    padding: 0 38px 0 13px;
    color: #344054;
    background-color: #ffffff;
    border: 1px solid #d8dfe7;
    border-radius: 9px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-properties-results-sort select:hover {
    border-color: #bdc5cf;
}

.fh-properties-results-sort select:focus {
    border-color: #d99b2b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 155, 43, 0.15);
}

.fh-properties-results-sort button {
    display: inline-flex;
    min-width: 92px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 17px;
    color: #ffffff;
    background: #202e44;
    border: 1px solid #202e44;
    border-radius: 9px;
    box-shadow: 0 8px 18px rgba(18, 31, 53, 0.14);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-properties-results-sort button:hover,
.fh-properties-results-sort button:focus {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 10px 22px rgba(184, 121, 19, 0.23);
    outline: none;
    transform: translateY(-1px);
}

.fh-properties-results-sort button:active {
    transform: translateY(0);
}

@media (max-width: 820px) {
    .fh-properties-results-header {
        grid-template-columns: minmax(0, 1fr);
        gap: 21px;
        align-items: start;
    }

    .fh-properties-results-sort {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .fh-properties-results-header {
        width: calc(100% - 24px);
        margin-bottom: 20px;
        padding: 22px 20px;
        border-radius: 15px;
    }

    .fh-properties-results-summary h2 {
        font-size: 26px;
    }

    .fh-properties-results-sort-controls {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 430px) {
    .fh-properties-results-header {
        width: calc(100% - 18px);
        padding: 20px 16px;
    }

    .fh-properties-results-summary h2 {
        font-size: 24px;
    }

    .fh-properties-results-sort-controls {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-properties-results-sort button {
        width: 100%;
    }
}
/* =========================================================
   Categorías dinámicas de propiedades en Inicio
   ========================================================= */

.fh-home-categories {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 54px auto 28px;
    padding: 34px;
    color: #202a3b;
    background:
        radial-gradient(
            circle at 94% 4%,
            rgba(217, 155, 43, 0.12),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfcfd 100%
        );
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-home-categories *,
.fh-home-categories *::before,
.fh-home-categories *::after {
    box-sizing: border-box;
}

.fh-home-categories-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6ebf0;
}

.fh-home-categories-heading > div {
    min-width: 0;
    max-width: 720px;
}

.fh-home-categories-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #b87913;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-home-categories-eyebrow::before {
    width: 29px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-home-categories-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.fh-home-categories-heading p {
    max-width: 690px;
    margin: 13px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.fh-home-categories-all-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    color: #293448;
    background: #ffffff;
    border: 1px solid #d9dfe6;
    border-radius: 10px;
    box-shadow: 0 7px 17px rgba(18, 31, 53, 0.06);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-home-categories-all-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-home-categories-all-link:hover,
.fh-home-categories-all-link:focus {
    color: #ffffff;
    background: #202e44;
    border-color: #202e44;
    box-shadow: 0 10px 23px rgba(18, 31, 53, 0.17);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-home-categories-all-link:hover svg,
.fh-home-categories-all-link:focus svg {
    transform: translateX(3px);
}

.fh-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fh-home-category-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    min-width: 0;
    min-height: 94px;
    padding: 18px;
    overflow: hidden;
    color: #293448;
    background: #f8fafc;
    border: 1px solid #e1e7ed;
    border-radius: 15px;
    text-decoration: none;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-home-category-card::after {
    position: absolute;
    top: -42px;
    right: -42px;
    width: 94px;
    height: 94px;
    background: rgba(217, 155, 43, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.fh-home-category-card:hover,
.fh-home-category-card:focus {
    color: #293448;
    background: #ffffff;
    border-color: #dcb766;
    box-shadow: 0 13px 29px rgba(18, 31, 53, 0.11);
    outline: none;
    text-decoration: none;
    transform: translateY(-3px);
}

.fh-home-category-card:hover::after,
.fh-home-category-card:focus::after {
    background: rgba(217, 155, 43, 0.11);
    transform: scale(1.18);
}

.fh-home-category-card--all {
    background:
        linear-gradient(
            135deg,
            rgba(217, 155, 43, 0.11),
            rgba(217, 155, 43, 0.025)
        ),
        #ffffff;
    border-color: #dfba6c;
    box-shadow: 0 10px 24px rgba(184, 121, 19, 0.1);
}

.fh-home-category-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff3dc;
    border: 1px solid #efd4a0;
    border-radius: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.fh-home-category-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.fh-home-category-card:hover .fh-home-category-icon,
.fh-home-category-card:focus .fh-home-category-icon {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    transform: scale(1.04);
}

.fh-home-category-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.fh-home-category-content strong {
    overflow: hidden;
    color: #293448;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-home-category-content small {
    color: #7a8493;
    font-size: 12px;
    line-height: 1.4;
}

.fh-home-category-arrow {
    position: relative;
    z-index: 2;
    width: 21px;
    height: 21px;
    fill: #a0a9b6;
    transition:
        fill 0.22s ease,
        transform 0.22s ease;
}

.fh-home-category-card:hover .fh-home-category-arrow,
.fh-home-category-card:focus .fh-home-category-arrow {
    fill: #b87913;
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .fh-home-categories-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .fh-home-categories-all-link {
        width: fit-content;
    }

    .fh-home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fh-home-categories {
        width: calc(100% - 24px);
        margin: 36px auto 22px;
        padding: 25px 20px;
        border-radius: 17px;
    }

    .fh-home-categories-heading {
        margin-bottom: 22px;
        padding-bottom: 21px;
    }

    .fh-home-categories-heading h2 {
        font-size: 29px;
    }

    .fh-home-categories-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .fh-home-categories-all-link {
        width: 100%;
    }

    .fh-home-categories-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-home-category-card {
        min-height: 88px;
    }
}

@media (max-width: 390px) {
    .fh-home-categories {
        width: calc(100% - 18px);
        margin-top: 28px;
        padding: 22px 16px;
    }

    .fh-home-categories-heading h2 {
        font-size: 26px;
    }

    .fh-home-category-card {
        grid-template-columns: 47px minmax(0, 1fr) 19px;
        gap: 12px;
        min-height: 82px;
        padding: 15px 13px;
    }

    .fh-home-category-icon {
        width: 47px;
        height: 47px;
    }

    .fh-home-category-icon svg {
        width: 24px;
        height: 24px;
    }

    .fh-home-category-content strong {
        font-size: 14px;
        white-space: normal;
    }

    .fh-home-category-content small {
        font-size: 11px;
    }
}
/* =========================================================
   Proceso de acompañamiento en Inicio
   ========================================================= */

.fh-home-process {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 28px auto;
    padding: 38px 34px;
    color: #202a3b;
    background:
        radial-gradient(
            circle at 93% 8%,
            rgba(217, 155, 43, 0.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafc 100%
        );
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-home-process *,
.fh-home-process *::before,
.fh-home-process *::after {
    box-sizing: border-box;
}

.fh-home-process-heading {
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: center;
}

.fh-home-process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #b87913;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-home-process-eyebrow::before,
.fh-home-process-eyebrow::after {
    width: 28px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-home-process-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(29px, 3.2vw, 41px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.fh-home-process-heading p {
    max-width: 690px;
    margin: 15px auto 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.72;
}

.fh-home-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.fh-home-process-grid::before {
    position: absolute;
    top: 41px;
    right: 16.5%;
    left: 16.5%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #e0bf7b 15%,
            #e0bf7b 85%,
            transparent 100%
        );
    content: "";
    pointer-events: none;
}

.fh-home-process-step {
    position: relative;
    z-index: 2;
    min-width: 0;
    margin: 0;
    padding: 23px 21px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 16px;
    box-shadow: 0 10px 27px rgba(18, 31, 53, 0.07);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-home-process-step::after {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 110px;
    height: 110px;
    background: rgba(217, 155, 43, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.fh-home-process-step:hover {
    border-color: #dfbb70;
    box-shadow: 0 15px 34px rgba(18, 31, 53, 0.11);
    transform: translateY(-4px);
}

.fh-home-process-step:hover::after {
    background: rgba(217, 155, 43, 0.11);
    transform: scale(1.17);
}

.fh-home-process-number {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 2;
    color: rgba(32, 46, 68, 0.13);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.fh-home-process-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b87913;
    background: #fff3dc;
    border: 1px solid #efd4a0;
    border-radius: 15px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 18px rgba(184, 121, 19, 0.09);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.fh-home-process-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.fh-home-process-step:hover .fh-home-process-icon {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    transform: scale(1.05);
}

.fh-home-process-content {
    position: relative;
    z-index: 2;
}

.fh-home-process-content h3 {
    margin: 0;
    color: #293448;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: -0.025em;
}

.fh-home-process-content p {
    margin: 11px 0 0;
    color: #697386;
    font-size: 13px;
    line-height: 1.7;
}

.fh-home-process-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 27px;
    padding: 22px 24px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(217, 155, 43, 0.16),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #223149 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 12px 29px rgba(18, 31, 53, 0.16);
}

.fh-home-process-actions > div:first-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.fh-home-process-actions strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.fh-home-process-actions span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.55;
}

.fh-home-process-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    justify-content: flex-end;
}

.fh-home-process-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    border: 1px solid;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-home-process-button svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-home-process-button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.fh-home-process-button--secondary:hover,
.fh-home-process-button--secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-home-process-button--primary {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 8px 19px rgba(184, 121, 19, 0.22);
}

.fh-home-process-button--primary:hover,
.fh-home-process-button--primary:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 11px 24px rgba(184, 121, 19, 0.29);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-home-process-button--primary:hover svg,
.fh-home-process-button--primary:focus svg {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .fh-home-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-home-process-grid::before {
        display: none;
    }

    .fh-home-process-actions {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .fh-home-process-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .fh-home-process {
        width: calc(100% - 24px);
        margin: 22px auto;
        padding: 28px 20px;
        border-radius: 17px;
    }

    .fh-home-process-heading {
        margin-bottom: 25px;
        text-align: left;
    }

    .fh-home-process-eyebrow::after {
        display: none;
    }

    .fh-home-process-heading h2 {
        font-size: 29px;
    }

    .fh-home-process-heading p {
        margin-left: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .fh-home-process-step {
        padding: 21px 19px;
    }

    .fh-home-process-actions {
        padding: 21px 19px;
    }
}

@media (max-width: 480px) {
    .fh-home-process-buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .fh-home-process-button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .fh-home-process {
        width: calc(100% - 18px);
        padding: 24px 16px;
    }

    .fh-home-process-heading h2 {
        font-size: 26px;
    }

    .fh-home-process-step {
        padding: 20px 16px;
    }

    .fh-home-process-number {
        top: 15px;
        right: 15px;
        font-size: 27px;
    }

    .fh-home-process-icon {
        width: 52px;
        height: 52px;
    }

    .fh-home-process-icon svg {
        width: 25px;
        height: 25px;
    }

    .fh-home-process-content h3 {
        font-size: 17px;
    }

    .fh-home-process-actions {
        padding: 19px 16px;
    }
}
/* =========================================================
   Ubicaciones dinámicas en Inicio
   ========================================================= */

.fh-home-locations {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 28px auto;
    padding: 34px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 91% 9%,
            rgba(217, 155, 43, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 58%,
            #283a53 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 21px;
    box-shadow: 0 17px 44px rgba(18, 31, 53, 0.18);
}

.fh-home-locations *,
.fh-home-locations *::before,
.fh-home-locations *::after {
    box-sizing: border-box;
}

.fh-home-locations-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fh-home-locations-heading > div {
    min-width: 0;
    max-width: 720px;
}

.fh-home-locations-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #efb94f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fh-home-locations-eyebrow::before {
    width: 29px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-home-locations-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.fh-home-locations-heading p {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.fh-home-locations-all-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-home-locations-all-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-home-locations-all-link:hover,
.fh-home-locations-all-link:focus {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 10px 23px rgba(0, 0, 0, 0.18);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-home-locations-all-link:hover svg,
.fh-home-locations-all-link:focus svg {
    transform: translateX(3px);
}

.fh-home-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fh-home-location-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    min-width: 0;
    min-height: 94px;
    padding: 18px;
    overflow: hidden;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-home-location-card::after {
    position: absolute;
    top: -42px;
    right: -42px;
    width: 96px;
    height: 96px;
    background: rgba(217, 155, 43, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.fh-home-location-card:hover,
.fh-home-location-card:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(232, 173, 63, 0.67);
    box-shadow: 0 14px 31px rgba(0, 0, 0, 0.18);
    outline: none;
    text-decoration: none;
    transform: translateY(-3px);
}

.fh-home-location-card:hover::after,
.fh-home-location-card:focus::after {
    background: rgba(217, 155, 43, 0.15);
    transform: scale(1.18);
}

.fh-home-location-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(217, 155, 43, 0.12);
    border: 1px solid rgba(232, 173, 63, 0.35);
    border-radius: 13px;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.fh-home-location-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.fh-home-location-card:hover .fh-home-location-icon,
.fh-home-location-card:focus .fh-home-location-icon {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    transform: scale(1.04);
}

.fh-home-location-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.fh-home-location-content strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-home-location-content small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.4;
}

.fh-home-location-arrow {
    position: relative;
    z-index: 2;
    width: 21px;
    height: 21px;
    fill: rgba(255, 255, 255, 0.48);
    transition:
        fill 0.22s ease,
        transform 0.22s ease;
}

.fh-home-location-card:hover .fh-home-location-arrow,
.fh-home-location-card:focus .fh-home-location-arrow {
    fill: #efb94f;
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .fh-home-locations-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .fh-home-locations-all-link {
        width: fit-content;
    }

    .fh-home-locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fh-home-locations {
        width: calc(100% - 24px);
        margin: 22px auto;
        padding: 25px 20px;
        border-radius: 17px;
    }

    .fh-home-locations-heading {
        margin-bottom: 22px;
        padding-bottom: 21px;
    }

    .fh-home-locations-heading h2 {
        font-size: 29px;
    }

    .fh-home-locations-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .fh-home-locations-all-link {
        width: 100%;
    }

    .fh-home-locations-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-home-location-card {
        min-height: 88px;
    }
}

@media (max-width: 390px) {
    .fh-home-locations {
        width: calc(100% - 18px);
        padding: 22px 16px;
    }

    .fh-home-locations-heading h2 {
        font-size: 26px;
    }

    .fh-home-location-card {
        grid-template-columns: 47px minmax(0, 1fr) 19px;
        gap: 12px;
        min-height: 82px;
        padding: 15px 13px;
    }

    .fh-home-location-icon {
        width: 47px;
        height: 47px;
    }

    .fh-home-location-icon svg {
        width: 24px;
        height: 24px;
    }

    .fh-home-location-content strong {
        font-size: 14px;
        white-space: normal;
    }

    .fh-home-location-content small {
        font-size: 11px;
    }
}
/* =========================================================
   Header global profesional de Full Home
   ========================================================= */

/* Ocultar únicamente el header original de Kadence */
body.fh-custom-header-active #masthead,
body.fh-custom-header-active header.site-header {
    display: none !important;
}

body.fh-custom-header-active {
    --fh-header-height: 84px;
}

body.fh-header-menu-open {
    overflow: hidden;
}

.fh-site-header {
    position: sticky;
    top: 0;
    z-index: 9990;
    width: 100%;
    color: #293448;
    background: #ffffff;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

body.admin-bar .fh-site-header {
    top: 32px;
}

.fh-site-header *,
.fh-site-header *::before,
.fh-site-header *::after {
    box-sizing: border-box;
}

.fh-site-header-container {
    width: min(1240px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

/* Barra superior */

.fh-site-header-utility {
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fh-site-header-utility .fh-site-header-container {
    display: flex;
    min-height: 37px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fh-site-header-utility-message {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.035em;
}

.fh-site-header-utility-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.fh-site-header-utility-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fh-site-header-utility-links a:hover,
.fh-site-header-utility-links a:focus {
    color: #efb94f;
    outline: none;
    text-decoration: none;
}

.fh-site-header-utility-links svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: currentColor;
}

/* Área principal */

.fh-site-header-main {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e3e8ee;
    box-shadow: 0 5px 18px rgba(18, 31, 53, 0.055);
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.fh-site-header.is-scrolled .fh-site-header-main {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 11px 30px rgba(18, 31, 53, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.fh-site-header-main .fh-site-header-container {
    display: grid;
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    min-height: 82px;
}

/* Logo */

.fh-site-header-logo {
    display: inline-flex;
    width: fit-content;
    min-width: 0;
    align-items: center;
    color: #202e44;
    text-decoration: none;
}

.fh-site-header-logo:hover,
.fh-site-header-logo:focus {
    color: #202e44;
    outline: none;
    text-decoration: none;
}

.fh-site-header-logo-image {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 61px;
    object-fit: contain;
}

.fh-site-header-logo-text {
    color: #202e44;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

/* Navegación de escritorio */

.fh-site-header-navigation {
    min-width: 0;
}

.fh-site-header-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-site-header-navigation li {
    margin: 0;
    padding: 0;
}

.fh-site-header-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    color: #4f5b6e;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.fh-site-header-navigation a::after {
    position: absolute;
    right: 13px;
    bottom: 5px;
    left: 13px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-navigation a:hover,
.fh-site-header-navigation a:focus {
    color: #202e44;
    background: #f5f7fa;
    outline: none;
    text-decoration: none;
}

.fh-site-header-navigation a:hover::after,
.fh-site-header-navigation a:focus::after,
.fh-site-header-navigation a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.fh-site-header-navigation a.is-active {
    color: #202e44;
    background: #fff6e5;
}

/* Acciones de escritorio */

.fh-site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.fh-site-header-whatsapp {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #278f55;
    border: 1px solid #278f55;
    border-radius: 11px;
    box-shadow: 0 8px 19px rgba(39, 143, 85, 0.19);
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.fh-site-header-whatsapp:hover,
.fh-site-header-whatsapp:focus {
    color: #ffffff;
    background: #1f7546;
    border-color: #1f7546;
    box-shadow: 0 11px 24px rgba(39, 143, 85, 0.27);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-site-header-publish-button {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    color: #ffffff;
    background: #d99b2b;
    border: 1px solid #d99b2b;
    border-radius: 10px;
    box-shadow: 0 9px 21px rgba(184, 121, 19, 0.2);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-publish-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-site-header-publish-button:hover,
.fh-site-header-publish-button:focus,
.fh-site-header-publish-button.is-active {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 12px 26px rgba(184, 121, 19, 0.27);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-site-header-publish-button:hover svg,
.fh-site-header-publish-button:focus svg {
    transform: translateX(3px);
}

/* Botón del menú móvil */

.fh-site-header-toggle {
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
    color: #202e44;
    background: #f5f7fa;
    border: 1px solid #dbe1e8;
    border-radius: 11px;
    box-shadow: 0 7px 17px rgba(18, 31, 53, 0.07);
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-toggle:hover,
.fh-site-header-toggle:focus {
    background: #fff5e2;
    border-color: #dfbd78;
    outline: none;
    transform: translateY(-1px);
}

.fh-site-header-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* Overlay */

.fh-site-header-overlay {
    position: fixed;
    z-index: 9991;
    inset: 0;
    visibility: hidden;
    background: rgba(10, 17, 29, 0.68);
    opacity: 0;
    pointer-events: none;
    transition:
        visibility 0.28s ease,
        opacity 0.28s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.fh-site-header-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Panel móvil */

.fh-site-header-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9992;
    display: flex;
    width: min(410px, 92vw);
    height: 100dvh;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    color: #293448;
    background:
        radial-gradient(
            circle at 95% 2%,
            rgba(217, 155, 43, 0.11),
            transparent 25%
        ),
        #ffffff;
    border-left: 1px solid #dfe5eb;
    box-shadow: -18px 0 48px rgba(8, 18, 33, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.fh-site-header-mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

body.admin-bar .fh-site-header-mobile-panel {
    top: 32px;
    height: calc(100dvh - 32px);
}

.fh-site-header-mobile-top {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid #e3e8ee;
}

.fh-site-header-mobile-logo {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    color: #202e44;
    text-decoration: none;
}

.fh-site-header-mobile-logo-image {
    display: block;
    width: auto;
    max-width: 185px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.fh-site-header-mobile-close {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #293448;
    background: #f4f6f8;
    border: 1px solid #dce2e8;
    border-radius: 11px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-mobile-close svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.fh-site-header-mobile-close:hover,
.fh-site-header-mobile-close:focus {
    color: #ffffff;
    background: #202e44;
    border-color: #202e44;
    outline: none;
    transform: rotate(4deg);
}

/* Navegación móvil */

.fh-site-header-mobile-navigation {
    padding: 21px 22px 18px;
}

.fh-site-header-mobile-navigation ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fh-site-header-mobile-navigation li {
    margin: 0;
    padding: 0;
}

.fh-site-header-mobile-navigation a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    min-height: 51px;
    padding: 11px 14px;
    color: #3c485b;
    background: #f7f9fb;
    border: 1px solid #e1e6ec;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-mobile-navigation a svg {
    width: 20px;
    height: 20px;
    fill: #a0a9b5;
    transition:
        fill 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-mobile-navigation a:hover,
.fh-site-header-mobile-navigation a:focus {
    color: #293448;
    background: #ffffff;
    border-color: #dfbd78;
    box-shadow: 0 8px 18px rgba(18, 31, 53, 0.08);
    outline: none;
    text-decoration: none;
    transform: translateX(-2px);
}

.fh-site-header-mobile-navigation a:hover svg,
.fh-site-header-mobile-navigation a:focus svg {
    fill: #b87913;
    transform: translateX(3px);
}

.fh-site-header-mobile-navigation a.is-active {
    color: #202e44;
    background: #fff4df;
    border-color: #e1bd75;
    box-shadow: 0 8px 18px rgba(184, 121, 19, 0.09);
}

.fh-site-header-mobile-navigation a.is-active svg {
    fill: #b87913;
}

/* Datos de contacto dentro del menú */

.fh-site-header-mobile-contact {
    display: grid;
    gap: 9px;
    margin: 0 22px;
    padding: 20px 0;
    border-top: 1px solid #e4e9ef;
    border-bottom: 1px solid #e4e9ef;
}

.fh-site-header-mobile-contact-label {
    display: block;
    margin-bottom: 2px;
    color: #8b5c0e;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fh-site-header-mobile-contact > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-width: 0;
    padding: 10px 11px;
    color: #344054;
    background: #f7f9fb;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.fh-site-header-mobile-contact > a:hover,
.fh-site-header-mobile-contact > a:focus {
    color: #344054;
    background: #ffffff;
    border-color: #dfbd78;
    outline: none;
    text-decoration: none;
}

.fh-site-header-mobile-contact > a > svg {
    width: 22px;
    height: 22px;
    margin: auto;
    fill: #b87913;
}

.fh-site-header-mobile-contact > a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.fh-site-header-mobile-contact small {
    color: #7d8796;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.fh-site-header-mobile-contact strong {
    overflow-wrap: anywhere;
    color: #293448;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

/* Acciones inferiores del menú */

.fh-site-header-mobile-actions {
    display: grid;
    gap: 9px;
    margin-top: auto;
    padding: 21px 22px 25px;
}

.fh-site-header-mobile-publish,
.fh-site-header-mobile-whatsapp {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-site-header-mobile-publish {
    color: #293448;
    background: #ffffff;
    border-color: #d7dee6;
}

.fh-site-header-mobile-publish:hover,
.fh-site-header-mobile-publish:focus {
    color: #202e44;
    background: #fff5e2;
    border-color: #dfbd78;
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-site-header-mobile-whatsapp {
    color: #ffffff;
    background: #278f55;
    border-color: #278f55;
    box-shadow: 0 9px 21px rgba(39, 143, 85, 0.21);
}

.fh-site-header-mobile-whatsapp svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-site-header-mobile-whatsapp:hover,
.fh-site-header-mobile-whatsapp:focus {
    color: #ffffff;
    background: #1f7546;
    border-color: #1f7546;
    box-shadow: 0 12px 25px rgba(39, 143, 85, 0.28);
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.fh-site-header-mobile-whatsapp:hover svg,
.fh-site-header-mobile-whatsapp:focus svg {
    transform: translateX(3px);
}

/* Responsive */

@media (max-width: 1120px) {
    .fh-site-header-main .fh-site-header-container {
        grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto;
        gap: 18px;
    }

    .fh-site-header-logo-image {
        max-width: 170px;
        max-height: 57px;
    }

    .fh-site-header-navigation a {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 12px;
    }

    .fh-site-header-publish-button {
        padding-right: 13px;
        padding-left: 13px;
    }
}

@media (max-width: 980px) {
    body.fh-custom-header-active {
        --fh-header-height: 73px;
    }

    .fh-site-header-utility {
        display: none;
    }

    .fh-site-header-main .fh-site-header-container {
        display: flex;
        min-height: 73px;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .fh-site-header-logo-image {
        max-width: 178px;
        max-height: 55px;
    }

    .fh-site-header-navigation,
    .fh-site-header-actions {
        display: none;
    }

    .fh-site-header-toggle {
        display: inline-flex;
        flex: 0 0 45px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .fh-site-header {
        top: 46px;
    }

    body.admin-bar .fh-site-header-mobile-panel {
        top: 46px;
        height: calc(100dvh - 46px);
    }
}

@media (max-width: 720px) {
    .fh-site-header-container {
        width: calc(100% - 24px);
    }

    .fh-site-header-main .fh-site-header-container {
        min-height: 70px;
    }

    .fh-site-header-logo-image {
        max-width: 165px;
        max-height: 51px;
    }

    .fh-site-header-toggle {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }
}

@media (max-width: 390px) {
    .fh-site-header-container {
        width: calc(100% - 18px);
    }

    .fh-site-header-main .fh-site-header-container {
        min-height: 67px;
    }

    .fh-site-header-logo-image {
        max-width: 151px;
        max-height: 48px;
    }

    .fh-site-header-toggle {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }

    .fh-site-header-mobile-panel {
        width: 94vw;
    }

    .fh-site-header-mobile-top {
        min-height: 82px;
        padding: 16px 17px;
    }

    .fh-site-header-mobile-logo-image {
        max-width: 158px;
        max-height: 52px;
    }

    .fh-site-header-mobile-navigation {
        padding: 18px 17px 15px;
    }

    .fh-site-header-mobile-contact {
        margin-right: 17px;
        margin-left: 17px;
    }

    .fh-site-header-mobile-actions {
        padding: 18px 17px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fh-site-header *,
    .fh-site-header *::before,
    .fh-site-header *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   Página profesional de Servicios
   ========================================================= */

.fh-services-page {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 42px auto 72px;
    color: #202a3b;
}

.fh-services-page *,
.fh-services-page *::before,
.fh-services-page *::after {
    box-sizing: border-box;
}

/* =========================================================
   Hero de Servicios
   ========================================================= */

.fh-services-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 46px;
    align-items: center;
    min-height: 470px;
    margin-bottom: 30px;
    padding: 58px 58px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 87% 13%,
            rgba(217, 155, 43, 0.28),
            transparent 32%
        ),
        radial-gradient(
            circle at 73% 100%,
            rgba(255, 255, 255, 0.06),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 56%,
            #2c405a 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    box-shadow: 0 22px 56px rgba(18, 31, 53, 0.2);
}

.fh-services-hero::before {
    position: absolute;
    top: -145px;
    right: -90px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-services-hero::after {
    position: absolute;
    right: 20%;
    bottom: -205px;
    width: 360px;
    height: 360px;
    background: rgba(217, 155, 43, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.fh-services-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #efb94f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fh-services-hero-eyebrow::before {
    width: 31px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-services-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(39px, 4.5vw, 61px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.048em;
}

.fh-services-hero-content > p {
    max-width: 700px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.fh-services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.fh-services-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-services-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-services-button--primary {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 11px 25px rgba(184, 121, 19, 0.26);
}

.fh-services-button--primary:hover,
.fh-services-button--primary:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 14px 31px rgba(184, 121, 19, 0.32);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-services-button--primary:hover svg,
.fh-services-button--primary:focus svg {
    transform: translateX(3px);
}

.fh-services-button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.24);
}

.fh-services-button--secondary:hover,
.fh-services-button--secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-services-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 290px;
    align-items: center;
    justify-content: center;
}

.fh-services-hero-icon {
    position: relative;
    display: inline-flex;
    width: 190px;
    height: 190px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04)
        );
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 48px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 25px 55px rgba(0, 0, 0, 0.22);
    transform: rotate(4deg);
}

.fh-services-hero-icon::before {
    position: absolute;
    inset: 17px;
    border: 1px solid rgba(232, 173, 63, 0.19);
    border-radius: 36px;
    content: "";
}

.fh-services-hero-icon svg {
    width: 92px;
    height: 92px;
    fill: currentColor;
    transform: rotate(-4deg);
}

.fh-services-hero-badge {
    position: absolute;
    right: 2%;
    bottom: 19px;
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(23, 32, 51, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =========================================================
   Servicios principales
   ========================================================= */

.fh-services-main {
    margin-bottom: 30px;
    padding: 42px 36px;
    background:
        radial-gradient(
            circle at 95% 3%,
            rgba(217, 155, 43, 0.1),
            transparent 25%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 22px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-services-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.fh-services-section-heading > span,
.fh-services-process-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #b87913;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-services-section-heading > span::before,
.fh-services-section-heading > span::after {
    width: 27px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-services-section-heading h2,
.fh-services-process-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(31px, 3.4vw, 43px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.043em;
}

.fh-services-section-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.72;
}

.fh-services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.fh-service-card {
    position: relative;
    grid-column: span 2;
    min-width: 0;
    margin: 0;
    padding: 25px 23px;
    overflow: hidden;
    background: #f9fafc;
    border: 1px solid #e1e7ed;
    border-radius: 17px;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-service-card:nth-child(4),
.fh-service-card:nth-child(5) {
    grid-column: span 3;
}

.fh-service-card::after {
    position: absolute;
    top: -53px;
    right: -53px;
    width: 125px;
    height: 125px;
    background: rgba(217, 155, 43, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.fh-service-card:hover {
    background: #ffffff;
    border-color: #dcb768;
    box-shadow: 0 15px 34px rgba(18, 31, 53, 0.11);
    transform: translateY(-4px);
}

.fh-service-card:hover::after {
    background: rgba(217, 155, 43, 0.12);
    transform: scale(1.18);
}

.fh-service-card-number {
    position: absolute;
    top: 18px;
    right: 19px;
    z-index: 2;
    color: rgba(32, 46, 68, 0.11);
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.fh-service-card-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 57px;
    height: 57px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b87913;
    background: #fff3dc;
    border: 1px solid #efd4a0;
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 18px rgba(184, 121, 19, 0.08);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.fh-service-card-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.fh-service-card:hover .fh-service-card-icon {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    transform: scale(1.05);
}

.fh-service-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #293448;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.028em;
}

.fh-service-card p {
    position: relative;
    z-index: 2;
    margin: 12px 0 20px;
    color: #697386;
    font-size: 13px;
    line-height: 1.72;
}

.fh-service-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9b650f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.fh-service-card > a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-service-card > a:hover,
.fh-service-card > a:focus {
    color: #202e44;
    gap: 10px;
    outline: none;
    text-decoration: none;
}

.fh-service-card > a:hover svg,
.fh-service-card > a:focus svg {
    transform: translateX(3px);
}

/* =========================================================
   Proceso de atención
   ========================================================= */

.fh-services-process {
    margin-bottom: 30px;
    padding: 40px 36px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 93% 10%,
            rgba(217, 155, 43, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 57%,
            #293c56 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 17px 45px rgba(18, 31, 53, 0.18);
}

.fh-services-process-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.fh-services-process-heading > span {
    color: #efb94f;
}

.fh-services-process-heading h2 {
    max-width: 740px;
    color: #ffffff;
}

.fh-services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fh-services-process-grid article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    min-width: 0;
    margin: 0;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-services-process-grid article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(232, 173, 63, 0.58);
    box-shadow: 0 13px 29px rgba(0, 0, 0, 0.17);
    transform: translateY(-3px);
}

.fh-services-process-grid article > strong {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(217, 155, 43, 0.12);
    border: 1px solid rgba(232, 173, 63, 0.34);
    border-radius: 13px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.fh-services-process-grid article > div {
    min-width: 0;
}

.fh-services-process-grid h3 {
    margin: 1px 0 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.fh-services-process-grid p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   CTA final
   ========================================================= */

.fh-services-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 36px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 4%,
            rgba(217, 155, 43, 0.17),
            transparent 31%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 41px rgba(18, 31, 53, 0.09);
}

.fh-services-cta::after {
    position: absolute;
    right: -85px;
    bottom: -115px;
    width: 250px;
    height: 250px;
    background: rgba(217, 155, 43, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-services-cta > div {
    position: relative;
    z-index: 2;
}

.fh-services-cta > div:first-child {
    max-width: 740px;
}

.fh-services-cta > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: #b87913;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-services-cta h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.fh-services-cta p {
    max-width: 660px;
    margin: 13px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.fh-services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.fh-services-cta .fh-services-button--secondary {
    color: #293448;
    background: #ffffff;
    border-color: #d8dfe7;
    box-shadow: 0 8px 18px rgba(18, 31, 53, 0.06);
}

.fh-services-cta .fh-services-button--secondary:hover,
.fh-services-cta .fh-services-button--secondary:focus {
    color: #ffffff;
    background: #202e44;
    border-color: #202e44;
    box-shadow: 0 11px 24px rgba(18, 31, 53, 0.16);
}

/* =========================================================
   Responsive de Servicios
   ========================================================= */

@media (max-width: 1050px) {
    .fh-services-hero {
        grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr);
        gap: 30px;
        padding: 50px 43px;
    }

    .fh-services-hero-icon {
        width: 160px;
        height: 160px;
        border-radius: 41px;
    }

    .fh-services-hero-icon svg {
        width: 78px;
        height: 78px;
    }

    .fh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh-service-card,
    .fh-service-card:nth-child(4),
    .fh-service-card:nth-child(5) {
        grid-column: auto;
    }

    .fh-service-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .fh-services-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }

    .fh-services-hero-visual {
        display: none;
    }

    .fh-services-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-services-cta {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .fh-services-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .fh-services-page {
        width: calc(100% - 24px);
        margin: 28px auto 48px;
    }

    .fh-services-hero {
        margin-bottom: 22px;
        padding: 37px 24px;
        border-radius: 19px;
    }

    .fh-services-hero h1 {
        font-size: clamp(34px, 9vw, 44px);
    }

    .fh-services-hero-content > p {
        font-size: 15px;
        line-height: 1.68;
    }

    .fh-services-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-services-button {
        width: 100%;
    }

    .fh-services-main,
    .fh-services-process {
        margin-bottom: 22px;
        padding: 29px 21px;
        border-radius: 18px;
    }

    .fh-services-section-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .fh-services-section-heading > span::after {
        display: none;
    }

    .fh-services-section-heading h2,
    .fh-services-process-heading h2 {
        font-size: 30px;
    }

    .fh-services-section-heading p {
        margin-left: 0;
    }

    .fh-services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-service-card:last-child {
        grid-column: auto;
    }

    .fh-services-process-heading {
        margin-bottom: 23px;
    }

    .fh-services-cta {
        gap: 24px;
        padding: 29px 22px;
        border-radius: 18px;
    }

    .fh-services-cta-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }
}

@media (max-width: 390px) {
    .fh-services-page {
        width: calc(100% - 18px);
        margin-top: 22px;
    }

    .fh-services-hero {
        padding: 32px 19px;
    }

    .fh-services-hero h1 {
        font-size: 32px;
    }

    .fh-services-main,
    .fh-services-process {
        padding: 25px 16px;
    }

    .fh-services-section-heading h2,
    .fh-services-process-heading h2 {
        font-size: 27px;
    }

    .fh-service-card {
        padding: 22px 18px;
    }

    .fh-service-card-number {
        top: 16px;
        right: 16px;
        font-size: 28px;
    }

    .fh-service-card-icon {
        width: 52px;
        height: 52px;
    }

    .fh-service-card-icon svg {
        width: 25px;
        height: 25px;
    }

    .fh-services-process-grid article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 15px;
    }

    .fh-services-process-grid article > strong {
        width: 48px;
        height: 48px;
    }

    .fh-services-cta {
        padding: 26px 18px;
    }

    .fh-services-cta h2 {
        font-size: 27px;
    }
}
/* =========================================================
   Página profesional Nosotros
   ========================================================= */

.fh-about-page {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 42px auto 72px;
    color: #202a3b;
}

.fh-about-page *,
.fh-about-page *::before,
.fh-about-page *::after {
    box-sizing: border-box;
}

/* =========================================================
   Hero de Nosotros
   ========================================================= */

.fh-about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
    gap: 50px;
    align-items: center;
    min-height: 480px;
    margin-bottom: 30px;
    padding: 58px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 89% 12%,
            rgba(217, 155, 43, 0.27),
            transparent 31%
        ),
        radial-gradient(
            circle at 73% 108%,
            rgba(255, 255, 255, 0.065),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 57%,
            #2d415c 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    box-shadow: 0 22px 56px rgba(18, 31, 53, 0.2);
}

.fh-about-hero::before {
    position: absolute;
    top: -155px;
    right: -100px;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-about-hero::after {
    position: absolute;
    right: 22%;
    bottom: -205px;
    width: 365px;
    height: 365px;
    background: rgba(217, 155, 43, 0.065);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.fh-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #efb94f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fh-about-eyebrow::before {
    width: 31px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-about-hero h1 {
    max-width: 830px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1.055;
    letter-spacing: -0.049em;
}

.fh-about-hero-content > p {
    max-width: 690px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.fh-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 29px;
}

.fh-about-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-about-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-about-button--primary {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    box-shadow: 0 11px 25px rgba(184, 121, 19, 0.26);
}

.fh-about-button--primary:hover,
.fh-about-button--primary:focus {
    color: #ffffff;
    background: #b87913;
    border-color: #b87913;
    box-shadow: 0 14px 31px rgba(184, 121, 19, 0.32);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

.fh-about-button--primary:hover svg,
.fh-about-button--primary:focus svg {
    transform: translateX(3px);
}

.fh-about-button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.24);
}

.fh-about-button--secondary:hover,
.fh-about-button--secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.41);
    outline: none;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Tarjeta visual del logo */

.fh-about-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 310px;
    align-items: center;
    justify-content: center;
}

.fh-about-logo-card {
    position: relative;
    width: min(100%, 360px);
    padding: 27px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.055)
        );
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 25px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 27px 58px rgba(0, 0, 0, 0.22);
    transform: rotate(2deg);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.fh-about-logo-card::before {
    position: absolute;
    top: -70px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(217, 155, 43, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-about-logo-card-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 18px;
    color: #efb94f;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-about-logo-card-image {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 165px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.fh-about-logo {
    display: block;
    width: auto;
    max-width: 230px;
    height: auto;
    max-height: 115px;
    object-fit: contain;
}

.fh-about-logo-card-image strong {
    color: #202e44;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.fh-about-logo-card-services {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}

.fh-about-logo-card-services span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(23, 32, 51, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

/* =========================================================
   Introducción
   ========================================================= */

.fh-about-introduction {
    margin-bottom: 30px;
    padding: 43px 38px;
    background:
        radial-gradient(
            circle at 96% 4%,
            rgba(217, 155, 43, 0.09),
            transparent 25%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 22px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-about-introduction-heading {
    display: grid;
    grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1.6fr);
    gap: 35px;
    align-items: end;
    margin-bottom: 33px;
    padding-bottom: 27px;
    border-bottom: 1px solid #e5eaf0;
}

.fh-about-introduction-heading > span,
.fh-about-section-heading > span,
.fh-about-process-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b87913;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-about-introduction-heading > span::before,
.fh-about-section-heading > span::before,
.fh-about-process-heading > span::before {
    width: 27px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-about-introduction-heading h2,
.fh-about-section-heading h2,
.fh-about-process-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(31px, 3.4vw, 43px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.043em;
}

.fh-about-introduction-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 42px;
    align-items: start;
}

.fh-about-introduction-copy {
    min-width: 0;
}

.fh-about-introduction-copy p {
    margin: 0 0 16px;
    color: #687386;
    font-size: 14px;
    line-height: 1.82;
}

.fh-about-introduction-copy p:first-child {
    color: #354054;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.72;
}

.fh-about-introduction-copy p:last-child {
    margin-bottom: 0;
}

.fh-about-introduction-points {
    display: grid;
    gap: 11px;
}

.fh-about-introduction-points article {
    display: grid;
    grid-template-columns: 49px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    margin: 0;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e1e7ed;
    border-radius: 13px;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-about-introduction-points article:hover {
    background: #ffffff;
    border-color: #dfbd78;
    box-shadow: 0 11px 25px rgba(18, 31, 53, 0.09);
    transform: translateY(-2px);
}

.fh-about-introduction-points article > span {
    display: inline-flex;
    width: 49px;
    height: 49px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff2d9;
    border: 1px solid #efd2a0;
    border-radius: 12px;
}

.fh-about-introduction-points article > span svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.fh-about-introduction-points article > div {
    min-width: 0;
}

.fh-about-introduction-points h3 {
    margin: 1px 0 0;
    color: #293448;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.fh-about-introduction-points p {
    margin: 6px 0 0;
    color: #6d7788;
    font-size: 12px;
    line-height: 1.62;
}

/* =========================================================
   Valores
   ========================================================= */

.fh-about-values {
    margin-bottom: 30px;
    padding: 42px 36px;
    background:
        radial-gradient(
            circle at 6% 2%,
            rgba(217, 155, 43, 0.075),
            transparent 24%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 22px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-about-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.fh-about-section-heading > span {
    justify-content: center;
    margin-bottom: 10px;
}

.fh-about-section-heading > span::after {
    width: 27px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-about-section-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.72;
}

.fh-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fh-about-value-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 25px 21px;
    overflow: hidden;
    background: #f9fafc;
    border: 1px solid #e1e7ed;
    border-radius: 17px;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-about-value-card::after {
    position: absolute;
    top: -54px;
    right: -53px;
    width: 125px;
    height: 125px;
    background: rgba(217, 155, 43, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.fh-about-value-card:hover {
    background: #ffffff;
    border-color: #dcb768;
    box-shadow: 0 15px 34px rgba(18, 31, 53, 0.11);
    transform: translateY(-4px);
}

.fh-about-value-card:hover::after {
    background: rgba(217, 155, 43, 0.12);
    transform: scale(1.18);
}

.fh-about-value-number {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 2;
    color: rgba(32, 46, 68, 0.11);
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.fh-about-value-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 57px;
    height: 57px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b87913;
    background: #fff3dc;
    border: 1px solid #efd4a0;
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 18px rgba(184, 121, 19, 0.08);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.fh-about-value-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.fh-about-value-card:hover .fh-about-value-icon {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
    transform: scale(1.05);
}

.fh-about-value-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #293448;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.026em;
}

.fh-about-value-card p {
    position: relative;
    z-index: 2;
    margin: 11px 0 0;
    color: #697386;
    font-size: 12px;
    line-height: 1.68;
}

/* =========================================================
   Proceso de acompañamiento
   ========================================================= */

.fh-about-process {
    margin-bottom: 30px;
    padding: 41px 36px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 93% 9%,
            rgba(217, 155, 43, 0.2),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 58%,
            #293d57 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 17px 45px rgba(18, 31, 53, 0.18);
}

.fh-about-process-heading {
    max-width: 770px;
    margin-bottom: 30px;
}

.fh-about-process-heading > span {
    margin-bottom: 10px;
    color: #efb94f;
}

.fh-about-process-heading h2 {
    color: #ffffff;
}

.fh-about-process-heading p {
    max-width: 660px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 14px;
    line-height: 1.7;
}

.fh-about-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fh-about-process-grid article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 15px;
    min-width: 0;
    margin: 0;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-about-process-grid article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(232, 173, 63, 0.58);
    box-shadow: 0 13px 29px rgba(0, 0, 0, 0.17);
    transform: translateY(-3px);
}

.fh-about-process-grid article > strong {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(217, 155, 43, 0.12);
    border: 1px solid rgba(232, 173, 63, 0.34);
    border-radius: 13px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.fh-about-process-grid article > div {
    min-width: 0;
}

.fh-about-process-grid h3 {
    margin: 1px 0 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.fh-about-process-grid p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   Compromiso
   ========================================================= */

.fh-about-commitment {
    position: relative;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 27px;
    align-items: center;
    margin-bottom: 30px;
    padding: 35px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 91% 7%,
            rgba(217, 155, 43, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #ffffff 55%,
            #fff4df 100%
        );
    border: 1px solid #e6cf9e;
    border-radius: 21px;
    box-shadow: 0 15px 41px rgba(18, 31, 53, 0.09);
}

.fh-about-commitment::after {
    position: absolute;
    right: -90px;
    bottom: -125px;
    width: 265px;
    height: 265px;
    background: rgba(217, 155, 43, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-about-commitment-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 95px;
    height: 95px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #e1a337,
            #b87913
        );
    border: 1px solid #b87913;
    border-radius: 25px;
    box-shadow: 0 16px 31px rgba(184, 121, 19, 0.24);
    transform: rotate(-3deg);
}

.fh-about-commitment-icon svg {
    width: 43px;
    height: 43px;
    fill: currentColor;
    transform: rotate(3deg);
}

.fh-about-commitment-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.fh-about-commitment-content > span {
    display: block;
    margin-bottom: 8px;
    color: #a86d0e;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-about-commitment h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.fh-about-commitment p {
    max-width: 760px;
    margin: 13px 0 0;
    color: #687386;
    font-size: 14px;
    line-height: 1.72;
}

/* =========================================================
   CTA final
   ========================================================= */

.fh-about-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 36px 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 91% 3%,
            rgba(217, 155, 43, 0.17),
            transparent 31%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 41px rgba(18, 31, 53, 0.09);
}

.fh-about-cta::after {
    position: absolute;
    right: -85px;
    bottom: -115px;
    width: 250px;
    height: 250px;
    background: rgba(217, 155, 43, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-about-cta > div {
    position: relative;
    z-index: 2;
}

.fh-about-cta > div:first-child {
    max-width: 760px;
}

.fh-about-cta > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: #b87913;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-about-cta h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.fh-about-cta p {
    max-width: 680px;
    margin: 13px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.fh-about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.fh-about-cta .fh-about-button--secondary {
    color: #293448;
    background: #ffffff;
    border-color: #d8dfe7;
    box-shadow: 0 8px 18px rgba(18, 31, 53, 0.06);
}

.fh-about-cta .fh-about-button--secondary:hover,
.fh-about-cta .fh-about-button--secondary:focus {
    color: #ffffff;
    background: #202e44;
    border-color: #202e44;
    box-shadow: 0 11px 24px rgba(18, 31, 53, 0.16);
}

/* =========================================================
   Responsive de Nosotros
   ========================================================= */

@media (max-width: 1080px) {
    .fh-about-hero {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
        gap: 34px;
        padding: 51px 44px;
    }

    .fh-about-logo-card {
        padding: 23px;
    }

    .fh-about-logo-card-image {
        min-height: 145px;
    }

    .fh-about-logo {
        max-width: 205px;
        max-height: 105px;
    }

    .fh-about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .fh-about-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }

    .fh-about-hero-visual {
        min-height: auto;
    }

    .fh-about-logo-card {
        width: min(100%, 520px);
        transform: none;
    }

    .fh-about-introduction-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    .fh-about-introduction-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .fh-about-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-about-cta {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .fh-about-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .fh-about-page {
        width: calc(100% - 24px);
        margin: 28px auto 48px;
    }

    .fh-about-hero {
        gap: 31px;
        margin-bottom: 22px;
        padding: 37px 24px;
        border-radius: 19px;
    }

    .fh-about-hero h1 {
        font-size: clamp(34px, 9vw, 44px);
    }

    .fh-about-hero-content > p {
        font-size: 15px;
        line-height: 1.68;
    }

    .fh-about-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-about-button {
        width: 100%;
    }

    .fh-about-logo-card {
        padding: 19px;
        border-radius: 19px;
    }

    .fh-about-logo-card-image {
        min-height: 125px;
        padding: 19px;
        border-radius: 15px;
    }

    .fh-about-logo {
        max-width: 190px;
        max-height: 94px;
    }

    .fh-about-introduction,
    .fh-about-values,
    .fh-about-process {
        margin-bottom: 22px;
        padding: 29px 21px;
        border-radius: 18px;
    }

    .fh-about-introduction-heading {
        margin-bottom: 25px;
        padding-bottom: 23px;
    }

    .fh-about-introduction-heading h2,
    .fh-about-section-heading h2,
    .fh-about-process-heading h2 {
        font-size: 30px;
    }

    .fh-about-section-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .fh-about-section-heading > span {
        justify-content: flex-start;
    }

    .fh-about-section-heading > span::after {
        display: none;
    }

    .fh-about-section-heading p {
        margin-left: 0;
    }

    .fh-about-values-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-about-process-heading {
        margin-bottom: 23px;
    }

    .fh-about-commitment {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        margin-bottom: 22px;
        padding: 29px 22px;
        border-radius: 18px;
    }

    .fh-about-commitment-icon {
        width: 78px;
        height: 78px;
        border-radius: 21px;
    }

    .fh-about-commitment-icon svg {
        width: 36px;
        height: 36px;
    }

    .fh-about-cta {
        gap: 24px;
        padding: 29px 22px;
        border-radius: 18px;
    }

    .fh-about-cta-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }
}

@media (max-width: 390px) {
    .fh-about-page {
        width: calc(100% - 18px);
        margin-top: 22px;
    }

    .fh-about-hero {
        padding: 32px 19px;
    }

    .fh-about-hero h1 {
        font-size: 32px;
    }

    .fh-about-logo-card {
        padding: 16px;
    }

    .fh-about-logo-card-image {
        min-height: 115px;
        padding: 16px;
    }

    .fh-about-logo {
        max-width: 170px;
        max-height: 84px;
    }

    .fh-about-introduction,
    .fh-about-values,
    .fh-about-process {
        padding: 25px 16px;
    }

    .fh-about-introduction-heading h2,
    .fh-about-section-heading h2,
    .fh-about-process-heading h2 {
        font-size: 27px;
    }

    .fh-about-introduction-points article {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 11px;
        padding: 14px;
    }

    .fh-about-introduction-points article > span {
        width: 44px;
        height: 44px;
    }

    .fh-about-value-card {
        padding: 22px 18px;
    }

    .fh-about-value-number {
        top: 16px;
        right: 16px;
        font-size: 28px;
    }

    .fh-about-value-icon {
        width: 52px;
        height: 52px;
    }

    .fh-about-value-icon svg {
        width: 25px;
        height: 25px;
    }

    .fh-about-process-grid article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 15px;
    }

    .fh-about-process-grid article > strong {
        width: 48px;
        height: 48px;
    }

    .fh-about-commitment {
        padding: 26px 18px;
    }

    .fh-about-commitment h2 {
        font-size: 27px;
    }

    .fh-about-cta {
        padding: 26px 18px;
    }

    .fh-about-cta h2 {
        font-size: 27px;
    }
}
/* =========================================================
   Página Publica tu propiedad
   ========================================================= */

.fh-property-submission-page {
    box-sizing: border-box;
    width: min(1240px, calc(100% - 40px));
    margin: 42px auto 72px;
    color: #202a3b;
}

.fh-property-submission-page *,
.fh-property-submission-page *::before,
.fh-property-submission-page *::after {
    box-sizing: border-box;
}

/* =========================================================
   Hero
   ========================================================= */

.fh-property-submission-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    gap: 46px;
    align-items: center;
    min-height: 475px;
    margin-bottom: 30px;
    padding: 58px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(217, 155, 43, 0.28),
            transparent 31%
        ),
        radial-gradient(
            circle at 72% 108%,
            rgba(255, 255, 255, 0.06),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #172033 0%,
            #202e44 57%,
            #2d425d 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    box-shadow: 0 22px 56px rgba(18, 31, 53, 0.2);
}

.fh-property-submission-hero::before {
    position: absolute;
    top: -150px;
    right: -95px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-property-submission-hero::after {
    position: absolute;
    right: 20%;
    bottom: -210px;
    width: 370px;
    height: 370px;
    background: rgba(217, 155, 43, 0.065);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-property-submission-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.fh-property-submission-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #efb94f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fh-property-submission-eyebrow::before {
    width: 31px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-property-submission-hero h1 {
    max-width: 880px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(39px, 4.5vw, 61px);
    font-weight: 900;
    line-height: 1.055;
    letter-spacing: -0.049em;
}

.fh-property-submission-hero-content > p {
    max-width: 720px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.fh-property-submission-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fh-property-submission-hero-features span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.fh-property-submission-hero-features svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: #efb94f;
}

.fh-property-submission-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 310px;
    align-items: center;
    justify-content: center;
}

.fh-property-submission-hero-card {
    position: relative;
    display: flex;
    width: min(100%, 320px);
    min-height: 285px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 31px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.055)
        );
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 28px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 27px 58px rgba(0, 0, 0, 0.22);
    transform: rotate(3deg);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.fh-property-submission-hero-card::before {
    position: absolute;
    top: -70px;
    right: -65px;
    width: 190px;
    height: 190px;
    background: rgba(217, 155, 43, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fh-property-submission-hero-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 104px;
    height: 104px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(23, 32, 51, 0.44);
    border: 1px solid rgba(232, 173, 63, 0.35);
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

.fh-property-submission-hero-icon svg {
    width: 52px;
    height: 52px;
    fill: currentColor;
}

.fh-property-submission-hero-card > strong {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.fh-property-submission-hero-card > span:last-child {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================================================
   Avisos de envío
   ========================================================= */

.fh-property-submission-notice {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
    padding: 17px 19px;
    border: 1px solid;
    border-radius: 14px;
    box-shadow: 0 11px 26px rgba(18, 31, 53, 0.08);
}

.fh-property-submission-notice > svg {
    width: 27px;
    height: 27px;
    margin: auto;
    fill: currentColor;
}

.fh-property-submission-notice > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.fh-property-submission-notice strong {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.fh-property-submission-notice span {
    font-size: 12px;
    line-height: 1.55;
}

.fh-property-submission-notice--success {
    color: #17653a;
    background: #eef9f2;
    border-color: #b8dfc7;
}

.fh-property-submission-notice--error {
    color: #9d2f2f;
    background: #fff2f2;
    border-color: #ebc1c1;
}

/* =========================================================
   Distribución principal
   ========================================================= */

.fh-property-submission-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px;
    align-items: start;
}

/* =========================================================
   Columna informativa
   ========================================================= */

.fh-property-submission-information {
    position: sticky;
    top: 145px;
    min-width: 0;
    padding: 31px 27px;
    background:
        radial-gradient(
            circle at 93% 4%,
            rgba(217, 155, 43, 0.11),
            transparent 28%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

body.admin-bar .fh-property-submission-information {
    top: 177px;
}

.fh-property-submission-section-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #b87913;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-property-submission-section-heading > span::before {
    width: 27px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-property-submission-section-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(27px, 2.6vw, 36px);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -0.041em;
}

.fh-property-submission-section-heading p {
    margin: 14px 0 0;
    color: #697386;
    font-size: 13px;
    line-height: 1.7;
}

.fh-property-submission-steps {
    display: grid;
    gap: 11px;
    margin-top: 25px;
}

.fh-property-submission-steps article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e1e7ed;
    border-radius: 13px;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.fh-property-submission-steps article:hover {
    background: #ffffff;
    border-color: #dfbd78;
    box-shadow: 0 11px 25px rgba(18, 31, 53, 0.09);
    transform: translateY(-2px);
}

.fh-property-submission-steps article > strong {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #b87913;
    background: #fff2d9;
    border: 1px solid #efd2a0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.fh-property-submission-steps article > div {
    min-width: 0;
}

.fh-property-submission-steps h3 {
    margin: 1px 0 0;
    color: #293448;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.fh-property-submission-steps p {
    margin: 6px 0 0;
    color: #6d7788;
    font-size: 11px;
    line-height: 1.62;
}

.fh-property-submission-contact-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-top: 22px;
    padding: 18px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(217, 155, 43, 0.2),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #172033,
            #253851
        );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    box-shadow: 0 13px 29px rgba(18, 31, 53, 0.15);
}

.fh-property-submission-contact-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #efb94f;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.fh-property-submission-contact-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.fh-property-submission-contact-card > div {
    min-width: 0;
}

.fh-property-submission-contact-card > div > span {
    display: block;
    margin-bottom: 3px;
    color: #efb94f;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fh-property-submission-contact-card > div > strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.fh-property-submission-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-top: 10px;
}

.fh-property-submission-contact-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fh-property-submission-contact-links a:hover,
.fh-property-submission-contact-links a:focus {
    color: #efb94f;
    outline: none;
    text-decoration: none;
}

.fh-property-submission-assurance {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    margin-top: 16px;
    padding: 14px;
    background: #fff8ea;
    border: 1px solid #ead1a1;
    border-radius: 13px;
}

.fh-property-submission-assurance > svg {
    width: 23px;
    height: 23px;
    margin: 3px auto 0;
    fill: #b87913;
}

.fh-property-submission-assurance > div {
    min-width: 0;
}

.fh-property-submission-assurance strong {
    display: block;
    color: #57421f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.fh-property-submission-assurance span {
    display: block;
    margin-top: 3px;
    color: #756448;
    font-size: 10px;
    line-height: 1.55;
}

/* =========================================================
   Tarjeta y encabezado del formulario
   ========================================================= */

.fh-property-submission-form-card {
    min-width: 0;
    padding: 36px;
    background:
        radial-gradient(
            circle at 96% 2%,
            rgba(217, 155, 43, 0.08),
            transparent 23%
        ),
        #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 21px;
    box-shadow: 0 15px 42px rgba(18, 31, 53, 0.08);
}

.fh-property-submission-form-heading {
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e4e9ef;
}

.fh-property-submission-form-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #b87913;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fh-property-submission-form-heading > span::before {
    width: 27px;
    height: 2px;
    background: #d99b2b;
    border-radius: 999px;
    content: "";
}

.fh-property-submission-form-heading h2 {
    margin: 0;
    color: #202a3b;
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -0.042em;
}

.fh-property-submission-form-heading p {
    margin: 13px 0 0;
    color: #697386;
    font-size: 13px;
    line-height: 1.68;
}

/* =========================================================
   Formulario
   ========================================================= */

.fh-property-submission-form {
    display: grid;
    gap: 22px;
    margin: 0;
}

.fh-property-submission-fieldset {
    min-width: 0;
    margin: 0;
    padding: 25px 23px 23px;
    background: #f9fafc;
    border: 1px solid #e1e7ed;
    border-radius: 16px;
}

.fh-property-submission-fieldset legend {
    display: flex;
    width: auto;
    max-width: 100%;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0 10px 0 0;
    color: #293448;
    background: transparent;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.fh-property-submission-fieldset legend span {
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;
    color: #a96e10;
    background: #fff0d3;
    border: 1px solid #eccd91;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.fh-property-submission-form-row,
.fh-property-submission-price-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.fh-property-submission-price-row {
    grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.75fr);
}

.fh-property-submission-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin-top: 18px;
}

.fh-property-submission-field {
    min-width: 0;
    margin: 0;
}

.fh-property-submission-field + .fh-property-submission-field {
    margin-top: 17px;
}

.fh-property-submission-form-row
    .fh-property-submission-field
    + .fh-property-submission-field,
.fh-property-submission-price-row
    .fh-property-submission-field
    + .fh-property-submission-field,
.fh-property-submission-features-grid
    .fh-property-submission-field
    + .fh-property-submission-field {
    margin-top: 0;
}

.fh-property-submission-field label {
    display: block;
    margin: 0 0 7px;
    color: #3c475a;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.015em;
}

.fh-property-submission-field label strong {
    color: #b54545;
    font-weight: 900;
}

.fh-property-submission-field input,
.fh-property-submission-field select,
.fh-property-submission-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    color: #293448;
    background: #ffffff;
    border: 1px solid #d5dde6;
    border-radius: 10px;
    box-shadow: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-property-submission-field input,
.fh-property-submission-field select {
    height: 47px;
    padding: 10px 13px;
}

.fh-property-submission-field select {
    padding-right: 38px;
    cursor: pointer;
}

.fh-property-submission-field textarea {
    min-height: 155px;
    padding: 13px;
    resize: vertical;
}

.fh-property-submission-field input::placeholder,
.fh-property-submission-field textarea::placeholder {
    color: #a3abb7;
    opacity: 1;
}

.fh-property-submission-field input:hover,
.fh-property-submission-field select:hover,
.fh-property-submission-field textarea:hover {
    border-color: #bdc7d2;
}

.fh-property-submission-field input:focus,
.fh-property-submission-field select:focus,
.fh-property-submission-field textarea:focus {
    background: #ffffff;
    border-color: #d49a31;
    box-shadow: 0 0 0 4px rgba(217, 155, 43, 0.12);
    outline: none;
}

.fh-property-submission-field input:invalid:not(:placeholder-shown),
.fh-property-submission-field textarea:invalid:not(:placeholder-shown) {
    border-color: #d5dde6;
}

.fh-property-submission-field > small {
    display: block;
    margin-top: 8px;
    color: #7a8493;
    font-size: 10px;
    line-height: 1.55;
}

/* =========================================================
   Casillas personalizadas
   ========================================================= */

.fh-property-submission-checkbox {
    position: relative;
    display: grid;
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    width: fit-content;
    max-width: 100%;
    margin: 17px 0 0;
    color: #4c586a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
}

.fh-property-submission-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.fh-property-submission-checkbox-box {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: #ffffff;
    border: 1px solid #cbd4de;
    border-radius: 6px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-property-submission-checkbox-box svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.fh-property-submission-checkbox:hover
    .fh-property-submission-checkbox-box {
    border-color: #d49a31;
}

.fh-property-submission-checkbox input:focus-visible
    + .fh-property-submission-checkbox-box {
    border-color: #d49a31;
    box-shadow: 0 0 0 4px rgba(217, 155, 43, 0.13);
}

.fh-property-submission-checkbox input:checked
    + .fh-property-submission-checkbox-box {
    color: #ffffff;
    background: #d99b2b;
    border-color: #d99b2b;
}

.fh-property-submission-authorization {
    width: 100%;
    margin: 0;
    padding: 16px 17px;
    color: #4e5a6c;
    background: #fff8ea;
    border: 1px solid #ead1a1;
    border-radius: 13px;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   Protección antispam
   ========================================================= */

.fh-property-submission-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   Botón de envío
   ========================================================= */

.fh-property-submission-submit {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 13px 22px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #dca23a,
            #b87913
        );
    border: 1px solid #b87913;
    border-radius: 11px;
    box-shadow: 0 12px 27px rgba(184, 121, 19, 0.24);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fh-property-submission-submit svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.fh-property-submission-submit:hover,
.fh-property-submission-submit:focus {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #c78b20,
            #9e640c
        );
    border-color: #9e640c;
    box-shadow: 0 15px 33px rgba(184, 121, 19, 0.31);
    outline: none;
    transform: translateY(-2px);
}

.fh-property-submission-submit:hover svg,
.fh-property-submission-submit:focus svg {
    transform: translateX(3px);
}

.fh-property-submission-form-note {
    margin: -5px 0 0;
    color: #7a8493;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.fh-property-submission-form-note a {
    color: #9c650d;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.fh-property-submission-form-note a:hover,
.fh-property-submission-form-note a:focus {
    color: #202e44;
    outline: none;
    text-decoration: underline;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
    .fh-property-submission-hero {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.58fr);
        gap: 34px;
        padding: 51px 44px;
    }

    .fh-property-submission-hero-card {
        min-height: 255px;
    }

    .fh-property-submission-layout {
        grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
        gap: 20px;
    }

    .fh-property-submission-information {
        padding: 27px 23px;
    }

    .fh-property-submission-form-card {
        padding: 31px;
    }

    .fh-property-submission-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .fh-property-submission-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }

    .fh-property-submission-hero-visual {
        display: none;
    }

    .fh-property-submission-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-information {
        position: static;
    }

    .fh-property-submission-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fh-property-submission-steps article {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-contact-card {
        grid-template-columns: 52px minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .fh-property-submission-page {
        width: calc(100% - 24px);
        margin: 28px auto 48px;
    }

    .fh-property-submission-hero {
        margin-bottom: 22px;
        padding: 37px 24px;
        border-radius: 19px;
    }

    .fh-property-submission-hero h1 {
        font-size: clamp(34px, 9vw, 44px);
    }

    .fh-property-submission-hero-content > p {
        font-size: 15px;
        line-height: 1.68;
    }

    .fh-property-submission-hero-features {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-hero-features span {
        width: fit-content;
    }

    .fh-property-submission-notice {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 15px;
        border-radius: 13px;
    }

    .fh-property-submission-information,
    .fh-property-submission-form-card {
        padding: 28px 21px;
        border-radius: 18px;
    }

    .fh-property-submission-section-heading h2,
    .fh-property-submission-form-heading h2 {
        font-size: 30px;
    }

    .fh-property-submission-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-steps article {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .fh-property-submission-form-row,
    .fh-property-submission-price-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-price-row {
        gap: 17px;
    }

    .fh-property-submission-fieldset {
        padding: 22px 18px 20px;
        border-radius: 14px;
    }

    .fh-property-submission-fieldset legend {
        margin-bottom: 18px;
    }

    .fh-property-submission-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .fh-property-submission-contact-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-contact-links {
        flex-direction: column;
    }

    .fh-property-submission-features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh-property-submission-checkbox {
        grid-template-columns: 22px minmax(0, 1fr);
    }
}

@media (max-width: 390px) {
    .fh-property-submission-page {
        width: calc(100% - 18px);
        margin-top: 22px;
    }

    .fh-property-submission-hero {
        padding: 32px 19px;
    }

    .fh-property-submission-hero h1 {
        font-size: 32px;
    }

    .fh-property-submission-information,
    .fh-property-submission-form-card {
        padding: 25px 16px;
    }

    .fh-property-submission-section-heading h2,
    .fh-property-submission-form-heading h2 {
        font-size: 27px;
    }

    .fh-property-submission-contact-card {
        padding: 16px;
    }

    .fh-property-submission-fieldset {
        padding: 20px 14px 18px;
    }

    .fh-property-submission-fieldset legend {
        gap: 8px;
        padding-right: 4px;
        font-size: 14px;
    }

    .fh-property-submission-fieldset legend span {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .fh-property-submission-authorization {
        padding: 14px;
    }

    .fh-property-submission-submit {
        min-height: 52px;
        padding-right: 16px;
        padding-left: 16px;
        font-size: 12px;
    }
}
/* =========================================================
   Filtrado AJAX de Propiedades
   ========================================================= */

.fh-properties-results-region {
    position: relative;
    scroll-margin-top: 145px;
    transition:
        opacity 0.2s ease,
        filter 0.2s ease;
}

body.admin-bar .fh-properties-results-region {
    scroll-margin-top: 177px;
}

/* Bloquear controles durante la actualización */

body.fh-properties-ajax-loading
    .fh-properties-navigation
    a,
body.fh-properties-ajax-loading
    .fh-search-form--advanced
    button,
body.fh-properties-ajax-loading
    .fh-search-form--advanced
    input,
body.fh-properties-ajax-loading
    .fh-search-form--advanced
    select,
body.fh-properties-ajax-loading
    .fh-search-form--advanced
    summary,
body.fh-properties-ajax-loading
    .fh-properties-results-sort
    button,
body.fh-properties-ajax-loading
    .fh-properties-results-sort
    select,
body.fh-properties-ajax-loading
    .fh-pagination
    a {
    pointer-events: none;
}

/* Atenuar el catálogo mientras llegan los nuevos resultados */

.fh-properties-results-region.is-loading {
    min-height: 260px;
    opacity: 0.52;
    filter: saturate(0.72);
    pointer-events: none;
}

/* Capa de carga */

.fh-properties-results-region.is-loading::before {
    position: absolute;
    z-index: 30;
    inset: 0;
    min-height: 260px;
    background: rgba(255, 255, 255, 0.38);
    border-radius: 18px;
    content: "";
    pointer-events: none;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Indicador central */

.fh-properties-results-region.is-loading::after {
    position: absolute;
    top: 105px;
    left: 50%;
    z-index: 31;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    background:
        conic-gradient(
            from 0deg,
            #d99b2b,
            #202e44,
            #d99b2b
        );
    border: 5px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(18, 31, 53, 0.08),
        0 12px 28px rgba(18, 31, 53, 0.18);
    content: "";
    animation: fh-properties-ajax-spin 0.75s linear infinite;
    pointer-events: none;
}

@keyframes fh-properties-ajax-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mostrar visualmente que las categorías están procesando */

body.fh-properties-ajax-loading
    .fh-properties-navigation {
    cursor: progress;
}

body.fh-properties-ajax-loading
    .fh-properties-navigation
    a,
body.fh-properties-ajax-loading
    .fh-search-form--advanced,
body.fh-properties-ajax-loading
    .fh-properties-results-sort,
body.fh-properties-ajax-loading
    .fh-pagination {
    cursor: progress;
}

/* Mantener enfoque accesible después del reemplazo */

.fh-properties-results-region:focus {
    outline: none;
}

.fh-properties-results-region:focus-visible {
    outline: 3px solid rgba(217, 155, 43, 0.38);
    outline-offset: 7px;
    border-radius: 18px;
}

/* Responsive */

@media (max-width: 980px) {
    .fh-properties-results-region {
        scroll-margin-top: 102px;
    }

    body.admin-bar .fh-properties-results-region {
        scroll-margin-top: 148px;
    }
}

@media (max-width: 720px) {
    .fh-properties-results-region {
        scroll-margin-top: 92px;
    }

    .fh-properties-results-region.is-loading,
    .fh-properties-results-region.is-loading::before {
        min-height: 220px;
    }

    .fh-properties-results-region.is-loading::after {
        top: 82px;
        width: 38px;
        height: 38px;
        margin-left: -19px;
        border-width: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fh-properties-results-region {
        transition: none;
    }

    .fh-properties-results-region.is-loading::after {
        animation-duration: 1.5s;
    }
}