/*
==========================================================================
Global Import & Export S.A. - Home
==========================================================================
*/

:root {
    --home-black: #050505;
    --home-ink: #111111;
    --home-ink-soft: #1b1d21;
    --home-white: #ffffff;
    --home-paper: #f7f8fa;
    --home-line: #e5e7eb;
    --home-line-strong: #cbd5e1;
    --home-muted: #64748b;
    --home-muted-dark: #334155;
    --home-cyan: #0ea5e9;
    --home-cyan-soft: rgba(14, 165, 233, 0.12);
    --home-success: #16a34a;
    --home-danger: #dc2626;
    --font-heading: "Outfit", "Inter", sans-serif;
    --font-body: "Inter", sans-serif;
    --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.32);
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page {
    font-family: var(--font-body);
    color: var(--home-ink);
    background: var(--home-white);
    overflow-x: hidden;
}

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

.home-page a,
.home-page button {
    -webkit-tap-highlight-color: transparent;
}

.home-page {
    scroll-behavior: smooth;
}

/*
==========================================================================
Slider configurable
==========================================================================
*/

.home-slider {
    position: relative;
    height: min(720px, 78vh);
    min-height: 520px;
    overflow: hidden;
    background: var(--home-black);
}

.home-slider__track,
.home-slide,
.home-slide picture,
.home-slide img {
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 550ms var(--transition);
}

.home-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.home-slide picture,
.home-slide img {
    display: block;
}

.home-slide img {
    object-fit: cover;
}

.home-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.home-slide__overlay--desktop-none,
.home-slide__overlay--mobile-none {
    background: transparent;
}

.home-slide__overlay--desktop-soft,
.home-slide__overlay--mobile-soft {
    background: rgba(0, 0, 0, 0.28);
}

.home-slide__overlay--desktop-medium,
.home-slide__overlay--mobile-medium {
    background: rgba(0, 0, 0, 0.48);
}

.home-slide__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: min(640px, calc(100% - 52px));
    color: var(--home-white);
}

.home-slide__content--desktop {
    display: block;
}

.home-slide__content--mobile {
    display: none;
}

.home-slide__content--left {
    left: max(26px, calc((100vw - 1380px) / 2 + 26px));
    text-align: left;
}

.home-slide__content--center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.home-slide__content--right {
    right: max(26px, calc((100vw - 1380px) / 2 + 26px));
    text-align: right;
}

.home-slide__content--oscuro {
    color: var(--home-black);
}

.home-slide__content h1 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.04em;
    word-break: break-word;
}

.home-slide__content p {
    margin: 0 0 26px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.55;
}

.home-slide__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    padding: 0 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.22s var(--transition), background 0.22s ease, color 0.22s ease;
}

.home-slide__btn--celeste,
.home-slide__btn--amarillo {
    background: var(--home-cyan);
    color: var(--home-white);
}

.home-slide__btn--negro {
    background: var(--home-black);
    color: var(--home-white);
}

.home-slide__btn--blanco {
    background: var(--home-white);
    color: var(--home-black);
}

.home-slide__btn:hover {
    transform: translateY(-2px);
}

.home-slider__arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: var(--home-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.home-slider__arrow svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-slider[data-arrow-color="celeste"] .home-slider__arrow,
.home-slider[data-arrow-color="amarillo"] .home-slider__arrow {
    color: var(--home-cyan);
}

.home-slider[data-arrow-color="negro"] .home-slider__arrow {
    color: var(--home-black);
    background: rgba(255, 255, 255, 0.82);
}

.home-slider__arrow:hover {
    background: var(--home-cyan);
    color: var(--home-white);
}

.home-slider__arrow--prev {
    left: 24px;
}

.home-slider__arrow--next {
    right: 24px;
}

.home-slider__dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.home-slider__dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.home-slider[data-dot-color="celeste"] .home-slider__dots button.active,
.home-slider[data-dot-color="amarillo"] .home-slider__dots button.active {
    background: var(--home-cyan);
}

.home-slider[data-dot-color="negro"] .home-slider__dots button.active {
    background: var(--home-black);
}

.home-slider[data-dot-color="blanco"] .home-slider__dots button.active {
    background: var(--home-white);
}

.home-slider__dots button.active {
    width: 28px;
}

/*
==========================================================================
Hero fallback
==========================================================================
*/

.home-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 92px));
    display: flex;
    align-items: center;
    padding: 64px 0 64px;
    color: var(--home-white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.72)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.66)),
        url("/uploads/videos/home-hero-global.webp") center center / cover no-repeat;
    overflow: hidden;
}

.home-hero__video {
    position: absolute;
    top: -15vh;
    left: 0;
    z-index: 0;
    width: 100%;
    height: calc(100% + 30vh);
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    will-change: transform;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.26) 72%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68));
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--home-cyan), transparent);
}

.home-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-hero__content {
    max-width: 860px;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 26px;
    border: 1px solid rgba(14, 165, 233, 0.45);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #bae6fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--home-cyan);
    box-shadow: 0 0 18px rgba(14, 165, 233, 0.9);
}

.home-title {
    margin: 0;
    font-family: var(--font-heading);
    max-width: 860px;
    font-size: clamp(42px, 5.2vw, 74px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--home-white);
    text-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

.home-hero__headline {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--home-white);
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 750;
    line-height: 1.22;
    letter-spacing: -0.025em;
    text-wrap: balance;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.72);
}

.home-subtitle {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.22s var(--transition), background 0.22s ease, border 0.22s ease, color 0.22s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn:disabled {
    cursor: not-allowed;
}

.home-btn--primary {
    background: var(--home-white);
    color: var(--home-black);
    border-color: var(--home-white);
}

.home-btn--primary:hover {
    background: var(--home-cyan);
    border-color: var(--home-cyan);
    color: var(--home-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.home-btn--secondary {
    background: transparent;
    color: var(--home-white);
    border-color: rgba(255, 255, 255, 0.24);
}

.home-btn--secondary:hover {
    border-color: var(--home-cyan);
    background: rgba(14, 165, 233, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.2);
}

.home-btn--secondary:disabled {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: none;
}

.home-hero__indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero__indicators span {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.035em;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.home-hero__indicators span:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.home-hero__indicators span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--home-cyan);
    box-shadow: 0 0 14px rgba(14, 165, 233, 0.85);
    transform: translateY(-50%);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.home-hero__indicators span:hover::before {
    box-shadow: 0 0 20px rgba(14, 165, 233, 1);
    background: #ffffff;
}

/* Entradas coordinadas con el loader y activadas por seccion. */
.home-page .home-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 0.65, 0.3, 1);
    transition-delay: var(--home-reveal-delay, 100ms);
    will-change: opacity, transform;
}

.home-page .home-reveal.home-reveal--from-top:not(.home-reveal--active) {
    transform: translate3d(0, -34px, 0);
}

.home-page .home-reveal.home-reveal--active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.home-page .delay-1 { --home-reveal-delay: 180ms; }
.home-page .delay-2 { --home-reveal-delay: 300ms; }
.home-page .delay-3 { --home-reveal-delay: 420ms; }
.home-page .delay-4 { --home-reveal-delay: 540ms; }

.home-business-card:nth-child(2),
.home-process-step:nth-child(2),
.home-cat-card:nth-child(2),
.home-prod-card:nth-child(2) { --home-reveal-delay: 160ms; }

.home-business-card:nth-child(3),
.home-process-step:nth-child(3),
.home-cat-card:nth-child(3),
.home-prod-card:nth-child(3) { --home-reveal-delay: 280ms; }

.home-business-card:nth-child(4),
.home-process-step:nth-child(4),
.home-cat-card:nth-child(4),
.home-prod-card:nth-child(4) { --home-reveal-delay: 400ms; }

.home-business-card:nth-child(n + 5),
.home-cat-card:nth-child(n + 5),
.home-prod-card:nth-child(n + 5) { --home-reveal-delay: 520ms; }

@media (prefers-reduced-motion: reduce) {
    .home-hero__video {
        display: none;
    }
}

/*
==========================================================================
Immersive public experience refinements
==========================================================================
*/

.home-about,
.home-business,
.home-categories,
.home-products,
.home-corporate-channel {
    background-image:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.075), transparent 30%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0));
}

.home-section-kicker {
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.075);
}

.home-about__visual,
.home-business-card,
.home-process-step,
.home-corporate-channel__container,
.home-cat-card,
.home-prod-card {
    transform: translateZ(0);
}

.home-business-card::before,
.home-process-step::before,
.home-cat-card::before,
.home-prod-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), transparent 36%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.home-business-card:hover::before,
.home-process-step:hover::before,
.home-cat-card:hover::before,
.home-prod-card:hover::before {
    opacity: 1;
}

.home-business-card__icon,
.home-process-step__icon {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow:
        0 14px 28px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
    animation: homeIconPulse 3.8s ease-in-out infinite;
}

.home-business-card__icon::after,
.home-process-step__icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: inherit;
    opacity: 0.85;
    pointer-events: none;
}

@keyframes homeIconPulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(14, 165, 233, 0.2);
        filter: brightness(1);
        box-shadow:
            0 14px 28px rgba(15, 23, 42, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.75);
    }
    50% {
        transform: scale(1.09);
        border-color: rgba(14, 165, 233, 0.46);
        filter: brightness(1.04);
        box-shadow:
            0 18px 34px rgba(15, 23, 42, 0.12),
            inset 0 0 0 1px rgba(255, 255, 255, 0.92);
    }
}

@media (max-width: 900px) {
    .home-slider {
        height: auto;
        min-height: 0;
        margin: 0 0 34px;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    }

    .home-slider::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: inherit;
    }

    .home-slider__arrow {
        top: auto;
        bottom: 14px;
        transform: none;
        width: 42px;
        height: 42px;
        background: rgba(2, 6, 12, 0.68);
        backdrop-filter: blur(10px);
    }

    .home-slider__arrow--prev {
        left: auto;
        right: 78px;
    }

    .home-slider__arrow--next {
        right: 18px;
    }

    .home-slider__dots {
        left: 18px;
        right: auto;
        bottom: 28px;
        transform: none;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(2, 6, 12, 0.54);
        backdrop-filter: blur(10px);
    }

    .home-about,
    .home-business,
    .home-categories,
    .home-products,
    .home-process,
    .home-corporate-channel,
    .home-b2b,
    .home-cta-mayorista {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-page .home-reveal {
        transition-duration: 260ms;
        transform: translate3d(0, 14px, 0);
    }

    .home-business {
        background:
            linear-gradient(180deg, #eef6fb 0%, #ffffff 48%, #f8fafc 100%);
    }

    .home-business__grid {
        gap: 16px;
    }

    .home-business-card,
    .home-process-step,
    .home-cat-card,
    .home-prod-card {
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.085);
    }

    .home-business-card:active,
    .home-process-step:active,
    .home-cat-card:active,
    .home-prod-card:active {
        transform: scale(0.985);
    }

    .home-business-card__icon,
    .home-process-step__icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .home-corporate-heading h2,
    .home-about__content h2,
    .home-corporate-channel h2 {
        font-size: clamp(30px, 8.6vw, 42px);
        line-height: 1.08;
    }
}

@media (max-width: 480px) {
    .home-slider {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        aspect-ratio: 16 / 10;
    }

    .home-slider__dots {
        bottom: 22px;
        max-width: calc(100% - 118px);
        overflow: hidden;
    }

    .home-business-card {
        min-height: 214px;
        padding: 26px 24px;
    }
}

/*
==========================================================================
Resumen corporativo
==========================================================================
*/

.home-intro {
    padding: 42px 0;
    background: var(--home-black);
    color: var(--home-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-intro__container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.home-intro__content span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--home-cyan);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-intro__content h2 {
    max-width: 720px;
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 950;
}

.home-intro__content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

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

.home-intro__metrics div {
    min-height: 122px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.home-intro__metrics strong {
    display: block;
    margin-bottom: 8px;
    color: var(--home-white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 950;
}

.home-intro__metrics span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/*
==========================================================================
Presentacion corporativa
==========================================================================
*/

.home-about,
.home-business {
    position: relative;
    padding: 64px 0;
}

.home-about {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-about__container,
.home-business__container,
.home-categories__container,
.home-products__container,
.home-process__container,
.home-corporate-channel__container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 26px;
}

.home-about__container {
    max-width: 1280px;
}

.home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--home-cyan);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-section-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
}

.home-about__content h2,
.home-corporate-heading h2,
.home-corporate-channel h2 {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.home-about__content {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: clamp(52px, 8vw, 112px);
    align-items: end;
    min-width: 0;
    padding: 16px 0;
}

.home-about__content h2 {
    max-width: 760px;
    margin: 0;
    overflow-wrap: break-word;
}

.home-about__body {
    min-width: 0;
    padding: 8px 0 4px 30px;
    border-left: 2px solid var(--home-cyan);
}

.home-about__content p {
    max-width: 760px;
    margin: 0;
    color: var(--home-muted-dark);
    font-size: 17px;
    line-height: 1.75;
}

.home-about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.home-about__tags span {
    padding: 9px 13px;
    border: 1px solid var(--home-line);
    border-radius: 999px;
    background: var(--home-paper);
    color: var(--home-muted-dark);
    font-size: 12px;
    font-weight: 800;
    transition: all 0.25s ease;
    cursor: default;
}

.home-about__tags span:hover {
    background: #f1f5f9;
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--home-ink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.home-about__visual {
    position: relative;
    margin-top: 72px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 18%, rgba(14, 165, 233, 0.18), transparent 34%),
        linear-gradient(135deg, #050505 0%, #07111d 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.home-about__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.home-about__visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 20px;
    pointer-events: none;
}

.home-sector-slider__viewport {
    position: relative;
    aspect-ratio: 1200 / 630;
    min-height: 0;
    --home-sector-slide-offset: 110vw;
}

.home-sector-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sector-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.home-sector-slide.is-prep-next {
    opacity: 1;
    transform: translateX(var(--home-sector-slide-offset));
    z-index: 3;
    transition: none;
}

.home-sector-slide.is-prep-prev {
    opacity: 1;
    transform: translateX(calc(var(--home-sector-slide-offset) * -1));
    z-index: 3;
    transition: none;
}

.home-sector-slide.is-entering-next,
.home-sector-slide.is-entering-prev {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.home-sector-slide.is-leaving-next {
    opacity: 1;
    transform: translateX(calc(var(--home-sector-slide-offset) * -1));
    z-index: 2;
}

.home-sector-slide.is-leaving-prev {
    opacity: 1;
    transform: translateX(var(--home-sector-slide-offset));
    z-index: 2;
}

.home-sector-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.04) contrast(1.02);
}

.home-sector-slider__controls {
    position: absolute;
    right: clamp(20px, 3vw, 34px);
    bottom: clamp(18px, 2.8vw, 30px);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(2, 6, 12, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.home-sector-slider__arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--home-white);
    cursor: pointer;
    transition: transform 220ms var(--transition), background 220ms ease, border-color 220ms ease;
}

.home-sector-slider__arrow svg {
    width: 18px;
    height: 18px;
}

.home-sector-slider__arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.55);
    background: rgba(14, 165, 233, 0.28);
}

.home-sector-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-sector-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 240ms var(--transition), background 240ms ease;
}

.home-sector-slider__dots button.is-active {
    width: 28px;
    background: var(--home-cyan);
}

.home-business {
    background:
        linear-gradient(180deg, rgba(14, 165, 233, 0.035), transparent 34%),
        var(--home-paper);
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    scroll-margin-top: 90px;
}

.home-corporate-heading {
    max-width: 850px;
    margin: 0 auto 52px;
    text-align: center;
}

.home-corporate-heading .home-section-kicker {
    justify-content: center;
    margin: 0 auto 16px;
}

.home-corporate-heading h2 {
    overflow-wrap: break-word;
}

.home-corporate-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-business__statement {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin: 0 0 30px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.home-business__statement strong {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}

.home-business__statement span {
    color: var(--home-muted-dark);
    font-size: 16px;
    line-height: 1.7;
}

.home-business__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.home-business-card {
    position: relative;
    grid-column: span 2;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: var(--home-white);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
    transition: transform 250ms var(--transition), border-color 250ms ease, box-shadow 250ms ease;
}

.home-business-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 42px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: var(--home-cyan);
    transform: scaleX(0.55);
    transform-origin: left;
    transition: transform 250ms var(--transition);
}

.home-business-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.home-business-card--wide {
    grid-column: span 2;
}

.home-business-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.home-business-card:hover::before {
    transform: scaleX(1);
}

.home-business-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.08);
    color: #0284c7;
}

.home-business-card__icon svg {
    width: 27px;
    height: 27px;
}

.home-business-card h3 {
    max-width: 290px;
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.2;
}

.home-business-card p {
    max-width: 300px;
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.6;
}

/*
==========================================================================
Encabezados configurables
==========================================================================
*/

.home-section-header {
    align-items: center;
    margin-bottom: 42px;
    text-align: center;
}

/*
==========================================================================
Secciones dinamicas
==========================================================================
*/

.home-categories,
.home-products {
    padding: 64px 0;
}

.home-categories {
    background: var(--home-white);
}

.home-products {
    background: var(--home-paper);
}

.home-section-header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.home-section-header h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: 0;
}

.home-section-header h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--home-cyan);
}

.home-section-header p {
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.65;
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-categories__grid[data-count="2"] {
    max-width: 880px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
}

.home-categories__grid[data-count="6"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-cat-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 12px;
    background: var(--home-white);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.28s var(--transition), box-shadow 0.28s ease, border 0.28s ease;
}

.home-cat-card__img {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent),
        #fbfcfd;
}

.home-cat-card__img img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    display: block;
    filter: grayscale(0.06);
    transition: transform 0.5s var(--transition), filter 0.3s ease;
}

.home-cat-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.home-cat-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    color: var(--home-ink);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 950;
}

.home-cat-card p {
    margin: 0 0 18px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-cat-card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-cyan);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: var(--shadow-soft);
}

.home-cat-card:hover .home-cat-card__img img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.home-no-cats {
    grid-column: 1 / -1;
    margin: 0;
    padding: 44px;
    text-align: center;
    color: var(--home-muted);
    border: 1px dashed var(--home-line-strong);
    border-radius: 12px;
}

/*
==========================================================================
Productos
==========================================================================
*/

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-prod-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 12px;
    background: var(--home-white);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.28s var(--transition), box-shadow 0.28s ease, border 0.28s ease;
}

.home-prod-card__gallery {
    position: relative;
    padding-top: 88%;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.06), transparent),
        #fbfcfd;
    overflow: hidden;
}

.home-prod-card__link,
.home-prod-card__img-wrapper {
    position: absolute;
    inset: 0;
}

.home-prod-card__img-wrapper {
    inset: 10%;
}

.home-prod-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.34s var(--transition);
}

.home-prod-card__img--hover {
    opacity: 0;
}

.home-prod-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: var(--shadow-soft);
}

.home-prod-card:hover .home-prod-card__img--primary {
    transform: scale(1.035);
}

.home-prod-card:hover .home-prod-card__img--hover {
    opacity: 1;
    transform: scale(1.035);
}

.home-prod-card__badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.07em;
}

.home-prod-card__badge--offer {
    background: var(--home-cyan);
    color: var(--home-white);
}

.home-prod-card__badge--soldout {
    background: var(--home-black);
    color: var(--home-white);
}

.home-prod-card__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border-top: 1px solid var(--home-line);
}

.home-prod-card__brand {
    margin-bottom: 8px;
    color: var(--home-muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-prod-card__title {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 850;
}

.home-prod-card__title a {
    color: var(--home-ink);
    text-decoration: none;
}

.home-prod-card__title a:hover {
    color: var(--home-cyan);
}

.home-prod-card__pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 18px;
}

.home-prod-card__price {
    font-weight: 950;
}

.home-prod-card__price--current {
    color: var(--home-black);
    font-size: 19px;
}

.home-prod-card__price--original {
    color: var(--home-muted);
    font-size: 13px;
    text-decoration: line-through;
}

.home-prod-card__price--call {
    color: var(--home-muted-dark);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-prod-card__pricing-tag {
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--home-cyan-soft);
    color: #0369a1;
    font-size: 10px;
    font-weight: 900;
}

.home-prod-card__btn-cart {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 10px;
    background: var(--home-black);
    color: var(--home-white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
    transition: background 0.22s ease, transform 0.22s var(--transition);
}

.home-prod-card__btn-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    background: var(--home-cyan);
}

.home-prod-card__btn-cart--disabled {
    cursor: not-allowed;
    background: #e5e7eb;
    color: var(--home-muted);
}

.home-products__empty {
    padding: 48px;
    border: 1px dashed var(--home-line-strong);
    border-radius: 12px;
    background: var(--home-white);
    text-align: center;
    color: var(--home-muted);
}

/*
==========================================================================
Modelo de trabajo
==========================================================================
*/

.home-process {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    color: var(--home-white);
    background: #030712; /* Very dark slate */
}

/* Interactive Spotlight Grid */
.home-process::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.25) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    transition: opacity 0.5s ease;
    -webkit-mask-image: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
}

.home-process:hover::before {
    opacity: 1;
}

.home-process__container {
    position: relative;
    z-index: 1;
}

.home-corporate-heading--light h2 {
    color: var(--home-white);
}

.home-corporate-heading--light .home-section-kicker {
    color: #7dd3fc;
}

.home-corporate-heading--light p {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.7;
}

.home-process__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-process__grid::before {
    content: "";
    position: absolute;
    top: 67px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.7), transparent);
    box-shadow: 0 0 16px rgba(14, 165, 233, 0.12);
}

.home-process-step {
    position: relative;
    min-height: 270px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    transition: transform 250ms var(--transition), border-color 250ms ease, background 250ms ease;
}

.home-process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-process-step__icon svg {
    transition: transform 0.4s ease, color 0.25s ease;
}

.home-process-step:hover .home-process-step__icon svg {
    transform: scale(1.1);
    color: var(--home-cyan);
}

.home-process-step__number {
    position: absolute;
    top: 28px;
    right: 26px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
}

.home-process-step__icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border: 1px solid rgba(125, 211, 252, 0.38);
    border-radius: 50%;
    background: #09141d;
    color: #7dd3fc;
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.055);
}

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

.home-process-step h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.25;
}

.home-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.62;
}

/*
==========================================================================
Canal corporativo
==========================================================================
*/

.home-corporate-channel {
    padding: 64px 0 110px 0;
    background: var(--home-white);
}

.home-corporate-channel__container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 64px;
    align-items: center;
    width: calc(100% - 52px);
    max-width: 1328px;
    padding: clamp(42px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    color: var(--home-white);
    background:
        radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.28), transparent 28%),
        linear-gradient(135deg, #111827 0%, #050505 72%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.home-corporate-channel__container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(14, 165, 233, 0.1) 40%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(14, 165, 233, 0.1) 60%,
        transparent 80%
    );
    transform: translateX(-100%);
    pointer-events: none;
    animation: homeCorporateShimmer 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes homeCorporateShimmer {
    0% { transform: translateX(-100%); }
    25%, 100% { transform: translateX(100%); }
}

.home-corporate-channel__container::after {
    content: "";
    position: absolute;
    right: -86px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(125, 211, 252, 0.3);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(125, 211, 252, 0.035),
        0 0 0 86px rgba(125, 211, 252, 0.02);
    pointer-events: none;
    transform-origin: center;
    animation: homeCorporateRingsPulse 4s ease-in-out infinite alternate;
}

@keyframes homeCorporateRingsPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
        box-shadow:
            0 0 0 20px rgba(125, 211, 252, 0.05),
            0 0 0 40px rgba(125, 211, 252, 0.03);
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow:
            0 0 0 60px rgba(125, 211, 252, 0.1),
            0 0 0 120px rgba(125, 211, 252, 0.05);
    }
}

.home-corporate-channel__content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.home-corporate-channel h2 {
    max-width: 840px;
    margin-bottom: 22px;
    font-size: clamp(32px, 4vw, 50px);
}

.home-corporate-channel p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.75;
}

.home-corporate-channel__action {
    position: relative;
    z-index: 1;
    min-width: 196px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    background: var(--home-white);
    color: var(--home-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    transition: transform 220ms var(--transition), background 220ms ease, color 220ms ease;
}

.home-corporate-channel__action svg {
    width: 19px;
    height: 19px;
    transition: transform 220ms ease;
}

.home-corporate-channel__action:hover {
    transform: translateY(-3px);
    background: var(--home-cyan);
    border-color: var(--home-cyan);
    color: var(--home-white);
}

.home-corporate-channel__action:hover svg {
    transform: translateX(4px);
}

/*
==========================================================================
B2B
==========================================================================
*/

.home-b2b {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: var(--home-black);
    color: var(--home-white);
}

.home-b2b::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.48;
}

.home-b2b__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 56px;
    align-items: center;
}

.home-b2b h2 {
    max-width: 780px;
    margin: 14px 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 950;
}

.home-b2b p {
    max-width: 700px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.72;
}

.home-b2b__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-b2b__visual {
    position: relative;
}

.home-b2b__diagram {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-dark);
}

.home-b2b__diagram div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--home-black);
}

.home-b2b__diagram span {
    color: var(--home-cyan);
    font-weight: 950;
}

.home-b2b__diagram strong {
    font-family: var(--font-heading);
    font-size: 20px;
}

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

.home-cta-mayorista {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    color: var(--home-black);
    background:
        linear-gradient(90deg, rgba(14, 165, 233, 0.07), transparent 34%),
        var(--home-white);
    text-align: center;
}

.home-cta-mayorista__container {
    max-width: 760px;
}

.home-cta-mayorista h2 {
    margin: 14px 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 950;
}

.home-cta-mayorista p {
    margin: 0 auto 30px;
    max-width: 620px;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-cta-mayorista__link-wrap {
    display: flex;
    justify-content: center;
}

.home-cta-mayorista__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    background: var(--home-black);
    color: var(--home-white);
    text-decoration: none;
    font-weight: 950;
    transition: background 0.22s ease, transform 0.22s var(--transition);
}

.home-cta-mayorista__link:hover {
    transform: translateY(-2px);
    background: var(--home-cyan);
}

.home-cta-mayorista__float {
    display: none;
}

/*
==========================================================================
Reveals and animations
==========================================================================
*/

@keyframes homeWorldSpin {
    to {
        background-position: 180px 0, 0 0;
    }
}

@keyframes homeSpin {
    to {
        transform: rotate(360deg);
    }
}

.home-spin {
    animation: homeSpin 1s linear infinite;
    display: inline-block;
}

/*
==========================================================================
Responsive
==========================================================================
*/

@media (max-width: 1200px) {
    .home-hero__container,
    .home-b2b__container {
        gap: 42px;
    }

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

    .home-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .home-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .home-business-card,
    .home-business-card:nth-child(4),
    .home-business-card--wide {
        grid-column: auto;
    }

    .home-business-card--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .home-slider {
        height: 82vh;
        min-height: 620px;
    }

    .home-slide__content--desktop {
        display: none;
    }

    .home-slide__content--mobile {
        display: block;
        left: 50%;
        width: calc(100% - 40px);
        max-width: 420px;
        transform: translateX(-50%);
        text-align: center;
    }

    .home-slide__content--top {
        top: 72px;
    }

    .home-slide__content--center {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .home-slide__content--bottom {
        top: auto;
        bottom: 72px;
    }

    .home-hero {
        min-height: auto;
        padding: 56px 0 52px;
    }

    .home-b2b__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-hero__content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .home-hero__headline,
    .home-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .home-b2b p,
    .home-b2b h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__actions,
    .home-b2b__actions {
        justify-content: center;
    }

    .home-hero__indicators {
        justify-content: center;
    }

    .home-intro__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-intro__content h2,
    .home-intro__content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .home-about__container {
        max-width: 900px;
    }

    .home-about__content {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .home-about__visual {
        margin-top: 44px;
    }

    .home-sector-slider__controls {
        right: 18px;
        transform: none;
    }

    .home-about__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-about__tags {
        justify-content: center;
    }

    .home-about__body {
        max-width: 720px;
        margin: 0 auto;
        padding: 26px 0 0;
        border-top: 2px solid var(--home-cyan);
        border-left: 0;
    }

    .home-business__statement {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .home-process__grid::before {
        display: none;
    }

    .home-corporate-channel__container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .home-corporate-channel__content {
        margin: 0 auto;
    }

    .home-corporate-channel__action {
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .home-slider {
        min-height: 560px;
    }

    .home-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .home-slider__arrow--prev {
        left: 12px;
    }

    .home-slider__arrow--next {
        right: 12px;
    }

    .home-hero,
    .home-intro,
    .home-about,
    .home-business,
    .home-categories,
    .home-products,
    .home-process,
    .home-corporate-channel,
    .home-b2b,
    .home-cta-mayorista {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .home-hero__container,
    .home-intro__container,
    .home-about__container,
    .home-business__container,
    .home-categories__container,
    .home-products__container,
    .home-process__container,
    .home-corporate-channel__container,
    .home-b2b__container,
    .home-cta-mayorista__container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-section-kicker {
        justify-content: center;
    }

    .home-about__visual {
        border-radius: 20px;
    }

    .home-about__visual::after {
        inset: 10px;
        border-radius: 14px;
    }

    .home-sector-slider__viewport {
        aspect-ratio: 1200 / 630;
    }

    .home-sector-slider__controls {
        right: 12px;
        bottom: 12px;
        gap: 8px;
        padding: 7px;
    }

    .home-sector-slider__arrow {
        width: 34px;
        height: 34px;
    }

    .home-sector-slider__dots button {
        width: 7px;
        height: 7px;
    }

    .home-sector-slider__dots button.is-active {
        width: 22px;
    }

    .home-title {
        font-size: 36px;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .home-hero__headline {
        margin-top: 20px;
        font-size: 22px;
        overflow-wrap: anywhere;
    }

    .home-subtitle {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.55;
    }

    .home-hero__actions,
    .home-b2b__actions {
        flex-direction: column;
    }

    .home-btn,
    .home-cta-mayorista__link {
        width: 100%;
    }

    .home-hero__indicators {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        margin-top: 26px;
        padding-top: 20px;
    }

    .home-intro__metrics,
    .home-categories__grid,
    .home-products__grid,
    .home-business__grid,
    .home-process__grid {
        grid-template-columns: 1fr !important;
    }

    .home-about__content h2,
    .home-corporate-heading h2,
    .home-corporate-channel h2 {
        font-size: 31px;
        overflow-wrap: break-word;
    }

    .home-about__content p,
    .home-corporate-channel p {
        font-size: 15px;
        line-height: 1.65;
    }

    .home-corporate-heading {
        margin-bottom: 34px;
    }

    .home-business-card,
    .home-business-card--wide {
        grid-column: auto;
        min-height: 230px;
        padding: 24px;
    }

    .home-business-card__icon {
        margin-bottom: 28px;
    }

    .home-corporate-channel__container {
        width: calc(100% - 36px);
        padding: 38px 24px;
        border-radius: 20px;
    }

    .home-process-step {
        min-height: auto;
        padding: 24px;
    }

    .home-process-step__icon {
        margin-bottom: 30px;
    }

    .home-corporate-channel__container {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .home-corporate-channel__action {
        width: 100%;
    }

    .home-cat-card__img {
        min-height: 180px;
    }

    .home-cat-card__img img {
        height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page {
        scroll-behavior: auto;
    }

    .home-business-card,
    .home-process-step,
    .home-corporate-channel__action {
        transition: none;
    }

    .home-page .home-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .home-process::after {
        animation: none !important;
    }
}

/*
==========================================================================
Final immersive overrides
==========================================================================
*/

.home-business-card,
.home-process-step,
.home-cat-card,
.home-prod-card {
    position: relative;
    transform: translateZ(0);
}

.home-business-card__icon,
.home-process-step__icon {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    color: #0284c7;
    box-shadow:
        0 14px 28px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
    animation: homeIconPulse 3.8s ease-in-out infinite;
}

@media (max-width: 900px) {
    .home-slider {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        margin: 0 0 34px;
        border-radius: 0;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    }

    .home-slider__arrow {
        top: auto;
        bottom: 14px;
        transform: none;
        width: 42px;
        height: 42px;
        background: rgba(2, 6, 12, 0.68);
        backdrop-filter: blur(10px);
    }

    .home-slider__arrow--prev {
        left: auto;
        right: 78px;
    }

    .home-slider__arrow--next {
        right: 18px;
    }

    .home-slider__dots {
        left: 18px;
        right: auto;
        bottom: 28px;
        transform: none;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(2, 6, 12, 0.54);
        backdrop-filter: blur(10px);
    }

    .home-page .home-reveal {
        transition-duration: 260ms;
        transform: translate3d(0, 14px, 0);
    }
}

@media (max-width: 480px) {
    .home-slider {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        aspect-ratio: 16 / 10;
    }
}

/*
==========================================================================
Full width home slider
==========================================================================
*/

.home-slider {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
}

@media (min-width: 901px) {
    .home-slider {
        height: clamp(520px, 68vh, 760px);
        min-height: 520px;
    }
}

@media (max-width: 900px) {
    .home-slider {
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0 0 34px;
        border-radius: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 520px) {
    .home-slider {
        aspect-ratio: 16 / 10;
    }

    .home-slide img {
        object-position: center;
    }
}

/*
==========================================================================
Full width sector slider
==========================================================================
*/

.home-about__visual {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.home-sector-slider__viewport {
    width: 100%;
}

.home-sector-slide img {
    object-fit: contain;
}

@media (min-width: 901px) {
    .home-about__visual {
        margin-top: 64px;
    }

    .home-sector-slider__viewport {
        aspect-ratio: 1200 / 630;
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .home-about__visual {
        margin-top: 38px;
        border-radius: 0;
    }

    .home-about__visual::after {
        border-radius: 0;
    }

    .home-sector-slider__viewport {
        aspect-ratio: 1200 / 630;
        min-height: 0;
    }
}

@media (max-width: 520px) {
    .home-sector-slider__viewport {
        aspect-ratio: 1200 / 630;
    }

    .home-sector-slider__controls {
        right: 14px;
        bottom: 14px;
    }
}

/*
==========================================================================
Full screen first section
==========================================================================
*/

.home-page {
    --home-first-fold-offset: 111px;
}

.home-page > .home-slider:first-child,
.home-page > .home-hero:first-child {
    width: 100%;
    height: calc(100svh - var(--home-first-fold-offset));
    min-height: 520px;
    max-height: none;
    margin: 0;
    border-radius: 0;
}

@supports (height: 100dvh) {
    .home-page > .home-slider:first-child,
    .home-page > .home-hero:first-child {
        height: calc(100dvh - var(--home-first-fold-offset));
    }
}

.home-page > .home-hero:first-child {
    display: flex;
    align-items: center;
    padding-top: clamp(48px, 7vh, 92px);
    padding-bottom: clamp(48px, 7vh, 92px);
}

.home-page > .home-hero:first-child .home-hero__video,
.home-page > .home-slider:first-child .home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page > .home-slider:first-child .home-slide__content--mobile {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
    .home-page {
        --home-first-fold-offset: 124px;
    }

    .home-page > .home-slider:first-child,
    .home-page > .home-hero:first-child {
        aspect-ratio: auto;
        min-height: max(460px, calc(100svh - var(--home-first-fold-offset)));
    }

    @supports (height: 100dvh) {
        .home-page > .home-slider:first-child,
        .home-page > .home-hero:first-child {
            min-height: max(460px, calc(100dvh - var(--home-first-fold-offset)));
        }
    }

    .home-page > .home-hero:first-child {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .home-page {
        --home-first-fold-offset: 112px;
    }

    .home-page > .home-slider:first-child,
    .home-page > .home-hero:first-child {
        min-height: max(430px, calc(100svh - var(--home-first-fold-offset)));
    }

    @supports (height: 100dvh) {
        .home-page > .home-slider:first-child,
        .home-page > .home-hero:first-child {
            min-height: max(430px, calc(100dvh - var(--home-first-fold-offset)));
        }
    }
}

/*
==========================================================================
Classic contained home slider
==========================================================================
*/

.home-page > .home-slider:first-child {
    width: min(1180px, calc(100% - 72px));
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 7.2;
    margin: clamp(34px, 5vw, 64px) auto clamp(44px, 6vw, 76px);
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-page > .home-slider:first-child .home-slider__track {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--home-black);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
}

.home-page > .home-slider:first-child .home-slide,
.home-page > .home-slider:first-child .home-slide picture,
.home-page > .home-slider:first-child .home-slide img {
    border-radius: inherit;
}

.home-page > .home-slider:first-child .home-slider__arrow {
    top: 50%;
    bottom: auto;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #111827;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.home-page > .home-slider:first-child .home-slider__arrow:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.home-page > .home-slider:first-child .home-slider__arrow--prev {
    left: -26px;
    right: auto;
}

.home-page > .home-slider:first-child .home-slider__arrow--next {
    right: -26px;
}

.home-page > .home-slider:first-child .home-slider__dots {
    left: 50%;
    right: auto;
    bottom: -32px;
    transform: translateX(-50%);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}

.home-page > .home-slider:first-child .home-slider__dots button {
    background: #cbd5e1;
}

.home-page > .home-slider:first-child .home-slider__dots button.active {
    background: var(--home-cyan);
}

@media (max-width: 900px) {
    .home-page > .home-slider:first-child {
        width: min(100% - 40px, 720px);
        aspect-ratio: 16 / 9;
        margin-top: 28px;
        margin-bottom: 66px;
    }

    .home-page > .home-slider:first-child .home-slider__track {
        border-radius: 20px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow {
        width: 46px;
        height: 46px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow--prev {
        left: -18px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow--next {
        right: -18px;
    }
}

@media (max-width: 520px) {
    .home-page > .home-slider:first-child {
        width: calc(100% - 24px);
        aspect-ratio: 16 / 10;
        margin-top: 22px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow {
        width: 42px;
        height: 42px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow--prev {
        left: -8px;
    }

    .home-page > .home-slider:first-child .home-slider__arrow--next {
        right: -8px;
    }
}

.home-business-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.home-business-card::before,
.home-process-step::before,
.home-cat-card::before,
.home-prod-card::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.045), transparent 36%);
}

@media (prefers-reduced-motion: reduce) {
    .home-business-card__icon,
    .home-process-step__icon {
        animation: none !important;
    }
}

/*
==========================================================================
Classic contained sector slider
==========================================================================
*/

.home-about__visual {
    width: 100%;
    max-width: none;
    margin: 64px 0 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-about__visual::before,
.home-about__visual::after {
    display: none;
}

.home-sector-slider__viewport {
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, #050505 0%, #07111d 100%);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
    aspect-ratio: 1200 / 630;
    --home-sector-slide-offset: 110vw;
}

.home-sector-slide img {
    border-radius: inherit;
}

.home-sector-slide img {
    object-fit: contain;
}

.home-sector-slider__controls {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
}

.home-sector-slider__arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #111827;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    pointer-events: auto;
}

.home-sector-slider__arrow:hover {
    transform: translateY(-50%);
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.home-sector-slider__arrow[data-sector-prev] {
    left: -64px;
}

.home-sector-slider__arrow[data-sector-next] {
    right: -64px;
}

.home-sector-slider__dots {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.home-sector-slider__dots button {
    background: #cbd5e1;
}

.home-sector-slider__dots button.is-active {
    background: var(--home-cyan);
}

@media (max-width: 900px) {
    .home-about__visual {
        width: calc(100% - 56px);
        margin-right: auto;
        margin-left: auto;
        margin-top: 38px;
        margin-bottom: 54px;
    }

    .home-sector-slider__viewport {
        border-radius: 20px;
        --home-sector-slide-offset: 115vw;
    }

    .home-sector-slider__arrow {
        width: 46px;
        height: 46px;
    }

    .home-sector-slider__arrow[data-sector-prev] {
        left: -54px;
    }

    .home-sector-slider__arrow[data-sector-next] {
        right: -54px;
    }
}

@media (max-width: 520px) {
    .home-about__visual {
        width: calc(100% - 48px);
        margin-bottom: 50px;
    }

    .home-sector-slider__arrow {
        width: 42px;
        height: 42px;
    }

    .home-sector-slider__viewport {
        --home-sector-slide-offset: 120vw;
    }

    .home-sector-slider__arrow[data-sector-prev] {
        left: -48px;
    }

    .home-sector-slider__arrow[data-sector-next] {
        right: -48px;
    }
}

.home-about {
    overflow: hidden;
}

.home-about__visual {
    overflow: visible;
}

.home-sector-slider__viewport {
    overflow: visible;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
}

.home-sector-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(150%) scale(0.78);
    transform-origin: center;
    transition:
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.home-sector-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    filter: brightness(1) saturate(1.04);
    z-index: 4;
}

.home-sector-slide.is-prev {
    opacity: 0;
    transform: translateX(-108%) scale(0.78);
    filter: brightness(0.78) saturate(0.92);
    z-index: 2;
}

.home-sector-slide.is-next {
    opacity: 0;
    transform: translateX(108%) scale(0.78);
    filter: brightness(0.78) saturate(0.92);
    z-index: 2;
}

.home-about__visual.is-moving .home-sector-slide.is-prev,
.home-about__visual.is-moving .home-sector-slide.is-next {
    opacity: 0.36;
}

.home-sector-slide.is-off-left {
    opacity: 0;
    transform: translateX(-210%) scale(0.72);
    z-index: 1;
}

.home-sector-slide.is-off-right {
    opacity: 0;
    transform: translateX(210%) scale(0.72);
    z-index: 1;
}

.home-sector-slider__controls {
    z-index: 8;
}

.home-sector-slider__dots {
    z-index: 9;
}

@media (max-width: 900px) {
    .home-sector-slide {
        inset: 0;
    }

    .home-sector-slide.is-prev {
        opacity: 0;
        transform: translateX(-96%) scale(0.78);
    }

    .home-sector-slide.is-next {
        opacity: 0;
        transform: translateX(96%) scale(0.78);
    }

    .home-about__visual.is-moving .home-sector-slide.is-prev,
    .home-about__visual.is-moving .home-sector-slide.is-next {
        opacity: 0.3;
    }
}

@media (max-width: 520px) {
    .home-sector-slide {
        inset: 0;
    }

    .home-sector-slide.is-prev {
        opacity: 0;
        transform: translateX(-88%) scale(0.76);
    }

    .home-sector-slide.is-next {
        opacity: 0;
        transform: translateX(88%) scale(0.76);
    }

    .home-about__visual.is-moving .home-sector-slide.is-prev,
    .home-about__visual.is-moving .home-sector-slide.is-next {
        opacity: 0.24;
    }
}

.home-corporate-channel {
    padding: clamp(56px, 6vw, 84px) 0 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-corporate-channel__container {
    min-height: clamp(520px, 58vw, 760px);
    grid-template-columns: 1fr;
    place-items: center;
    gap: 30px;
    width: calc(100% - 52px);
    max-width: 1480px;
    padding: clamp(56px, 7vw, 84px) clamp(24px, 6vw, 92px);
    border: 0;
    border-radius: 28px;
    isolation: isolate;
    text-align: center;
    background: #05070b;
    box-shadow: 0 34px 86px rgba(15, 23, 42, 0.24);
}

.home-corporate-channel__container::before,
.home-corporate-channel__container::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    inset: 0;
    width: auto;
    height: auto;
    border-radius: inherit;
    box-shadow: none;
    animation: none;
}

.home-corporate-channel__container::before {
    background-image: url("/uploads/images/empresa/edificio-global-import.webp");
    background-size: cover;
    background-position: center;
    opacity: 1;
    filter: brightness(0.58) contrast(1.08) saturate(1.08);
    clip-path: inset(0 49.6% 0 49.6% round 28px);
    transform: scale(1.08);
    transform-origin: center;
    transition:
        clip-path 2950ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 2950ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 1800ms ease;
}

.home-corporate-channel__container::after {
    z-index: 1;
    background:
        radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5) 66%, rgba(0, 0, 0, 0.76) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.18) 50%, rgba(2, 6, 23, 0.58));
    opacity: 0;
    clip-path: inset(0 49.6% 0 49.6% round 28px);
    transform: scaleX(0.04);
    transition:
        clip-path 2950ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1900ms ease 360ms,
        transform 2550ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-corporate-channel__container.home-reveal--active::before {
    clip-path: inset(0 0 0 0 round 28px);
    transform: scale(1);
    filter: brightness(0.64) contrast(1.08) saturate(1.08);
}

.home-corporate-channel__container.home-reveal--active::after {
    clip-path: inset(0 0 0 0 round 28px);
    opacity: 1;
    transform: scaleX(1);
}

.home-corporate-channel__content {
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.65);
    transition:
        opacity 1050ms ease 1350ms,
        transform 1250ms cubic-bezier(0.16, 1, 0.3, 1) 1350ms;
}

.home-corporate-channel__container:not(.home-reveal--active) .home-corporate-channel__content,
.home-corporate-channel__container:not(.home-reveal--active) .home-corporate-channel__action {
    opacity: 0;
    transform: translateY(18px);
}

.home-corporate-channel h2 {
    max-width: 920px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: clamp(38px, 5.6vw, 74px);
    line-height: 0.98;
    letter-spacing: 0;
}

.home-corporate-channel p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.68;
}

.home-corporate-channel__action {
    z-index: 2;
    min-width: 210px;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    transition:
        opacity 1050ms ease 1580ms,
        transform 220ms var(--transition),
        background 220ms ease,
        color 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-corporate-channel__container::before,
    .home-corporate-channel__container::after {
        transition: none;
        transform: none;
        opacity: 1;
        clip-path: inset(0 0 0 0 round 28px);
    }
}

@media (max-width: 900px) {
    .home-corporate-channel__container {
        width: calc(100% - 32px);
        min-height: 620px;
        border-radius: 24px;
    }
}

@media (max-width: 520px) {
    .home-corporate-channel__container {
        width: calc(100% - 24px);
        min-height: 560px;
        padding: 68px 22px;
        border-radius: 20px;
    }
}

.home-business {
    background:
        radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.13), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef4f9 100%);
}

.home-business__grid {
    perspective: 1200px;
}

.home-business-card {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 26px;
    align-items: center;
    min-height: 236px;
    isolation: isolate;
    overflow: hidden;
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    transform-style: preserve-3d;
}

.home-business-card::after {
    content: "";
    position: absolute;
    inset: auto -18% -45% 28%;
    z-index: 0;
    height: 72%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 66%);
    opacity: 0;
    transform: translateY(24px) scale(0.78);
    transition: opacity 360ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.home-business-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.home-business-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-business-card__icon {
    grid-row: 1 / span 2;
    width: 148px;
    height: 148px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: translateZ(38px);
}

.home-business-card__icon::after {
    inset: auto 8% 4% 8%;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.32), transparent 70%);
    opacity: 0.46;
    filter: blur(8px);
    animation: none;
}

.home-business-card__icon img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: transparent !important;
    filter: none;
    transform: translateY(0) scale(1);
    transition:
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 420ms ease;
}

.home-business-card__icon img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.home-business-card:hover .home-business-card__icon img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.15));
}

.home-business-card h3,
.home-business-card p {
    position: relative;
    z-index: 1;
}

.home-business-card h3 {
    margin: 0 0 12px;
    align-self: end;
}

.home-business-card p {
    align-self: start;
}

@media (max-width: 900px) {
    .home-business-card {
        grid-template-columns: 126px minmax(0, 1fr);
        column-gap: 22px;
        min-height: 216px;
    }

    .home-business-card__icon {
        width: 126px;
        height: 126px;
    }
}

@media (max-width: 520px) {
    .home-business-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: 0;
        text-align: left;
    }

    .home-business-card__icon {
        grid-row: auto;
        width: 112px;
        height: 112px;
        margin-bottom: 14px;
    }
}

.home-business-card .home-business-card__icon {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
}

.home-business-card .home-business-card__icon::before,
.home-business-card .home-business-card__icon::after {
    content: none !important;
    display: none !important;
}

/* Acople perfecto del footer en el inicio */
.layout-publico .footer-publico {
    margin-top: 0 !important;
}
