/* ==========================================================
   SOSMEDICAL — HOME 2
========================================================== */

.home2-page {
    --home2-primary: #0b2341;
    --home2-primary-soft: #173c63;

    --home2-secondary: #0099d8;
    --home2-secondary-dark: #007bb4;
    --home2-secondary-soft: #e8f7fd;

    --home2-success: #00b67a;
    --home2-success-dark: #008b5e;
    --home2-success-soft: #e8faf3;

    --home2-background: #f5f9fb;
    --home2-background-alt: #edf6fa;
    --home2-white: #ffffff;

    --home2-text: #0b2341;
    --home2-text-light: #627185;
    --home2-muted: #8592a2;

    --home2-border: rgba(11, 35, 65, 0.09);
    --home2-border-strong: rgba(11, 35, 65, 0.15);

    --home2-shadow-sm:
        0 10px 30px rgba(11, 35, 65, 0.07);

    --home2-shadow-md:
        0 20px 50px rgba(11, 35, 65, 0.11);

    --home2-shadow-lg:
        0 35px 80px rgba(11, 35, 65, 0.16);

    --home2-radius-sm: 12px;
    --home2-radius-md: 18px;
    --home2-radius-lg: 26px;
    --home2-radius-xl: 34px;

    --home2-section-space: 110px;
    --home2-section-space-mobile: 76px;

    color: var(--home2-text);
    background: var(--home2-background);
}

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

.home2-page img {
    max-width: 100%;
}

.home2-page a {
    color: inherit;
}

.home2-page button,
.home2-page input,
.home2-page select,
.home2-page textarea {
    font: inherit;
}

/* ==========================================================
   CONTENEDORES
========================================================== */

.home2-page .container {
    width: min(
        calc(100% - 48px),
        1320px
    );
    margin-inline: auto;
}

.home2-page .home-section {
    position: relative;
    padding: var(--home2-section-space) 0;
}

/* ==========================================================
   BOTONES
========================================================== */

.home2-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 46px;
    padding: 11px 20px;

    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;

    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

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

.home2-page .btn__arrow {
    transition: transform 0.25s ease;
}

.home2-page .btn:hover .btn__arrow {
    transform: translateX(4px);
}

.home2-page .btn--primary {
    color: var(--home2-white);

    background:
        linear-gradient(
            135deg,
            var(--home2-success),
            #00c98a
        );

    box-shadow:
        0 14px 30px rgba(0, 182, 122, 0.24);
}

.home2-page .btn--primary:hover {
    color: var(--home2-white);

    background:
        linear-gradient(
            135deg,
            var(--home2-success-dark),
            var(--home2-success)
        );

    box-shadow:
        0 18px 38px rgba(0, 182, 122, 0.3);
}

.home2-page .btn--outline {
    color: var(--home2-primary);
    background: var(--home2-white);
    border-color: var(--home2-border-strong);
}

.home2-page .btn--outline:hover {
    color: var(--home2-secondary);
    border-color: rgba(0, 153, 216, 0.35);
}

.home2-page .btn--outline-light {
    color: var(--home2-white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.48);

    backdrop-filter: blur(10px);
}

.home2-page .btn--outline-light:hover {
    color: var(--home2-primary);
    background: var(--home2-white);
    border-color: var(--home2-white);
}

.home2-page .btn--sm {
    min-height: 38px;
    padding: 9px 15px;
    font-size: 11px;
}

.home2-page .btn--lg {
    min-height: 54px;
    padding: 14px 25px;
    font-size: 14px;
}

.home2-page .btn--xl {
    min-height: 58px;
    padding: 15px 28px;
    font-size: 15px;
}

/* ==========================================================
   ENCABEZADOS DE SECCIÓN
========================================================== */

.home2-page .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 48px;
}

.home2-page .section-heading--center {
    align-items: center;
    flex-direction: column;

    max-width: 780px;
    margin-right: auto;
    margin-bottom: 52px;
    margin-left: auto;

    text-align: center;
}

.home2-page .section-heading__content {
    max-width: 720px;
}

.home2-page .section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--home2-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home2-page .section-heading__eyebrow::before {
    width: 28px;
    height: 2px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--home2-secondary),
            var(--home2-success)
        );

    border-radius: 999px;
}

.home2-page
.section-heading--center
.section-heading__eyebrow::after {
    width: 28px;
    height: 2px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--home2-success),
            var(--home2-secondary)
        );

    border-radius: 999px;
}

.home2-page .section-heading__title {
    max-width: 780px;
    margin: 0;

    color: var(--home2-text);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.home2-page .section-heading__text {
    max-width: 650px;
    margin: 17px 0 0;

    color: var(--home2-text-light);
    font-size: 16px;
    line-height: 1.8;
}

.home2-page .section-heading__action {
    flex-shrink: 0;
}

/* ==========================================================
   HERO DINÁMICO
========================================================== */

.home2-page .home2-hero {
    position: relative;

    min-height: 710px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(0, 153, 216, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 75%,
            rgba(0, 182, 122, 0.09),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f9fcfe 0%,
            #eef8fc 48%,
            #ffffff 100%
        );
}

.home2-page .home2-hero__slider,
.home2-page .home2-hero__track {
    position: relative;
    min-height: inherit;
}

.home2-page .home2-hero__track {
    overflow: hidden;
}

.home2-page .home2-hero__slide {
    position: absolute;
    inset: 0;
    z-index: 0;

    min-height: 710px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.75s ease,
        visibility 0.75s ease;
}

.home2-page .home2-hero__slide:first-child,
.home2-page .home2-hero__slide.is-active {
    z-index: 2;

    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.home2-page
.home2-hero.is-initialized
.home2-hero__slide:not(.is-active) {
    z-index: 0;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.home2-page .home2-hero__picture {
    position: absolute;
    inset: 0;

    display: block;
}

.home2-page .home2-hero__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.035);

    transition: transform 7s ease;
}

.home2-page
.home2-hero__slide.is-active
.home2-hero__image {
    transform: scale(1);
}

.home2-page .home2-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(
                6,
                30,
                52,
                calc(var(--home2-overlay, 0.42) + 0.34)
            ) 0%,
            rgba(
                6,
                30,
                52,
                calc(var(--home2-overlay, 0.42) + 0.13)
            ) 48%,
            rgba(
                6,
                30,
                52,
                calc(var(--home2-overlay, 0.42) - 0.09)
            ) 100%
        );
}

.home2-page .home2-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            transparent 94%
        );
}

.home2-page .home2-hero__container {
    position: relative;
    z-index: 3;

    display: flex;

    min-height: 710px;
}

.home2-page .home2-hero__content {
    display: flex;
    justify-content: center;
    flex-direction: column;

    width: min(100%, 790px);
    padding: 105px 0 125px;
}

.home2-page .home2-hero__content.is-left {
    align-items: flex-start;
    margin-right: auto;
    text-align: left;
}

.home2-page .home2-hero__content.is-center {
    align-items: center;
    margin-inline: auto;
    text-align: center;
}

.home2-page .home2-hero__content.is-right {
    align-items: flex-end;
    margin-left: auto;
    text-align: right;
}

.home2-page .home2-hero__content.is-top {
    justify-content: flex-start;
}

.home2-page .home2-hero__content.is-middle {
    justify-content: center;
}

.home2-page .home2-hero__content.is-bottom {
    justify-content: flex-end;
}

.home2-page .home2-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 34px;
    padding: 7px 14px;

    color: #e8fbff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;

    box-shadow:
        0 10px 30px rgba(6, 30, 52, 0.14);

    backdrop-filter: blur(12px);
}

.home2-page .home2-hero__eyebrow-dot {
    width: 8px;
    height: 8px;

    background: var(--home2-success);
    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(0, 182, 122, 0.17);
}

.home2-page .home2-hero__title {
    max-width: 790px;
    margin: 25px 0 0;

    color: var(--home2-white);
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1.01;

    text-wrap: balance;
}

.home2-page .home2-hero__description {
    max-width: 630px;
    margin: 27px 0 0;

    color: rgba(255, 255, 255, 0.79);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.75;
}

.home2-page
.home2-hero__content.is-center
.home2-hero__description {
    margin-inline: auto;
}

.home2-page
.home2-hero__content.is-right
.home2-hero__description {
    margin-left: auto;
}

.home2-page .home2-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 35px;
}

.home2-page
.home2-hero__content.is-center
.home2-hero__actions {
    justify-content: center;
}

.home2-page
.home2-hero__content.is-right
.home2-hero__actions {
    justify-content: flex-end;
}

.home2-page .home2-hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 28px;

    margin-top: 37px;
    padding-top: 27px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home2-page .home2-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.77);
    font-size: 12px;
    font-weight: 650;
}

.home2-page .home2-hero__trust-item > span {
    display: grid;

    width: 25px;
    height: 25px;

    color: var(--home2-white);
    font-size: 10px;
    font-weight: 900;

    background: rgba(0, 182, 122, 0.75);
    border-radius: 50%;

    place-items: center;
}

.home2-page .home2-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;

    display: grid;

    width: 50px;
    height: 50px;
    padding: 0;

    color: var(--home2-white);

    background: rgba(5, 27, 47, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    cursor: pointer;

    backdrop-filter: blur(10px);

    place-items: center;

    transform: translateY(-50%);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home2-page .home2-hero__arrow:hover {
    background: var(--home2-secondary);
    border-color: var(--home2-secondary);

    transform:
        translateY(-50%)
        scale(1.06);
}

.home2-page .home2-hero__arrow--prev {
    left: max(
        18px,
        calc((100vw - 1320px) / 2 - 72px)
    );
}

.home2-page .home2-hero__arrow--next {
    right: max(
        18px,
        calc((100vw - 1320px) / 2 - 72px)
    );
}

.home2-page .home2-hero__pagination {
    position: absolute;
    right: 0;
    bottom: 35px;
    left: 0;
    z-index: 6;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.home2-page .home2-hero__dot {
    width: 9px;
    height: 9px;
    padding: 0;

    background: rgba(255, 255, 255, 0.48);
    border: 0;
    border-radius: 999px;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.home2-page .home2-hero__dot.is-active {
    width: 31px;
    background: var(--home2-white);
}

/* ==========================================================
   HERO SIN BANNERS
========================================================== */

.home2-page .home2-hero__fallback {
    position: relative;

    min-height: 710px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(0, 153, 216, 0.2),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 75%,
            rgba(0, 182, 122, 0.1),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f9fcfe,
            #edf8fc 52%,
            #ffffff
        );
}

.home2-page .home2-hero__fallback-grid {
    position: relative;
    z-index: 2;

    display: flex;
    min-height: 710px;
}

.home2-page
.home2-hero__fallback
.home2-hero__title {
    color: var(--home2-text);
}

.home2-page
.home2-hero__fallback
.home2-hero__description {
    color: var(--home2-text-light);
}

.home2-page
.home2-hero__fallback
.home2-hero__eyebrow {
    color: var(--home2-secondary);

    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(0, 153, 216, 0.17);
}

.home2-page
.home2-hero__fallback
.home2-hero__pattern {
    background-image:
        linear-gradient(
            rgba(11, 35, 65, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 35, 65, 0.025) 1px,
            transparent 1px
        );
}

/* ==========================================================
   BUSCADOR FLOTANTE
========================================================== */

.home2-page .home-search {
    position: relative;
    z-index: 8;

    margin-top: -42px;
}

.home2-page .home-search__box {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px;

    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--home2-border);
    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(11, 35, 65, 0.13);

    backdrop-filter: blur(18px);
}

.home2-page .search-field {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 62px;
    padding: 7px 8px 7px 20px;

    background: #f6f9fb;
    border: 1px solid var(--home2-border);
    border-radius: 16px;
}

.home2-page .search-field:focus-within {
    border-color: rgba(0, 153, 216, 0.4);

    box-shadow:
        0 0 0 4px rgba(0, 153, 216, 0.08);
}

.home2-page .search-field__icon {
    display: grid;
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    color: var(--home2-secondary);

    place-items: center;
}

.home2-page .search-field__icon svg {
    width: 22px;
    height: 22px;
}

.home2-page .search-field__input {
    flex: 1;

    min-width: 0;
    height: 44px;
    padding: 0;

    color: var(--home2-text);
    font-size: 14px;

    background: transparent;
    border: 0;
    outline: 0;
}

.home2-page .search-field__input::placeholder {
    color: var(--home2-muted);
}

.home2-page .search-field__button {
    flex-shrink: 0;
    min-width: 120px;
}

.home2-page .home-search__suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 14px;

    margin-top: 17px;
}

.home2-page .home-search__suggestions-label {
    color: var(--home2-text-light);
    font-size: 11px;
    font-weight: 650;
}

.home2-page .home-search__suggestion {
    padding: 6px 11px;

    color: var(--home2-primary);
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;

    background: #f1f6f9;
    border-radius: 999px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.home2-page .home-search__suggestion:hover {
    color: var(--home2-white);
    background: var(--home2-secondary);
    transform: translateY(-2px);
}

/* ==========================================================
   MARCAS
========================================================== */
/*
.home2-page .home-brands {
    padding: 90px 0 80px;
    background: var(--home2-white);
}

.home2-page .home-brands__label {
    margin: 0 0 30px;

    color: var(--home2-text-light);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.home2-page .home-brands__track {
    display: grid;
    align-items: center;
    grid-template-columns:
        repeat(6, minmax(100px, 1fr));
    gap: 22px;

    padding: 28px 30px;

    background: #fbfcfd;
    border: 1px solid var(--home2-border);
    border-radius: var(--home2-radius-lg);
}

.home2-page .home-brands__item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 82px;
    padding: 18px;

    text-decoration: none;

    background: var(--home2-white);
    border: 1px solid transparent;
    border-radius: var(--home2-radius-md);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.home2-page .home-brands__item:hover {
    border-color: rgba(0, 153, 216, 0.18);

    box-shadow: var(--home2-shadow-sm);

    transform: translateY(-3px);
}

.home2-page .home-brands__item--featured {
    min-height: 105px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 153, 216, 0.08),
            rgba(0, 182, 122, 0.06)
        );

    border-color: rgba(0, 153, 216, 0.2);

    box-shadow:
        0 15px 36px rgba(0, 153, 216, 0.1);
}

.home2-page .home-brands__featured-label {
    position: absolute;
    top: 8px;
    right: 10px;

    padding: 4px 8px;

    color: var(--home2-success-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    background: rgba(0, 182, 122, 0.12);
    border-radius: 999px;
}

.home2-page .home-brands__logo {
    width: auto;
    max-width: 135px;
    max-height: 45px;

    object-fit: contain;

    filter: grayscale(1);
    opacity: 0.5;

    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.home2-page
.home-brands__item:hover
.home-brands__logo,
.home2-page
.home-brands__item--featured
.home-brands__logo {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.home2-page .home-brands__name {
    color: var(--home2-primary);
    font-size: 13px;
    text-align: center;
}*/


/* ==========================================================
   MARCAS
========================================================== */

.home2-page .home-brands {
    position: relative;
    overflow: hidden;

    padding: 94px 0 88px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 153, 216, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(0, 182, 122, 0.045),
            transparent 25%
        ),
        var(--home2-white);
}


/*
|--------------------------------------------------------------------------
| Título
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__label {
    position: relative;

    width: fit-content;
    margin: 0 auto 34px;
    padding: 0 40px;

    color: var(--home2-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}


.home2-page .home-brands__label::before,
.home2-page .home-brands__label::after {
    position: absolute;
    top: 50%;

    width: 27px;
    height: 2px;

    content: "";

    border-radius: 999px;

    transform: translateY(-50%);
}


.home2-page .home-brands__label::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--home2-secondary),
            var(--home2-success)
        );
}


.home2-page .home-brands__label::after {
    right: 0;

    background:
        linear-gradient(
            90deg,
            var(--home2-success),
            var(--home2-secondary)
        );
}


/*
|--------------------------------------------------------------------------
| Contenedor de marcas
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__track {
    display: grid;
    align-items: stretch;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 18px;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 253, 0.96),
            rgba(255, 255, 255, 0.99)
        );

    border: 1px solid var(--home2-border);
    border-radius: 30px;

    box-shadow:
        0 20px 55px rgba(11, 35, 65, 0.055);
}


/*
|--------------------------------------------------------------------------
| Tarjeta
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    min-width: 0;
    min-height: 130px;
    padding: 28px 20px;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfdfe
        );

    border: 1px solid rgba(11, 35, 65, 0.065);
    border-radius: 21px;

    box-shadow:
        0 7px 20px rgba(11, 35, 65, 0.035);

    isolation: isolate;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/*
|--------------------------------------------------------------------------
| Resplandor decorativo
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__item::before {
    position: absolute;
    inset: 0;
    z-index: -1;

    content: "";

    background:
        radial-gradient(
            circle at 50% 110%,
            rgba(0, 153, 216, 0.11),
            transparent 48%
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}


/*
|--------------------------------------------------------------------------
| Línea inferior animada
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__item::after {
    position: absolute;
    right: 22%;
    bottom: 0;
    left: 22%;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--home2-secondary),
            var(--home2-success)
        );

    border-radius: 999px 999px 0 0;

    opacity: 0;

    transform: scaleX(0);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/*
|--------------------------------------------------------------------------
| Hover de tarjeta
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__item:hover {
    border-color: rgba(0, 153, 216, 0.24);

    box-shadow:
        0 18px 40px rgba(11, 35, 65, 0.11);

    transform: translateY(-6px);
}


.home2-page .home-brands__item:hover::before {
    opacity: 1;
}


.home2-page .home-brands__item:hover::after {
    opacity: 1;
    transform: scaleX(1);
}


/*
|--------------------------------------------------------------------------
| Marca principal
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__item--featured {
    min-height: 130px;
    padding-top: 38px;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0, 153, 216, 0.11),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(236, 249, 254, 0.96),
            rgba(241, 253, 248, 0.96)
        );

    border-color: rgba(0, 153, 216, 0.28);

    box-shadow:
        0 17px 40px rgba(0, 153, 216, 0.105);
}


.home2-page .home-brands__item--featured::after {
    opacity: 1;
    transform: scaleX(1);
}


/*
|--------------------------------------------------------------------------
| Etiqueta de marca principal
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__featured-label {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 22px;
    padding: 4px 10px;

    color: var(--home2-success-dark);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.075em;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;

    background:
        rgba(232, 250, 243, 0.96);

    border: 1px solid rgba(0, 182, 122, 0.18);
    border-radius: 999px;

    box-shadow:
        0 5px 12px rgba(0, 182, 122, 0.08);

    transform: translateX(-50%);
}


/*
|--------------------------------------------------------------------------
| Logos
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__logo {
    display: block;

    width: auto;
    max-width: min(88%, 175px);
    height: auto;
    max-height: 72px;

    object-fit: contain;
    object-position: center;

    filter: grayscale(0);
    opacity: 0.82;

    transform: scale(1);

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.35s ease;
}


/*
|--------------------------------------------------------------------------
| Logo de marca principal
|--------------------------------------------------------------------------
*/

.home2-page
.home-brands__item--featured
.home-brands__logo {
    max-width: min(90%, 185px);
    max-height: 76px;

    opacity: 1;
}


/*
|--------------------------------------------------------------------------
| Hover del logo
|--------------------------------------------------------------------------
*/

.home2-page
.home-brands__item:hover
.home-brands__logo {
    filter: grayscale(0);
    opacity: 1;

    transform: scale(1.08);
}


/*
|--------------------------------------------------------------------------
| Nombre cuando no hay logo
|--------------------------------------------------------------------------
*/

.home2-page .home-brands__name {
    display: block;

    max-width: 100%;

    color: var(--home2-primary);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.home2-page
.home-brands__item:hover
.home-brands__name {
    color: var(--home2-secondary);
    transform: scale(1.04);
}


/*
|--------------------------------------------------------------------------
| Escritorio mediano
|--------------------------------------------------------------------------
*/

@media (max-width: 1200px) {

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

    .home2-page .home-brands__item,
    .home2-page .home-brands__item--featured {
        min-height: 135px;
    }

    .home2-page .home-brands__logo {
        max-width: min(82%, 180px);
        max-height: 74px;
    }
}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .home2-page .home-brands {
        padding: 74px 0 66px;
    }

    .home2-page .home-brands__label {
        margin-bottom: 28px;
        padding-inline: 34px;

        font-size: 10px;
        line-height: 1.5;
    }

    .home2-page .home-brands__label::before,
    .home2-page .home-brands__label::after {
        width: 22px;
    }

    .home2-page .home-brands__track {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 14px;

        padding: 17px;

        border-radius: 24px;
    }

    .home2-page .home-brands__item,
    .home2-page .home-brands__item--featured {
        min-height: 122px;
        padding: 24px 14px;

        border-radius: 18px;
    }

    .home2-page .home-brands__item--featured {
        padding-top: 36px;
    }

    .home2-page .home-brands__logo {
        max-width: min(88%, 155px);
        max-height: 66px;
    }

    .home2-page .home-brands__featured-label {
        top: 9px;

        min-height: 20px;
        padding: 4px 8px;

        font-size: 6px;
    }
}


/*
|--------------------------------------------------------------------------
| Móvil pequeño
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {

    .home2-page .home-brands__track {
        grid-template-columns: 1fr;
        gap: 12px;

        padding: 14px;
    }

    .home2-page .home-brands__item,
    .home2-page .home-brands__item--featured {
        min-height: 120px;
    }

    .home2-page .home-brands__logo {
        max-width: min(78%, 190px);
        max-height: 68px;
    }

    .home2-page .home-brands__featured-label {
        display: inline-flex;
    }
}

/* ==========================================================
   CATEGORÍAS
========================================================== */

.home2-page .home-categories {
    background:
        linear-gradient(
            180deg,
            var(--home2-background),
            var(--home2-white)
        );
}

.home2-page .home-categories__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.home2-page .category-card {
    position: relative;

    display: block;
    min-height: 350px;
    overflow: hidden;

    color: var(--home2-white);
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            var(--home2-primary),
            var(--home2-secondary-dark)
        );

    border-radius: var(--home2-radius-lg);

    box-shadow: var(--home2-shadow-sm);

    isolation: isolate;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home2-page .category-card:hover {
    box-shadow: var(--home2-shadow-lg);
    transform: translateY(-7px);
}

.home2-page .home-categories__grid
.category-card:nth-child(1),
.home2-page .home-categories__grid
.category-card:nth-child(5) {
    min-height: 390px;
}

.home2-page .home-categories__grid
.category-card:nth-child(2),
.home2-page .home-categories__grid
.category-card:nth-child(4),
.home2-page .home-categories__grid
.category-card:nth-child(6) {
    min-height: 330px;
}

.home2-page .category-card__image,
.home2-page .category-card__overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.home2-page .category-card__image {
    object-fit: cover;

    transition: transform 0.65s ease;
}

.home2-page
.category-card:hover
.category-card__image {
    transform: scale(1.07);
}

.home2-page .category-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(5, 26, 45, 0.03) 5%,
            rgba(5, 26, 45, 0.42) 48%,
            rgba(5, 26, 45, 0.96) 100%
        );
}

.home2-page .category-card__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;

    padding: 27px;
}

.home2-page .category-card__eyebrow {
    display: inline-flex;

    padding: 6px 9px;

    color: #dff8ff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;

    background: rgba(0, 153, 216, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;

    backdrop-filter: blur(8px);
}

.home2-page .category-card__title {
    margin: 14px 0 0;

    color: var(--home2-white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.home2-page .category-card__description {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.73);
    font-size: 11px;
    line-height: 1.6;
}

.home2-page .category-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 20px;
    padding-top: 17px;

    color: var(--home2-white);
    font-size: 11px;
    font-weight: 750;

    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.home2-page .category-card__arrow {
    display: grid;

    width: 34px;
    height: 34px;

    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    place-items: center;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.home2-page
.category-card:hover
.category-card__arrow {
    background: var(--home2-success);
    transform: translateX(4px);
}

/* ==========================================================
   NOSOTROS
========================================================== */

.home2-page .home-about {
    overflow: hidden;
    background: var(--home2-white);
}

.home2-page .home-about__grid {
    display: grid;
    align-items: center;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.92fr);
    gap: clamp(60px, 8vw, 120px);
}

.home2-page .home-about__visual {
    position: relative;
    min-height: 620px;
}

.home2-page .home-about__image-main {
    position: absolute;
    top: 0;
    right: 40px;

    width: 78%;
    height: 520px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: var(--home2-shadow-lg);
}

.home2-page .home-about__image-placeholder {
    position: absolute;
    top: 0;
    right: 40px;

    display: grid;

    width: 78%;
    height: 520px;

    color: rgba(255, 255, 255, 0.8);
    font-size: 35px;
    font-weight: 800;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255, 255, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--home2-secondary),
            var(--home2-primary)
        );

    border-radius: 30px;

    box-shadow: var(--home2-shadow-lg);

    place-items: center;
}

.home2-page .home-about__image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 48%;
    height: 280px;

    color: var(--home2-white);
    text-align: center;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.17),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--home2-secondary),
            var(--home2-primary)
        );

    border: 8px solid var(--home2-white);
    border-radius: 25px;

    box-shadow: var(--home2-shadow-md);
}

.home2-page .home-about__image-secondary > span {
    display: grid;

    width: 55px;
    height: 55px;

    font-size: 30px;
    font-weight: 300;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    place-items: center;
}

.home2-page .home-about__image-secondary > strong {
    margin-top: 14px;
    font-size: 13px;
}

.home2-page .home-about__experience {
    position: absolute;
    right: 0;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px 23px;

    background: var(--home2-primary);
    border-radius: 20px;

    box-shadow:
        0 20px 45px rgba(11, 35, 65, 0.24);
}

.home2-page .home-about__experience-number {
    color: var(--home2-white);
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
}

.home2-page .home-about__experience-text {
    max-width: 100px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 650;
    line-height: 1.4;
    text-transform: uppercase;
}

.home2-page .home-about__content {
    max-width: 620px;
}

.home2-page .home-about__title {
    margin: 14px 0 0;

    color: var(--home2-text);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.home2-page .home-about__text {
    margin-top: 22px;

    color: var(--home2-text-light);
    font-size: 15px;
    line-height: 1.85;
}

.home2-page .home-about__text p {
    margin: 0;
}

.home2-page .home-about__text p + p {
    margin-top: 14px;
}

.home2-page .home-about__features {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;

    margin-top: 32px;
}

.home2-page .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 18px;

    background: var(--home2-background);
    border: 1px solid var(--home2-border);
    border-radius: var(--home2-radius-md);
}

.home2-page .feature-card__icon {
    display: grid;
    flex-shrink: 0;

    width: 39px;
    height: 39px;

    color: var(--home2-secondary);
    font-size: 16px;
    font-weight: 800;

    background: var(--home2-secondary-soft);
    border-radius: 12px;

    place-items: center;
}

.home2-page .feature-card__title {
    margin: 0;

    color: var(--home2-text);
    font-size: 12px;
    font-weight: 800;
}

.home2-page .feature-card__text {
    margin: 6px 0 0;

    color: var(--home2-text-light);
    font-size: 10px;
    line-height: 1.55;
}

.home2-page .home-about__action {
    margin-top: 36px;
}

/* ==========================================================
   PRODUCTOS
========================================================== */

.home2-page .home-products {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 153, 216, 0.05),
            transparent 28%
        ),
        var(--home2-background);
}

.home2-page .home-products__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 27px;
}

.home2-page .product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;

    background: var(--home2-white);
    border: 1px solid var(--home2-border);
    border-radius: var(--home2-radius-lg);

    box-shadow: var(--home2-shadow-sm);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home2-page .product-card:hover {
    border-color: rgba(0, 153, 216, 0.28);

    box-shadow: var(--home2-shadow-md);

    transform: translateY(-7px);
}

.home2-page .product-card__media {
    position: relative;

    display: grid;
    overflow: hidden;

    min-height: 300px;

    background:
        linear-gradient(
            145deg,
            #f7fafc,
            #ebf4f7
        );

    place-items: center;
}

.home2-page .product-card__image {
    width: 100%;
    height: 300px;
    padding: 24px;

    object-fit: contain;

    transition: transform 0.5s ease;
}

.home2-page
.product-card:hover
.product-card__image {
    transform: scale(1.055);
}

.home2-page .product-card__placeholder {
    color: var(--home2-secondary);
    font-size: 19px;
    font-weight: 800;
}

.home2-page .product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.home2-page .badge {
    display: inline-flex;

    padding: 6px 10px;

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;

    border-radius: 999px;
}

.home2-page .badge--success {
    color: var(--home2-success-dark);
    background: var(--home2-success-soft);
}

.home2-page .product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 25px;
}

.home2-page .product-card__brand {
    color: var(--home2-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home2-page .product-card__title {
    margin: 10px 0 0;

    color: var(--home2-text);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.home2-page .product-card__category {
    display: block;
    margin-top: 7px;

    color: var(--home2-text-light);
    font-size: 11px;
    font-weight: 650;
}

.home2-page .product-card__description {
    margin: 16px 0 0;

    color: var(--home2-text-light);
    font-size: 12px;
    line-height: 1.7;
}

.home2-page .product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;

    margin-top: auto;
    padding-top: 25px;
}

.home2-page .product-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--home2-secondary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.home2-page .product-card__action span {
    transition: transform 0.25s ease;
}

.home2-page
.product-card__action:hover span {
    transform: translateX(4px);
}

/* ==========================================================
   SERVICIOS
========================================================== */

.home2-page .home-services {
    background: var(--home2-white);
}

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

.home2-page .service-card {
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 285px;
    padding: 27px;

    background: var(--home2-background);
    border: 1px solid var(--home2-border);
    border-radius: var(--home2-radius-lg);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home2-page .service-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;

    width: 145px;
    height: 145px;

    content: "";

    background: rgba(0, 153, 216, 0.04);
    border-radius: 50%;
}

.home2-page .service-card:hover {
    background: var(--home2-white);
    border-color: rgba(0, 153, 216, 0.3);

    box-shadow: var(--home2-shadow-md);

    transform: translateY(-6px);
}

.home2-page .service-card__icon {
    position: relative;
    z-index: 1;

    display: grid;

    width: 54px;
    height: 54px;

    color: var(--home2-secondary);
    font-size: 14px;
    font-weight: 800;

    background: var(--home2-secondary-soft);
    border-radius: 16px;

    place-items: center;
}

.home2-page .service-card__title {
    position: relative;
    z-index: 1;

    margin: 25px 0 0;

    color: var(--home2-text);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home2-page .service-card__text {
    position: relative;
    z-index: 1;

    margin: 13px 0 0;

    color: var(--home2-text-light);
    font-size: 12px;
    line-height: 1.68;
}

.home2-page .service-card__link {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    margin-top: auto;
    padding-top: 23px;

    color: var(--home2-secondary);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.home2-page .service-card__link span {
    transition: transform 0.25s ease;
}

.home2-page
.service-card__link:hover span {
    transform: translateX(4px);
}

/* ==========================================================
   ESTADÍSTICAS
========================================================== */

.home2-page .home-stats {
    position: relative;
    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(0, 153, 216, 0.23),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 182, 122, 0.15),
            transparent 28%
        ),
        var(--home2-primary);
}

.home2-page .home-stats::before {
    position: absolute;
    inset: 0;

    content: "";
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.home2-page .home-stats__container {
    position: relative;
    z-index: 2;
}

.home2-page .home-stats__heading {
    max-width: 690px;
    margin: 0 auto 48px;

    text-align: center;
}

.home2-page .home-stats__eyebrow {
    color: #62d4ff;
}

.home2-page .home-stats__title {
    margin: 0;

    color: var(--home2-white);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.home2-page .home-stats__text {
    margin: 15px 0 0;

    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.home2-page .home-stats__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home2-page .stat-card {
    padding: 30px 22px;

    text-align: center;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--home2-radius-md);

    backdrop-filter: blur(12px);
}

.home2-page .stat-card__number {
    display: block;

    color: var(--home2-white);
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.home2-page .stat-card__label {
    margin: 11px 0 0;

    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 650;
}

/* ==========================================================
   BLOG
========================================================== */

.home2-page .home-blog {
    background: var(--home2-white);
}

.home2-page .home-blog__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 27px;
}

.home2-page .card {
    overflow: hidden;

    background: var(--home2-white);
    border: 1px solid var(--home2-border);
    border-radius: var(--home2-radius-lg);

    box-shadow: var(--home2-shadow-sm);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home2-page .card:hover {
    border-color: rgba(0, 153, 216, 0.28);

    box-shadow: var(--home2-shadow-md);

    transform: translateY(-6px);
}

.home2-page .card__media {
    display: block;
    overflow: hidden;

    aspect-ratio: 1.52 / 1;

    background:
        linear-gradient(
            145deg,
            var(--home2-secondary-soft),
            var(--home2-background-alt)
        );
}

.home2-page .card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.home2-page
.card:hover
.card__image {
    transform: scale(1.055);
}

.home2-page .article-card__placeholder {
    display: grid;

    width: 100%;
    height: 100%;

    color: var(--home2-secondary);
    font-size: 20px;
    font-weight: 800;

    place-items: center;
}

.home2-page .card__body {
    padding: 24px;
}

.home2-page .article-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    color: var(--home2-muted);
    font-size: 10px;
    font-weight: 650;
}

.home2-page .article-card__category {
    padding: 5px 9px;

    color: var(--home2-secondary-dark);
    font-weight: 800;

    background: var(--home2-secondary-soft);
    border-radius: 999px;
}

.home2-page .article-card__title {
    margin: 16px 0 0;

    color: var(--home2-text);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.home2-page .article-card__excerpt {
    margin: 13px 0 0;

    color: var(--home2-text-light);
    font-size: 12px;
    line-height: 1.7;
}

.home2-page .card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--home2-secondary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.home2-page .card__link-arrow {
    transition: transform 0.25s ease;
}

.home2-page
.card__link:hover
.card__link-arrow {
    transform: translateX(4px);
}

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

.home2-page .home-cta {
    padding: 80px 0 110px;
    background: var(--home2-white);
}

.home2-page .home-cta__box {
    position: relative;

    display: grid;
    align-items: center;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    gap: 40px;
    overflow: hidden;

    padding: clamp(45px, 6vw, 75px);

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--home2-secondary),
            #007fbd 55%,
            var(--home2-primary) 100%
        );

    border-radius: 32px;

    box-shadow:
        0 35px 80px rgba(0, 153, 216, 0.22);
}

.home2-page .home-cta__box::before {
    position: absolute;
    top: -150px;
    right: -80px;

    width: 380px;
    height: 380px;

    content: "";

    border: 70px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.home2-page .home-cta__content {
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.home2-page .home-cta__eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.home2-page .home-cta__title {
    margin: 0;

    color: var(--home2-white);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.home2-page .home-cta__text {
    max-width: 650px;
    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.home2-page .home-cta__action {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}

/* ==========================================================
   ESTADOS PARA JAVASCRIPT
========================================================== */

.home2-page [data-home2-reveal] {
    opacity: 0;
    transform: translateY(26px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.home2-page
[data-home2-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home2-page .home2-hero.is-paused
.home2-hero__dot.is-active {
    opacity: 0.65;
}

.home2-page .home2-hero__arrow:disabled,
.home2-page .home2-hero__dot:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

/* ==========================================================
   FOCO Y ACCESIBILIDAD
========================================================== */

.home2-page .btn:focus-visible,
.home2-page .home2-hero__arrow:focus-visible,
.home2-page .home2-hero__dot:focus-visible,
.home2-page .home-search__suggestion:focus-visible,
.home2-page .home-brands__item:focus-visible,
.home2-page .category-card:focus-visible,
.home2-page .product-card a:focus-visible,
.home2-page .service-card a:focus-visible,
.home2-page .article-card a:focus-visible {
    outline: 3px solid rgba(0, 153, 216, 0.35);
    outline-offset: 4px;
}

/* ==========================================================
   RESPONSIVE — ESCRITORIO MEDIANO
========================================================== */

@media (max-width: 1200px) {
    .home2-page .home-brands__track {
        grid-template-columns:
            repeat(3, minmax(120px, 1fr));
    }

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

    .home2-page .home2-hero__arrow--prev {
        left: 18px;
    }

    .home2-page .home2-hero__arrow--next {
        right: 18px;
    }
}

/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width: 992px) {
    .home2-page {
        --home2-section-space: 90px;
    }

    .home2-page .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .home2-page .home2-hero,
    .home2-page .home2-hero__slide,
    .home2-page .home2-hero__container,
    .home2-page .home2-hero__fallback,
    .home2-page .home2-hero__fallback-grid {
        min-height: 650px;
    }

    .home2-page .home2-hero__content {
        width: min(100%, 760px);
    }

    .home2-page .home-search {
        margin-top: -34px;
    }

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

    .home2-page
    .home-categories__grid
    .category-card {
        min-height: 340px;
    }

    .home2-page .home-about__grid {
        grid-template-columns: 1fr;
    }

    .home2-page .home-about__visual {
        max-width: 750px;
        min-height: 590px;
        margin: 0 auto;
    }

    .home2-page .home-about__content {
        max-width: 760px;
    }

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

    .home2-page .home-cta__box {
        grid-template-columns: 1fr;
    }

    .home2-page .home-cta__action {
        justify-self: start;
    }
}

/* ==========================================================
   RESPONSIVE — MÓVIL
========================================================== */

@media (max-width: 768px) {

    /*
    |--------------------------------------------------------------------------
    | Variables y contenedor
    |--------------------------------------------------------------------------
    */

    .home2-page {
        --home2-section-space: 62px;
    }

    .home2-page .container {
        width: min(
            calc(100% - 28px),
            1320px
        );
    }


    /*
    |--------------------------------------------------------------------------
    | Encabezados de sección
    |--------------------------------------------------------------------------
    */

    .home2-page .section-heading {
        margin-bottom: 34px;
    }

    .home2-page .section-heading--center {
        margin-bottom: 36px;
    }

    .home2-page .section-heading__title {
        font-size: 32px;
        line-height: 1.12;
    }

    .home2-page .section-heading__text {
        font-size: 14px;
        line-height: 1.7;
    }


    /*
    |--------------------------------------------------------------------------
    | Hero
    |--------------------------------------------------------------------------
    */

    .home2-page .home2-hero,
    .home2-page .home2-hero__slide,
    .home2-page .home2-hero__container,
    .home2-page .home2-hero__fallback,
    .home2-page .home2-hero__fallback-grid {
        min-height: 560px;
    }

    .home2-page .home2-hero__image {
        object-position: 62% center;
    }

    .home2-page .home2-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(
                    6,
                    30,
                    52,
                    calc(var(--home2-overlay, 0.42) - 0.13)
                ) 0%,
                rgba(
                    6,
                    30,
                    52,
                    calc(var(--home2-overlay, 0.42) + 0.02)
                ) 36%,
                rgba(
                    6,
                    30,
                    52,
                    calc(var(--home2-overlay, 0.42) + 0.38)
                ) 72%,
                rgba(6, 30, 52, 0.97) 100%
            );
    }

    .home2-page .home2-hero__content,
    .home2-page .home2-hero__content.is-left,
    .home2-page .home2-hero__content.is-center,
    .home2-page .home2-hero__content.is-right {
        align-items: flex-start;
        justify-content: flex-end;

        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 76px 0 74px;

        text-align: left;
    }

    .home2-page .home2-hero__eyebrow {
        min-height: 30px;
        padding: 6px 11px;

        font-size: 9px;
        letter-spacing: 0.085em;
    }

    .home2-page .home2-hero__title {
        max-width: 100%;
        margin-top: 18px;

        font-size: clamp(34px, 10.5vw, 46px);
        letter-spacing: -0.042em;
        line-height: 1.04;

        text-wrap: balance;
    }

    .home2-page .home2-hero__description {
        display: -webkit-box;
        overflow: hidden;

        max-width: 560px;
        margin-top: 17px;

        font-size: 14px;
        line-height: 1.55;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .home2-page .home2-hero__actions,
    .home2-page
    .home2-hero__content.is-center
    .home2-hero__actions,
    .home2-page
    .home2-hero__content.is-right
    .home2-hero__actions {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;

        width: 100%;
        margin-top: 24px;
    }

    .home2-page .home2-hero__actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .home2-page .home2-hero__trust {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 18px;

        width: 100%;
        margin-top: 21px;
        padding-top: 17px;
    }

    .home2-page .home2-hero__trust-item {
        flex: 1 1 calc(50% - 10px);
        gap: 8px;

        min-width: 130px;

        font-size: 10px;
        line-height: 1.35;
    }

    .home2-page .home2-hero__trust-item > span {
        width: 23px;
        height: 23px;

        font-size: 9px;
    }

    .home2-page .home2-hero__arrow {
        display: none;
    }

    .home2-page .home2-hero__pagination {
        bottom: 19px;
    }

    .home2-page .home2-hero__dot {
        width: 8px;
        height: 8px;
    }

    .home2-page .home2-hero__dot.is-active {
        width: 26px;
    }


    /*
    |--------------------------------------------------------------------------
    | Buscador
    |--------------------------------------------------------------------------
    */

    .home2-page .home-search {
        margin-top: -30px;
    }

    .home2-page .home-search__box {
        padding: 11px;
        border-radius: 19px;
    }

    .home2-page .search-field {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;

        min-height: auto;
        padding: 10px;
    }

    .home2-page .search-field__icon {
        display: none;
    }

    .home2-page .search-field__input {
        width: 100%;
        height: 46px;
        padding: 0 10px;
    }

    .home2-page .search-field__button {
        width: 100%;
        min-height: 46px;
    }

    .home2-page .home-search__suggestions {
        justify-content: flex-start;
        gap: 8px;

        margin-top: 13px;
    }


    /*
    |--------------------------------------------------------------------------
    | Marcas
    |--------------------------------------------------------------------------
    */

    .home2-page .home-brands {
        padding: 68px 0 60px;
    }

    .home2-page .home-brands__track {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 13px;

        padding: 16px;
    }

    .home2-page .home-brands__item,
    .home2-page .home-brands__item--featured {
        min-height: 122px;
        padding: 24px 14px;
    }

    .home2-page .home-brands__item--featured {
        padding-top: 36px;
    }

    .home2-page .home-brands__logo {
        max-width: min(88%, 155px);
        max-height: 66px;
    }

    .home2-page .home-brands__featured-label {
        top: 9px;

        min-height: 20px;
        padding: 4px 8px;

        font-size: 6px;
    }


    /*
    |--------------------------------------------------------------------------
    | Productos y blog
    |--------------------------------------------------------------------------
    */

    .home2-page .home-products__grid,
    .home2-page .home-blog__grid {
        grid-template-columns: 1fr;
    }


    /*
    |--------------------------------------------------------------------------
    | Categorías en carrusel horizontal
    |--------------------------------------------------------------------------
    */

    .home2-page .home-categories__grid {
        display: grid;
        grid-auto-columns: minmax(270px, 82vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        margin-right: -14px;
        padding-right: 14px;
        padding-bottom: 14px;

        scroll-behavior: smooth;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;

        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .home2-page
    .home-categories__grid::-webkit-scrollbar {
        display: none;
    }

    .home2-page
    .home-categories__grid
    .category-card {
        min-height: 235px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .home2-page .category-card__content {
        padding: 20px;
    }

    .home2-page .category-card__eyebrow {
        padding: 5px 8px;
        font-size: 8px;
    }

    .home2-page .category-card__title {
        margin-top: 11px;
        font-size: 20px;
    }

    .home2-page .category-card__description {
        display: -webkit-box;
        overflow: hidden;

        margin-top: 8px;

        font-size: 10px;
        line-height: 1.5;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home2-page .category-card__meta {
        margin-top: 15px;
        padding-top: 13px;

        font-size: 10px;
    }

    .home2-page .category-card__arrow {
        width: 30px;
        height: 30px;
    }


    /*
    |--------------------------------------------------------------------------
    | Nosotros
    |--------------------------------------------------------------------------
    */

    .home2-page .home-about__visual {
        min-height: 410px;
    }

    .home2-page .home-about__image-main,
    .home2-page .home-about__image-placeholder {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        height: 390px;
    }

    .home2-page .home-about__image-secondary {
        display: none;
    }

    .home2-page .home-about__experience {
        right: 14px;
        bottom: 14px;
    }

    .home2-page .home-about__features {
        grid-template-columns: 1fr;
    }


    /*
    |--------------------------------------------------------------------------
    | Productos
    |--------------------------------------------------------------------------
    */

    .home2-page .product-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .home2-page
    .product-card__footer
    .btn {
        width: 100%;
    }


    /*
    |--------------------------------------------------------------------------
    | Servicios en carrusel horizontal
    |--------------------------------------------------------------------------
    */

    .home2-page .home-services__grid {
        display: grid;
        grid-auto-columns: minmax(260px, 82vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 14px;

        overflow-x: auto;
        padding-bottom: 14px;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home2-page
    .home-services__grid::-webkit-scrollbar {
        display: none;
    }

    .home2-page .service-card {
        min-height: 260px;
        scroll-snap-align: start;
    }


    /*
    |--------------------------------------------------------------------------
    | Estadísticas
    |--------------------------------------------------------------------------
    */

    .home2-page .home-stats {
        padding: 68px 0;
    }

    .home2-page .home-stats__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home2-page .stat-card {
        padding: 24px 12px;
    }

    .home2-page .stat-card__number {
        font-size: 34px;
    }


    /*
    |--------------------------------------------------------------------------
    | CTA
    |--------------------------------------------------------------------------
    */

    .home2-page .home-cta {
        padding: 56px 0 72px;
    }

    .home2-page .home-cta__box {
        padding: 38px 22px;
        border-radius: 23px;
    }

    .home2-page .home-cta__action,
    .home2-page .home-cta__action .btn {
        width: 100%;
    }
}

/* ==========================================================
   MÓVILES PEQUEÑOS
========================================================== */

@media (max-width: 480px) {

    /*
    |--------------------------------------------------------------------------
    | Contenedor y espacios
    |--------------------------------------------------------------------------
    */

    .home2-page {
        --home2-section-space: 54px;
    }

    .home2-page .container {
        width: min(
            calc(100% - 22px),
            1320px
        );
    }


    /*
    |--------------------------------------------------------------------------
    | Encabezados de sección
    |--------------------------------------------------------------------------
    */

    .home2-page .section-heading,
    .home2-page .section-heading--center {
        margin-bottom: 30px;
    }

    .home2-page .section-heading__title {
        font-size: 29px;
        line-height: 1.12;
    }

    .home2-page .section-heading__text {
        font-size: 13px;
        line-height: 1.65;
    }


    /*
    |--------------------------------------------------------------------------
    | Hero
    |--------------------------------------------------------------------------
    */

    .home2-page .home2-hero,
    .home2-page .home2-hero__slide,
    .home2-page .home2-hero__container,
    .home2-page .home2-hero__fallback,
    .home2-page .home2-hero__fallback-grid {
        min-height: 535px;
    }

    .home2-page .home2-hero__image {
        object-position: 66% center;
    }

    .home2-page .home2-hero__content,
    .home2-page .home2-hero__content.is-left,
    .home2-page .home2-hero__content.is-center,
    .home2-page .home2-hero__content.is-right {
        padding: 66px 0 67px;
    }

    .home2-page .home2-hero__eyebrow {
        max-width: 100%;
        min-height: 28px;
        padding: 6px 10px;

        font-size: 8px;
        letter-spacing: 0.065em;
    }

    .home2-page .home2-hero__title {
        margin-top: 16px;

        font-size: clamp(31px, 9.8vw, 39px);
        line-height: 1.04;
    }

    .home2-page .home2-hero__description {
        margin-top: 14px;

        font-size: 13px;
        line-height: 1.5;

        -webkit-line-clamp: 3;
    }

    .home2-page .home2-hero__actions {
        gap: 9px;
        margin-top: 20px;
    }

    .home2-page .home2-hero__actions .btn {
        min-height: 46px;
        padding: 11px 16px;

        font-size: 12px;
    }

    .home2-page .home2-hero__trust {
        gap: 9px 12px;

        margin-top: 17px;
        padding-top: 14px;
    }

    .home2-page .home2-hero__trust-item {
        flex-basis: calc(50% - 6px);
        min-width: 0;

        font-size: 9px;
    }

    .home2-page .home2-hero__trust-item:nth-child(n + 3) {
        display: none;
    }

    .home2-page .home2-hero__pagination {
        bottom: 17px;
    }


    /*
    |--------------------------------------------------------------------------
    | Buscador
    |--------------------------------------------------------------------------
    */

    .home2-page .home-search {
        margin-top: -24px;
    }

    .home2-page .home-search__box {
        padding: 9px;
        border-radius: 17px;
    }

    .home2-page .search-field {
        padding: 9px;
    }

    .home2-page .search-field__input {
        height: 44px;
        font-size: 13px;
    }

    .home2-page .search-field__button {
        min-height: 44px;
    }

    .home2-page .home-search__suggestions {
        display: none;
    }


    /*
    |--------------------------------------------------------------------------
    | Marcas
    |--------------------------------------------------------------------------
    */

    .home2-page .home-brands {
        padding: 60px 0 54px;
    }

    .home2-page .home-brands__label {
        margin-bottom: 24px;
        padding-inline: 30px;

        font-size: 9px;
        line-height: 1.45;
    }

    .home2-page .home-brands__track {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 10px;

        padding: 12px;

        border-radius: 21px;
    }

    .home2-page .home-brands__item,
    .home2-page .home-brands__item--featured {
        min-height: 108px;
        padding: 18px 10px;

        border-radius: 16px;
    }

    .home2-page .home-brands__item--featured {
        padding-top: 32px;
    }

    .home2-page .home-brands__logo {
        max-width: 88%;
        max-height: 56px;
    }

    .home2-page .home-brands__featured-label {
        top: 7px;

        display: inline-flex;

        min-height: 18px;
        padding: 3px 7px;

        font-size: 5.5px;
    }


    /*
    |--------------------------------------------------------------------------
    | Categorías en carrusel
    |--------------------------------------------------------------------------
    */

    .home2-page .home-categories__grid {
        grid-auto-columns: minmax(245px, 86vw);
        gap: 12px;

        margin-right: -11px;
        padding-right: 11px;
        padding-bottom: 12px;
    }

    .home2-page
    .home-categories__grid
    .category-card {
        min-height: 220px;

        border-radius: 21px;
    }

    .home2-page .category-card__content {
        padding: 17px;
    }

    .home2-page .category-card__eyebrow {
        padding: 4px 7px;

        font-size: 7px;
    }

    .home2-page .category-card__title {
        margin-top: 10px;

        font-size: 18px;
        line-height: 1.12;
    }

    .home2-page .category-card__description {
        margin-top: 7px;

        font-size: 9px;
        line-height: 1.45;

        -webkit-line-clamp: 2;
    }

    .home2-page .category-card__meta {
        margin-top: 13px;
        padding-top: 11px;

        font-size: 9px;
    }

    .home2-page .category-card__arrow {
        width: 28px;
        height: 28px;
    }


    /*
    |--------------------------------------------------------------------------
    | Nosotros
    |--------------------------------------------------------------------------
    */

    .home2-page .home-about__visual {
        min-height: 365px;
    }

    .home2-page .home-about__image-main,
    .home2-page .home-about__image-placeholder {
        width: 100%;
        height: 350px;

        border-radius: 23px;
    }

    .home2-page .home-about__image-secondary {
        display: none;
    }

    .home2-page .home-about__experience {
        right: 10px;
        bottom: 10px;

        gap: 10px;

        padding: 14px 15px;

        border-radius: 16px;
    }

    .home2-page .home-about__experience-number {
        font-size: 27px;
    }

    .home2-page .home-about__experience-text {
        max-width: 78px;
        font-size: 8px;
    }

    .home2-page .home-about__features {
        gap: 12px;
    }

    .home2-page .feature-card {
        padding: 15px;
    }


    /*
    |--------------------------------------------------------------------------
    | Productos
    |--------------------------------------------------------------------------
    */

    .home2-page .product-card__media,
    .home2-page .product-card__image {
        min-height: 235px;
        height: 235px;
    }

    .home2-page .product-card__image {
        padding: 18px;
    }

    .home2-page .product-card__body {
        padding: 20px;
    }

    .home2-page .product-card__title {
        font-size: 19px;
    }

    .home2-page .product-card__description {
        font-size: 11px;
    }


    /*
    |--------------------------------------------------------------------------
    | Servicios
    |--------------------------------------------------------------------------
    */

    .home2-page .home-services__grid {
        grid-auto-columns: minmax(248px, 88vw);
    }

    .home2-page .service-card {
        min-height: 245px;
        padding: 22px;
    }

    .home2-page .service-card__title {
        margin-top: 20px;
        font-size: 18px;
    }


    /*
    |--------------------------------------------------------------------------
    | Estadísticas
    |--------------------------------------------------------------------------
    */

    .home2-page .home-stats {
        padding: 60px 0;
    }

    .home2-page .home-stats__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home2-page .stat-card {
        padding: 21px 10px;
    }

    .home2-page .stat-card__number {
        font-size: 31px;
    }

    .home2-page .stat-card__label {
        font-size: 9px;
    }


    /*
    |--------------------------------------------------------------------------
    | Blog
    |--------------------------------------------------------------------------
    */

    .home2-page .card__body {
        padding: 20px;
    }

    .home2-page .article-card__title {
        font-size: 19px;
    }

    .home2-page .article-card__excerpt {
        font-size: 11px;
    }


    /*
    |--------------------------------------------------------------------------
    | CTA
    |--------------------------------------------------------------------------
    */

    .home2-page .home-cta {
        padding: 50px 0 64px;
    }

    .home2-page .home-cta__box {
        padding: 32px 18px;
        border-radius: 20px;
    }

    .home2-page .home-cta__action .btn {
        min-height: 48px;
    }
}

/* ==========================================================
   MOVIMIENTO REDUCIDO
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .home2-page *,
    .home2-page *::before,
    .home2-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

    .home2-page .home2-hero__image {
        transform: none !important;
    }

    .home2-page [data-home2-reveal] {
        opacity: 1;
        transform: none;
    }
}

.home2-page .service-card__icon {
    position: relative;
    z-index: 1;

    display: grid;

    width: 58px;
    height: 58px;

    color: var(--home2-secondary);
    font-size: 25px;

    background: var(--home2-secondary-soft);
    border: 1px solid rgba(0, 153, 216, 0.12);
    border-radius: 17px;

    box-shadow:
        0 10px 24px rgba(0, 153, 216, 0.08);

    place-items: center;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.home2-page .service-card__icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: inherit;
    line-height: 1;
}

.home2-page .service-card__icon svg {
    width: 27px;
    height: 27px;
}

.home2-page .service-card:hover .service-card__icon {
    color: var(--home2-white);
    background: var(--home2-secondary);

    transform:
        translateY(-3px)
        rotate(-3deg);
}

/* ==========================================================
   BANNERS DINÁMICOS — COLORES PERSONALIZADOS
========================================================== */

.home2-page
.home2-hero__content {
    color:
        var(
            --banner-text-color,
            #ffffff
        );
}


/* Texto */

.home2-page
.home2-hero__text {
    color:
        var(
            --banner-text-color,
            #ffffff
        );
}

.home2-page
.home2-hero__content
.home2-hero__eyebrow,

.home2-page
.home2-hero__content
.home2-hero__title,

.home2-page
.home2-hero__content
.home2-hero__description {
    color:
        var(
            --banner-text-color,
            #ffffff
        );
}


/* Punto del subtítulo */

.home2-page
.home2-hero__content
.home2-hero__eyebrow-dot {
    background-color:
        var(
            --banner-text-color,
            #ffffff
        );
}


/* ==========================================================
   BOTÓN PERSONALIZADO
========================================================== */

.home2-page
.home2-hero__custom-button {
    color:
        var(
            --banner-button-text-color,
            #ffffff
        );

    background:
        var(
            --banner-button-color,
            #00b67a
        );

    border-color:
        var(
            --banner-button-color,
            #00b67a
        );

    box-shadow:
        0 14px 30px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.home2-page
.home2-hero__custom-button:hover {
    color:
        var(
            --banner-button-text-color,
            #ffffff
        );

    background:
        var(
            --banner-button-color,
            #00b67a
        );

    border-color:
        var(
            --banner-button-color,
            #00b67a
        );

    filter: brightness(0.92);

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 36px
        rgba(0, 0, 0, 0.23);
}


/* Flecha */

.home2-page
.home2-hero__custom-button
.btn__arrow {
    color: inherit;
}


/* ==========================================================
   SOLO BOTÓN
========================================================== */

.home2-page
.home2-hero__actions--only {
    margin-top: 0;
}


/* ==========================================================
   SOLO IMAGEN
========================================================== */

.home2-page
.home2-hero__slide.is-image-only
.home2-hero__overlay {
    /*
     * Conservamos el overlay configurado por administración.
     * Si quieres mostrar la imagen totalmente limpia,
     * configura Oscurecimiento = 0 desde el panel.
     */
}

.home2-page
.home2-hero__slide.is-image-only
.home2-hero__container {
    pointer-events: none;
}


