.section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading--split>div {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
}

/*CSS del hero*/
.hero {
    position: relative;
    overflow: hidden;
    padding-block: 76px 86px;
    background:
        radial-gradient(circle at 84% 42%,
            rgba(245, 124, 0, 0.14),
            transparent 33%),
        linear-gradient(135deg, #ffffff 0%, #f6f7f8 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;
    width: 520px;
    aspect-ratio: 1;
    border: 1px solid rgba(245, 124, 0, 0.14);
    border-radius: 50%;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 72px;
}

.hero__text {
    max-width: 730px;
}

.hero h1 {
    color: var(--color-graphite);
}

.hero__text>p {
    max-width: 660px;
    margin: 0;
    color: var(--color-steel);
    font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.18rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.hero__benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-graphite);
    font-size: 0.92rem;
    font-weight: 650;
}

.hero__check {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange-soft);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 900;
}

.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    border-radius: 32px 32px 110px 32px;
    background: #e8eaeb;
    box-shadow: 0 34px 80px rgba(35, 39, 42, 0.16);
}

.hero__image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: inherit;
    pointer-events: none;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
}

.hero__floating-card {
    position: absolute;
    left: -44px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 315px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.hero__floating-number {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 800;
}

.hero__floating-card strong,
.hero__floating-card span {
    display: block;
}

.hero__floating-card strong {
    margin-bottom: 3px;
    color: var(--color-graphite);
    font-size: 0.96rem;
}

.hero__floating-card div span {
    color: var(--color-steel);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* TRUST STRIP */
.trust-strip {
    background: var(--color-graphite);
    color: var(--color-white);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 130px;
    padding: 28px 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item__number {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.trust-item h2 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.trust-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
    line-height: 1.5;
}


/* CATEGORÍAS */

.product-categories {
    background: var(--color-white);
}

.product-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: var(--shadow-card);
}

.category-card__link {
    display: block;
    height: 100%;
}

.category-card__image {
    overflow: hidden;
    aspect-ratio: 1.3 / 1;
    background: #eceeef;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0) scale(1);
}

.category-card:hover .category-card__image img {
    transform: translateZ(0) scale(1.045);
}

.category-card__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px;
}

.category-card__number {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
}

.category-card h3 {
    margin: 0 0 11px;
    font-size: 1.28rem;
    line-height: 1.3;
    color: var(--color-graphite);
}

.category-card p {
    margin: 0;
    color: var(--color-steel);
    font-size: 0.93rem;
    line-height: 1.65;
}

.category-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 800;
}

/* PRODUCTOS DESTACADOS */
.featured-products {
    background: var(--color-background);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--color-orange);
    font-weight: 800;
}

.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.24 / 1;
    background: #e8eaeb;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0) scale(1);
}

.product-card:hover .product-card__image img {
    transform: translateZ(0) scale(1.05);
}

.product-card__category {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(41, 45, 48, 0.88);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.product-card__content {
    padding: 24px;
}

.product-card h3 {
    margin: 0 0 10px;
    font-size: 1.13rem;
}

.product-card h3 a {
    color: var(--color-graphite);
}

.product-card p {
    margin: 0;
    color: var(--color-steel);
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--color-orange);
    font-size: 0.88rem;
    font-weight: 800;
}

/* PROPUESTA DE VALOR */
.value-section {
    background: var(--color-white);
}

.value-section__content {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    align-items: center;
    gap: 82px;
}

.value-section__visual {
    position: relative;
}

.value-section__image {
    overflow: hidden;
    border-radius: 32px 110px 32px 32px;
    background: #e7e9ea;
}

.value-section__image img {
    display: block;
    width: 100%;
    min-height: 640px;
    object-fit: cover;
}

.value-section__label {
    position: absolute;
    right: -36px;
    bottom: 42px;
    max-width: 260px;
    padding: 22px 25px;
    border-radius: 18px;
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 22px 50px rgba(245, 124, 0, 0.25);
}

.value-section__label span,
.value-section__label strong {
    display: block;
}

.value-section__label span {
    margin-bottom: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-section__label strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.3;
}

.value-section__intro {
    margin: 0;
    color: var(--color-steel);
    font-size: 1.02rem;
    line-height: 1.75;
}

.value-list {
    margin-block: 32px;
}

.value-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding-block: 20px;
    border-bottom: 1px solid var(--color-border);
}

.value-item:first-child {
    border-top: 1px solid var(--color-border);
}

.value-item__number {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
}

.value-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.value-item p {
    margin: 0;
    color: var(--color-steel);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* SECTORES */
.industries {
    background: var(--color-background);
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    min-height: 230px;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 124, 0, 0.4);
}

.industry-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 30px;
    border-radius: 14px;
    background: var(--color-orange-soft);
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
}

.industry-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.industry-card p {
    margin: 0;
    color: var(--color-steel);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PERSONALIZACIÓN */
.custom-solutions {
    background: var(--color-white);
}

.custom-solutions__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    background: var(--color-graphite);
}

.custom-solutions__text {
    padding: 76px 70px;
}

.custom-solutions h2 {
    color: var(--color-white);
}

.custom-solutions__text>p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}

.custom-solutions__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.custom-solutions__list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
}

.custom-solutions__list li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-orange);
}

.custom-solutions__image {
    height: 100%;
    min-height: 600px;
}

.custom-solutions__image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

/* CTA FINAL */
.final-cta {
    padding-bottom: 104px;
    background: var(--color-white);
}

.final-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 54px 60px;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    background:
        linear-gradient(100deg,
            rgba(245, 124, 0, 0.08),
            transparent 45%),
        var(--color-white);
}

.final-cta__content>div:first-child {
    max-width: 760px;
}

.final-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 1.4rem + 1vw, 2.6rem);
}

.final-cta p {
    margin: 0;
    color: var(--color-steel);
    line-height: 1.7;
}

.final-cta__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.final-cta__phone span,
.final-cta__phone strong {
    display: block;
}

.final-cta__phone span {
    margin-bottom: 3px;
    color: var(--color-steel);
    font-size: 0.76rem;
}

.final-cta__phone strong {
    color: var(--color-graphite);
    font-size: 0.94rem;
}

.final-cta__phone:hover strong {
    text-shadow: 0px 1px 0px var(--color-graphite);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero__content {
        grid-template-columns: 1fr 0.85fr;
        gap: 45px;
    }

    .hero__image-wrapper,
    .hero__image-wrapper img {
        min-height: 520px;
    }

    .featured-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-section__content {
        gap: 50px;
    }

    .value-section__label {
        right: -20px;
    }

    .custom-solutions__text {
        padding: 60px 44px;
    }

    .final-cta__content {
        padding: 48px 42px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-block: 62px 74px;
    }

    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__text {
        max-width: 760px;
    }

    .hero__visual {
        max-width: 720px;
    }

    .hero__floating-card {
        left: 24px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .product-categories__grid {
        grid-template-columns: 1fr;
    }

    .category-card__link {
        display: grid;
        grid-template-columns: minmax(260px, 0.82fr) 1fr;
    }

    .category-card__image {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .value-section__content {
        grid-template-columns: 1fr;
    }

    .value-section__visual {
        max-width: 720px;
    }

    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-solutions__content {
        grid-template-columns: 1fr;
    }

    .custom-solutions__image {
        min-height: 440px;
    }

    .custom-solutions__image img {
        min-height: 440px;
    }

    .final-cta {
        padding-bottom: 80px;
    }

    .final-cta__content {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero {
        padding-block: 48px 64px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__benefits {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero__image-wrapper,
    .hero__image-wrapper img {
        min-height: 420px;
    }

    .hero__image-wrapper {
        border-radius: 24px 24px 70px 24px;
    }

    .hero__floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: -38px 18px 0;
    }

    .trust-item {
        padding-inline: 10px;
    }

    .category-card__link {
        display: block;
    }

    .category-card__image {
        min-height: auto;
        aspect-ratio: 1.3 / 1;
    }

    .category-card__content {
        padding: 24px 20px;
    }

    .featured-products__grid,
    .industries__grid {
        grid-template-columns: 1fr;
    }

    .value-section__image img {
        min-height: 440px;
    }

    .value-section__label {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: -35px 18px 0;
    }

    .custom-solutions__content {
        border-radius: 24px;
    }

    .custom-solutions__text {
        padding: 48px 24px;
    }

    .custom-solutions__list {
        grid-template-columns: 1fr;
    }

    .custom-solutions__image,
    .custom-solutions__image img {
        min-height: 340px;
    }

    .final-cta {
        padding-block: 0px;
        margin-bottom: 72px;
    }

    .final-cta__content {
        padding: 38px 24px;
    }

    .final-cta__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .final-cta__actions .button {
        width: 100%;
    }
}