/*Erika: 2026-07-30*/
/* ================================================================ ERIKA
   enterprise.css  –  Portal Enterprise page
   Última actualización: 2026-06-02
   ================================================================ */

   body.page-enterprise {
    /* layout_sistema.css aplica display:flex al body; neutralizar fuera del demo */
    display: block;
    min-height: 0;
    background: #000;
}

/* ----------------------------------------------------------------
   Navbar transparente en desktop (igual que audience.css)
   ---------------------------------------------------------------- */
/* Navbar transparente solo en desktop: el degradado queda visible detrás del nav fijo */
@media (min-width: 992px) {
    body.page-enterprise .navbar,
    body.page-enterprise .navbar.scrolled,
    body.page-enterprise nav.navbar,
    body.page-enterprise nav.navbar.scrolled {
        background: transparent !important;
        background-color: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    body.page-enterprise .ent-hero {    
        margin-top: -80px;
        padding-top: 80px;
    }

    body.page-enterprise.navbar-scrolled .ent-hero {
        margin-top: -65px;
        padding-top: 65px;
    }
}


/* ==========================================================================
   FLOATING CTA BUTTON (Desktop only)
   ========================================================================== */

.floating-cta-btn {
    position: fixed;
    top: 13px;
    right: 140px;
    z-index: 1001;
    padding: 10px 26px;
    border-radius: 999px;
    font-family: 'touche', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
    border: 2px solid transparent;
    height: 40px;
    line-height: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.floating-cta-btn.fcta-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-cta-btn.fcta-dark,
.floating-cta-btn.fcta-light,
.floating-cta-btn {
    background: #fff !important;
    color: #111 !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.18) !important;
}

.floating-cta-btn.fcta-dark:hover,
.floating-cta-btn.fcta-light:hover,
.floating-cta-btn:hover {
    background: #f0f0f0 !important;
    border-color: #f0f0f0 !important;
    color: #111 !important;
    text-decoration: none;
}

.floating-cta-btn:focus:not(:focus-visible) {
    outline: none;
}

.floating-cta-btn:focus-visible {
    outline: 2px solid rgba(168, 156, 247, 0.95);
    outline-offset: 3px;
}

@media screen and (max-width: 991px) {
    .floating-cta-btn {
        display: none !important;
    }
}




@media screen and (min-width: 992px) {
/*BOTONES QUE SE OCULTARÁN AL HACER SCROLL*/
    .navbar.scrolled .nav-actions a[href="/paneldecontrol"],
    /*.navbar.scrolled .nav-actions a[href="https://.fiweex.com/"],*/
    .navbar.scrolled .nav-actions a[href="/contactanos"] {
        opacity: 0;
        pointer-events: none;
        width: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
}


/* ================================================================
   HERO SECTION  –  .ent-hero
   Layout 2 columnas: texto + foto redondeada con flotantes
   ================================================================ */

.ent-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: #000;
    color: #fff;
    --ent-hero-enter-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ent-hero-enter-duration: 3.5s;
    --ent-hero-enter-stagger: 0.35s;
}

/* ── Layout ── */
.ent-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 60px 100px;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Columna izquierda: texto ── */
.ent-hero__content {
    flex: 1 1 46%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Badge pill */
.ent-hero__badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    padding: 13px 26px 9px 26px;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'Touche', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    margin-bottom: 34px;
}

/* Título */
.ent-hero__title {
    font-family: 'Touche', sans-serif;
    font-size: clamp(3rem, 4.6vw, 5.9rem);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 36px 0;
    letter-spacing: -0.5px;
}

.ent-hero__title--purple {
    color: #957AFB;
    font-weight: 600;
}

.ent-hero__title--sub {
    display: block;
    font-size: 0.58em;
    font-style: italic;
    font-weight: 400;
    color: #f0f0f0;
    -webkit-text-fill-color: #f0f0f0;
}

/* Botones */
.ent-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.ent-hero__btn {
    display: inline-block;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Touche', sans-serif;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ent-hero__btn--primary {
    background: #957AFB;
}

.ent-hero__btn--primary:hover {
    background: #7e60f0;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.ent-hero__btn--secondary {
    background: rgba(66, 47, 138, 0.9);
}

.ent-hero__btn--secondary:hover {
    background: rgba(88, 64, 178, 0.95);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Subtítulo inferior */
.ent-hero__subtitle {
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.6rem, 2vw, 3rem);
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    margin: 0;
}

/* ── Columna derecha: visual con slides ── */
.ent-hero__visual {
    flex: 1 1 50%;
    position: relative;
    max-width: 560px;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-left: auto;
    overflow: visible;
}

.ent-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    pointer-events: none;
}

.ent-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

/* Foto principal redondeada */
.ent-hero__photo {
    --ent-hero-photo-radius: 48px;
    position: absolute;
    inset: 0;
    border-radius: var(--ent-hero-photo-radius);
    overflow: hidden;
    background: #1a1a1a;
}

/* Borde animado con gradiente fluido */
.ent-hero__photo.card-olas {
    --card-olas-gap: 5px;
    background: linear-gradient(
        -45deg,
        #ee7752,
        #e73c7e,
        #23a6d5,
        #23d5ab
    );
    background-size: 400% 400%;
    animation: flujoOlas 6s ease infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: var(--card-olas-gap);
    box-sizing: border-box;
}

.ent-hero__photo.card-olas img {
    border-radius: calc(var(--ent-hero-photo-radius) - var(--card-olas-gap));
}

.ent-hero__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.ent-hero__slide.is-active .ent-hero__photo img {
    transform: scale(1);
}

/* Widgets flotantes */
.ent-hero__float {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.45));
}

.ent-hero__float img {
    display: block;
    width: 100%;
    height: auto;
}

/* Slide 1 – arriba der + abajo izq (diseño original) */
.ent-hero__float--top {
    top: 10%;
    right: -6%;
    width: clamp(160px, 38%, 230px);
}

.ent-hero__float--bottom {
    bottom: 8%;
    left: -8%;
    width: clamp(180px, 46%, 280px);
}

.ent-hero--played .ent-hero__float--top {
    animation: ent-float 6.5s ease-in-out infinite;
}

.ent-hero--played .ent-hero__float--bottom {
    animation: ent-float 7.5s ease-in-out infinite;
    animation-delay: -2s;
}

/* Slide 2 – ambos flotantes saliendo por la izquierda (ref. exacta) */
.ent-hero__slide--2 .ent-hero__float--top {
    top: 20.5%;
    left: -12%;
    right: auto;
    width: 46%;
}

.ent-hero__slide--2 .ent-hero__float--bottom {
    top: 65%;
    bottom: auto;
    left: -16.5%;
    width: 33%;
}

/* Slide 3 – habitación inset arriba-izq + settings abajo-izq (ref. exacta) */
.ent-hero__slide--3 .ent-hero__float--top {
    top: 17.5%;
    left: 6%;
    right: auto;
    width: 19%;
}

.ent-hero__slide--3 .ent-hero__float--bottom {
    top: 66.5%;
    bottom: auto;
    left: -16.5%;
    width: 33%;
}

/* ── Entrada hero: texto → foto → flotantes (como ent-custom) ── */
.ent-hero .slide-right {
    animation: ent-hero-slide-right var(--ent-hero-enter-duration) var(--ent-hero-enter-ease) both;
}

.ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--photo {
    animation: ent-hero-enter-photo var(--ent-hero-enter-duration) var(--ent-hero-enter-ease) 0.35s both;
}

.ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--float {
    opacity: 0;
}

.ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--float.ent-hero__float--top {
    animation:
        ent-hero-enter-float calc(var(--ent-hero-enter-duration) * 0.85) var(--ent-hero-enter-ease)
            calc(1.05s + var(--ent-hero-enter-i, 0) * var(--ent-hero-enter-stagger)) both,
        ent-float 6.5s ease-in-out
            calc(3.8s + var(--ent-hero-enter-i, 0) * var(--ent-hero-enter-stagger)) infinite;
}

.ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--float.ent-hero__float--bottom {
    animation:
        ent-hero-enter-float calc(var(--ent-hero-enter-duration) * 0.85) var(--ent-hero-enter-ease)
            calc(1.05s + var(--ent-hero-enter-i, 0) * var(--ent-hero-enter-stagger)) both,
        ent-float 7.5s ease-in-out
            calc(3.8s + var(--ent-hero-enter-i, 0) * var(--ent-hero-enter-stagger)) infinite;
}

.ent-hero--played .ent-hero-enter--float {
    opacity: 1;
}

@keyframes ent-hero-slide-right {
    from {
        transform: translateX(-4%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ent-hero-enter-photo {
    from {
        transform: translateX(4%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ent-hero-enter-float {
    from {
        opacity: 0;
        transform: translateY(8%) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-hero .slide-right,
    .ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--photo,
    .ent-hero:not(.ent-hero--played) .ent-hero__slide.is-active > .ent-hero-enter--float {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .ent-hero__photo.card-olas {
        animation: none;
        background-position: 0% 50%;
    }
}

/* ── Keyframes ── */
@keyframes flujoOlas {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes ent-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}


/* ================================================================
   SCROLL REVEAL – Entradas al viewport (todas las secciones)
   Sección: .ent-reveal-section  →  .is-in-view al entrar
   Elemento: .ent-reveal .ent-reveal--{left|right|up|down|fade|scale|blur|line|up-scale}
   Stagger: data-ent-stagger="0.1" en sección o grupo
   ================================================================ */

.ent-reveal-section {
    --ent-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ent-reveal-duration: 3.5s;
    --ent-reveal-duration-fade: 3.5s;
    --ent-reveal-duration-line: 3.5s;
}

.ent-reveal-section .ent-reveal {
    opacity: 0;
}

.ent-reveal-section .ent-reveal--left     { transform: translateX(-4%); }
.ent-reveal-section .ent-reveal--right    { transform: translateX(4%); }
.ent-reveal-section .ent-reveal--up       { transform: translateY(5%); }
.ent-reveal-section .ent-reveal--down     { transform: translateY(-4%); }
.ent-reveal-section .ent-reveal--scale    { transform: scale(0.98); }
.ent-reveal-section .ent-reveal--up-scale { transform: translateY(5%) scale(0.98); }
.ent-reveal-section .ent-reveal--right-scale { transform: translateX(4%) scale(0.98); }
.ent-reveal-section .ent-reveal--blur     { filter: blur(4px); }
.ent-reveal-section .ent-reveal--line     { transform: scaleX(0); transform-origin: left center; }

.ent-reveal-section.is-in-view .ent-reveal--left {
    animation: ent-reveal-slide-left var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--right {
    animation: ent-reveal-slide-right var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--up {
    animation: ent-reveal-slide-up var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--down {
    animation: ent-reveal-slide-down var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--fade {
    animation: ent-reveal-fade var(--ent-reveal-duration-fade) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--scale {
    animation: ent-reveal-scale var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--up-scale {
    animation: ent-reveal-up-scale var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--right-scale {
    animation: ent-reveal-right-scale var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--blur {
    animation: ent-reveal-blur var(--ent-reveal-duration) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

.ent-reveal-section.is-in-view .ent-reveal--line {
    animation: ent-reveal-line var(--ent-reveal-duration-line) var(--ent-reveal-ease)
        calc(var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.3s) + var(--ent-reveal-delay, 0s)) both;
}

@keyframes ent-reveal-slide-left {
    from { opacity: 0; transform: translateX(-4%); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-slide-right {
    from { opacity: 0; transform: translateX(4%); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-slide-up {
    from { opacity: 0; transform: translateY(5%); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-slide-down {
    from { opacity: 0; transform: translateY(-4%); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes ent-reveal-scale {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-up-scale {
    from { opacity: 0; transform: translateY(5%) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-right-scale {
    from { opacity: 0; transform: translateX(4%) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-reveal-blur {
    from { opacity: 0; filter: blur(4px); }
    to   { opacity: 1; filter: blur(0); }
}

@keyframes ent-reveal-line {
    from { opacity: 0; transform: scaleX(0); }
    to   { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ent-reveal-section .ent-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
    }
}


/* ================================================================
   HERO RESPONSIVE
   ================================================================ */

/* ─ Tablet landscape ─ */
@media (max-width: 1200px) {
    .ent-hero__container {
        padding: 130px 40px 90px;
        gap: 36px;
    }

    .ent-hero__visual {
        max-width: 460px;
    }

    .ent-hero__photo {
        --ent-hero-photo-radius: 40px;
    }
}

/* ─ Tablet portrait / mobile: columna única ─ */
@media (max-width: 991px) {
    .ent-hero {
        min-height: auto;
        /* Los flotantes salen del visual; se recorta el scroll horizontal */
        overflow-x: hidden;
    }

    .ent-hero__container {
        flex-direction: column;
        align-items: stretch;
        padding: 120px 28px 72px;
        gap: 44px;
    }

    /* Los hijos de content participan en el flex del container para reordenar en mobile */
    .ent-hero__content {
        display: contents;
    }

    .ent-hero__content.slide-right {
        animation: none;
    }

    .ent-hero__badge {
        order: 1;
        align-self: center;
    }

    .ent-hero__title {
        order: 2;
        flex: unset;
        max-width: 100%;
        font-size: clamp(2.8rem, 5.5vw, 4.2rem);
        text-align: center;
        margin-bottom: 0;
    }

    .ent-hero__visual {
        order: 3;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .ent-hero__subtitle {
        order: 4;
        text-align: center;
        max-width: 100%;
    }

    .ent-hero__actions {
        order: 5;
        justify-content: center;
        margin-bottom: 0;
        width: 100%;
    }

    .ent-hero__photo {
        --ent-hero-photo-radius: 36px;
    }

    .ent-hero__float--top {
        right: -2%;
        width: clamp(130px, 36%, 190px);
    }

    .ent-hero__float--bottom {
        left: -2%;
        width: clamp(150px, 42%, 220px);
    }

    .ent-hero__slide--2 .ent-hero__float--top {
        top: 20.5%;
        left: -6%;
        right: auto;
        width: 42%;
    }

    .ent-hero__slide--2 .ent-hero__float--bottom {
        top: 65%;
        bottom: auto;
        left: -8%;
        width: 30%;
    }

    .ent-hero__slide--3 .ent-hero__float--top {
        top: 17.5%;
        left: 8%;
        right: auto;
        width: 20%;
    }

    .ent-hero__slide--3 .ent-hero__float--bottom {
        top: 66.5%;
        bottom: auto;
        left: -8%;
        width: 30%;
    }
}

/* ─ Mobile ─ */
@media (max-width: 767px) {
    .ent-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .ent-hero__container {
        padding: 100px 20px 52px;
        gap: 32px;
    }

    .ent-hero__badge {
        font-size: 1.05rem;
        padding: 9px 16px 7px;
        margin-bottom: 22px;
        letter-spacing: 1.5px;
    }

    .ent-hero__title {
        font-size: clamp(2.6rem, 8.2vw, 3.4rem);
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .ent-hero__title--sub {
        font-size: 0.62em;
        margin-top: 4px;
    }

    .ent-hero__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 340px;
    }

    .ent-hero__btn {
        font-size: 1.35rem;
        padding: 13px 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .ent-hero__subtitle {
        font-size: clamp(1.45rem, 4.2vw, 1.85rem);
        line-height: 1.4;
    }

    .ent-hero__visual {
        max-width: min(320px, 78vw);
        aspect-ratio: 3 / 4;
    }

    .ent-hero__photo {
        --ent-hero-photo-radius: 24px;
    }

    .ent-hero__photo img {
        object-position: center top;
    }

    .ent-hero__float--top {
        top: 8%;
        right: -4%;
        width: 40%;
    }

    .ent-hero__float--bottom {
        bottom: 6%;
        left: -4%;
        width: 46%;
    }

    .ent-hero__slide--2 .ent-hero__float--top {
        top: 20%;
        left: -6%;
        right: auto;
        width: 44%;
    }

    .ent-hero__slide--2 .ent-hero__float--bottom {
        top: 64%;
        bottom: auto;
        left: -8%;
        width: 32%;
    }

    .ent-hero__slide--3 .ent-hero__float--top {
        top: 17%;
        left: 6%;
        right: auto;
        width: 22%;
    }

    .ent-hero__slide--3 .ent-hero__float--bottom {
        top: 65%;
        bottom: auto;
        left: -8%;
        width: 34%;
    }
}

/* ─ Mobile pequeño ─ */
@media (max-width: 420px) {
    .ent-hero__container {
        padding: 20px 16px 44px;
        gap: 28px;
    }

    .ent-hero__badge {
        font-size: 0.95rem;
        padding: 8px 14px 6px;
    }

    .ent-hero__title {
        font-size: clamp(2.4rem, 9vw, 3rem);
    }

    .ent-hero__actions {
        max-width: 100%;
    }

    .ent-hero__btn {
        font-size: 1.25rem;
        padding: 12px 16px;
    }

    .ent-hero__visual {
        max-width: min(280px, 82vw);
    }

    .ent-hero__float--top {
        width: 42%;
        right: -3%;
    }

    .ent-hero__float--bottom {
        width: 48%;
        left: -3%;
    }

    .ent-hero__slide--2 .ent-hero__float--top {
        left: -5%;
        width: 44%;
    }

    .ent-hero__slide--2 .ent-hero__float--bottom {
        left: -6%;
        width: 32%;
    }

    .ent-hero__slide--3 .ent-hero__float--top {
        left: 5%;
        width: 24%;
    }

    .ent-hero__slide--3 .ent-hero__float--bottom {
        left: -6%;
        width: 34%;
    }
}

/* Landscape móvil: menos altura forzada, visual más compacto */
@media (max-width: 991px) and (orientation: landscape) {
    .ent-hero__container {
        padding-top: 88px;
        padding-bottom: 48px;
        gap: 28px;
    }

    .ent-hero__visual {
        max-width: 260px;
        aspect-ratio: 3 / 4;
    }

    .ent-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
    }

    .ent-hero__btn {
        width: auto;
    }
}


/* ================================================================
   CUSTOM SECTION  –  .ent-custom
   "Un portal completamente personalizable"
   Fondo negro con ondas animadas (canvas #957afb) + teléfonos
   con widgets flotantes sobrepuestos
   ================================================================ */

.ent-custom {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    color: #fff;
}

/* ── Fondo: canvas de ondas animadas ── */
.ent-custom__waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ent-custom__waves canvas {
    display: block;
    width: 100%;
    height: 100%;
    filter: blur(10px); /* intensidad del blur de las olas */
}

/* ── Layout ── */
.ent-custom__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* ── Columna izquierda: texto (alineada al inicio de la sección) ── */
.ent-custom__content {
    flex: 0 0 42%;
    max-width: 42%;
    align-self: flex-start;
}

.ent-custom__title {
    font-family: 'Touche', sans-serif;
    font-size: clamp(3rem, 4.6vw, 5.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.ent-custom__title--italic {
    font-style: italic;
    font-weight: 300;
    color: #f0f0f0;
}

.ent-custom__title--purple {
    color: #957AFB;
    font-weight: 600;
}

/* ── Columna derecha: teléfonos + widgets ── */
.ent-custom__visual {
    position: relative;
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.ent-custom__phone {
    width: min(300px, 34vw);
    animation: ent-float 7s ease-in-out infinite;
}

.ent-custom__phone--right {
    animation-duration: 8s;
    animation-delay: 1.2s;
}

.ent-custom__phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

/* ── Widgets flotantes sobrepuestos ── */
.ent-custom__overlays {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.ent-custom__float {
    position: absolute;
    animation: ent-float 6s ease-in-out infinite;
}

.ent-custom__float img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.5));
}

/* Forma del logo: hueco entre teléfonos, arriba (cargado a la izquierda) */
.ent-custom__float--1 {
    width: 190px;
    left: calc(50% - 160px);
    top: 22%;
    animation-delay: 0.6s;
}

/* Color del botón: sobresale por el borde izquierdo */
.ent-custom__float--2 {
    width: 180px;
    left: -14%;
    top: 52%;
    animation-duration: 7.5s;
}

/* Idiomas disponibles: hueco entre teléfonos, abajo (cargado a la izquierda) */
.ent-custom__float--3 {
    width: 150px;
    left: calc(50% - 140px);
    bottom: 2%;
    animation-delay: 1.8s;
}

/* Campos obligatorios / activos: sobresale por el borde derecho */
.ent-custom__float--4 {
    width: 200px;
    right: -16%;
    bottom: 12%;
    animation-duration: 8.5s;
    animation-delay: 0.9s;
}

/* ── Custom: widgets flotantes encadenan entrada + ent-float ── */
.ent-reveal-section.is-in-view .ent-custom__float.ent-reveal--fade {
    animation:
        ent-reveal-fade 3.5s cubic-bezier(0.16, 1, 0.3, 1)
            calc(1.1s + var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.12s)) both,
        ent-float 6s ease-in-out
            calc(3.8s + var(--ent-reveal-i, 0) * var(--ent-reveal-step, 0.12s)) infinite;
}

.ent-reveal-section.is-in-view .ent-custom__float--2.ent-reveal--fade {
    animation-duration: 3.5s, 7.5s;
}

.ent-reveal-section.is-in-view .ent-custom__float--4.ent-reveal--fade {
    animation-duration: 3.5s, 8.5s;
}


/* ================================================================
   CUSTOM SECTION RESPONSIVE
   ================================================================ */

/* ─ Tablet landscape ─ */
@media (max-width: 1200px) {
    .ent-custom__container {
        padding: 100px 40px;
    }

    .ent-custom__float--1 { width: 160px; left: calc(50% - 135px); }
    .ent-custom__float--2 { width: 150px; left: -10%; }
    .ent-custom__float--3 { width: 130px; left: calc(50% - 120px); }
    .ent-custom__float--4 { width: 170px; right: -12%; }
}

/* ─ Tablet portrait ─ */
@media (max-width: 991px) {
    .ent-custom {
        min-height: auto;
    }

    .ent-custom__container {
        flex-direction: column;
        padding: 90px 30px;
        gap: 60px;
    }

    .ent-custom__content {
        flex: unset;
        max-width: 560px;
        text-align: center;
        align-self: center;
    }

    .ent-custom__visual {
        width: 100%;
        gap: 48px;
    }

    .ent-custom__phone {
        width: min(280px, 40vw);
    }

    .ent-custom__float--1 { width: 140px; left: calc(50% - 120px); top: 20%; }
    .ent-custom__float--2 { width: 130px; left: -3%; }
    .ent-custom__float--3 { width: 115px; left: calc(50% - 105px); }
    .ent-custom__float--4 { width: 150px; right: -6%; }
}

/* ─ Mobile ─ */
@media (max-width: 767px) {
    .ent-custom__container {
        padding: 70px 20px 80px;
        gap: 40px;
    }

    .ent-custom__content {
        max-width: 100%;
    }

    /* Se mantienen los 2 teléfonos lado a lado, más pequeños */
    .ent-custom__visual {
        gap: 18px;
    }

    .ent-custom__phone {
        width: min(180px, 42vw);
    }

    .ent-custom__phone img {
        border-radius: 18px;
    }

    /* Widgets escalados para conservar la composición del desktop */
    .ent-custom__float--1 { width: 100px; left: calc(50% - 90px); top: 12%; }
    .ent-custom__float--2 { width: 92px;  left: -2%; top: 50%; }
    .ent-custom__float--3 { width: 84px;  left: calc(50% - 78px); bottom: -2%; }
    .ent-custom__float--4 { width: 104px; right: -2%; bottom: 14%; }
}

/* ─ Mobile pequeño ─ */
@media (max-width: 420px) {
    .ent-custom__container {
        padding: 60px 16px 70px;
    }

    .ent-custom__phone {
        width: 44vw;
    }

    /* Los 4 widgets siguen visibles, solo un poco más pequeños */
    .ent-custom__float--1 { width: 86px; left: calc(50% - 76px); top: 50%; }
    .ent-custom__float--2 { width: 78px; left: -1%; top: 70%; }
    .ent-custom__float--3 { width: 72px; left: calc(50% - 66px); bottom: -2%; }
    .ent-custom__float--4 { width: 94px; right: 0; bottom: 10%; }
}

/* ================================================================
   FEATURES SECTION  –  .ent-features
   ================================================================ */

.ent-features {
    position: relative;
    background: #000;
    color: #fff;
    padding: 100px 60px 200px 60px;
    overflow: hidden;
}

.ent-features__bg-glow {
    display: none;
}

/* Grid bento: tarjeta izquierda fija + columna derecha al ancho restante */
.ent-features__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    column-gap: 15px;
    align-items: stretch;
}

.ent-features__column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
    min-width: 0;
    overflow: visible;
}

.ent-features__reveal {
    height: 100%;
    min-height: 0;
    overflow: visible;
}

.ent-features__reveal .ent-features__card--primary {
    height: 100%;
}

/* ── Tarjeta individual ── */
.ent-features__card {
    --ent-features-hover-in: 0.45s;
    --ent-features-hover-out: 0.55s;
    --ent-features-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ent-features-gradient: linear-gradient(
        0deg,
        rgba(149, 122, 251, 0.32) 0%,
        rgba(42, 28, 78, 0.88) 38%,
        rgba(8, 6, 14, 0.96) 70%
    );
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    padding: 36px 40px;
    border: 1px solid rgba(255, 255, 255, 0.185);
    background: rgba(8, 8, 12, 0.85);
    transform: translate3d(0, 0, 0);
    transform-origin: center center;
    backface-visibility: hidden;
    transition:
        border-color var(--ent-features-hover-out) var(--ent-features-hover-ease),
        box-shadow var(--ent-features-hover-out) var(--ent-features-hover-ease),
        transform var(--ent-features-hover-out) var(--ent-features-hover-ease);
}

.ent-features__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--ent-features-gradient);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity var(--ent-features-hover-out) var(--ent-features-hover-ease);
}

.ent-features__card > * {
    position: relative;
    z-index: 1;
}

.ent-features__card--primary {
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 8, 0.9);
}

/* ── Tarjeta principal: efecto aurora (card-33) ── */
.ent-features__card--aurora {
    cursor: pointer;
    background: linear-gradient(180deg, #050b1a 0%, #02040a 100%);
    border-color: rgb(255, 255, 255);
}

.ent-features__card--aurora::before {
    opacity: 0;
    background: none;
}

/* Estrellas parpadeantes */
.ent-features__aurora-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}

.ent-features__aurora-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.2;
    animation: ent-features-star-twinkle ease-in-out infinite;
    transform: scale(0.8);
}

.ent-features__aurora-stars span:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.ent-features__aurora-stars span:nth-child(2) {
    top: 20%;
    left: 70%;
    background: #cfe;
    animation-duration: 10s;
    animation-delay: -3s;
}

.ent-features__aurora-stars span:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-duration: 9s;
    animation-delay: -5s;
}

.ent-features__aurora-stars span:nth-child(4) {
    top: 75%;
    left: 85%;
    background: #dff;
    animation-duration: 12s;
    animation-delay: -2s;
}

.ent-features__aurora-stars span:nth-child(5) {
    top: 85%;
    left: 55%;
    animation-duration: 10s;
    animation-delay: -7s;
}

.ent-features__aurora-stars span:nth-child(6) {
    top: 80%;
    left: 10%;
    background: #cef;
    animation-duration: 14s;
    animation-delay: -4s;
}

@keyframes ent-features-star-twinkle {
    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.65);
    }

    30% {
        opacity: 0.3;
        transform: scale(0.78);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.1);
    }

    70% {
        opacity: 0.2;
        transform: scale(0.72);
    }
}

.ent-features__aurora-band {
    position: absolute;
    left: -30%;
    right: -30%;
    height: 60%;
    top: 5%;
    z-index: 1;
    filter: blur(28px);
    opacity: 0.55;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 100% at 30% 50%, #7552FA 0%, transparent 60%),
        radial-gradient(ellipse 50% 100% at 60% 40%, #96a0fc 0%, transparent 60%),
        radial-gradient(ellipse 55% 100% at 80% 60%, #7c7eb6 0%, transparent 60%);
    transform: translateY(0) skewX(-6deg);
    transition:
        opacity var(--ent-features-hover-out, 0.55s) var(--ent-features-hover-ease, cubic-bezier(0.22, 1, 0.36, 1)),
        filter var(--ent-features-hover-out, 0.55s) var(--ent-features-hover-ease, cubic-bezier(0.22, 1, 0.36, 1));
    animation: ent-features-aurora-drift 9s ease-in-out infinite;
}

.ent-features__aurora-band--b2 {
    top: 20%;
    opacity: 0.4;
    animation-duration: 5s;
    animation-direction: reverse;
    background:
        radial-gradient(ellipse 50% 100% at 50% 50%, #0000006c 0%, transparent 60%),
        radial-gradient(ellipse 50% 100% at 75% 40%, #957afb 0%, transparent 60%);
}

@keyframes ent-features-aurora-drift {
    0%,
    100% {
        transform: translateX(-6%) translateY(0) skewX(-6deg);
    }

    50% {
        transform: translateX(8%) translateY(-12px) skewX(4deg);
    }
}

.ent-features__aurora-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

.ent-features__card--horizontal .ent-features__aurora-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.ent-features__card--horizontal .ent-features__aurora-inner .ent-features__icon {
    margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
    .ent-features__card--aurora:hover .ent-features__aurora-band {
        opacity: 0.85;
        filter: blur(20px);
        transition-duration: var(--ent-features-hover-in, 0.45s);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-features__aurora-band,
    .ent-features__aurora-stars span {
        animation: none !important;
    }

    .ent-features__aurora-stars span {
        opacity: 0.45;
        transform: scale(1);
    }
}

.ent-features__card--accent {
    width: 100%;
    flex: 1;
}

.ent-features__card--accent.ent-features__card--aurora {
    background: linear-gradient(180deg, #050b1a 0%, #02040a 100%);
}

.ent-features__card--horizontal {
    flex: 0 0 auto;
}

.ent-features__card--horizontal:not(.ent-features__card--aurora) {
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.ent-features__card--horizontal:not(.ent-features__card--aurora) .ent-features__icon {
    margin-bottom: 0;
}

.ent-features__card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

@media (hover: hover) and (pointer: fine) {
    .ent-features__card:hover {
        border-color: rgb(255, 255, 255);
        transform: translate3d(0, -3px, 0);
        transition-duration: var(--ent-features-hover-in);
        transition-timing-function: var(--ent-features-hover-ease);
    }

    .ent-features__card:not(.ent-features__card--aurora):hover::before {
        opacity: 1;
        transition-duration: var(--ent-features-hover-in);
    }

    .ent-features__card:hover .ent-features__icon {
        transform: scale(1.15) translateZ(0);
        transition-duration: var(--ent-features-hover-in);
    }
}

/* Contenedor del ícono – círculo púrpura */
.ent-features__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #957afb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    transform: translateZ(0) scale(1);
    transform-origin: center center;
    transition: transform var(--ent-features-hover-out, 0.2s) var(--ent-features-hover-ease, cubic-bezier(0.33, 1, 0.68, 1));
}

.ent-features__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    transform: translateZ(0) scale(1);
    transform-origin: center center;
}

/* Título de la tarjeta */
.ent-features__card-title {
    font-family: 'Touche', sans-serif;
    font-size: 3.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ent-features__card--horizontal .ent-features__card-title {
    margin-bottom: 4px;
}

/* Descripción de la tarjeta */
.ent-features__card-desc {
    font-family: 'Touche', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.45;
    max-width: 28ch;
}


/* ================================================================
   FEATURES RESPONSIVE
   ================================================================ */

/* ─ Tablet landscape ─ */
@media (max-width: 1200px) {
    .ent-features {
        padding: 120px 40px 140px;
    }

    .ent-features__card {
        padding: 32px 34px;
    }

    .ent-features__card-title {
        font-size: 1.9rem;
    }

    .ent-features__card-desc {
        font-size: 1.4rem;
    }
}

/* ─ Tablet portrait: 1 columna ─ */
@media (max-width: 991px) {
    .ent-features {
        padding: 90px 28px 110px;
    }

    .ent-features__container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 560px;
    }

    .ent-features__column {
        gap: 15px;
    }

    .ent-features__card {
        padding: 28px 28px 30px;
    }

    .ent-features__card--horizontal .ent-features__aurora-inner {
        gap: 20px;
    }

    .ent-features__icon {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
    }

    .ent-features__card--horizontal .ent-features__aurora-inner .ent-features__icon {
        margin-bottom: 0;
    }

    .ent-features__icon img {
        width: 42px;
        height: 42px;
    }

    .ent-features__card-title {
        font-size: 1.7rem;
        margin: 0 0 8px 0;
    }

    .ent-features__card-desc {
        font-size: 1.3rem;
        max-width: none;
    }
}

/* ─ Mobile ─ */
@media (max-width: 767px) {
    .ent-features {
        padding: 70px 20px 90px;
    }

    .ent-features__container {
        max-width: 100%;
        gap: 15px;
    }

    .ent-features__column {
        gap: 15px;
    }

    .ent-features__card {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__aurora-inner {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__aurora-inner .ent-features__icon {
        margin-bottom: 0;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__card-title {
        margin-bottom: 4px;
    }

    .ent-features__card--horizontal .ent-features__aurora-inner {
        gap: 16px;
    }

    .ent-features__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__icon {
        margin-bottom: 0;
    }

    .ent-features__icon img {
        width: 38px;
        height: 38px;
    }

    .ent-features__card-title {
        font-size: 1.45rem;
    }

    .ent-features__card-desc {
        font-size: 1.15rem;
        line-height: 1.4;
    }
}

/* ─ Small mobile ─ */
@media (max-width: 420px) {
    .ent-features {
        padding: 56px 16px 72px;
    }

    .ent-features__card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__aurora-inner {
        gap: 14px;
    }

    .ent-features__card--horizontal .ent-features__aurora-inner {
        gap: 14px;
    }

    .ent-features__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .ent-features__card:not(.ent-features__card--horizontal) .ent-features__icon {
        margin-bottom: 0;
    }

    .ent-features__icon img {
        width: 32px;
        height: 32px;
    }

    .ent-features__card-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .ent-features__card-desc {
        font-size: 1.05rem;
        line-height: 1.35;
    }
}

/* ================================================================
   TRUSTED LOGOS SECTION  –  .ent-trust
   ================================================================ */

.ent-trust {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 250px 24px 200px;
}

.ent-trust.ent-reveal-section {
    --ent-trust-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ent-trust-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ent-trust-base: 0.1s;
    --ent-trust-step: 0.08s;
    --ent-trust-logo-step: 0.07s;
}

.ent-trust__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.ent-trust__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.ent-trust__title {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08em;
}

.ent-trust__title-line {
    display: block;
}

.ent-trust__title-line--brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.22em;
    perspective: 900px;
}

.ent-trust__title--purple {
    color: #957AFB;
    font-weight: 600;
}

.ent-trust__word {
    display: inline-block;
    color: #957AFB;
    font-weight: 600;
    opacity: 0;
    transform: translateY(1.1em) rotateX(36deg);
    filter: blur(10px);
    transform-origin: 50% 100%;
    will-change: transform, opacity, filter;
}

.ent-trust__glow-line {
    width: min(590px, 62vw);
    height: 2.5px;
    margin-top: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(149, 122, 251, 0), rgba(202, 190, 255, 0.95) 50%, rgba(149, 122, 251, 0));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
}

.ent-trust__marquee {
    position: relative;
    margin-bottom: 100px;
    overflow: visible;
    width: 100%;
    padding: 20px 0 40px;
    opacity: 0;
    transform: translateY(24px);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.ent-trust__track {
    display: flex;
    align-items: center;
    gap: clamp(36px, 7vw, 96px);
    width: max-content;
    will-change: transform;
}

.ent-trust__logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(120px, 13vw, 180px);
    min-height: 100px;
    padding: 10px 12px;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(36px) scale(0.88);
    outline: none;
    cursor: default;
    will-change: transform, opacity;
    z-index: 1;
}

.ent-trust__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.72;
    filter: grayscale(1);
    transform: scale(1);
    transform-origin: center;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
}

.ent-trust__logo.is-active,
.ent-trust__logo:hover,
.ent-trust__logo:focus-visible {
    z-index: 3;
}

.ent-trust__logo.is-active .ent-trust__logo-mark,
.ent-trust__logo:hover .ent-trust__logo-mark,
.ent-trust__logo:focus-visible .ent-trust__logo-mark {
    opacity: 1;
    filter: grayscale(0) brightness(1.15);
    transform: scale(1.2);
}

.ent-trust__logo img {
    display: block;
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ent-trust__logo-mark > span {
    display: inline-block;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.35rem, 1.9vw, 2.1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
}

.ent-trust__logo img[src=""] {
    display: none;
}

.ent-trust__logo.has-image .ent-trust__logo-mark > span {
    display: none;
}

.ent-trust__footer {
    display: flex;
    justify-content: center;
}

/* Aura reactiva: siempre visible desde la carga y sigue el puntero */
.ent-trust__badge-wrapper {
    --btn-mouse-x: 50%;
    --btn-mouse-y: 50%;
    position: relative;
    display: inline-flex;
    border-radius: 999px;
    z-index: 1;
    opacity: 0;
    transform: scale(0.55);
}

.ent-trust__aura {
    position: absolute;
    inset: -28px;
    background: radial-gradient(
        circle at var(--btn-mouse-x) var(--btn-mouse-y),
        rgba(149, 122, 251, 0.95) 0%,
        rgba(124, 106, 247, 0.65) 28%,
        rgba(124, 106, 247, 0.25) 55%,
        transparent 72%
    );
    border-radius: 999px;
    opacity: 0;
    filter: blur(22px);
    z-index: -1;
    pointer-events: none;
    will-change: background, opacity, transform;
}

@keyframes ent-trust-aura-pulse {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.ent-trust__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 15px 30px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.7);
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.45rem, 1.9vw, 3.5rem);
    font-style: italic;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.ent-trust__badge-count {
    display: inline-block;
    min-width: 10.5ch;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-style: italic;
}

/* ── Entrada creativa al viewport ── */
.ent-trust__fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ent-trust__ring {
    position: absolute;
    top: 18%;
    left: 50%;
    border: 1px solid rgba(149, 122, 251, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
}

.ent-trust__ring--1 {
    width: min(50vw, 520px);
    height: min(50vw, 520px);
}

.ent-trust__ring--2 {
    width: min(68vw, 700px);
    height: min(68vw, 700px);
    border-style: dashed;
    border-color: rgba(149, 122, 251, 0.22);
}

.ent-trust__beam {
    position: absolute;
    left: -8%;
    right: -8%;
    top: 22%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 176, 255, 0.2) 25%, #fff 50%, rgba(196, 176, 255, 0.2) 75%, transparent);
    box-shadow: 0 0 20px rgba(149, 122, 251, 0.45);
    opacity: 0;
    transform: translateX(-110%);
}

.ent-trust__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4b0ff;
    box-shadow: 0 0 12px rgba(149, 122, 251, 0.85);
    opacity: 0;
}

.ent-trust__spark--1 { top: 20%; left: 16%; }
.ent-trust__spark--2 { top: 28%; right: 14%; }
.ent-trust__spark--3 { top: 62%; left: 50%; }

.ent-trust__title-mask {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
}

.ent-trust.is-in-view .ent-trust__ring--1 {
    animation: ent-trust-ring 1.7s var(--ent-trust-ease) var(--ent-trust-base) both;
}

.ent-trust.is-in-view .ent-trust__ring--2 {
    animation: ent-trust-ring 2s var(--ent-trust-ease) calc(var(--ent-trust-base) + 0.1s) both;
}

.ent-trust.is-in-view .ent-trust__beam {
    animation: ent-trust-beam 1.1s var(--ent-trust-ease) calc(var(--ent-trust-base) + 0.05s) both;
}

.ent-trust.is-in-view .ent-trust__spark {
    animation: ent-trust-spark 1.1s var(--ent-trust-spring)
        calc(var(--ent-trust-base) + 0.35s + var(--ent-spark-i, 0) * 0.09s) both;
}

.ent-trust.is-in-view .ent-trust__spark--1 { --ent-spark-i: 0; }
.ent-trust.is-in-view .ent-trust__spark--2 { --ent-spark-i: 1; }
.ent-trust.is-in-view .ent-trust__spark--3 { --ent-spark-i: 2; }

.ent-trust.is-in-view .ent-trust__title-mask {
    animation: ent-trust-mask 0.9s steps(22, end) calc(var(--ent-trust-base) + 0.2s) both;
}

.ent-trust.is-in-view .ent-trust__title-mask--2 {
    animation: ent-trust-mask 0.9s steps(22, end) calc(var(--ent-trust-base) + 0.72s) both;
}

.ent-trust.is-in-view .ent-trust__word {
    animation: ent-trust-word 0.9s var(--ent-trust-spring)
        calc(var(--ent-trust-base) + 0.42s + var(--ent-trust-i, 0) * var(--ent-trust-step)) both;
}

.ent-trust.is-in-view .ent-trust__title-line--brand {
    animation: ent-trust-brand-glitch 0.38s steps(2, end) calc(var(--ent-trust-base) + 0.68s) 1;
}

.ent-trust.is-in-view .ent-trust__glow-line {
    animation: ent-trust-line 0.95s var(--ent-trust-spring) calc(var(--ent-trust-base) + 0.58s) both;
}

.ent-trust.is-in-view .ent-trust__marquee {
    animation: ent-trust-marquee-in 0.85s var(--ent-trust-ease) calc(var(--ent-trust-base) + 0.78s) both;
}

.ent-trust.is-in-view .ent-trust__logo {
    animation: ent-trust-logo-in 0.85s var(--ent-trust-spring)
        calc(var(--ent-trust-base) + 0.95s + var(--ent-trust-logo-i, 0) * var(--ent-trust-logo-step)) both;
}

.ent-trust.is-in-view .ent-trust__badge-wrapper {
    animation: ent-trust-badge-pop 0.95s var(--ent-trust-spring) calc(var(--ent-trust-base) + 1.35s) both;
}

.ent-trust.is-in-view .ent-trust__aura {
    animation:
        ent-trust-aura-in 0.7s var(--ent-trust-ease) calc(var(--ent-trust-base) + 1.45s) both,
        ent-trust-aura-pulse 2.8s ease-in-out calc(var(--ent-trust-base) + 2.1s) infinite;
}

@keyframes ent-trust-ring {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(-12deg); }
    40%  { opacity: 0.85; }
    100% { opacity: 0.18; transform: translate(-50%, -50%) scale(1) rotate(6deg); }
}

@keyframes ent-trust-beam {
    0%   { opacity: 0; transform: translateX(-110%); }
    20%  { opacity: 0.8; }
    100% { opacity: 0; transform: translateX(110%); }
}

@keyframes ent-trust-spark {
    0%   { opacity: 0; transform: scale(0); }
    50%  { opacity: 1; transform: scale(1.35); }
    100% { opacity: 0; transform: scale(0.15); }
}

@keyframes ent-trust-mask {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}

@keyframes ent-trust-word {
    0% {
        opacity: 0;
        transform: translateY(1.1em) rotateX(36deg);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes ent-trust-brand-glitch {
    0%, 100% { filter: none; transform: none; }
    33% {
        filter: drop-shadow(2px 0 rgba(149, 122, 251, 0.8)) drop-shadow(-2px 0 rgba(98, 216, 255, 0.55));
        transform: translateX(1px);
    }
    66% {
        filter: drop-shadow(-2px 0 rgba(149, 122, 251, 0.7));
        transform: translateX(-1px);
    }
}

@keyframes ent-trust-line {
    0%   { opacity: 0; transform: scaleX(0); }
    70%  { opacity: 1; transform: scaleX(1.06); }
    100% { opacity: 1; transform: scaleX(1); }
}

@keyframes ent-trust-marquee-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

@keyframes ent-trust-logo-in {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.88);
    }
    65% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes ent-trust-badge-pop {
    0%   { opacity: 0; transform: scale(0.55); }
    68%  { opacity: 1; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes ent-trust-aura-in {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 0.85; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ent-trust__fx,
    .ent-trust__ring,
    .ent-trust__beam,
    .ent-trust__spark,
    .ent-trust__title-mask,
    .ent-trust__word,
    .ent-trust__title-line--brand,
    .ent-trust__glow-line,
    .ent-trust__marquee,
    .ent-trust__logo,
    .ent-trust__badge-wrapper,
    .ent-trust__aura {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
    }

    .ent-trust__logo {
        opacity: 1 !important;
    }

    .ent-trust__logo-mark {
        filter: grayscale(1) !important;
        opacity: 0.72 !important;
        transform: none !important;
    }

    .ent-trust__logo.is-active .ent-trust__logo-mark,
    .ent-trust__logo:hover .ent-trust__logo-mark,
    .ent-trust__logo:focus-visible .ent-trust__logo-mark {
        filter: grayscale(0) brightness(1.15) !important;
        opacity: 1 !important;
        transform: scale(1.12) !important;
    }

    .ent-trust__aura {
        animation: ent-trust-aura-pulse 2.8s ease-in-out infinite !important;
    }
}

@media (max-width: 991px) {
    .ent-trust {
        padding: 80px 20px 120px;
    }

    .ent-trust__header {
        margin-bottom: 48px;
    }

    .ent-trust__title {
        font-size: clamp(2.8rem, 5vw, 3.8rem);
        line-height: 1.15;
    }

    .ent-trust__marquee {
        margin-bottom: 48px;
        padding-bottom: 20px;
    }

    .ent-trust__track {
        gap: 40px;
    }

    .ent-trust__logo {
        min-width: 110px;
        min-height: 68px;
    }

    .ent-trust__badge {
        min-height: 64px;
        padding: 14px 26px 12px;
        font-size: clamp(1.5rem, 2.2vw, 2rem);
    }
}

@media (max-width: 767px) {
    .ent-trust {
        padding: 56px 16px 72px;
    }

    .ent-trust__header {
        margin-bottom: 36px;
    }

    .ent-trust__title {
        font-size: clamp(2.4rem, 7.2vw, 3rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    .ent-trust__glow-line {
        width: min(220px, 62vw);
        height: 2px;
        margin-top: 18px;
    }

    .ent-trust__marquee {
        margin-bottom: 36px;
        padding: 10px 0 18px;
        mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }

    .ent-trust__track {
        gap: 32px;
    }

    .ent-trust__logo {
        min-width: 100px;
        min-height: 60px;
        padding: 8px 6px;
    }

    .ent-trust__logo img {
        max-height: 52px;
    }

    .ent-trust__logo-mark > span {
        font-size: 1.4rem;
    }

    .ent-trust__logo.is-active .ent-trust__logo-mark,
    .ent-trust__logo:hover .ent-trust__logo-mark,
    .ent-trust__logo:focus-visible .ent-trust__logo-mark {
        transform: scale(1.12);
    }

    .ent-trust__footer {
        padding: 0 4px;
    }

    .ent-trust__badge-wrapper {
        width: 100%;
        max-width: 340px;
    }

    .ent-trust__badge {
        min-height: 0;
        width: 100%;
        padding: 16px 22px 14px;
        font-size: clamp(1.45rem, 4.2vw, 1.7rem);
        line-height: 1.25;
        white-space: nowrap;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 420px) {
    .ent-trust {
        padding: 48px 14px 60px;
    }

    .ent-trust__header {
        margin-bottom: 28px;
    }

    .ent-trust__title {
        font-size: clamp(2.2rem, 8vw, 2.6rem);
    }

    .ent-trust__marquee {
        margin-bottom: 28px;
        padding: 8px 0 14px;
    }

    .ent-trust__track {
        gap: 24px;
    }

    .ent-trust__logo {
        min-width: 88px;
        min-height: 52px;
    }

    .ent-trust__logo img {
        max-height: 44px;
    }

    .ent-trust__badge-wrapper {
        max-width: 75%;
    }

    .ent-trust__badge {
        padding: 14px 18px 12px;
        font-size: 1.4rem;
    }
}

/* ================================================================
   SECTORS SECTION  –  .ent-sectors
   Grid 3×2: intro + 5 cards. Hover/tap revela descripción.
   ================================================================ */

.ent-sectors {
    position: relative;
    background: #000;
    color: #fff;
    padding: 80px 24px 300px;
    overflow: hidden;
}

.ent-sectors__container {
    max-width: 1400px;
    margin: 0 auto;
}

.ent-sectors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 1.6vw, 22px);
    align-items: stretch;
}

.ent-sectors__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 18px 12px 4px;
    min-height: 260px;
}

.ent-sectors__title {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(2.4rem, 3.4vw, 4rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
    text-align: left;
}

.ent-sectors__title > .ent-sectors__title--lead,
.ent-sectors__title > .ent-sectors__title--sub {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: -0.01em;
    color: #fff;
}

.ent-sectors__title > .ent-sectors__title--purple {
    display: inline-block;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.1;
    color: #957AFB;
}

.ent-sectors__title > .ent-sectors__title--sub {
    max-width: 25ch;
    font-style: italic;
}

.ent-sectors__card {
    position: relative;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #1a1a1a;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.ent-sectors__media {
    position: absolute;
    inset: 0;
}

.ent-sectors__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: brightness(0.55);
    transition-property: filter, transform;
    transition-duration: 0.55s;
    transition-timing-function: ease;
    transition-delay: 0.2s;
}

.ent-sectors__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    transition-property: background, opacity;
    transition-duration: 0.55s;
    transition-timing-function: ease;
    transition-delay: 0.2s;
    pointer-events: none;
}

.ent-sectors__content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px;
    text-align: center;
}

.ent-sectors__label {
    font-family: 'Touche', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.ent-sectors__label--title {
    font-size: clamp(1.05rem, 1.35vw, 2.5rem);
    max-width: 19ch;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    /* Al salir: espera a que la desc se oculte antes de volver */
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: ease;
    transition-delay: 0.2s;
}

.ent-sectors__label--desc {
    position: absolute;
    left: 22px;
    right: 22px;
    font-size: clamp(1.05rem, 1.4vw, 2.5rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.01em;
    max-width: 18ch;
    margin: 0 auto;
    opacity: 1;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 8px 40px rgba(0, 0, 0, 0.55);
    /* Al salir: baja y luego se oculta */
    transition-property: transform, visibility;
    transition-duration: 0.28s, 0s;
    transition-timing-function: ease, linear;
    transition-delay: 0s, 0.28s;
}

.ent-sectors__card:hover .ent-sectors__media img,
.ent-sectors__card:focus-visible .ent-sectors__media img,
.ent-sectors__card.is-active .ent-sectors__media img {
    filter: brightness(0.95);
    transform: scale(1.06);
    transition-delay: 0.22s;
}

.ent-sectors__card:hover .ent-sectors__media::after,
.ent-sectors__card:focus-visible .ent-sectors__media::after,
.ent-sectors__card.is-active .ent-sectors__media::after {
    background: rgba(0, 0, 0, 0.342);
    transition-delay: 0.22s;
}

.ent-sectors__card:hover .ent-sectors__label--title,
.ent-sectors__card:focus-visible .ent-sectors__label--title,
.ent-sectors__card.is-active .ent-sectors__label--title {
    opacity: 0;
    transform: translateY(-8px);
    /* Al entrar: el título se va primero, sin delay */
    transition-property: opacity, transform;
    transition-duration: 0.28s;
    transition-timing-function: ease;
    transition-delay: 0s;
}

.ent-sectors__card:hover .ent-sectors__label--desc,
.ent-sectors__card:focus-visible .ent-sectors__label--desc,
.ent-sectors__card.is-active .ent-sectors__label--desc {
    visibility: visible;
    transform: translateY(0);
    /* Al entrar: visible con shadow completo desde el primer frame, solo anima posición */
    transition-property: transform, visibility;
    transition-duration: 0.55s, 0s;
    transition-timing-function: ease, linear;
    transition-delay: 0.22s, 0.22s;
}

.ent-sectors__card:focus-visible {
    box-shadow: 0 0 0 3px rgba(149, 122, 251, 0.85);
}

@media (max-width: 991px) {
    .ent-sectors {
        padding: 48px 20px 100px;
    }

    .ent-sectors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ent-sectors__intro {
        grid-column: 1 / -1;
        min-height: 0;
        padding: 0 4px 18px;
        align-items: center;
        text-align: center;
    }

    .ent-sectors__title {
        max-width: 28ch;
        text-align: center;
        margin-inline: auto;
    }

    .ent-sectors__title--sub {
        max-width: 32ch;
    }

    .ent-sectors__card {
        border-radius: 22px;
        aspect-ratio: 5 / 4;
        min-width: 0;
    }

    .ent-sectors__content {
        padding: 16px 14px;
    }

    .ent-sectors__label--desc {
        left: 14px;
        right: 14px;
    }
}

@media (max-width: 767px) {
    .ent-sectors {
        padding: 36px 16px 72px;
    }

    .ent-sectors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    /* En mobile el texto envuelve solo; sin saltos forzados del desktop */
    .ent-sectors__br {
        display: none;
    }

    .ent-sectors__intro {
        padding: 0 2px 14px;
    }

    .ent-sectors__title {
        font-size: clamp(1.85rem, 6.2vw, 2.4rem);
        line-height: 1.2;
        max-width: none;
    }

    .ent-sectors__title > .ent-sectors__title--lead,
    .ent-sectors__title > .ent-sectors__title--sub {
        font-size: 1em;
    }

    .ent-sectors__title > .ent-sectors__title--sub {
        display: block;
        max-width: 28ch;
    }

    .ent-sectors__card {
        border-radius: 18px;
        aspect-ratio: 1 / 1;
    }

    /* Última card a ancho completo para cerrar la grilla impar */
    .ent-sectors__card:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
        max-height: 200px;
        justify-self: stretch;
    }

    .ent-sectors__content {
        padding: 12px 10px;
    }

    .ent-sectors__label--title,
    .ent-sectors__label--desc {
        font-size: clamp(0.95rem, 3.2vw, 1.15rem);
        max-width: 18ch;
        line-height: 1.2;
    }

    .ent-sectors__label--desc {
        left: 10px;
        right: 10px;
        max-width: 20ch;
    }
}

@media (max-width: 420px) {
    .ent-sectors {
        padding: 80px 12px 56px;
    }

    .ent-sectors__grid {
        gap: 8px;
    }

    .ent-sectors__title {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
    }

    .ent-sectors__card {
        border-radius: 16px;
    }

    .ent-sectors__card:last-child {
        max-height: 170px;
    }

    .ent-sectors__label--title,
    .ent-sectors__label--desc {
        font-size: 0.9rem;
        max-width: 16ch;
    }
}

/* Desktop: hover maneja el estado; mobile usa .is-active vía JS */
@media (hover: none) {
    .ent-sectors__card:hover .ent-sectors__media img {
        filter: brightness(0.55);
        transform: scale(1.02);
    }

    .ent-sectors__card:hover .ent-sectors__media::after {
        background: rgba(0, 0, 0, 0.42);
    }

    .ent-sectors__card:hover .ent-sectors__label--title {
        opacity: 1;
        transform: none;
    }

    .ent-sectors__card:hover .ent-sectors__label--desc {
        visibility: hidden;
        transform: translateY(10px);
    }

    .ent-sectors__card.is-active .ent-sectors__media img {
        filter: brightness(0.85);
        transform: scale(1.06);
    }

    .ent-sectors__card.is-active .ent-sectors__media::after {
        background: rgba(0, 0, 0, 0.08);
    }

    .ent-sectors__card.is-active .ent-sectors__label--title {
        opacity: 0;
        transform: translateY(-8px);
    }

    .ent-sectors__card.is-active .ent-sectors__label--desc {
        visibility: visible;
        transform: translateY(0);
    }
}


/* ================================================================
   PERSONALIZE SECTION  –  .ent-personalize
   4 pasos: visual izq + icono/barras/texto/CTA der
   Pasos 2 y 3 incluyen imágenes flotantes
   ================================================================ */

.ent-personalize {
    position: relative;
    background: #000;
    color: #fff;
    overflow: visible;
    padding: 100px 0 300px;
}

/* ── Título de sección (columna derecha) ── */
.ent-personalize__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 16px;
    box-sizing: border-box;
    overflow: visible;
}

.ent-personalize__heading {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 2.4vw, 4rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 -6px 18px rgba(0, 0, 0, 0.55);
}

.ent-personalize__heading-line {
    display: block;
}

.ent-personalize__heading-line--main {
    font-size: clamp(2.4rem, 3.8vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin: 0.08em 0;
}

.ent-personalize__heading--purple {
    color: #957AFB;
    font-weight: 600;
}

.ent-personalize__heading-glow {
    position: absolute;
    left: -70px;
    right: 0;
    bottom: -50px;
    width: 80%;
    height: 64px;
    margin: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgb(202 190 255 / 47%) 10%, rgb(149 122 251 / 38%) 40%, rgb(62 60 68 / 5%) 65%, transparent 100%);
    filter: blur(11px);
    animation: ent-personalize-heading-glow 5s ease-in-out infinite;
    will-change: opacity, filter;
}

.ent-personalize__heading-glow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: min(420px, 88%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(149, 122, 251, 0),
        rgba(149, 122, 251, 0.85) 18%,
        rgba(220, 214, 255, 0.9) 50%,
        rgba(149, 122, 251, 0.85) 82%,
        rgba(149, 122, 251, 0)
    );
    filter: blur(0.4px);
    opacity: 0.85;
    animation: ent-personalize-heading-line-glow 3s ease-in-out infinite;
}

@keyframes ent-personalize-heading-glow {
    0%, 100% {
        opacity: 0.80;
        filter: blur(12px);
    }

    50% {
        opacity: 1;
        filter: blur(9px);
    }
}

@keyframes ent-personalize-heading-line-glow {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-personalize__heading-glow,
    .ent-personalize__heading-glow::before {
        animation: none;
    }

    .ent-personalize__heading-glow {
        opacity: 0.80;
        filter: blur(11px);
    }

    .ent-personalize__heading-glow::before {
        opacity: 0.85;
    }
}

.ent-personalize__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: stretch;
    gap: 150px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Columna izquierda: visual ── */
.ent-personalize__visual {
    position: relative;
    flex: 0 1 42%;
    max-width: 520px;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    margin: 0;
    overflow: visible;
}

.ent-personalize__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.ent-personalize__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Escenario = tamaño del teléfono; los flotantes se anclan a él */
.ent-personalize__stage {
    position: relative;
    height: 100%;
    width: auto;
    aspect-ratio: 344 / 732;
    max-width: 100%;
}

.ent-personalize__stage > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}

/* Flotantes (pasos 1, 2 y 3) – % relativos al teléfono */
.ent-personalize__float {
    position: absolute;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease 0.12s;
}

.ent-personalize__slide.is-active .ent-personalize__float {
    opacity: 1;
    animation: ent-float 6.5s ease-in-out infinite;
}

.ent-personalize__float img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.45));
}

/* Paso 1 – selector WiFi a la izquierda */
.ent-personalize__float--1a {
    width: 56%;
    left: -40%;
    top: 20%;
    animation-delay: 0.2s;
}

/* Paso 2 – coordenadas sobre teléfono 344×732 (misma escala que los assets) */
.ent-personalize__float--2a {
    width: 68.6%;
    left: -55%;
    top: 30%;
    animation-delay: 0.2s;
}

.ent-personalize__float--2b {
    width: 50.29%;
    left: -38.37%;
    top: 70%;
    animation-duration: 7.2s;
    animation-delay: 0.8s;
}

.ent-personalize__float--2c {
    width: 70.35%;
    left: 72.67%;
    top: 85%;
    animation-duration: 8s;
    animation-delay: 1.4s;
}

/* Paso 3 – 2 flotantes */
.ent-personalize__float--3a {
    width: 58.1%;
    left: -48%;
    top: 18%;
    animation-delay: 0.3s;
}

.ent-personalize__float--3b {
    width: 60.5%;
    left: -42%;
    top: 52%;
    animation-duration: 7.5s;
    animation-delay: 1s;
}

/* ── Columna derecha: contenido ── */
.ent-personalize__content {
    flex: 1 1 52%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    justify-content: flex-start;
    min-height: 100%;
    padding: 8px 0 0;
    overflow: visible;
}

.ent-personalize__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid rgba(149, 122, 251, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 24px;
    background: rgba(149, 122, 251, 0.06);
    box-shadow: 0 0 24px rgba(149, 122, 251, 0.18);
    flex-shrink: 0;
}

.ent-personalize__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.ent-personalize__progress {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.ent-personalize__bar {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 15px;
    border: 0;
    padding: 0;
    border-radius: 7px;
    background: #4a4a4a;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.25s ease;
}

.ent-personalize__progress .ent-personalize__bar {
    width: auto;
    max-width: none;
}

.ent-personalize__bar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #957AFB;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.ent-personalize__bar.is-active {
    background: rgba(149, 122, 251, 0.28);
}

.ent-personalize__bar.is-active::after {
    animation: ent-personalize-fill var(--ent-personalize-duration, 5s) linear forwards;
}

.ent-personalize__bar.is-done::after {
    transform: scaleX(1);
    animation: none;
}

.ent-personalize__bar:focus-visible {
    outline: 2px solid rgba(149, 122, 251, 0.95);
    outline-offset: 3px;
}

.ent-personalize.is-paused .ent-personalize__bar.is-active::after {
    animation-play-state: paused;
}

@keyframes ent-personalize-fill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.ent-personalize__titles {
    position: relative;
    width: 100%;
    min-height: 6.8em;
    flex: 0 0 auto;
}

.ent-personalize__title {
    font-family: 'Touche', sans-serif;
    font-size: clamp(2rem, 2.8vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #fff;
    margin: 0;
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.ent-personalize__title.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ent-personalize__title--purple {
    color: #957AFB;
    font-weight: 600;
}

.ent-personalize__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    background: #fff;
    color: #6f5bd6;
    font-family: 'Touche', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

.ent-personalize__cta:hover {
    background: #f3f0ff;
    color: #5a47c4;
    transform: translateY(-2px);
}


/* ── Responsive ── */
@media (max-width: 1200px) {
    .ent-personalize__container {
        padding: 0 40px;
        gap: 100px;
    }

    .ent-personalize__visual {
        max-width: 460px;
    }

    .ent-personalize__content {
        max-width: 540px;
    }

    .ent-personalize__header {
        margin-bottom: 32px;
    }

    .ent-personalize__title {
        font-size: clamp(1.85rem, 2.6vw, 2.8rem);
    }

    .ent-personalize__cta {
        font-size: 1.2rem;
        padding: 13px 28px;
    }
}

@media (max-width: 991px) {
    .ent-personalize {
        padding: 72px 0 90px;
        overflow-x: hidden;
    }

    .ent-personalize__container {
        flex-direction: column;
        align-items: center;
        padding: 0 30px;
        gap: 0;
    }

    /* display:contents permite ordenar icono → título → visual → barras → paso → CTA */
    .ent-personalize__content {
        display: contents;
    }

    .ent-personalize__icon {
        order: 0;
        margin: 0 auto 16px;
    }

    .ent-personalize__header {
        order: 1;
        align-items: center;
        text-align: center;
        margin: 0 auto 32px;
        padding: 0 10px;
        max-width: 560px;
    }

    .ent-personalize__heading {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.2;
    }

    .ent-personalize__heading-line--main {
        font-size: clamp(2.35rem, 6.5vw, 3.2rem);
        font-weight: 700;
        line-height: 1.1;
    }

    .ent-personalize__heading--purple {
        font-weight: 700;
    }

    .ent-personalize__heading-glow {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 48px;
        margin: 0;
        background: radial-gradient(ellipse 70% 100% at 50% 50%, rgb(202 190 255 / 47%) 10%, rgb(149 122 251 / 38%) 40%, rgb(62 60 68 / 5%) 65%, transparent 100%);
    }

    .ent-personalize__heading-glow::before {
        left: 50%;
        transform: translateX(-50%);
        width: min(380px, 88%);
    }

    .ent-personalize__titles {
        order: 4;
        min-height: 0;
        width: 100%;
        max-width: 560px;
        text-align: center;
        margin: 0 auto 24px;
        padding: 0 8px;
    }

    /* Título por paso: secundario frente al heading de sección */
    .ent-personalize__title {
        position: relative;
        inset: auto;
        text-align: center;
        font-size: clamp(1.25rem, 3.6vw, 1.6rem);
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: -0.01em;
        color: rgba(255, 255, 255, 0.88);
    }

    .ent-personalize__title--purple {
        font-weight: 600;
        color: #957AFB;
    }

    .ent-personalize__title:not(.is-active) {
        display: none;
    }

    .ent-personalize__visual {
        order: 2;
        max-width: 420px;
        width: min(420px, 78vw);
        aspect-ratio: 1 / 1.25;
        margin: 0 auto 20px;
    }

    .ent-personalize__slide {
        justify-content: center;
    }

    .ent-personalize__progress {
        order: 3;
        align-self: center;
        width: min(100%, 300px);
        max-width: 300px;
        min-width: min(100%, 300px);
        flex-shrink: 0;
        gap: 10px;
        margin: 0 auto 32px;
        box-sizing: border-box;
    }

    .ent-personalize__cta {
        order: 5;
        margin-top: 0;
        align-self: center;
        font-size: 1.35rem;
        padding: 14px 32px;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    /* Flotantes en % del teléfono (igual que desktop) */
    /* Flotantes paso 2 – mismas proporciones que desktop (% del teléfono) */
    .ent-personalize__float--1a { width: 52%; left: -34%; top: 22%; }
    .ent-personalize__float--2a { width: 68.6%; left: -36.05%; top: 16.39%; }
    .ent-personalize__float--2b { width: 50.29%; left: -38.37%; top: 58.47%; }
    .ent-personalize__float--2c { width: 70.35%; left: 72.67%; top: 71.72%; }
    .ent-personalize__float--3a { width: 52%; left: -34%; top: 16%; }
    .ent-personalize__float--3b { width: 54%; left: -30%; top: 50%; }
}

@media (max-width: 767px) {
    .ent-personalize {
        padding: 56px 0 72px;
    }

    .ent-personalize__header {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .ent-personalize__heading {
        font-size: clamp(1.4rem, 5.2vw, 1.75rem);
        line-height: 1.22;
    }

    .ent-personalize__heading-line--main {
        font-size: clamp(1.9rem, 7.5vw, 2.5rem);
        font-weight: 700;
        margin: 0.04em 0;
    }

    .ent-personalize__heading-glow {
        height: 40px;
        filter: blur(8px);
    }

    .ent-personalize__heading-glow::before {
        width: min(280px, 88%);
        top: 6px;
    }

    .ent-personalize__container {
        padding: 0 16px;
    }

    .ent-personalize__icon {
        width: 46px;
        height: 46px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .ent-personalize__icon img {
        width: 22px;
        height: 22px;
    }

    .ent-personalize__titles {
        margin-bottom: 20px;
        padding: 0 6px;
    }

    .ent-personalize__title {
        font-size: clamp(1.1rem, 4.2vw, 1.4rem);
        line-height: 1.45;
        letter-spacing: 0;
    }

    .ent-personalize__title br {
        display: none;
    }

    .ent-personalize__visual {
        max-width: 280px;
        width: min(280px, 72vw);
        aspect-ratio: 1 / 1.3;
        margin-bottom: 18px;
    }

    .ent-personalize__cta {
        padding: 13px 28px;
        font-size: 1.15rem;
        max-width: 280px;
        letter-spacing: 0.04em;
    }

    .ent-personalize__float--1a { width: 48%; left: -26%; top: 24%; }
    .ent-personalize__float--2a { width: 68.6%; left: -36.05%; top: 16.39%; }
    .ent-personalize__float--2b { width: 50.29%; left: -38.37%; top: 58.47%; }
    .ent-personalize__float--2c { width: 70.35%; left: 72.67%; top: 71.72%; }
    .ent-personalize__float--3a { width: 48%; left: -30%; top: 16%; }
    .ent-personalize__float--3b { width: 50%; left: -26%; top: 50%; }
}

@media (max-width: 420px) {
    .ent-personalize {
        padding: 80px 0 60px;
    }

    .ent-personalize__header {
        margin-bottom: 16px;
        padding: 0 6px;
    }

    .ent-personalize__heading {
        font-size: clamp(1.25rem, 5.8vw, 1.3em);
    }

    .ent-personalize__heading-line--main {
        font-size: clamp(1.65rem, 8vw, 1.9em);
    }

    .ent-personalize__heading-glow {
        height: 34px;
    }

    .ent-personalize__container {
        padding: 0 14px;
    }

    .ent-personalize__titles {
        margin-bottom: 16px;
    }

    .ent-personalize__title {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
    }

    .ent-personalize__visual {
        max-width: 250px;
        width: min(250px, 70vw);
        margin-bottom: 16px;
    }

    .ent-personalize__cta {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 1.15rem;
    }

    .ent-personalize__float--1a { width: 44%; left: -22%; top: 24%; }
    .ent-personalize__float--2a { width: 68.6%; left: -36.05%; top: 16.39%; }
    .ent-personalize__float--2b { width: 50.29%; left: -38.37%; top: 58.47%; }
    .ent-personalize__float--2c { width: 70.35%; left: 72.67%; top: 71.72%; }
    .ent-personalize__float--3a { width: 44%; left: -26%; }
    .ent-personalize__float--3b { width: 46%; left: -22%; }
}

/* Touch: área táctil ampliada sin alterar la barra visual (igual que desktop) */
@media (hover: none) {
    .ent-personalize__bar::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        bottom: -10px;
    }

    .ent-personalize__cta:hover {
        transform: none;
    }
}


/* ==========================================================================
   SHOWCASE SECTION  –  .ent-showcase
   3 pasos: imagen / gif / video con controles tipo stories
   ========================================================================== */

.ent-showcase {
    --ent-showcase-purple: #957AFB;
    --ent-showcase-purple-soft: rgba(149, 122, 251, 0.35);
    --ent-showcase-duration: 6s;
    position: relative;
    background: #000;
    /* Extra inferior: zona donde ent-wave-join solapa con fade */
    padding: 160px 0 200px;
    overflow: hidden;
}

.ent-showcase__header {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 0 44px;
    padding: 0;
    text-align: left;
}

.ent-showcase__heading {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    font-family: 'Touche', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.2vw, 4.5rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #fff;
    text-wrap: balance;
}

.ent-showcase__heading-line {
    display: block;
}

.ent-showcase__heading-line--purple {
    color: var(--ent-showcase-purple);
    font-weight: 600;
}

.ent-showcase__container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

/* ── Columna izquierda ── */
.ent-showcase__content {
    flex: 1 1 42%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ent-showcase__steps {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 36px;
}

.ent-showcase__step {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

.ent-showcase__step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #957afb;
    color: #fff;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ent-showcase__step-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.ent-showcase__step.is-active .ent-showcase__step-icon,
.ent-showcase__step:hover .ent-showcase__step-icon {
    background: var(--ent-showcase-purple);
}

.ent-showcase__step:focus-visible {
    outline: none;
}

.ent-showcase__step:focus-visible .ent-showcase__step-icon {
    outline: 2px solid rgba(149, 122, 251, 0.95);
    outline-offset: 3px;
}

/* Títulos por paso */
.ent-showcase__titles {
    position: relative;
    width: 100%;
    min-height: 6.4em;
    margin-bottom: 36px;
}

.ent-showcase__title {
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 3.55rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: #fff;
    margin: 0;
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.ent-showcase__title strong {
    font-weight: 700;
}

.ent-showcase__title.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* CTAs */
.ent-showcase__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 260px;
}

.ent-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Touche', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ent-showcase__btn--primary {
    background: var(--ent-showcase-purple);
    color: #fff;
}

.ent-showcase__btn--primary:hover {
    background: #7e60f0;
    color: #fff;
    transform: translateY(-2px);
}

.ent-showcase__btn--secondary {
    background: #fff;
    color: #111;
    border: 1.5px solid #111;
}

.ent-showcase__btn--secondary:hover {
    background: #f5f5f5;
    color: #111;
    transform: translateY(-2px);
}

/* ── Columna derecha: visual (la imagen ya trae forma de teléfono) ── */
.ent-showcase__visual {
    position: relative;
    flex: 1 1 48%;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1.85;
}

.ent-showcase__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.ent-showcase__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.ent-showcase__slide img,
.ent-showcase__slide video,
.ent-showcase__video {
    display: block;
    width: 100%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}

/* Poster webp paso 2: igualar proporción del GIF (evita salto al cargar) */
.ent-showcase__slide[data-step="1"] img[data-gif-src]:not(.is-gif-playing) {
    width: 100%;
    height: auto;
    max-height: 85%;
    aspect-ratio: 1080 / 1920;
    object-fit: contain;
}


/* ── Responsive showcase ── */
@media (max-width: 1200px) {
    .ent-showcase__header {
        margin-bottom: 40px;
    }

    .ent-showcase__heading {
        font-size: clamp(1.9rem, 3vw, 3.4rem);
    }

    .ent-showcase__container {
        padding: 0 40px;
        gap: 48px;
    }

    .ent-showcase__visual {
        max-width: 360px;
    }

    .ent-showcase__title {
        font-size: clamp(1.7rem, 2.4vw, 3rem);
    }

    .ent-showcase__btn {
        font-size: 1.6rem;
        padding: 13px 26px;
    }
}

@media (max-width: 991px) {
    .ent-showcase {
        /* Extra bottom: el wave-join solapa ~120px */
        padding: 72px 0 180px;
        overflow-x: hidden;
    }

    .ent-showcase__header {
        order: 0;
        width: 100%;
        max-width: 520px;
        margin: 0 auto 8px;
        padding: 0 8px;
        text-align: center;
    }

    .ent-showcase__heading {
        font-size: clamp(2.15rem, 6.4vw, 3rem);
        line-height: 1.16;
        letter-spacing: -0.035em;
    }

    .ent-showcase__container {
        flex-direction: column;
        align-items: center;
        padding: 0 30px;
        gap: 0;
        text-align: center;
    }

    /* display:contents → ordenar heading → visual → steps → título → CTA */
    .ent-showcase__content {
        display: contents;
    }

    .ent-showcase__visual {
        order: 1;
        max-width: 300px;
        width: min(300px, 70vw);
        aspect-ratio: 360 / 780;
        height: auto;
        margin: 0 auto;
    }

    .ent-showcase__slide {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ent-showcase__slide img,
    .ent-showcase__slide video,
    .ent-showcase__video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
    }

    /* Poster webp del paso 2: proporción distinta al gif — igualar tamaño visual */
    .ent-showcase__slide[data-step="1"] img[data-gif-src]:not(.is-gif-playing) {
        width: 100%;
        height: auto;
        max-height: 100%;
        aspect-ratio: 1080 / 1920;
        object-fit: contain;
    }

    .ent-showcase__slide img[data-gif-src] {
        transition: opacity 0.35s ease, height 0.35s ease, max-height 0.35s ease;
    }

    .ent-showcase__steps {
        order: 2;
        max-width: 280px;
        width: 100%;
        gap: 14px;
        margin: 0 auto 20px;
        justify-content: center;
    }

    .ent-showcase__step-icon {
        width: 58px;
        height: 58px;
    }

    .ent-showcase__step-icon img {
        width: 28px;
        height: 28px;
    }

    .ent-showcase__titles {
        order: 3;
        min-height: 0;
        width: 100%;
        max-width: 520px;
        text-align: center;
        margin: 0 auto 28px;
        padding: 0 8px;
    }

    /* Título por paso: secundario frente al heading de sección */
    .ent-showcase__title {
        position: relative;
        inset: auto;
        text-align: center;
        font-size: clamp(1.35rem, 3.6vw, 1.75rem);
        font-weight: 400;
        line-height: 1.35;
        letter-spacing: -0.01em;
        color: rgba(255, 255, 255, 0.92);
    }

    .ent-showcase__title strong {
        font-weight: 600;
        color: #fff;
    }

    .ent-showcase__title:not(.is-active) {
        display: none;
    }

    .ent-showcase__title br {
        display: none;
    }

    .ent-showcase__actions {
        order: 4;
        max-width: 280px;
        width: 100%;
        align-items: stretch;
        gap: 12px;
        margin: 0 auto;
    }

    .ent-showcase__btn {
        font-size: 1.35rem;
        padding: 14px 28px;
        box-sizing: border-box;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .ent-showcase {
        padding: 56px 0 150px;
    }

    .ent-showcase__header {
        margin-bottom: 8px;
    }

    .ent-showcase__heading {
        font-size: clamp(1.85rem, 7.2vw, 2.45rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    .ent-showcase__container {
        padding: 0 20px;
    }

    .ent-showcase__title {
        font-size: clamp(1.25rem, 4.2vw, 1.55rem);
    }

    .ent-showcase__steps {
        max-width: 240px;
        gap: 12px;
        margin: 5px auto 24px;
    }

    .ent-showcase__step-icon {
        width: 50px;
        height: 50px;
    }

    .ent-showcase__step-icon img {
        width: 24px;
        height: 24px;
    }

    .ent-showcase__titles {
        margin-bottom: 22px;
        padding: 0 4px;
    }

    .ent-showcase__title {
        font-size: clamp(1.25rem, 4.2vw, 1.55rem);
        letter-spacing: -0.01em;
    }

    .ent-showcase__visual {
        max-width: 260px;
        width: min(260px, 68vw);
        margin-bottom: 0;
    }

    .ent-showcase__actions {
        max-width: 260px;
    }

    .ent-showcase__btn {
        padding: 13px 24px;
        font-size: 1.25rem;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 420px) {
    .ent-showcase {
        padding: 80px 0 100px;
    }

    .ent-showcase__header {
        margin-bottom: 20px;
    }

    .ent-showcase__heading {
        font-size: clamp(1.7rem, 8vw, 2.1rem);
        line-height: 1.18;
    }

    .ent-showcase__container {
        padding: 0 16px;
    }

    .ent-showcase__steps {
        max-width: 210px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .ent-showcase__step-icon {
        width: 44px;
        height: 44px;
    }

    .ent-showcase__step-icon img {
        width: 22px;
        height: 22px;
    }

    .ent-showcase__titles {
        margin-bottom: 18px;
    }

    .ent-showcase__title {
        font-size: clamp(1.15rem, 4.5vw, 1.4rem);
    }

    .ent-showcase__visual {
        max-width: 230px;
        width: min(230px, 72vw);
        margin-bottom: 20px;
    }

    .ent-showcase__actions {
        max-width: 100%;
        width: 100%;
    }

    .ent-showcase__btn {
        font-size: 1.2rem;
        padding: 12px 22px;
    }
}

@media (hover: none) {
    .ent-showcase__step {
        min-width: 44px;
    }

    .ent-showcase__btn--primary:hover,
    .ent-showcase__btn--secondary:hover {
        transform: none;
    }
}


/* ================================================================
   COMBINE SECTION – CTA centrado con fondo de olas
   Tipografía/espaciado medidos desde mock de referencia (1024×549)
   Base html font-size: 10px → 1rem = 10px
   ================================================================ */

/* Contenedor negro continuo: evita el borde duro entre las 2 secciones.
   padding-top = zona de fade: las olas pueden subir sin que overflow:hidden
   recorte el degradado (antes el corte duro venía de ahí). */
.ent-wave-join {
    --ent-wave-blend: 180px;
    --ent-wave-blend-top: 250px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #00000000;
    /* Solapa showcase: la ola sube y se funde en negro como howto → pricing */
    margin-top: calc(var(--ent-wave-blend-top) * -1);
}

/* Sombreado negro superior: unifica la ola con la sección showcase */
.ent-wave-join::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: var(--ent-wave-blend-top);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #000 0%,
        rgba(0, 0, 0, 0.9) 32%,
        rgba(0, 0, 0, 0.42) 68%,
        transparent 100%
    );
}

.ent-combine.ent-reveal-section {
    --ent-combine-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ent-combine-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ent-combine-step: 0.09s;
    --ent-combine-base: 0.12s;
}

.ent-combine {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120vh;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0;
}

.ent-combine__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    box-sizing: border-box;
}

.ent-combine__eyebrow {
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.7rem, 3vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1rem;
}

.ent-combine__title {
    font-family: 'Touche', sans-serif;
    font-size: clamp(2.6rem, 3.05vw, 4.5rem);
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 1rem;
    max-width: 100%;
    perspective: 900px;
}

.ent-combine__text {
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.35rem, 2vw, 2.5rem);
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 4rem;
    max-width: 100%;
}

.ent-combine__text strong {
    font-weight: 700;
}

.ent-combine__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem 1rem;
    border-radius: 999px;
    background: #957AFB;
    color: #fff;
    font-family: 'Touche', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.ent-combine__btn:hover {
    background: #7e60f0;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Entrada creativa: portal de señal + ensamblaje orbital ── */
.ent-combine__signal {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ent-combine__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(149, 122, 251, 0.45);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
}

.ent-combine__orbit--1 {
    width: min(42vw, 420px);
    height: min(42vw, 420px);
}

.ent-combine__orbit--2 {
    width: min(58vw, 580px);
    height: min(58vw, 580px);
    border-style: dashed;
    border-color: rgba(149, 122, 251, 0.28);
}

.ent-combine__orbit--3 {
    width: min(74vw, 740px);
    height: min(74vw, 740px);
    border-color: rgba(196, 176, 255, 0.18);
}

.ent-combine__beam {
    position: absolute;
    left: -10%;
    right: -10%;
    top: 42%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196, 176, 255, 0.15) 20%, #fff 50%, rgba(196, 176, 255, 0.15) 80%, transparent);
    box-shadow: 0 0 24px rgba(149, 122, 251, 0.55);
    opacity: 0;
    transform: translateY(-120vh);
}

.ent-combine__spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4b0ff;
    box-shadow: 0 0 14px rgba(149, 122, 251, 0.9);
    opacity: 0;
}

.ent-combine__spark--1 { top: 28%; left: 22%; }
.ent-combine__spark--2 { top: 62%; left: 18%; }
.ent-combine__spark--3 { top: 34%; right: 20%; }
.ent-combine__spark--4 { top: 68%; right: 24%; }

.ent-combine__eyebrow-mask {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
}

.ent-combine__glow-line {
    width: min(220px, 42vw);
    height: 2px;
    margin: 0 0 2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #957AFB 18%, #c4b0ff 50%, #957AFB 82%, transparent);
    box-shadow: 0 0 28px rgba(149, 122, 251, 0.55);
    opacity: 0;
    transform: scaleX(0) rotate(-8deg);
    transform-origin: center;
}

.ent-combine__title-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.22em 0.42em;
}

.ent-combine__title-row--2 {
    margin-top: 0.12em;
}

.ent-combine__word {
    display: inline-block;
    opacity: 0;
    transform: translate(var(--from-x, 0), var(--from-y, 2rem)) rotate(var(--from-r, 0deg)) scale(0.15);
    filter: blur(14px);
    transform-origin: 50% 50%;
    will-change: transform, opacity, filter;
}

.ent-combine__eyebrow,
.ent-combine__text,
.ent-combine__btn {
    opacity: 0;
}

.ent-combine__text-line {
    display: block;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-12px);
    opacity: 0;
}

.ent-combine__text-line--accent {
    clip-path: inset(0 0 0 100%);
    transform: translateX(12px);
}

.ent-combine__highlight {
    display: inline;
    background: linear-gradient(100deg, #fff 0%, #d8cbff 38%, #957AFB 52%, #fff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-combine__btn {
    position: relative;
    overflow: visible;
    transform: scale(0.4);
}

.ent-combine__btn-ring {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(196, 176, 255, 0.65);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
}

.ent-combine__btn-ring--2 {
    inset: -22px;
    border-color: rgba(149, 122, 251, 0.35);
}

.ent-combine__btn-label {
    position: relative;
    z-index: 1;
}

.ent-combine.is-in-view .ent-combine__orbit--1 {
    animation: ent-combine-orbit 1.8s var(--ent-combine-ease) var(--ent-combine-base) both;
}

.ent-combine.is-in-view .ent-combine__orbit--2 {
    animation: ent-combine-orbit 2.1s var(--ent-combine-ease) calc(var(--ent-combine-base) + 0.08s) both;
}

.ent-combine.is-in-view .ent-combine__orbit--3 {
    animation: ent-combine-orbit 2.4s var(--ent-combine-ease) calc(var(--ent-combine-base) + 0.16s) both;
}

.ent-combine.is-in-view .ent-combine__beam {
    animation: ent-combine-beam 1.05s var(--ent-combine-ease) calc(var(--ent-combine-base) + 0.05s) both;
}

.ent-combine.is-in-view .ent-combine__spark {
    animation: ent-combine-spark 1.2s var(--ent-combine-spring)
        calc(var(--ent-combine-base) + 0.45s + var(--ent-spark-i, 0) * 0.08s) both;
}

.ent-combine.is-in-view .ent-combine__spark--1 { --ent-spark-i: 0; }
.ent-combine.is-in-view .ent-combine__spark--2 { --ent-spark-i: 1; }
.ent-combine.is-in-view .ent-combine__spark--3 { --ent-spark-i: 2; }
.ent-combine.is-in-view .ent-combine__spark--4 { --ent-spark-i: 3; }

.ent-combine.is-in-view .ent-combine__eyebrow {
    animation: ent-combine-fade-in 0.35s var(--ent-combine-ease) calc(var(--ent-combine-base) + 0.2s) both;
}

.ent-combine.is-in-view .ent-combine__eyebrow-mask {
    animation: ent-combine-typemask 0.95s steps(20, end) calc(var(--ent-combine-base) + 0.22s) both;
}

.ent-combine.is-in-view .ent-combine__glow-line {
    animation: ent-combine-line-spin 1s var(--ent-combine-spring) calc(var(--ent-combine-base) + 0.55s) both;
}

.ent-combine.is-in-view .ent-combine__word {
    animation: ent-combine-orbit-word 0.95s var(--ent-combine-spring)
        calc(var(--ent-combine-base) + 0.62s + var(--ent-combine-i, 0) * var(--ent-combine-step)) both;
}

.ent-combine.is-in-view .ent-combine__title {
    animation: ent-combine-title-glitch 0.42s steps(2, end) calc(var(--ent-combine-base) + 1.38s) 1;
}

.ent-combine.is-in-view .ent-combine__text {
    animation: ent-combine-fade-in 0.2s var(--ent-combine-ease) calc(var(--ent-combine-base) + 1.05s) both;
}

.ent-combine.is-in-view .ent-combine__text-line {
    animation: ent-combine-text-wipe-left 0.85s var(--ent-combine-ease) calc(var(--ent-combine-base) + 1.1s) both;
}

.ent-combine.is-in-view .ent-combine__text-line--accent {
    animation: ent-combine-text-wipe-right 0.9s var(--ent-combine-ease) calc(var(--ent-combine-base) + 1.28s) both;
}

.ent-combine.is-in-view .ent-combine__highlight {
    animation: ent-combine-highlight 3s ease-in-out calc(var(--ent-combine-base) + 1.65s) infinite;
}

.ent-combine.is-in-view .ent-combine__btn {
    animation: ent-combine-btn-pop 0.9s var(--ent-combine-spring) calc(var(--ent-combine-base) + 1.45s) both;
}

.ent-combine.is-in-view .ent-combine__btn-ring {
    animation: ent-combine-btn-ring 1.4s var(--ent-combine-ease) calc(var(--ent-combine-base) + 1.55s) both;
}

.ent-combine.is-in-view .ent-combine__btn-ring--2 {
    animation: ent-combine-btn-ring 1.6s var(--ent-combine-ease) calc(var(--ent-combine-base) + 1.68s) both;
}

@keyframes ent-combine-orbit {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.35) rotate(-18deg); }
    35%  { opacity: 0.9; }
    100% { opacity: 0.22; transform: translate(-50%, -50%) scale(1) rotate(8deg); }
}

@keyframes ent-combine-beam {
    0%   { opacity: 0; transform: translateY(-120vh); }
    12%  { opacity: 0.85; }
    100% { opacity: 0; transform: translateY(120vh); }
}

@keyframes ent-combine-spark {
    0%   { opacity: 0; transform: scale(0); }
    45%  { opacity: 1; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(0.2); }
}

@keyframes ent-combine-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes ent-combine-typemask {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}

@keyframes ent-combine-line-spin {
    0%   { opacity: 0; transform: scaleX(0) rotate(-8deg); }
    70%  { opacity: 1; transform: scaleX(1.08) rotate(2deg); }
    100% { opacity: 1; transform: scaleX(1) rotate(0deg); }
}

@keyframes ent-combine-orbit-word {
    0% {
        opacity: 0;
        transform: translate(var(--from-x, 0), var(--from-y, 2rem)) rotate(var(--from-r, 0deg)) scale(0.15);
        filter: blur(14px);
    }
    58% {
        opacity: 1;
        transform: translate(calc(var(--from-x, 0) * 0.06), calc(var(--from-y, 0) * 0.06)) rotate(calc(var(--from-r, 0deg) * 0.08)) scale(1.08);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes ent-combine-title-glitch {
    0%, 100% {
        filter: none;
        transform: none;
    }
    25% {
        filter: drop-shadow(3px 0 rgba(149, 122, 251, 0.85)) drop-shadow(-3px 0 rgba(98, 216, 255, 0.65));
        transform: translateX(2px) skewX(-1deg);
    }
    50% {
        filter: drop-shadow(-2px 0 rgba(149, 122, 251, 0.75)) drop-shadow(2px 0 rgba(255, 255, 255, 0.5));
        transform: translateX(-2px) skewX(1deg);
    }
    75% {
        transform: translateX(1px);
    }
}

@keyframes ent-combine-text-wipe-left {
    from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-12px); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}

@keyframes ent-combine-text-wipe-right {
    from { opacity: 0; clip-path: inset(0 0 0 100%); transform: translateX(12px); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}

@keyframes ent-combine-highlight {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

@keyframes ent-combine-btn-pop {
    0%   { opacity: 0; transform: scale(0.4); }
    65%  { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes ent-combine-btn-ring {
    0%   { opacity: 0.8; transform: scale(0.7); }
    100% { opacity: 0; transform: scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
    .ent-combine__signal,
    .ent-combine__orbit,
    .ent-combine__beam,
    .ent-combine__spark,
    .ent-combine__eyebrow,
    .ent-combine__eyebrow-mask,
    .ent-combine__glow-line,
    .ent-combine__word,
    .ent-combine__title,
    .ent-combine__text,
    .ent-combine__text-line,
    .ent-combine__btn,
    .ent-combine__btn-ring,
    .ent-combine__highlight {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
        letter-spacing: normal !important;
        box-shadow: none !important;
    }

    .ent-combine__highlight {
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        color: #fff;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .ent-combine {
        min-height: 90vh;
        padding-bottom: 0;
    }

    .ent-combine__container {
        margin: 0 auto;
        max-width: 720px;
        padding: 64px 32px;
    }

    .ent-combine__eyebrow {
        font-size: clamp(1.5rem, 3.2vw, 2rem);
        margin-bottom: 1.4rem;
    }

    .ent-combine__title {
        font-size: clamp(2rem, 4.8vw, 2.8rem);
        margin-bottom: 1.2rem;
        line-height: 1.26;
    }

    .ent-combine__text {
        font-size: clamp(1.25rem, 2.6vw, 1.7rem);
        margin-bottom: 2.4rem;
        line-height: 1.5;
    }

    .ent-combine__btn {
        font-size: 1.45rem;
        padding: 1rem 2.2rem 0.95rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ent-combine {
        min-height: 80vh;
        padding-bottom: 0;
        align-items: center;
    }

    .ent-combine__container {
        margin: 0 auto;
        padding: 48px 20px;
    }

    /* En mobile el texto envuelve solo; sin saltos forzados del desktop */
    .ent-combine__br {
        display: none;
    }

    .ent-combine__eyebrow {
        font-size: clamp(1.35rem, 4.8vw, 1.6rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .ent-combine__title {
        font-size: clamp(1.85rem, 6.8vw, 2.35rem);
        margin-bottom: 1rem;
        line-height: 1.22;
        letter-spacing: -0.02em;
    }

    .ent-combine__text {
        font-size: clamp(1.2rem, 4.2vw, 1.45rem);
        margin-bottom: 2rem;
        line-height: 1.45;
        padding: 0;
        max-width: 22em;
    }

    .ent-combine__btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        padding: 1rem 2rem 0.95rem;
        font-size: 1.35rem;
        letter-spacing: 0.06em;
    }
}

/* Mobile chico */
@media (max-width: 420px) {
    .ent-combine__container {
        margin-bottom: 56px;
        padding: calc(var(--ent-wave-blend-top, 90px) + 8px) 16px 32px;
    }

    .ent-combine__eyebrow {
        font-size: 1.3rem;
        margin-bottom: 0.85rem;
    }

    .ent-combine__title {
        font-size: clamp(1.7rem, 7.5vw, 2rem);
        margin-bottom: 0.85rem;
    }

    .ent-combine__text {
        font-size: 1.2rem;
        margin-bottom: 1.75rem;
        line-height: 1.42;
    }

    .ent-combine__btn {
        max-width: 100%;
        font-size: 1.25rem;
        padding: 0.95rem 1.6rem 0.9rem;
        letter-spacing: 0.05em;
    }
}


/* ================================================================
   HOWTO SECTION  –  .ent-howto
   Pasos compactos; solo el activo despliega descripción
   ================================================================ */

.ent-howto {
    --ent-howto-purple: #A890FE;
    --ent-howto-purple-deep: #957AFB;
    --ent-howto-desc-max: 120px;
    --ent-howto-min-height: 75vh;
    --ent-howto-line-min: 48px;
    position: relative;
    z-index: 1;
    min-height: var(--ent-howto-min-height);
    background: transparent;
    color: #fff;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.ent-howto.ent-reveal-section {
    --ent-howto-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ent-howto-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ent-howto-base: 0.12s;
    --ent-howto-step: 0.13s;
}

.ent-howto__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ent-howto__fx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transform: scale(0.55);
    will-change: transform, opacity;
}

.ent-howto__fx-orb--1 {
    top: 7%;
    left: -14%;
    width: min(680px, 82vw);
    height: min(680px, 82vw);
    background: radial-gradient(circle, rgba(149, 122, 251, 0.48) 0%, rgba(149, 122, 251, 0) 65%);
}

.ent-howto__fx-orb--2 {
    bottom: 10%;
    right: -12%;
    width: min(600px, 74vw);
    height: min(600px, 74vw);
    background: radial-gradient(circle, rgba(168, 144, 254, 0.34) 0%, rgba(168, 144, 254, 0) 72%);
}

.ent-howto__pin {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    min-height: var(--ent-howto-min-height);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 100px 0 48px;
}

.ent-howto__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex: 0 1 auto;
    min-height: 0;
}

.ent-howto__header {
    margin: 0 0 40px;
    max-width: 640px;
}

.ent-howto__title {
    margin: 0px 0 1.4rem;
    font-family: 'Touche', sans-serif;
    font-size: clamp(3.2rem, 4.2vw, 4.8rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.02em;
}

.ent-howto__title-line {
    display: block;
}

.ent-howto__title-line--brand {
    perspective: 900px;
}

.ent-howto__title-mask {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
}

.ent-howto__title-mask--purple {
    color: var(--ent-howto-purple-deep);
    opacity: 0;
    transform: translateY(0.55em) rotateX(32deg);
    filter: blur(8px);
    transform-origin: 50% 100%;
    clip-path: none;
    will-change: transform, opacity, filter;
}

.ent-howto__title--purple {
    color: var(--ent-howto-purple-deep);
}

.ent-howto__subtitle {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.55rem, 1.55vw, 2.5rem);
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
    will-change: transform, opacity, filter;
}

.ent-howto__subtitle strong {
    font-weight: 600;
}

.ent-howto__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
    box-sizing: border-box;
}

.ent-howto__step:not(:last-child) {
    min-height: calc(70px + var(--ent-howto-line-min));
}

.ent-howto__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 22px;
    align-items: stretch;
}

.ent-howto__step-title {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.55rem, 1.5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ent-howto__step.is-active .ent-howto__step-title {
    color: #fff;
}

.ent-howto__marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56px;
    align-self: stretch;
    min-height: 0;
}

.ent-howto__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid var(--ent-howto-purple-deep);
    background: transparent;
    opacity: 0;
    transform: scale(0.35) rotate(-18deg);
    will-change: transform, opacity;
    transition:
        background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ent-howto__icon-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid rgba(149, 122, 251, 0.55);
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
    will-change: transform, opacity;
}

.ent-howto__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.ent-howto__line {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    width: 4px;
    min-height: var(--ent-howto-line-min);
    height: auto;
    margin: -2px 0;
    overflow: hidden;
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    will-change: transform, opacity;
}

.ent-howto__line-dash {
    width: 4px;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        var(--ent-howto-purple-deep) 50%,
        transparent 50%
    );
    background-size: 4px 40px;
    background-repeat: repeat-y;
    animation: entHowtoDashFlow 1s linear infinite;
    animation-play-state: paused;
}

.ent-howto.is-inview .ent-howto__line-dash {
    animation-play-state: running;
}

@keyframes entHowtoDashFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-howto__line-dash {
        animation: none;
        background-image: linear-gradient(
            to bottom,
            var(--ent-howto-purple-deep) 50%,
            transparent 50%
        );
        background-size: 4px 20px;
    }
}

.ent-howto__step:last-child .ent-howto__line {
    display: none;
}

.ent-howto__body {
    padding-top: 6px;
    padding-bottom: 4px;
    min-width: 0;
    opacity: 0;
    transform: translateX(28px);
    clip-path: inset(0 0 0 100%);
    will-change: transform, opacity, clip-path;
}

.ent-howto__step:last-child .ent-howto__body {
    padding-bottom: 0;
}

.ent-howto__desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.ent-howto__desc > p {
    overflow: hidden;
    margin: 0;
    padding-top: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.35rem, 1.25vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.ent-howto__step.is-active .ent-howto__icon {
    background: var(--ent-howto-purple-deep);
    border-color: var(--ent-howto-purple-deep);
    color: #fff;
}

.ent-howto__step.is-active .ent-howto__desc {
    max-height: var(--ent-howto-desc-max);
    opacity: 1;
    transition:
        max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1) 0.03s;
}

.ent-howto__step.is-active .ent-howto__desc > p {
    padding-top: 0.85rem;
}

.ent-howto__step:not(.is-active) .ent-howto__desc {
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Entrada creativa al entrar en viewport ── */
.ent-howto.is-in-view .ent-howto__fx-orb--1 {
    animation:
        ent-howto-orb-in 1.4s var(--ent-howto-ease) var(--ent-howto-base) both,
        ent-howto-orb-float-1 12s ease-in-out calc(var(--ent-howto-base) + 1.35s) infinite;
}

.ent-howto.is-in-view .ent-howto__fx-orb--2 {
    animation:
        ent-howto-orb-in 1.6s var(--ent-howto-ease) calc(var(--ent-howto-base) + 0.08s) both,
        ent-howto-orb-float-2 14s ease-in-out calc(var(--ent-howto-base) + 1.5s) infinite;
}

.ent-howto.is-in-view .ent-howto__title-line:first-child .ent-howto__title-mask {
    animation: ent-howto-mask 0.85s steps(18, end) calc(var(--ent-howto-base) + 0.05s) both;
}

.ent-howto.is-in-view .ent-howto__title-mask--purple {
    animation: ent-howto-brand-pop 0.95s var(--ent-howto-spring) calc(var(--ent-howto-base) + 0.38s) both;
}

.ent-howto.is-in-view .ent-howto__subtitle {
    animation: ent-howto-subtitle-in 0.85s var(--ent-howto-ease) calc(var(--ent-howto-base) + 0.62s) both;
}

.ent-howto.is-in-view .ent-howto__step .ent-howto__icon {
    animation: ent-howto-icon-pop 0.82s var(--ent-howto-spring)
        calc(var(--ent-howto-base) + 0.78s + var(--ent-howto-i, 0) * var(--ent-howto-step)) both;
}

.ent-howto.is-in-view .ent-howto__step .ent-howto__icon-ring {
    animation: ent-howto-ring-burst 0.95s var(--ent-howto-ease)
        calc(var(--ent-howto-base) + 0.82s + var(--ent-howto-i, 0) * var(--ent-howto-step)) both;
}

.ent-howto.is-in-view .ent-howto__step .ent-howto__line {
    animation: ent-howto-line-grow 0.55s var(--ent-howto-ease)
        calc(var(--ent-howto-base) + 0.95s + var(--ent-howto-i, 0) * var(--ent-howto-step)) both;
}

.ent-howto.is-in-view .ent-howto__step .ent-howto__body {
    animation: ent-howto-body-in 0.78s var(--ent-howto-ease)
        calc(var(--ent-howto-base) + 0.88s + var(--ent-howto-i, 0) * var(--ent-howto-step)) both;
}

@keyframes ent-howto-orb-in {
    0%   { opacity: 0; transform: scale(0.55); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes ent-howto-orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(36px, -42px) scale(1.08); }
    50%      { transform: translate(18px, 28px) scale(0.96); }
    75%      { transform: translate(-28px, -18px) scale(1.04); }
}

@keyframes ent-howto-orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30%      { transform: translate(-42px, -32px) scale(1.06); }
    55%      { transform: translate(24px, 38px) scale(0.95); }
    80%      { transform: translate(-16px, 22px) scale(1.03); }
}

@keyframes ent-howto-mask {
    0%   { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes ent-howto-brand-pop {
    0%   { opacity: 0; transform: translateY(0.55em) rotateX(32deg); filter: blur(8px); }
    55%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); filter: blur(0); }
}

@keyframes ent-howto-subtitle-in {
    0%   { opacity: 0; transform: translateY(18px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes ent-howto-icon-pop {
    0%   { opacity: 0; transform: scale(0.35) rotate(-18deg); }
    70%  { transform: scale(1.08) rotate(4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes ent-howto-ring-burst {
    0%   { opacity: 0.75; transform: scale(0.6); }
    100% { opacity: 0; transform: scale(1.55); }
}

@keyframes ent-howto-line-grow {
    0%   { opacity: 0; transform: scaleY(0); }
    100% { opacity: 1; transform: scaleY(1); }
}

@keyframes ent-howto-body-in {
    0%   { opacity: 0; transform: translateX(28px); clip-path: inset(0 0 0 100%); }
    100% { opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
    .ent-howto__fx-orb,
    .ent-howto__title-mask,
    .ent-howto__title-mask--purple,
    .ent-howto__subtitle,
    .ent-howto__icon,
    .ent-howto__icon-ring,
    .ent-howto__line,
    .ent-howto__body {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
    }

    .ent-howto__icon-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-howto__icon,
    .ent-howto__step-title,
    .ent-howto__desc {
        transition: none !important;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .ent-howto__pin {
        padding: 36px 0 28px;
    }

    .ent-howto__container {
        margin: 0 auto;
        padding: 0 32px;
        max-width: 720px;
    }

    .ent-howto__header {
        margin-bottom: 36px;
        max-width: 100%;
    }

    .ent-howto__title {
        font-size: clamp(2.8rem, 5.5vw, 3.8rem);
    }

    .ent-howto__subtitle {
        font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    }

    .ent-howto__timeline {
        max-width: 100%;
    }
}

/* Tablet: acorta el solape superior de las olas */
@media (max-width: 991px) {
    .ent-wave-join {
        --ent-wave-blend-top: 120px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ent-wave-join {
        --ent-wave-blend: 100px;
        --ent-wave-blend-top: 90px;
    }

    .ent-howto {
        --ent-howto-min-height: auto;
        --ent-howto-line-min: 36px;
    }

    .ent-howto__pin {
        padding: 40px 0 32px;
    }

    .ent-howto__container {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    .ent-howto__header {
        margin-bottom: 22px;
        text-align: left;
        max-width: 100%;
    }

    .ent-howto__title {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
        margin-bottom: 0.7rem;
        line-height: 1.08;
    }

    .ent-howto__subtitle {
        font-size: clamp(1.3rem, 3.8vw, 1.45rem);
        line-height: 1.35;
    }

    .ent-howto__br {
        display: none;
    }

    .ent-howto__timeline {
        max-width: 100%;
    }

    .ent-howto__step {
        grid-template-columns: 40px 1fr;
        column-gap: 12px;
    }

    .ent-howto__marker {
        width: 40px;
    }

    .ent-howto__icon {
        width: 38px;
        height: 38px;
    }

    .ent-howto__icon img {
        width: 20px;
        height: 20px;
    }

    .ent-howto__step:not(:last-child) {
        min-height: calc(38px + var(--ent-howto-line-min));
    }

    .ent-howto__line {
        min-height: var(--ent-howto-line-min);
        margin: -1px 0;
    }

    .ent-howto__body {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .ent-howto__step:last-child .ent-howto__body {
        padding-bottom: 0;
    }

    .ent-howto__step-title {
        font-size: clamp(1.2rem, 3.6vw, 1.35rem);
        letter-spacing: 0.03em;
        line-height: 1.25;
    }

    .ent-howto__desc > p {
        font-size: clamp(1.2rem, 3.4vw, 1.35rem);
        line-height: 1.4;
    }

    .ent-howto__step.is-active .ent-howto__desc > p {
        padding-top: 0.45rem;
    }

    .ent-howto__step.is-active .ent-howto__icon {
        box-shadow: 0 0 0 4px rgba(168, 144, 254, 0.14);
    }
}

/* Mobile chico */
@media (max-width: 420px) {
    .ent-howto__pin {
        padding: 80px 20px 120px;
        min-height: auto;
        justify-content: center;
    }

    .ent-howto__container {
        padding: 0 16px;
    }

    .ent-howto__header {
        margin-bottom: 18px;
    }

    .ent-howto__title {
        font-size: clamp(2rem, 8vw, 2.35rem);
    }

    .ent-howto__subtitle {
        font-size: 1.28rem;
    }

    .ent-howto__step {
        grid-template-columns: 36px 1fr;
        column-gap: 10px;
    }

    .ent-howto__marker {
        width: 36px;
    }

    .ent-howto__icon {
        width: 34px;
        height: 34px;
    }

    .ent-howto__icon img {
        width: 18px;
        height: 18px;
    }

    .ent-howto__step-title {
        font-size: 1.18rem;
    }

    .ent-howto__desc > p {
        font-size: 1.22rem;
    }
}


/* ================================================================
   PRICING SECTION  –  .ent-pricing
   Tarifas por rango de miembros
   ================================================================ */

.ent-pricing {
    --ent-pricing-purple: #9D88FF;
    --ent-pricing-border: #3B2A63;
    --ent-pricing-card-bg: #14141e;
    --ent-pricing-btn-bg: #1e1e28;
    position: relative;
    z-index: 2;
    background: #000;
    color: #fff;
    padding: 200px 0 300px;
    overflow: hidden;
}


.ent-pricing__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.ent-pricing__header {
    text-align: center;
    margin: 0 auto 72px;
}

.ent-pricing__title {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.55rem, 3vw, 4rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #fff;
}

.ent-pricing__title strong {
    font-weight: 600;
    color: #fff;
}

.ent-pricing__title--purple {
    color: var(--ent-pricing-purple) !important;
}

.ent-pricing__subtitle {
    font-family: 'Touche', sans-serif;
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.ent-pricing__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    overflow: visible;
}

.ent-pricing__card-wrap {
    display: flex;
    min-width: 0;
}

.ent-pricing__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: var(--ent-pricing-card-bg);
    border: 1px solid var(--ent-pricing-purple);
    border-radius: 20px;
    padding: 42px 28px 32px;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    min-height: 320px;
    position: relative;
    z-index: 0;
    transform-origin: center center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ent-pricing__range {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 36px;
    font-family: 'Touche', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #fff;
}

.ent-pricing__range-num {
    font-size: clamp(1.85rem, 2.4vw, 3.5rem);
    font-weight: 600;
    text-transform: none;
}

.ent-pricing__range-label {
    font-size: clamp(1.4rem, 1.75vw, 1.9rem);
    font-weight: 400;
    text-transform: uppercase;
}

.ent-pricing__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 auto;
    padding-bottom: 40px;
    font-family: 'Touche', sans-serif;
    line-height: 1;
}

.ent-pricing__value {
    display: block;
    white-space: nowrap;
}

.ent-pricing__currency {
    font-size: clamp(1.85rem, 1vw, 4rem);
    font-weight: 600;
    color: var(--ent-pricing-purple);
    VERTICAL-ALIGN: TOP;
}

.ent-pricing__amount {
    font-size: clamp(1.7rem, 2.1vw, 4rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.ent-pricing__period {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff83;
}

.ent-pricing__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    padding: 11px 26px;
    min-width: 132px;
    background: var(--ent-pricing-btn-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #fff !important;
    font-family: 'Touche', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.ent-pricing__btn:hover {
    background: var(--ent-pricing-purple);
    border-color: rgba(157, 136, 255, 0.35);
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.ent-pricing__btn:focus-visible {
    outline: 2px solid var(--ent-pricing-purple);
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .ent-pricing__card-wrap:hover {
        z-index: 1;
        position: relative;
    }

    .ent-pricing__card-wrap:hover .ent-pricing__card {
        transform: scale(1.05);
        border-color: rgba(157, 136, 255, 0.85);
    }

    .ent-pricing__card-wrap:hover .ent-pricing__btn {
        background: var(--ent-pricing-purple);
        border-color: rgba(157, 136, 255, 0.35);
        transform: translateY(-1px);
    }
}

/* Tablet ancha: 2×2 */
@media (max-width: 1100px) {
    .ent-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        max-width: 640px;
        margin: 0 auto;
    }

    .ent-pricing__card {
        min-height: 300px;
        padding: 36px 24px 28px;
    }

    .ent-pricing__period {
        font-size: 2.2rem;
    }

    .ent-pricing__btn {
        font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .ent-pricing {
        padding: 100px 0 120px;
    }

    .ent-pricing__container {
        padding: 0 28px;
    }

    .ent-pricing__header {
        margin-bottom: 48px;
    }

    .ent-pricing__title {
        font-size: clamp(2rem, 3.4vw, 2.8rem);
        line-height: 1.35;
    }

    .ent-pricing__title br {
        display: none;
    }

    .ent-pricing__subtitle {
        margin-top: 14px;
        font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    }
}

/* Mobile: una columna; tarjetas grandes ocupando el ancho */
@media (max-width: 767px) {
    .ent-pricing {
        padding: 72px 0 96px;
        overflow: hidden;
    }

    .ent-pricing__container {
        padding: 0 20px;
        max-width: 1320px;
    }

    .ent-pricing__header {
        margin: 0 auto 36px;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ent-pricing__title {
        font-size: clamp(1.85rem, 5.2vw, 2.3rem);
        line-height: 1.35;
    }

    .ent-pricing__subtitle {
        margin-top: 12px;
        font-size: clamp(1.7rem, 4.5vw, 2rem);
    }

    .ent-pricing__grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        width: 80%;
        overflow: visible;
    }

    .ent-pricing__card-wrap {
        width: 100%;
    }

    .ent-pricing__card {
        flex: none;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        padding: 28px 22px 22px;
        border-radius: 20px;
        border: 1px solid var(--ent-pricing-purple);
        background: var(--ent-pricing-card-bg);
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        text-align: center;
        box-sizing: border-box;
    }

    .ent-pricing__range {
        width: 100%;
        margin: 0 0 14px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.15em;
        text-align: center;
        white-space: normal;
    }

    .ent-pricing__range-num {
        display: block;
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        font-weight: 600;
        line-height: 1.15;
    }

    .ent-pricing__range-label {
        display: block;
        font-size: clamp(1.4rem, 4.5vw, 1.9rem);
        font-weight: 400;
        line-height: 1.15;
    }

    .ent-pricing__price {
        width: 100%;
        margin: 0 0 20px;
        padding-bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.2em;
        text-align: center;
        white-space: normal;
    }

    .ent-pricing__value {
        display: block;
        width: auto;
        white-space: nowrap;
    }

    .ent-pricing__currency {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        color: var(--ent-pricing-purple);
    }

    .ent-pricing__amount {
        font-size: clamp(1.65rem, 5vw, 2.2rem);
        font-weight: 600;
        color: #fff;
    }

    .ent-pricing__period {
        display: block;
        width: auto;
        margin-top: 0.15em;
        margin-left: 0;
        font-size: clamp(1.35rem, 4vw, 1.75rem);
        font-weight: 400;
        color: #ffffff83;
        white-space: normal;
    }

    .ent-pricing__btn {
        display: flex;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 52px;
        margin-top: 0;
        padding: 14px 24px;
        font-size: 2rem;
        border-radius: 8px;
        background: var(--ent-pricing-btn-bg);
        box-sizing: border-box;
    }
}

@media (max-width: 420px) {
    .ent-pricing {
        padding: 0px 0 80px;
    }

    .ent-pricing__container {
        padding: 0 14px;
    }

    .ent-pricing__header {
        margin-bottom: 28px;
    }

    .ent-pricing__title {
        font-size: clamp(1.7rem, 6vw, 2rem);
    }

    .ent-pricing__subtitle {
        font-size: 1.6rem;
    }

    .ent-pricing__grid {
        gap: 14px;
    }

    .ent-pricing__card {
        padding: 24px 18px 18px;
    }

    .ent-pricing__range {
        margin-bottom: 12px;
    }

    .ent-pricing__price {
        margin-bottom: 16px;
    }

    .ent-pricing__range-num {
        font-size: 1em;
    }

    .ent-pricing__range-label {
        font-size: 1em;
    }

    .ent-pricing__currency {
        font-size: 1.5em;
    }

    .ent-pricing__amount {
        font-size: 2em;
    }

    .ent-pricing__period {
        font-size: 1.5em;
    }

    .ent-pricing__btn {
        font-size: 1.8rem;
        min-height: 48px;
        padding: 12px 20px;
    }
}

/* ================================================================
   LIVE DEMO SECTION  –  .ent-livedemo
   Demo interactiva de personalización (bienvenida / formulario)
   ================================================================ */

@media (max-width: 991px) {
    #entLiveDemo.ent-livedemo {
        display: none !important;
    }
}

.ent-livedemo {
    position: relative;
    padding: 200px 24px 300px;
    color: #fff;
}

.ent-livedemo__frame {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 36px 40px;
    border-radius: 28px;
    border: 1px solid #957afb;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.ent-livedemo__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.ent-livedemo__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}

.ent-livedemo__badge-wrapper {
    margin-bottom: 25px;
    display: inline-block;
}

.ent-livedemo__badge {
    display: inline-block;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 1.5rem;
    color: #957afb;
    border: 1px solid #957afb;
    font-family: 'Touche', sans-serif;
    font-weight: 500;
    animation: ent-livedemo-badge-pulse 3s linear infinite;
    cursor: pointer;
}

@keyframes ent-livedemo-badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(149, 122, 251, 0.7), 0 0 0 0 rgba(149, 122, 251, 0.7);
    }

    40% {
        box-shadow: 0 0 0 15px rgba(149, 122, 251, 0.0), 0 0 0 0 rgba(149, 122, 251, 0.7);
    }

    80% {
        box-shadow: 0 0 0 15px rgba(149, 122, 251, 0.0), 0 0 0 10px rgba(149, 122, 251, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(149, 122, 251, 0.0), 0 0 0 10px rgba(149, 122, 251, 0);
    }
}

.ent-livedemo__title {
    margin: 0;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.ent-livedemo__title--purple {
    color: #957afb;
    font-weight: 600;
}

.ent-livedemo__title--white {
    color: #ffffff;
    font-weight: 600;
}

.ent-livedemo__tabs {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #4a3f7a;
    border: 0;
    flex-shrink: 0;
    gap: 0;
}

.ent-livedemo__tab {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 999px;
    background: transparent;
    color: rgba(220, 215, 240, 0.72);
    font-family: 'Touche', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.ent-livedemo__tab:hover:not(.is-active) {
    color: rgba(255, 255, 255, 0.9);
}

.ent-livedemo__tab.is-active {
    background: #957afb;
    color: #fff;
    border-radius: 999px;
}

.ent-livedemo__tab:focus-visible {
    outline: 2px solid #b9a8ff;
    outline-offset: 2px;
}

.ent-livedemo__workspace {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 0;
    background: #f4f5f8;
    border-radius: 22px;
    overflow: hidden;
    min-height: 640px;
    color: #1a1a1a;
}

/* ── Sidebar ── */
.ent-livedemo__sidebar {
    padding: 22px 18px 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: #f7f8fb;
    overflow-y: auto;
    max-height: 740px;
}

.ent-livedemo__sidebar-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px 4px;
    color: #957AFB;
    font-family: 'Touche', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ent-livedemo__info-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 2px rgba(149, 122, 251, 0.35));
    animation: ent-livedemo-info-glow 2.4s ease-in-out infinite;
}

@keyframes ent-livedemo-info-glow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(149, 122, 251, 0.3));
        opacity: 0.85;
    }

    50% {
        filter:
            drop-shadow(0 0 4px rgba(149, 122, 251, 0.9))
            drop-shadow(0 0 10px rgba(149, 122, 251, 0.55));
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-livedemo__info-icon {
        animation: none;
        filter: drop-shadow(0 0 3px rgba(149, 122, 251, 0.45));
        opacity: 1;
    }
}

.ent-livedemo__panel[hidden] {
    display: none !important;
}

.ent-livedemo__card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.ent-livedemo__field-label {
    display: block;
    margin: 0 0 10px;
    font-family: 'Touche', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6f7a;
}

.ent-livedemo__input,
.ent-livedemo__select {
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    font-family: 'Touche', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ent-livedemo__input:focus,
.ent-livedemo__select:focus {
    border-color: #957AFB;
    box-shadow: 0 0 0 3px rgba(149, 122, 251, 0.18);
}

.ent-livedemo__select-wrap {
    position: relative;
}

.ent-livedemo__select-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.6px solid #888;
    border-bottom: 1.6px solid #888;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.ent-livedemo__select {
    padding-right: 36px;
    cursor: pointer;
}

.ent-livedemo__color-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ent-livedemo__color-swatch {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}

.ent-livedemo__color-swatch input[type="color"] {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 0;
    padding: 0;
    cursor: pointer;
    background: none;
}

.ent-livedemo__color-hex {
    font-family: 'Touche', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: 0.04em;
}

.ent-livedemo__lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ent-livedemo__lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    cursor: pointer;
    font-family: 'Touche', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2a2a2a;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ent-livedemo__lang .ent-livedemo__check {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ent-livedemo__lang.is-active {
    border-color: rgba(149, 122, 251, 0.55);
    background: rgba(149, 122, 251, 0.06);
}

.ent-livedemo__lang.is-active .ent-livedemo__check {
    opacity: 1;
    transform: scale(1);
}

.ent-livedemo__logo-drop {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1.5px dashed rgba(149, 122, 251, 0.45);
    border-radius: 12px;
    background: rgba(149, 122, 251, 0.04);
    cursor: pointer;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ent-livedemo__logo-drop.is-dragover {
    border-color: #957AFB;
    background: rgba(149, 122, 251, 0.1);
}

.ent-livedemo__logo-preview,
.ent-livedemo__portal-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #3a3a3a);
    color: #fff;
    font-family: 'Touche', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: border-radius 0.25s ease;
}

.ent-livedemo__logo-preview.is-square,
.ent-livedemo__portal-logo.is-square {
    border-radius: 4px;
}

.ent-livedemo__logo-preview.is-round,
.ent-livedemo__portal-logo.is-round {
    border-radius: 50%;
}

.ent-livedemo__logo-preview.is-rounded,
.ent-livedemo__portal-logo.is-rounded {
    border-radius: 14px;
}

.ent-livedemo__logo-preview img,
.ent-livedemo__portal-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ent-livedemo__logo-drop-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    font-family: 'Touche', sans-serif;
}

.ent-livedemo__logo-drop-text strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2a2a2a;
}

.ent-livedemo__logo-drop-text span {
    font-size: 0.72rem;
    color: #8a8f9a;
}

.ent-livedemo__file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
}

.ent-livedemo__shapes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ent-livedemo__shape {
    position: relative;
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    padding: 9px 14px;
    cursor: pointer;
    font-family: 'Touche', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ent-livedemo__shape.is-active {
    background: rgba(149, 122, 251, 0.14);
    border-color: #957AFB;
    color: #5b3fd4;
    padding-right: 58px;
}

.ent-livedemo__shape-badge {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px 7px;
    border-radius: 999px;
    background: #957AFB;
    color: #fff;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    display: none;
}

.ent-livedemo__shape.is-active .ent-livedemo__shape-badge {
    display: inline-block;
}

.ent-livedemo__field-toggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ent-livedemo__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-family: 'Touche', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2a2a2a;
}

.ent-livedemo__toggle {
    width: 18px;
    height: 18px;
    accent-color: #957AFB;
    cursor: pointer;
}

/* ── Preview ── */
.ent-livedemo__preview {
    display: flex;
    flex-direction: column;
    padding: 22px 24px 20px;
    background: #fafbfd;
    min-height: 640px;
}

.ent-livedemo__preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ent-livedemo__preview-label {
    font-family: 'Touche', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #957AFB;
}

.ent-livedemo__devices {
    display: inline-flex;
    gap: 4px;
}

.ent-livedemo__device {
    appearance: none;
    border: 0;
    background: transparent;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #9aa0ad;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.ent-livedemo__device:hover {
    color: #5b3fd4;
    background: rgba(149, 122, 251, 0.1);
}

.ent-livedemo__device.is-active {
    color: #957AFB;
    background: rgba(149, 122, 251, 0.14);
}

.ent-livedemo__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 10px;
    min-height: 480px;
}

.ent-livedemo__phone {
    position: relative;
    width: 260px;
    height: 530px;
    border-radius: 36px;
    background: #111;
    box-shadow:
        0 0 0 10px #1a1a1a,
        0 0 0 12px #2a2a2a,
        0 30px 80px rgba(149, 122, 251, 0.35),
        0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.35s ease, height 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease;
}

.ent-livedemo__stage.is-desktop .ent-livedemo__phone {
    width: min(520px, 92%);
    height: 340px;
    border-radius: 16px;
    box-shadow:
        0 0 0 8px #1a1a1a,
        0 0 0 10px #2a2a2a,
        0 24px 60px rgba(149, 122, 251, 0.28),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.ent-livedemo__phone-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
}

.ent-livedemo__phone-fallback {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.ent-livedemo__phone-fallback::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    border-radius: 999px;
    background: #000;
    z-index: 3;
}

.ent-livedemo__stage.is-desktop .ent-livedemo__phone-fallback::before {
    display: none;
}

.ent-livedemo__screen {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    padding: 72px 22px 28px;
    overflow: hidden;
    border-radius: inherit;
}

.ent-livedemo__stage.is-desktop .ent-livedemo__screen {
    padding: 36px 48px 28px;
    justify-content: center;
}

.ent-livedemo__screen-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%),
        radial-gradient(ellipse at 30% 20%, #4a3a2a 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, #2a3540 0%, transparent 45%),
        linear-gradient(160deg, #1c1814 0%, #0d0d10 100%);
    z-index: 0;
}

.ent-livedemo__screen-view {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.ent-livedemo__screen-view[data-view="welcome"] {
    flex: 1;
    min-height: 0;
    justify-content: center;
    padding-bottom: 4px;
}

.ent-livedemo__screen-view[hidden] {
    display: none !important;
}

.ent-livedemo__stage.is-desktop .ent-livedemo__screen-view[data-view="welcome"] {
    max-width: 320px;
}

.ent-livedemo__portal-logo {
    width: 88px;
    height: 88px;
    font-size: 1.4rem;
    margin: 2px 0 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ent-livedemo__portal-logo--sm {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 8px;
}

.ent-livedemo__portal-msg {
    margin: 0;
    font-family: 'Ubuntu', 'Touche', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    word-break: break-word;
    transition: color 0.2s ease;
}

.ent-livedemo__portal-tagline {
    margin: 0 0 100px;
    font-family: 'Touche', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    max-width: 220px;
}

.ent-livedemo__portal-cta {
    appearance: none;
    border: 0;
    width: 100%;
    max-width: 240px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #3ecf6a;
    color: #fff;
    font-family: 'Touche', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(62, 207, 106, 0.35);
}

.ent-livedemo__portal-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    font-family: 'Touche', sans-serif;
    font-size: 0.62rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
    max-width: 230px;
    cursor: default;
}

.ent-livedemo__portal-terms-link {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: rgba(255, 255, 255, 0.92);
}

.ent-livedemo__portal-check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 3px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.ent-livedemo__portal-powered {
    gap: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 22px;
}

.ent-livedemo__portal-powered img {
    display: block;
    height: 18px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.ent-livedemo__portal-powered-fallback {
    font-family: 'Touche', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
}

.ent-livedemo__screen-view[data-view="form"] {
    flex: 1;
    min-height: 0;
    justify-content: center;
}

.ent-livedemo__form-fields {
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 6px;
}

.ent-livedemo__stage.is-desktop .ent-livedemo__form-fields {
    max-width: 280px;
}

.ent-livedemo__form-field {
    text-align: left;
}

.ent-livedemo__form-field[hidden] {
    display: none !important;
}

.ent-livedemo__form-field > span {
    display: block;
    margin-bottom: 4px;
    font-family: 'Touche', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.ent-livedemo__form-input {
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ent-livedemo__disclaimer {
    margin: 8px 0 0;
    text-align: center;
    font-family: 'Touche', sans-serif;
    font-size: 0.72rem;
    color: #9aa0ad;
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .ent-livedemo {
        padding: 80px 20px 120px;
    }

    .ent-livedemo__frame {
        padding: 28px 22px 30px;
    }

    .ent-livedemo__workspace {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    /* Preview primero: el usuario ve el resultado al personalizar */
    .ent-livedemo__preview {
        order: -1;
        min-height: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .ent-livedemo__sidebar {
        border-right: 0;
        border-bottom: 0;
        max-height: none;
    }

    .ent-livedemo__stage {
        min-height: 420px;
        padding: 16px 8px 8px;
    }
}

@media (max-width: 720px) {
    .ent-livedemo {
        padding: 48px 12px 72px;
    }

    .ent-livedemo__frame {
        padding: 18px 12px 20px;
        border-radius: 18px;
    }

    .ent-livedemo__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 16px;
    }

    .ent-livedemo__intro {
        gap: 12px;
        width: 100%;
    }

    .ent-livedemo__badge-wrapper {
        margin-bottom: 16px;
    }

    .ent-livedemo__badge {
        font-size: 0.95rem;
        padding: 6px 14px;
    }

    .ent-livedemo__title {
        font-size: clamp(1.25rem, 6.2vw, 1.55rem);
        line-height: 1.2;
    }

    .ent-livedemo__title br {
        display: none;
    }

    .ent-livedemo__tabs {
        width: 100%;
    }

    .ent-livedemo__tab {
        flex: 1;
        padding: 10px 8px;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-align: center;
    }

    /* Vista escritorio no aporta en pantallas chicas */
    .ent-livedemo__devices {
        display: none;
    }

    .ent-livedemo__workspace {
        border-radius: 14px;
    }

    .ent-livedemo__sidebar {
        padding: 16px 12px 20px;
    }

    .ent-livedemo__sidebar-label {
        margin-bottom: 12px;
    }

    .ent-livedemo__card {
        padding: 12px;
        margin-bottom: 10px;
        border-radius: 12px;
    }

    .ent-livedemo__preview {
        padding: 14px 12px 12px;
    }

    .ent-livedemo__stage {
        min-height: 0;
        padding: 12px 4px 4px;
    }

    .ent-livedemo__phone {
        width: min(230px, 68vw);
        height: min(470px, 138vw);
        max-height: 520px;
        border-radius: 28px;
        box-shadow:
            0 0 0 7px #1a1a1a,
            0 0 0 9px #2a2a2a,
            0 18px 40px rgba(149, 122, 251, 0.3),
            0 6px 16px rgba(0, 0, 0, 0.22);
    }

    .ent-livedemo__stage.is-desktop .ent-livedemo__phone {
        width: min(100%, 100%);
        height: 220px;
        border-radius: 12px;
        box-shadow:
            0 0 0 6px #1a1a1a,
            0 0 0 8px #2a2a2a,
            0 16px 36px rgba(149, 122, 251, 0.26),
            0 6px 16px rgba(0, 0, 0, 0.18);
    }

    .ent-livedemo__stage.is-desktop .ent-livedemo__screen {
        padding: 24px 20px 18px;
    }

    .ent-livedemo__phone-fallback::before {
        width: 72px;
        height: 18px;
        top: 8px;
    }

    .ent-livedemo__screen {
        padding: 52px 16px 20px;
    }

    .ent-livedemo__portal-logo {
        width: 72px;
        height: 72px;
        font-size: 1.2rem;
    }

    .ent-livedemo__portal-msg {
        font-size: 1.2rem;
    }

    .ent-livedemo__portal-tagline {
        margin-bottom: 48px;
        font-size: 0.75rem;
        max-width: 180px;
    }

    .ent-livedemo__portal-cta {
        max-width: 200px;
        padding: 12px 14px;
        font-size: 0.7rem;
    }

    .ent-livedemo__portal-terms {
        max-width: 200px;
        font-size: 0.58rem;
    }

    .ent-livedemo__form-fields {
        max-width: 200px;
        gap: 8px;
    }

    .ent-livedemo__form-input {
        height: 30px;
    }

    .ent-livedemo__logo-drop {
        gap: 10px;
        padding: 12px;
    }

    .ent-livedemo__logo-drop-text strong {
        font-size: 0.76rem;
    }

    .ent-livedemo__logo-drop-text span {
        font-size: 0.68rem;
    }

    .ent-livedemo__disclaimer {
        font-size: 0.65rem;
        margin-top: 6px;
        padding: 0 4px;
    }
}

@media (max-width: 420px) {
    .ent-livedemo {
        padding: 36px 10px 56px;
    }

    .ent-livedemo__frame {
        padding: 14px 10px 16px;
        border-radius: 16px;
        border-width: 1px;
    }

    .ent-livedemo__badge {
        font-size: 0.82rem;
        padding: 5px 12px;
    }

    .ent-livedemo__title {
        font-size: 1.2rem;
    }

    .ent-livedemo__tab {
        font-size: 0.82rem;
        padding: 9px 8px;
        letter-spacing: 0.04em;
    }

    .ent-livedemo__phone {
        width: min(210px, 72vw);
        height: min(430px, 148vw);
        border-radius: 26px;
        box-shadow:
            0 0 0 6px #1a1a1a,
            0 0 0 8px #2a2a2a,
            0 14px 32px rgba(149, 122, 251, 0.28),
            0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .ent-livedemo__screen {
        padding: 46px 14px 16px;
    }

    .ent-livedemo__portal-logo {
        width: 64px;
        height: 64px;
    }

    .ent-livedemo__portal-msg {
        font-size: 1.1rem;
    }

    .ent-livedemo__portal-tagline {
        margin-bottom: 36px;
    }

    .ent-livedemo__shapes {
        flex-direction: column;
    }

    .ent-livedemo__shape {
        width: 100%;
        text-align: left;
    }

    .ent-livedemo__shape.is-active {
        padding-right: 14px;
    }

    .ent-livedemo__shape-badge {
        position: static;
        transform: none;
        margin-left: 8px;
        display: none;
        vertical-align: middle;
    }

    .ent-livedemo__shape.is-active .ent-livedemo__shape-badge {
        display: inline-block;
    }
}

/* ================================================================
   PANEL SECTION  –  .ent-panel
   Carrusel de capturas del panel de control
   ================================================================ */

.ent-panel.ent-reveal-section {
    --ent-reveal-duration: 5s;
    --ent-reveal-duration-fade: 4.5s;
}

.ent-panel {
    position: relative;
    z-index: 1;
    background: #000;
    color: #fff;
    padding: 50px 24px 150px;
    overflow: hidden;
}

.ent-panel__container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

.ent-panel__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
    padding: 0 12px;
}

.ent-panel__title {
    margin: 0 0 clamp(18px, 2.4vw, 28px);
    font-family: 'Touche', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.8rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
}

.ent-panel__title--purple {
    display: inline-block;
    color: #957AFB;
}

.ent-panel__subtitle {
    margin: 0 auto;
    max-width: 42em;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.35rem, 1.8vw, 2.5rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.ent-panel__subtitle--purple {
    color: #957AFB;
    font-style: italic;
}

.ent-panel__carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3.5vw, 48px);
    width: 100%;
    margin-bottom: clamp(36px, 4.5vw, 56px);
}

.ent-panel__arrow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(72px, 10vw, 120px);
    height: clamp(72px, 10vw, 120px);
    padding: 0;
    border: 0;
    background: transparent;
    color: #957AFB;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.ent-panel__arrow svg {
    display: block;
    width: clamp(64px, 9vw, 110px);
    height: auto;
}

.ent-panel__arrow:hover {
    color: #B8A4FF;
    transform: scale(1.06);
}

.ent-panel__arrow:focus-visible {
    outline: 2px solid rgba(149, 122, 251, 0.85);
    outline-offset: 4px;
    border-radius: 8px;
}

.ent-panel__stage {
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(1120px, 100%);
}

.ent-panel__slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(72vh, 680px);
}

.ent-panel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transform: translateX(28px) scale(0.97);
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.55s;
}

.ent-panel__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
    transform: translateX(0) scale(1);
}

.ent-panel__slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    padding: 15px;
    border: 1px solid #fff;
    box-sizing: border-box;
    background-color: #000;
    border-radius: 10px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.42));
}

@keyframes ent-panel-img-enter {
    from {
        opacity: 0.6;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.ent-panel.is-in-view:not(.ent-panel--animate-slides) .ent-panel__slide.is-active img {
    animation: ent-panel-img-enter 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

.ent-panel.ent-panel--animate-slides .ent-panel__slide.is-active img {
    animation: ent-panel-img-enter 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
    .ent-panel__slide {
        transition: none !important;
        transform: none !important;
    }

    .ent-panel.is-in-view .ent-panel__slide.is-active img {
        animation: none !important;
    }
}

.ent-panel__footer {
    position: relative;
    min-height: 4.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.ent-panel__caption {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 46em);
    margin: 0;
    padding: 0 12px;
    font-family: 'Touche', sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 2.4rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% + 10px));
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
}

.ent-panel__caption strong {
    font-weight: 700;
    color: #fff;
}

.ent-panel__caption.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

@media (max-width: 991px) {
    .ent-panel {
        padding: 72px 20px 100px;
    }

    .ent-panel__header {
        margin-bottom: 32px;
    }

    .ent-panel__carousel {
        gap: 16px;
        margin-bottom: 32px;
    }

    .ent-panel__arrow {
        width: 64px;
        height: 64px;
    }

    .ent-panel__arrow svg {
        width: 56px;
    }

    .ent-panel__slides {
        max-height: min(56vh, 520px);
    }

    .ent-panel__footer {
        min-height: 5.2em;
    }
}

@media (max-width: 767px) {
    .ent-panel {
        padding: 30px 16px 88px;
    }

    .ent-panel__title {
        font-size: clamp(2rem, 7vw, 2.6rem);
        line-height: 1.12;
    }

    .ent-panel__subtitle {
        font-size: clamp(1.2rem, 3.8vw, 1.45rem);
        line-height: 1.4;
        max-width: 100%;
    }

    /* En mobile el texto envuelve solo; sin saltos forzados del desktop */
    .ent-panel__br {
        display: none;
    }

    .ent-panel__carousel {
        gap: 10px;
    }

    .ent-panel__arrow {
        width: 52px;
        height: 52px;
    }

    .ent-panel__arrow svg {
        width: 44px;
    }

    .ent-panel__slides {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .ent-panel__caption {
        font-size: clamp(1.2rem, 4vw, 1.45rem);
        line-height: 1.45;
        width: 100%;
    }

    .ent-panel__footer {
        min-height: 6.5em;
    }
}

@media (max-width: 479px) {
    .ent-panel__arrow--prev {
        margin-left: -4px;
    }

    .ent-panel__arrow--next {
        margin-right: -4px;
    }
}


/* ================================================================
   EMAIL MKT SECTION  –  .ent-emailmkt
   Flyers verticales en carrusel infinito continuo
   ================================================================ */

.ent-emailmkt {
    position: relative;
    background: #141414;
    color: #fff;
    padding: 150px 24px 100px;
    overflow: hidden;
}

.ent-emailmkt__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.ent-emailmkt__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.ent-emailmkt__title {
    margin: 0 auto;
    max-width: none;
    font-family: 'Touche', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #fff;
}

.ent-emailmkt__br {
    display: inline;
}

.ent-emailmkt__title--purple {
    color: #957AFB;
}

.ent-emailmkt__title--bold {
    font-weight: 700;
}

.ent-emailmkt__marquee {
    position: relative;
    width: 100%;
    margin-bottom: clamp(48px, 6vw, 72px);
    overflow: hidden;
    padding: 8px 0 12px;
}

.ent-emailmkt__track {
    display: flex;
    align-items: flex-end;
    gap: clamp(20px, 3vw, 3px);
    width: max-content;
    will-change: transform;
}

.ent-emailmkt__flyer {
    flex: 0 0 auto;
    width: clamp(200px, 18vw, 300px);
}

.ent-emailmkt__flyer img {
    display: block;
    width: 90%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.ent-emailmkt__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
}

.ent-emailmkt__footer-glow {
    width: min(180px, 38vw);
    height: 2px;
    margin: 0 0 clamp(20px, 3vw, 32px);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #957AFB 18%, #c4b0ff 50%, #957AFB 82%, transparent);
    box-shadow: 0 0 24px rgba(149, 122, 251, 0.5);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
}

.ent-emailmkt.is-in-view .ent-emailmkt__footer-glow {
    animation: ent-emailmkt-glow-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.ent-emailmkt__footer-box {
    margin: 0;
    max-width: 44em;
    font-family: 'Touche', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: none;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 40px;
}

.ent-emailmkt__highlight {
    font-weight: 500;
    background: linear-gradient(100deg, #d8cbff 0%, #957AFB 45%, #c4b0ff 55%, #d8cbff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-emailmkt.is-in-view .ent-emailmkt__highlight {
    animation: ent-emailmkt-highlight 4s ease-in-out 1.1s infinite;
}

@keyframes ent-emailmkt-glow-in {
    from { opacity: 0; transform: scaleX(0); }
    to   { opacity: 1; transform: scaleX(1); }
}

@keyframes ent-emailmkt-highlight {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

@media (max-width: 991px) {
    .ent-emailmkt {
        padding: 72px 20px 100px;
    }

    .ent-emailmkt__header {
        margin-bottom: 36px;
        padding: 0 8px;
    }

    .ent-emailmkt__title {
        font-size: clamp(1.75rem, 5vw, 2.35rem);
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .ent-emailmkt__title--bold {
        font-weight: 700;
    }

    .ent-emailmkt__marquee {
        margin-bottom: 36px;
    }

    .ent-emailmkt__flyer {
        width: clamp(180px, 28vw, 260px);
    }

    .ent-emailmkt__footer-box {
        font-size: clamp(1.05rem, 3.2vw, 1.2rem);
        font-weight: 400;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.72);
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .ent-emailmkt {
        padding: 70px 16px 80px;
    }

    .ent-emailmkt__header {
        margin-bottom: 28px;
        padding: 0 4px;
    }

    .ent-emailmkt__title {
        font-size: clamp(1.55rem, 6.2vw, 2rem);
        line-height: 1.22;
        letter-spacing: -0.015em;
    }

    .ent-emailmkt__br {
        display: none;
    }

    .ent-emailmkt__marquee {
        margin-bottom: 28px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }

    .ent-emailmkt__track {
        gap: 14px;
    }

    .ent-emailmkt__flyer {
        width: clamp(155px, 44vw, 200px);
    }

    .ent-emailmkt__footer {
        padding: 0 6px;
    }

    .ent-emailmkt__footer-box {
        font-size: clamp(0.95rem, 3.8vw, 1.1rem);
        line-height: 1.5;
        margin-top: 24px;
        max-width: 32em;
    }
}

@media (max-width: 420px) {
    .ent-emailmkt {
        padding: 48px 14px 68px;
    }

    .ent-emailmkt__title {
        font-size: clamp(1.4rem, 7vw, 1.75rem);
    }

    .ent-emailmkt__marquee {
        margin-left: -14px;
        margin-right: -14px;
        width: calc(100% + 28px);
    }

    .ent-emailmkt__flyer {
        width: clamp(140px, 48vw, 180px);
    }

    .ent-emailmkt__footer-box {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ent-emailmkt__track {
        will-change: auto;
    }

    .ent-emailmkt.is-in-view .ent-emailmkt__footer-glow {
        animation: none;
        opacity: 1;
        transform: scaleX(1);
    }

    .ent-emailmkt.is-in-view .ent-emailmkt__highlight {
        animation: none;
        background: none;
        color: #c4b0ff;
    }
}

