/* /Layout/MainLayout.razor.rz.scp.css */
/* Estilo para el contenedor del encabezado */
.top-row[b-df61vm0lbt] {
    background-color: #060f29;
    padding: 0.5rem 1rem;
    height: 3rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* Estilo para el nombre de la marca */
.navbar-brand[b-df61vm0lbt] {
    color: #ffffff;
}

/* Estilo para la pagina */
.page[b-df61vm0lbt] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main[b-df61vm0lbt] {
    flex-grow: 1;
    margin: 0;
    background-color: #060f29;
    padding-top: 56px;
}

.content[b-df61vm0lbt] {
    padding: 0;
    margin: 0;
}

@media (max-width: 641px) {
    .top-row[b-df61vm0lbt] {
        justify-content: space-between;
    }

    .top-row[b-df61vm0lbt]  a, .top-row[b-df61vm0lbt]  .btn-link {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    main[b-df61vm0lbt] {
        padding-top: 48px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Clase para alinear los enlaces de navegacion a la derecha */
.navbar-nav[b-ppv0vfqp1l] {
    margin-left: auto;
    gap: 5px;
}

.nav-link[b-ppv0vfqp1l] {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link[b-ppv0vfqp1l]::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #3e66ae);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover[b-ppv0vfqp1l] {
    color: #00aaff !important;
    background: rgba(0, 170, 255, 0.08);
}

.nav-link:hover[b-ppv0vfqp1l]::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active link styling */
.nav-link.active[b-ppv0vfqp1l] {
    color: #00aaff !important;
    background: rgba(0, 170, 255, 0.12);
}

.nav-link.active[b-ppv0vfqp1l]::after {
    transform: translateX(-50%) scaleX(1);
}

/* Clase para el color de fondo del NavMenu - Glassmorphism */
.nav-background[b-ppv0vfqp1l] {
    background: rgba(6, 15, 41, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 170, 255, 0.1);
    transition: all 0.3s ease;
    padding: 8px 0;
}

/* Clase para el logo */
.navbar-logo[b-ppv0vfqp1l] {
    height: 34px;
    margin-right: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-logo:hover[b-ppv0vfqp1l] {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.5));
}

/* Toggler styling */
.navbar-toggler[b-ppv0vfqp1l] {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover[b-ppv0vfqp1l] {
    border-color: rgba(0, 170, 255, 0.5) !important;
    background: rgba(0, 170, 255, 0.1);
}

.navbar-toggler:focus[b-ppv0vfqp1l] {
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.25) !important;
}

/* Dropdown styling */
.dropdown-menu-dark[b-ppv0vfqp1l] {
    background: rgba(6, 15, 41, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 170, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin-top: 8px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item[b-ppv0vfqp1l] {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover[b-ppv0vfqp1l],
.dropdown-item:focus[b-ppv0vfqp1l] {
    background: rgba(0, 170, 255, 0.1) !important;
    color: #00aaff !important;
}

.dropdown-toggle[b-ppv0vfqp1l]::after {
    margin-left: 6px;
    vertical-align: 2px;
    border-top-width: 5px;
    border-right-width: 4px;
    border-left-width: 4px;
    transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"][b-ppv0vfqp1l]::after {
    transform: rotate(180deg);
}

/* Scrollbar for long dropdown */
.dropdown-menu-dark[b-ppv0vfqp1l]::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu-dark[b-ppv0vfqp1l]::-webkit-scrollbar-thumb {
    background: rgba(0, 170, 255, 0.3);
    border-radius: 4px;
}

.dropdown-menu-dark[b-ppv0vfqp1l]::-webkit-scrollbar-track {
    background: transparent;
}
/* /Pages/ContactoOpt.razor.rz.scp.css */
/* ============================================================
   OPTECHNOLOGIES LANDING — base visual heredada de HomeUltra
   con ritmo y refinamiento SaaS premium.
   ============================================================ */

/* ========== PAGE WRAPPER ========== */
.hu-page[b-cmitxsfaub] {
    background: #030812;
    min-height: 100vh;
    color: #e0e6f0;
    overflow-x: hidden;
}

/* ========== SCROLL PROGRESS ========== */
.hu-progress[b-cmitxsfaub] {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px; z-index: 9999; background: rgba(255,255,255,0.03);
}
.hu-progress-bar[b-cmitxsfaub] {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #0077cc, #00aaff, #00ddff, #7df9ff);
    transition: width 0.05s linear;
    box-shadow: 0 0 12px rgba(0,170,255,0.5);
}

/* ========== CANVAS ========== */
.hu-canvas[b-cmitxsfaub] {
    position: fixed; inset: 0;
    width: 100% !important; height: 100% !important;
    z-index: 0; pointer-events: none;
}

/* ========== CURSOR GLOW ========== */
.hu-cursor-glow[b-cmitxsfaub] {
    position: fixed; width: 400px; height: 400px;
    border-radius: 50%; pointer-events: none; z-index: 1;
    background: radial-gradient(circle, rgba(0,170,255,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.hu-page:hover .hu-cursor-glow[b-cmitxsfaub] { opacity: 1; }

/* ========== REVEAL ========== */
.hu-reveal[b-cmitxsfaub] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hu-reveal.hu-visible[b-cmitxsfaub] { opacity: 1; transform: translateY(0); }

.hu-word-reveal[b-cmitxsfaub] {
    display: inline-block;
    opacity: 0; transform: translateY(100%) rotateX(-80deg);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    transform-origin: bottom center;
}
.hu-word-reveal.hu-visible[b-cmitxsfaub] { opacity: 1; transform: translateY(0) rotateX(0); }

/* ========== COMMON ========== */
.hu-gradient-text[b-cmitxsfaub] {
    background: linear-gradient(135deg, #00aaff 0%, #00ddff 50%, #7df9ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hu-tag[b-cmitxsfaub] {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; color: rgba(96,165,250,0.6);
    margin-bottom: 16px; text-transform: uppercase;
}

.hu-section-title[b-cmitxsfaub] {
    font-size: clamp(1.9rem, 4.2vw, 2.7rem); font-weight: 800;
    color: #e0e6f0; letter-spacing: -0.02em; line-height: 1.15;
    margin: 0 0 32px;
}

.hu-section[b-cmitxsfaub] { position: relative; z-index: 2; padding: 110px 24px; }
.hu-inner[b-cmitxsfaub] { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ========== HERO (idéntico a HomeUltra) ========== */
.hu-hero[b-cmitxsfaub] {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, #0a1f4d 0%, #040b1e 70%);
    overflow: hidden; padding: 0 24px; z-index: 2;
}

.hu-hero-bg[b-cmitxsfaub] {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    background: url('Images/FondoPrincipalNuevoLogo.png') center center / cover no-repeat;
    z-index: 0;
    animation: optKenBurns-b-cmitxsfaub 25s ease-in-out infinite alternate;
}
@keyframes optKenBurns-b-cmitxsfaub {
    0%   { transform: scale(1) translate(0,0); }
    33%  { transform: scale(1.08) translate(-1.5%,-1%); }
    66%  { transform: scale(1.05) translate(1%,-0.5%); }
    100% { transform: scale(1.1) translate(-0.5%,1%); }
}

.hu-hero-overlay[b-cmitxsfaub] {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,11,30,0.5) 0%, rgba(4,11,30,0.65) 40%, rgba(3,8,18,0.95) 100%);
    z-index: 1;
}

.hu-hero-grid[b-cmitxsfaub] {
    position: absolute; inset: 0; z-index: 2;
    background-image:
        linear-gradient(rgba(0,170,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,170,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    animation: optGridPulse-b-cmitxsfaub 8s ease-in-out infinite alternate;
}
@keyframes optGridPulse-b-cmitxsfaub { 0% { opacity:.4 } 100% { opacity:.8 } }

.hu-glow[b-cmitxsfaub] {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 2;
}
.hu-glow--1[b-cmitxsfaub] { width: 600px; height: 600px; top: -10%; left: -10%; background: rgba(0,100,255,0.15); animation: optF1-b-cmitxsfaub 12s ease-in-out infinite alternate; }
.hu-glow--2[b-cmitxsfaub] { width: 500px; height: 500px; bottom: -15%; right: -10%; background: rgba(0,200,255,0.1); animation: optF2-b-cmitxsfaub 10s ease-in-out infinite alternate; }
.hu-glow--3[b-cmitxsfaub] { width: 300px; height: 300px; top: 30%; right: 20%; background: rgba(100,100,255,0.08); animation: optF3-b-cmitxsfaub 15s ease-in-out infinite alternate; }
@keyframes optF1-b-cmitxsfaub { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes optF2-b-cmitxsfaub { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,-30px)} }
@keyframes optF3-b-cmitxsfaub { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-30px,50px) scale(1.3)} }

.hu-hero-content[b-cmitxsfaub] { position: relative; z-index: 3; max-width: 880px; }

.hu-hero-badge[b-cmitxsfaub] {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(0,170,255,0.8);
    background: rgba(0,170,255,0.06); border: 1px solid rgba(0,170,255,0.15);
    border-radius: 50px; padding: 10px 24px; margin-bottom: 32px;
    position: relative;
    top: -80px;
}
.hu-badge-dot[b-cmitxsfaub] {
    width: 6px; height: 6px; border-radius: 50%; background: #00aaff;
    animation: optDotPulse-b-cmitxsfaub 2s ease-in-out infinite;
}
@keyframes optDotPulse-b-cmitxsfaub {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,170,255,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0,170,255,0); }
}

.hu-hero-title[b-cmitxsfaub] {
    font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800;
    line-height: 1.06; color: #fff; margin: 0 0 28px; letter-spacing: -0.04em;
}
.hu-text-line[b-cmitxsfaub] { display: block; }

/* ===== NEBULA TEXT EFFECT ===== */
.nebula-text[b-cmitxsfaub] {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #0077cc 0%,
        #00aaff 15%,
        #00ddff 35%,
        #7df9ff 50%,
        #00ddff 65%,
        #00aaff 85%,
        #0077cc 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nebulaFlow-b-cmitxsfaub 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(0,170,255,0.3));
}
.nebula-text[b-cmitxsfaub]::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: none;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    text-shadow:
        0 0 40px rgba(0,119,204,0.4),
        0 0 80px rgba(0,170,255,0.2),
        0 0 120px rgba(0,221,255,0.1);
    animation: nebulaGlow-b-cmitxsfaub 4s ease-in-out infinite alternate;
}
@keyframes nebulaFlow-b-cmitxsfaub {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes nebulaGlow-b-cmitxsfaub {
    0%   { opacity: 0.6; filter: blur(1px); }
    100% { opacity: 1; filter: blur(0px); }
}

/* ===== HERO ===== */
.hu-hero-sub[b-cmitxsfaub] {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.6); line-height: 1.7;
    max-width: 680px; margin: 0 auto 36px;
}

.opt-hero-micro[b-cmitxsfaub] {
    margin: 28px auto 0;
    font-size: 0.85rem;
    color: rgba(180,195,220,0.4);
    letter-spacing: 0.005em;
    max-width: 600px;
}

/* ========== SCROLL CUE ========== */
.hu-scroll-cue[b-cmitxsfaub] {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hu-scroll-cue span[b-cmitxsfaub] {
    font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(180,195,220,0.25); text-transform: uppercase;
}
.hu-scroll-bar[b-cmitxsfaub] {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(0,170,255,0.5), transparent);
    animation: optScrollPulse-b-cmitxsfaub 2s ease-in-out infinite;
}
@keyframes optScrollPulse-b-cmitxsfaub { 0%,100% { opacity:.3; transform:scaleY(1) } 50% { opacity:1; transform:scaleY(1.4) } }

/* ========== BUTTONS ========== */
.hu-hero-btns[b-cmitxsfaub] { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hu-btn[b-cmitxsfaub] {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 34px; font-weight: 600; font-size: 0.95rem;
    border: none; border-radius: 14px; text-decoration: none;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.hu-btn--magnetic[b-cmitxsfaub] {
    background: linear-gradient(135deg, #0066bb, #00aaff);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,120,255,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hu-btn--magnetic:hover[b-cmitxsfaub] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,120,255,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    color: #fff; text-decoration: none;
}
.hu-btn--nebula[b-cmitxsfaub] {
    position: relative;
    overflow: hidden;
    background: none;
    border: 1px solid rgba(0,170,255,0.3);
    color: #fff;
}
.hu-btn--nebula[b-cmitxsfaub]::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        #0077cc 0%,
        #00aaff 15%,
        #00ddff 35%,
        #7df9ff 50%,
        #00ddff 65%,
        #00aaff 85%,
        #0077cc 100%
    );
    background-size: 250% 100%;
    animation: nebulaFlow-b-cmitxsfaub 6s ease-in-out infinite alternate;
    opacity: 0.85;
}
.hu-btn--nebula span[b-cmitxsfaub] {
    position: relative;
    z-index: 1;
    color: #fff;
}
.hu-btn--nebula:hover[b-cmitxsfaub]::before {
    opacity: 1;
}
.hu-btn--nebula:hover[b-cmitxsfaub] {
    color: #fff;
    box-shadow: 0 0 30px rgba(0,170,255,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hu-btn-shine[b-cmitxsfaub] {
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: rotate(25deg) translateX(-120%);
    transition: none;
}
.hu-btn--magnetic:hover .hu-btn-shine[b-cmitxsfaub] { animation: optShine-b-cmitxsfaub 0.6s ease forwards; }
@keyframes optShine-b-cmitxsfaub { 0% { transform: rotate(25deg) translateX(-120%); } 100% { transform: rotate(25deg) translateX(120%); } }

.hu-btn--ghost[b-cmitxsfaub] {
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.hu-btn--ghost:hover[b-cmitxsfaub] {
    border-color: rgba(0,170,255,0.3); color: #fff;
    background: rgba(0,170,255,0.04); text-decoration: none;
}
.hu-btn--lg[b-cmitxsfaub] { padding: 18px 42px; font-size: 1.05rem; }

/* ========== SHARED CARD UTILS ========== */
.hu-card-glow[b-cmitxsfaub] {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0; transition: opacity 0.5s;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0,170,255,0.10), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.opt-card-border[b-cmitxsfaub] {
    position: absolute; inset: 0; pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.5s;
}
.opt-prose[b-cmitxsfaub] {
    font-size: 1rem; line-height: 1.75;
    color: rgba(200,212,232,0.72);
    margin: 0 0 18px;
}
.opt-prose:last-child[b-cmitxsfaub] { margin-bottom: 0; }
.opt-section-lead[b-cmitxsfaub] {
    text-align: center;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: rgba(200,212,232,0.55);
    line-height: 1.7;
    max-width: 720px;
    margin: -16px auto 50px;
}

/* ========== TRUST BAR (sin fondo, animaciones premium) ========== */
.opt-trust[b-cmitxsfaub] {
    position: relative; z-index: 2;
    padding: 64px 24px;
    background: transparent;
}
.opt-trust-inner[b-cmitxsfaub] {
    display: flex; justify-content: center; align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
}
.opt-trust-item[b-cmitxsfaub] {
    position: relative;
    display: flex; align-items: center;
    gap: 14px;
    padding: 12px 20px;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    flex: 0 0 auto;
}
.opt-trust-item:hover[b-cmitxsfaub] { transform: translateY(-5px); }

/* halo radial detrás del icono — aparece en hover */
.opt-trust-icon[b-cmitxsfaub] {
    position: relative;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    flex-shrink: 0;
    animation: optTrustFloat-b-cmitxsfaub 5.5s ease-in-out infinite;
}
.opt-trust-icon[b-cmitxsfaub]::before {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,0.22) 0%, rgba(125,249,255,0.06) 45%, transparent 75%);
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    pointer-events: none;
}
.opt-trust-item:hover .opt-trust-icon[b-cmitxsfaub] { animation-play-state: paused; }
.opt-trust-item:hover .opt-trust-icon[b-cmitxsfaub]::before {
    opacity: 1;
    transform: scale(1.45);
}

/* delays escalonados para que cada icono flote desincronizado
   (1,3,5,7,9 porque hay un divider entre cada par de items) */
.opt-trust-item:nth-child(1) .opt-trust-icon[b-cmitxsfaub] { animation-delay: 0s; }
.opt-trust-item:nth-child(3) .opt-trust-icon[b-cmitxsfaub] { animation-delay: 0.55s; }
.opt-trust-item:nth-child(5) .opt-trust-icon[b-cmitxsfaub] { animation-delay: 1.10s; }
.opt-trust-item:nth-child(7) .opt-trust-icon[b-cmitxsfaub] { animation-delay: 1.65s; }
.opt-trust-item:nth-child(9) .opt-trust-icon[b-cmitxsfaub] { animation-delay: 2.20s; }

.opt-trust-item img[b-cmitxsfaub] {
    position: relative; z-index: 1;
    width: 44px; height: 44px;
    filter: drop-shadow(0 2px 10px rgba(0,170,255,0.28));
    transition: filter 0.45s, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.opt-trust-item:hover img[b-cmitxsfaub] {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 22px rgba(0,170,255,0.7)) brightness(1.12);
}

@keyframes optTrustFloat-b-cmitxsfaub {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
}

/* label con subrayado animado en gradient */
.opt-trust-label[b-cmitxsfaub] {
    position: relative;
    font-size: 0.92rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: -0.005em;
    transition: color 0.4s, transform 0.45s cubic-bezier(.4,0,.2,1);
}
.opt-trust-label[b-cmitxsfaub]::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, #00aaff, #7df9ff);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0,170,255,0.5);
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.opt-trust-item:hover .opt-trust-label[b-cmitxsfaub] {
    color: #fff;
    transform: translateX(2px);
}
.opt-trust-item:hover .opt-trust-label[b-cmitxsfaub]::after { width: 100%; }

.opt-trust-divider[b-cmitxsfaub] {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

@media (max-width: 1100px) {
    .opt-trust-inner[b-cmitxsfaub] { flex-wrap: wrap; }
    .opt-trust-divider:nth-of-type(2n)[b-cmitxsfaub] { display: none; }
}

@media (max-width: 768px) {
    .opt-trust[b-cmitxsfaub] { padding: 40px 12px; }
    .opt-trust-inner[b-cmitxsfaub] { flex-wrap: wrap; }
    .opt-trust-item[b-cmitxsfaub] { padding: 10px 18px; gap: 12px; }
    .opt-trust-icon[b-cmitxsfaub] { width: 44px; height: 44px; }
    .opt-trust-item img[b-cmitxsfaub] { width: 32px; height: 32px; }
    .opt-trust-label[b-cmitxsfaub] { font-size: 0.8rem; }
    .opt-trust-divider[b-cmitxsfaub] { display: none; }
}

/* ========== S2 — BENEFICIOS RÁPIDOS ========== */
.opt-quick[b-cmitxsfaub] { padding: 110px 24px 80px; }
.opt-quick-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.opt-quick-card[b-cmitxsfaub] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 16px;
    padding: 30px 24px 26px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-quick-card[b-cmitxsfaub]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-quick-card:hover .hu-card-glow[b-cmitxsfaub] { opacity:1; }
.opt-quick-card:hover .opt-card-border[b-cmitxsfaub] { border-color: rgba(0,170,255,0.22); }
.opt-quick-card:hover[b-cmitxsfaub] { box-shadow: 0 16px 40px rgba(0,80,200,0.12); }
.opt-quick-icon[b-cmitxsfaub] {
    position: relative; z-index: 1;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(0,170,255,0.08);
    border: 1px solid rgba(0,170,255,0.18);
    color: #00aaff;
    margin-bottom: 18px;
    transition: transform 0.3s, background 0.3s;
}
.opt-quick-card:hover .opt-quick-icon[b-cmitxsfaub] { transform: scale(1.06); background: rgba(0,170,255,0.13); }
.opt-quick-card h3[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 1.05rem; font-weight: 700; color: #d6deec;
    margin: 0 0 8px; letter-spacing: -0.01em;
}
.opt-quick-card p[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 0.88rem; color: rgba(180,195,220,0.55);
    line-height: 1.55; margin: 0;
}

/* ========== S3 — PROBLEMA ========== */
.opt-problem[b-cmitxsfaub] { padding: 90px 24px; }
.opt-problem-inner[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.opt-problem-stack[b-cmitxsfaub] {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 14px;
    padding: 32px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.005));
    border: 1px solid rgba(255,255,255,0.06);
    isolation: isolate;
    overflow: hidden;
}
.opt-problem-stack[b-cmitxsfaub]::before {
    content:""; position:absolute; inset:-1px; border-radius:22px; pointer-events:none;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,170,255,0.08), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(125,249,255,0.06), transparent 55%);
    z-index:-1;
}
.opt-problem-stack[b-cmitxsfaub]::after {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none;
}
.opt-chip[b-cmitxsfaub] {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.85rem; font-weight: 600;
    color: rgba(220,232,250,0.78);
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
    justify-content: flex-start;
}
.opt-chip svg[b-cmitxsfaub] { color: rgba(0,170,255,0.55); flex-shrink: 0; }
.opt-chip--a[b-cmitxsfaub] { transform: rotate(-1.5deg); }
.opt-chip--b[b-cmitxsfaub] { transform: rotate(1deg); }
.opt-chip--c[b-cmitxsfaub] { transform: rotate(-0.5deg); }
.opt-chip--d[b-cmitxsfaub] { transform: rotate(1.8deg); }
.opt-chip--e[b-cmitxsfaub] { transform: rotate(-1deg); }
.opt-chip--f[b-cmitxsfaub] { transform: rotate(0.8deg); }
.opt-chip:hover[b-cmitxsfaub] {
    transform: rotate(0) translateY(-2px);
    border-color: rgba(0,170,255,0.25);
    background: rgba(0,170,255,0.06);
}

/* ========== S4 — ANTES Y DESPUÉS ========== */
.opt-vs[b-cmitxsfaub] { padding: 100px 24px; }
.opt-vs-bad-text[b-cmitxsfaub] {
    color: rgba(220,232,250,0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(220,80,80,0.4);
    text-decoration-thickness: 2px;
}
.opt-vs-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 44px;
}
.opt-vs-col[b-cmitxsfaub] {
    position: relative;
    padding: 36px 32px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
}
.opt-vs-col--before[b-cmitxsfaub] {
    background: linear-gradient(180deg, rgba(80,30,30,0.18), rgba(40,20,20,0.05));
    border: 1px solid rgba(220,80,80,0.14);
}
.opt-vs-col--after[b-cmitxsfaub] {
    background: linear-gradient(180deg, rgba(0,80,180,0.16), rgba(0,40,100,0.04));
    border: 1px solid rgba(0,170,255,0.20);
}
.opt-vs-col[b-cmitxsfaub]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    pointer-events:none;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
}
.opt-vs-col--before[b-cmitxsfaub]::before {
    background: linear-gradient(90deg, transparent, rgba(255,180,180,0.22), transparent);
}
.opt-vs-label[b-cmitxsfaub] {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(220,80,80,0.1);
    color: rgba(255,170,170,0.9);
    border: 1px solid rgba(220,80,80,0.25);
    margin-bottom: 22px;
}
.opt-vs-label--good[b-cmitxsfaub] {
    background: rgba(0,170,255,0.08);
    color: rgba(125,249,255,0.95);
    border-color: rgba(0,170,255,0.28);
}
.opt-vs-col ul[b-cmitxsfaub] { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.opt-vs-col li[b-cmitxsfaub] {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.95rem; line-height: 1.5;
    color: rgba(200,212,232,0.72);
}
.opt-vs-cross[b-cmitxsfaub], .opt-vs-check[b-cmitxsfaub] {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem; font-weight: 700;
    margin-top: 1px;
}
.opt-vs-cross[b-cmitxsfaub] { background: rgba(220,80,80,0.14); color: rgba(255,170,170,0.9); }
.opt-vs-check[b-cmitxsfaub] { background: rgba(0,170,255,0.14); color: #7df9ff; }
.opt-vs-arrow[b-cmitxsfaub] {
    align-self: center;
    color: rgba(0,170,255,0.55);
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0,170,255,0.06);
    border: 1px solid rgba(0,170,255,0.18);
}

/* ========== QUOTE / FRASE DESTACADA ========== */
.opt-quote[b-cmitxsfaub] {
    text-align: left;
    font-size: clamp(1.1rem, 1.7vw, 1.3rem);
    font-weight: 500;
    color: rgba(220,232,250,0.85);
    line-height: 1.55;
    max-width: 820px;
    margin: 30px auto 0;
    padding: 22px 28px;
    border-left: 2px solid rgba(0,170,255,0.45);
    background: rgba(0,170,255,0.025);
    border-radius: 0 14px 14px 0;
    letter-spacing: -0.01em;
}
.opt-quote--center[b-cmitxsfaub] {
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(0,170,255,0.18);
    border-bottom: 1px solid rgba(0,170,255,0.18);
    border-radius: 0;
    background: transparent;
    padding: 26px 24px;
    margin-top: 50px;
}

/* ========== S5 — QUÉ HACEMOS ========== */
.opt-services[b-cmitxsfaub] { padding: 110px 24px; }
.opt-services-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.opt-service-card[b-cmitxsfaub] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 18px;
    padding: 36px 28px 30px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-service-card[b-cmitxsfaub]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-service-card:hover .hu-card-glow[b-cmitxsfaub] { opacity: 1; }
.opt-service-card:hover .opt-card-border[b-cmitxsfaub] { border-color: rgba(0,170,255,0.22); }
.opt-service-card:hover[b-cmitxsfaub] { box-shadow: 0 18px 50px rgba(0,80,200,0.12); }
.opt-card-num[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
    color: rgba(0,170,255,0.55);
    display: block; margin-bottom: 14px;
}
.opt-service-card h3[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 1.1rem; font-weight: 700; color: #d6deec;
    margin: 0 0 10px; letter-spacing: -0.01em;
}
.opt-service-card p[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 0.92rem; color: rgba(180,195,220,0.6);
    line-height: 1.6; margin: 0;
}

/* ========== S6 — IA APLICADA ========== */
.opt-ai[b-cmitxsfaub] { padding: 100px 24px; }
.opt-ai-list[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    list-style: none;
    padding: 0;
    max-width: 820px;
    margin: 0 auto 30px;
}
.opt-ai-list li[b-cmitxsfaub] {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.96rem; line-height: 1.55;
    color: rgba(200,212,232,0.72);
}
.opt-ai-list li[b-cmitxsfaub]::before {
    content: "";
    flex-shrink: 0;
    margin-top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aaff, #7df9ff);
    box-shadow: 0 0 8px rgba(0,170,255,0.4);
}
.opt-ai-flow[b-cmitxsfaub] {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 56px;
    padding: 26px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,80,180,0.06), rgba(0,40,100,0.02));
    border: 1px solid rgba(0,170,255,0.14);
    position: relative;
    isolation: isolate;
}
.opt-flow-step[b-cmitxsfaub] {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    min-width: 110px;
    transition: transform 0.3s;
}
.opt-flow-step:hover[b-cmitxsfaub] { transform: translateY(-3px); }
.opt-flow-step span[b-cmitxsfaub] {
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(220,232,250,0.85);
}
.opt-flow-icon[b-cmitxsfaub] {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,170,255,0.08);
    border: 1px solid rgba(0,170,255,0.22);
    color: rgba(0,170,255,0.9);
}
.opt-flow-step--accent[b-cmitxsfaub] {
    background: linear-gradient(180deg, rgba(0,170,255,0.18), rgba(0,80,180,0.06));
    border-color: rgba(0,170,255,0.45);
    box-shadow: 0 0 22px rgba(0,170,255,0.18);
}
.opt-flow-step--accent span[b-cmitxsfaub] { color: #fff; }
.opt-flow-step--accent .opt-flow-icon[b-cmitxsfaub] {
    background: rgba(0,170,255,0.28);
    border-color: rgba(125,249,255,0.6);
    color: #fff;
}
.opt-flow-line[b-cmitxsfaub] {
    flex: 0 0 auto;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, rgba(0,170,255,0.5), rgba(125,249,255,0.7));
    border-radius: 2px;
    position: relative;
}
.opt-flow-line[b-cmitxsfaub]::after {
    content:""; position:absolute; right:-1px; top:50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 6px solid rgba(125,249,255,0.7);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* ========== S7 — SECTORES ========== */
.opt-sectors[b-cmitxsfaub] { padding: 100px 24px; }
.opt-sectors-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.opt-sector-card[b-cmitxsfaub] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 20px;
    padding: 36px 32px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-sector-card[b-cmitxsfaub]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-sector-card:hover .hu-card-glow[b-cmitxsfaub] { opacity:1; }
.opt-sector-card:hover .opt-card-border[b-cmitxsfaub] { border-color: rgba(0,170,255,0.22); }
.opt-sector-card:hover[b-cmitxsfaub] { box-shadow: 0 18px 50px rgba(0,80,200,0.12); }
.opt-sector-icon[b-cmitxsfaub] {
    position: relative; z-index: 1;
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,170,255,0.18), rgba(0,170,255,0.04));
    border: 1px solid rgba(0,170,255,0.22);
    color: #00aaff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.opt-sector-card:hover .opt-sector-icon[b-cmitxsfaub] { transform: scale(1.06); }
.opt-sector-card h3[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 1.18rem; font-weight: 700;
    color: #d6deec;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.opt-sector-card p[b-cmitxsfaub] {
    position: relative; z-index: 1;
    font-size: 0.94rem; color: rgba(180,195,220,0.6);
    line-height: 1.65; margin: 0;
}

/* ========== S8 — MÉTODO TIMELINE ========== */
.opt-method[b-cmitxsfaub] { padding: 100px 24px; }
.opt-method-timeline[b-cmitxsfaub] {
    position: relative;
    max-width: 820px;
    margin: 50px auto 0;
}
.opt-method-line[b-cmitxsfaub] {
    position: absolute;
    left: 23px; top: 24px; bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(0,170,255,0.55), rgba(0,170,255,0.05));
}
.opt-method-step[b-cmitxsfaub] {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
    align-items: stretch;
}
.opt-method-step:last-child[b-cmitxsfaub] { margin-bottom: 0; }
.opt-method-dot[b-cmitxsfaub] {
    flex-shrink: 0;
    position: relative; z-index: 2;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0066bb, #00aaff);
    color: #fff;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(0,170,255,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.opt-method-card[b-cmitxsfaub] {
    flex: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 22px 26px;
    position: relative;
    isolation: isolate;
    transition: border-color 0.4s, background 0.4s;
}
.opt-method-card[b-cmitxsfaub]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.22), transparent);
    pointer-events:none;
}
.opt-method-step:hover .opt-method-card[b-cmitxsfaub] {
    border-color: rgba(0,170,255,0.22);
    background: linear-gradient(180deg, rgba(0,170,255,0.05), rgba(0,170,255,0.01));
}
.opt-method-card h3[b-cmitxsfaub] {
    font-size: 1.05rem; font-weight: 700;
    color: #d6deec; margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.opt-method-card p[b-cmitxsfaub] {
    font-size: 0.92rem; color: rgba(180,195,220,0.62);
    line-height: 1.6; margin: 0;
}

/* ========== S9 — DIFERENCIAL ========== */
.opt-diff[b-cmitxsfaub] { padding: 100px 24px; }
.opt-diff-inner[b-cmitxsfaub] {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
}
.opt-diff-inner .hu-tag[b-cmitxsfaub],
.opt-diff-inner .hu-section-title[b-cmitxsfaub] { text-align: center; }
.opt-diff-text[b-cmitxsfaub] { margin-bottom: 30px; }
.opt-diff-text .opt-prose[b-cmitxsfaub] {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 18px;
}

/* ========== S10 — CONFIANZA TÉCNICA ========== */
.opt-tech[b-cmitxsfaub] { padding: 100px 24px; }
.opt-tech-grid[b-cmitxsfaub] {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto;
}
.opt-tech-pill[b-cmitxsfaub] {
    display: inline-flex; align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(0,170,255,0.16);
    font-size: 0.92rem; font-weight: 600;
    color: rgba(220,232,250,0.85);
    letter-spacing: -0.005em;
    transition: transform 0.3s, border-color 0.3s, background 0.3s, color 0.3s;
    cursor: default;
}
.opt-tech-pill:hover[b-cmitxsfaub] {
    transform: translateY(-2px);
    border-color: rgba(0,170,255,0.42);
    background: linear-gradient(180deg, rgba(0,170,255,0.08), rgba(0,170,255,0.02));
    color: #fff;
}

/* ========== S11 — CTA FINAL ========== */
.opt-cta-final[b-cmitxsfaub] {
    position: relative; overflow: hidden;
    padding: 110px 24px 130px;
}
.hu-cta-bg[b-cmitxsfaub] {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,100,255,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0,200,255,0.08) 0%, transparent 50%);
    animation: optCtaPulse-b-cmitxsfaub 6s ease-in-out infinite alternate;
}
@keyframes optCtaPulse-b-cmitxsfaub { 0% { opacity: 0.5; } 100% { opacity: 1; } }
.opt-cta-inner[b-cmitxsfaub] {
    text-align: center;
    position: relative; z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hu-cta-title[b-cmitxsfaub] {
    font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
    color: #e0e6f0; margin: 0 0 22px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.opt-cta-prose[b-cmitxsfaub] {
    font-size: 1.05rem; color: rgba(200,212,232,0.62);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 14px;
}
.opt-final-claims[b-cmitxsfaub] {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 38px auto 36px;
}
.opt-final-claim[b-cmitxsfaub] {
    display: inline-flex; align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0,170,255,0.07);
    border: 1px solid rgba(0,170,255,0.24);
    font-size: 0.85rem; font-weight: 600;
    color: rgba(125,249,255,0.95);
    letter-spacing: 0.01em;
}

/* ========== FOOTER ========== */
.hu-footer[b-cmitxsfaub] {
    position: relative; z-index: 2;
    background: rgba(3,6,16,0.9); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.04); padding: 56px 24px 0;
}
.hu-footer-top[b-cmitxsfaub] {
    display: flex; justify-content: space-between; gap: 48px;
    max-width: 1100px; margin: 0 auto; padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.04); flex-wrap: wrap;
}
.hu-footer-brand[b-cmitxsfaub] { max-width: 360px; }
.hu-footer-logo[b-cmitxsfaub] {
    height: 32px; opacity: 0.6; margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(0,170,255,0.1));
}
.hu-footer-brand p[b-cmitxsfaub] { font-size: 0.9rem; color: rgba(180,195,220,0.35); line-height: 1.6; }
.hu-footer-col[b-cmitxsfaub] { display: flex; flex-direction: column; gap: 7px; }
.hu-footer-col h4[b-cmitxsfaub] {
    font-size: 0.85rem; font-weight: 700; color: rgba(180,195,220,0.4);
    letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px;
}
.hu-footer-col a[b-cmitxsfaub] {
    font-size: 0.9rem; color: rgba(180,195,220,0.3);
    text-decoration: none; transition: color 0.3s;
}
.hu-footer-col a:hover[b-cmitxsfaub] { color: #60a5fa; }
.hu-footer-bottom[b-cmitxsfaub] { text-align: center; padding: 20px 0; max-width: 1100px; margin: 0 auto; }
.hu-footer-bottom p[b-cmitxsfaub] { font-size: 0.78rem; color: rgba(180,195,220,0.15); margin: 0; }

/* ========== SERVICIOS (formato Home — bento grid con foto e iconos) ========== */
.opt-services-home[b-cmitxsfaub] {
    padding: 100px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.opt-services-home .section-header[b-cmitxsfaub] {
    margin-bottom: 60px;
}

.opt-services-home .section-tag[b-cmitxsfaub] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.opt-services-home .section-title[b-cmitxsfaub] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 24px;
    text-align: center;
    max-width: 800px;
}

.opt-services-desc[b-cmitxsfaub] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Bento Grid (igual que Home) */
.opt-services-home .bento-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt-services-home .bento-card[b-cmitxsfaub] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
    background: rgba(10,20,50,0.6);
    display: flex;
    flex-direction: column;
}
.opt-services-home .bento-card:hover[b-cmitxsfaub] {
    transform: translateY(-6px);
    border-color: rgba(0,170,255,0.25);
    box-shadow: 0 20px 60px rgba(0,100,255,0.15), 0 0 0 1px rgba(0,170,255,0.08);
}

.opt-services-home .bento-card--large[b-cmitxsfaub] {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}
.opt-services-home .bento-card--medium[b-cmitxsfaub] {
    min-height: 240px;
}
.opt-services-home .bento-card--small[b-cmitxsfaub] {
    min-height: 220px;
    background: linear-gradient(145deg, rgba(10,25,60,0.8), rgba(6,15,41,0.9));
}

.opt-services-home .bento-card-bg[b-cmitxsfaub] {
    position: absolute;
    inset: 0;
}
.opt-services-home .bento-card-bg[b-cmitxsfaub]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,8,18,0.96) 0%, rgba(3,8,18,0.80) 45%, rgba(3,8,18,0.35) 100%);
    z-index: 1;
    pointer-events: none;
}
.opt-services-home .bento-card-bg img[b-cmitxsfaub] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.5s ease, transform 0.8s ease;
}
.opt-services-home .bento-card:hover .bento-card-bg img[b-cmitxsfaub] {
    opacity: 0.45;
    transform: scale(1.05);
}

.opt-services-home .bento-card-content[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}
.opt-services-home .bento-card-content--no-bg[b-cmitxsfaub] {
    justify-content: center;
}

.opt-services-home .bento-card-icons[b-cmitxsfaub] {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.opt-services-home .bento-card-icons img[b-cmitxsfaub] {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 8px rgba(0,170,255,0.3));
}

.opt-services-home .bento-card h3[b-cmitxsfaub] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.opt-services-home .bento-card p[b-cmitxsfaub] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.opt-services-home .bento-card-link[b-cmitxsfaub] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ddff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.opt-services-home .bento-card-link:hover[b-cmitxsfaub] {
    color: #7df9ff;
    gap: 12px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0,170,255,0.35);
}
.opt-services-home .bento-card-link svg[b-cmitxsfaub] {
    transition: transform 0.3s ease;
}
.opt-services-home .bento-card-link:hover svg[b-cmitxsfaub] {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .opt-services-home .bento-grid[b-cmitxsfaub] {
        grid-template-columns: repeat(2, 1fr);
    }
    .opt-services-home .bento-card--large[b-cmitxsfaub] {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 380px;
    }
    .opt-services-home .bento-card--medium[b-cmitxsfaub] {
        min-height: 260px;
    }
    .opt-services-home .bento-card--small[b-cmitxsfaub] {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .opt-services-home[b-cmitxsfaub] {
        padding: 60px 16px;
    }
    .opt-services-home .section-title[b-cmitxsfaub] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .opt-services-home .bento-grid[b-cmitxsfaub] {
        grid-template-columns: 1fr;
    }
    .opt-services-home .bento-card--large[b-cmitxsfaub] {
        grid-column: span 1;
        min-height: 340px;
    }
    .opt-services-home .bento-card--medium[b-cmitxsfaub] { min-height: 280px; }
    .opt-services-home .bento-card--small[b-cmitxsfaub] { min-height: 160px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .opt-quick-grid[b-cmitxsfaub] { grid-template-columns: repeat(2, 1fr); }
    .opt-services-grid[b-cmitxsfaub] { grid-template-columns: repeat(2, 1fr); }
    .opt-problem-inner[b-cmitxsfaub] { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 820px) {
    .opt-vs-grid[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-vs-arrow[b-cmitxsfaub] { transform: rotate(90deg); margin: 0 auto; }
    .opt-ai-list[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-sectors-grid[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-ai-flow[b-cmitxsfaub] { padding: 22px 18px; }
    .opt-flow-line[b-cmitxsfaub] { width: 2px; height: 24px; background: linear-gradient(180deg, rgba(0,170,255,0.5), rgba(125,249,255,0.7)); }
    .opt-flow-line[b-cmitxsfaub]::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid rgba(125,249,255,0.7); border-bottom: none; }
    .opt-ai-flow[b-cmitxsfaub] { flex-direction: column; }
    .opt-flow-step[b-cmitxsfaub] { width: 100%; min-width: 0; }
}

@media (max-width: 768px) {
    .hu-hero-title[b-cmitxsfaub] { font-size: 2.2rem; }
    .hu-hero-sub[b-cmitxsfaub] { font-size: 0.95rem; }
    .hu-section[b-cmitxsfaub] { padding: 70px 16px; }
    .opt-quick-grid[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-services-grid[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-problem-stack[b-cmitxsfaub] { grid-template-columns: repeat(2, 1fr); padding: 24px 18px; }
    .opt-vs-col[b-cmitxsfaub] { padding: 28px 22px; }
    .opt-method-step[b-cmitxsfaub] { gap: 16px; }
    .opt-method-line[b-cmitxsfaub] { left: 23px; }
    .hu-footer-top[b-cmitxsfaub] { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
    .hu-hero-btns[b-cmitxsfaub] { flex-direction: column; align-items: stretch; }
    .hu-hero-btns a[b-cmitxsfaub], .hu-hero-btns .hu-btn[b-cmitxsfaub] { text-align: center; justify-content: center; }
    .opt-problem-stack[b-cmitxsfaub] { grid-template-columns: 1fr; }
    .opt-method-card[b-cmitxsfaub] { padding: 18px 20px; }
    .opt-quote[b-cmitxsfaub] { padding: 18px 20px; }
}

/* ============================================================
   OP LANDING WORK SECTION — reestructura precisa del grid
   ============================================================ */

.op-landing-work-section[b-cmitxsfaub] {
    padding: 100px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.op-landing-work-header[b-cmitxsfaub] {
    margin-bottom: 56px;
}

.op-landing-work-kicker[b-cmitxsfaub] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.op-landing-work-title[b-cmitxsfaub] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 800px;
}

.op-landing-work-subtitle[b-cmitxsfaub] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Contenedor principal de cards: replica el bento de Home */
.op-landing-work-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt[b-cmitxsfaub],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt[b-cmitxsfaub],
.opt-page .op-solutions-section .op-solution-card.hu-tilt[b-cmitxsfaub] {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt.hu-tilting[b-cmitxsfaub],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt.hu-tilting[b-cmitxsfaub],
.opt-page .op-solutions-section .op-solution-card.hu-tilt.hu-tilting[b-cmitxsfaub] {
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt:hover[b-cmitxsfaub],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt:hover[b-cmitxsfaub],
.opt-page .op-solutions-section .op-solution-card.hu-tilt:hover[b-cmitxsfaub] {
    transform: translateY(0);
}

/* Estos wrappers conservan el HTML, pero dejan que las cards ocupen el grid como en Home */
.op-landing-work-top[b-cmitxsfaub] {
    display: contents;
}

.op-landing-work-main-card[b-cmitxsfaub] {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,20,50,0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.op-landing-work-main-card:hover[b-cmitxsfaub] {
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}

.op-landing-work-side[b-cmitxsfaub] {
    display: contents;
}

.op-landing-work-side-card[b-cmitxsfaub] {
    min-height: 230px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,20,50,0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.op-landing-work-side-card:hover[b-cmitxsfaub] {
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}
.op-landing-work-main-card:hover .hu-card-glow[b-cmitxsfaub],
.op-landing-work-side-card:hover .hu-card-glow[b-cmitxsfaub] {
    opacity: 1;
}

/* Fila inferior: tres cards iguales */
.op-landing-work-bottom-grid[b-cmitxsfaub] {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.op-landing-work-bottom-card[b-cmitxsfaub] {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(145deg, rgba(10,25,60,0.8), rgba(6,15,41,0.9));
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
}
.op-landing-work-bottom-card:hover[b-cmitxsfaub] {
    transform: translateY(-6px);
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}

/* Overlays e imágenes para cards con fondo */
.op-landing-work-main-card .bento-card-bg[b-cmitxsfaub],
.op-landing-work-side-card .bento-card-bg[b-cmitxsfaub] {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.op-landing-work-main-card .hu-card-glow[b-cmitxsfaub],
.op-landing-work-side-card .hu-card-glow[b-cmitxsfaub] {
    z-index: 1;
}
.op-landing-work-main-card .bento-card-bg[b-cmitxsfaub]::after,
.op-landing-work-side-card .bento-card-bg[b-cmitxsfaub]::after {
    content: none;
}
.op-landing-work-main-card .bento-card-bg img[b-cmitxsfaub],
.op-landing-work-side-card .bento-card-bg img[b-cmitxsfaub] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.5s ease, transform 0.8s ease;
}
.op-landing-work-main-card:hover .bento-card-bg img[b-cmitxsfaub],
.op-landing-work-side-card:hover .bento-card-bg img[b-cmitxsfaub] {
    opacity: 0.35;
    transform: scale(1.05);
}

/* Contenido de las cards */
.op-landing-work-main-card .bento-card-content[b-cmitxsfaub],
.op-landing-work-side-card .bento-card-content[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
    background: linear-gradient(to top, rgba(4,11,30,0.95) 20%, transparent 100%);
}
.op-landing-work-bottom-card .bento-card-content[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    flex: 1;
}

/* Tipografía legible */
.op-landing-work-main-card h3[b-cmitxsfaub],
.op-landing-work-side-card h3[b-cmitxsfaub],
.op-landing-work-bottom-card h3[b-cmitxsfaub] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.op-landing-work-main-card p[b-cmitxsfaub],
.op-landing-work-side-card p[b-cmitxsfaub],
.op-landing-work-bottom-card p[b-cmitxsfaub] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 16px;
}
.op-landing-work-main-card .bento-card-link[b-cmitxsfaub],
.op-landing-work-side-card .bento-card-link[b-cmitxsfaub] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aaff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.op-landing-work-main-card .bento-card-link:hover[b-cmitxsfaub],
.op-landing-work-side-card .bento-card-link:hover[b-cmitxsfaub] {
    color: #00ddff;
    gap: 12px;
    text-decoration: none;
}

/* Responsive tablet */
@media (max-width: 1024px) {
    .op-landing-work-grid[b-cmitxsfaub] {
        grid-template-columns: repeat(2, 1fr);
    }
    .op-landing-work-main-card[b-cmitxsfaub] {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 380px;
    }
    .op-landing-work-side-card[b-cmitxsfaub] {
        min-height: 260px;
    }
    .op-landing-work-bottom-grid[b-cmitxsfaub] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive móvil */
@media (max-width: 768px) {
    .op-landing-work-section[b-cmitxsfaub] {
        padding: 60px 16px;
    }
    .op-landing-work-title[b-cmitxsfaub] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .op-landing-work-grid[b-cmitxsfaub] {
        grid-template-columns: 1fr;
    }
    .op-landing-work-main-card[b-cmitxsfaub] {
        grid-column: span 1;
        min-height: 340px;
    }
    .op-landing-work-side-card[b-cmitxsfaub] {
        min-height: 280px;
    }
    .op-landing-work-bottom-grid[b-cmitxsfaub] {
        grid-template-columns: 1fr;
    }
    .op-landing-work-bottom-card[b-cmitxsfaub] {
        min-height: 160px;
    }
}

/* ============================================================
   MARQUEE — piezas conectables (copiado desde OptInicio)
   ============================================================ */
.op-landing-marquee-section[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
    overflow: hidden;
}
.op-landing-marquee[b-cmitxsfaub] {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    padding: 14px 0;
    border-top: 1px solid rgba(0,170,255,0.08);
    border-bottom: 1px solid rgba(0,170,255,0.08);
    background: rgba(6,15,41,0.4);
}
.op-landing-marquee-track[b-cmitxsfaub] {
    display: inline-flex;
    gap: 36px;
    white-space: nowrap;
    animation: opLandingMarquee-b-cmitxsfaub 90s linear infinite;
}
.op-landing-marquee-track span[b-cmitxsfaub] {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(180,195,220,0.4);
    letter-spacing: -0.01em;
}
.op-landing-marquee-track span:nth-child(odd)[b-cmitxsfaub] {
    color: rgba(0,170,255,0.7);
}
@keyframes opLandingMarquee-b-cmitxsfaub {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .op-landing-marquee-track span[b-cmitxsfaub] {
        font-size: 1rem;
    }
}

/* ============================================================
   S1c — SOLUCIONES EN ACCIÓN
   ============================================================ */
.op-solutions-section[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 100px 24px 80px;
}

.op-solutions-header[b-cmitxsfaub] {
    margin-bottom: 56px;
}

.op-solutions-tag[b-cmitxsfaub] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.op-solutions-title[b-cmitxsfaub] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 800px;
}

.op-solutions-subtitle[b-cmitxsfaub] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.op-solutions-grid[b-cmitxsfaub] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.op-solution-card[b-cmitxsfaub] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.op-solution-card:hover[b-cmitxsfaub] {
    border-color: rgba(0,170,255,0.25);
    box-shadow: 0 20px 60px rgba(0,100,255,0.15), 0 0 0 1px rgba(0,170,255,0.08);
}
.op-solution-card:hover .hu-card-glow[b-cmitxsfaub] {
    opacity: 1;
}

.op-solution-card-featured[b-cmitxsfaub] {
    grid-column: 1 / -1;
    min-height: 380px;
}

.op-solution-card-bg[b-cmitxsfaub] {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.op-solution-card-bg img[b-cmitxsfaub] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.op-solution-card:hover .op-solution-card-bg img[b-cmitxsfaub] {
    opacity: 0.65;
    transform: scale(1.05);
}

.op-solution-card-overlay[b-cmitxsfaub] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(3,8,18,0.92) 15%, rgba(3,8,18,0.50) 55%, rgba(3,8,18,0.20) 100%);
}
.op-solution-card .hu-card-glow[b-cmitxsfaub] {
    z-index: 1;
}

.op-solution-card-content[b-cmitxsfaub] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}

.op-solution-card h3[b-cmitxsfaub] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.op-solution-card p[b-cmitxsfaub] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.op-solution-card-link[b-cmitxsfaub] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ddff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.op-solution-card-link:hover[b-cmitxsfaub] {
    color: #7df9ff;
    gap: 12px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0,170,255,0.35);
}

.op-solution-card-link svg[b-cmitxsfaub] {
    transition: transform 0.3s ease;
}

.op-solution-card-link:hover svg[b-cmitxsfaub] {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .op-solutions-section[b-cmitxsfaub] {
        padding: 60px 16px;
    }
    .op-solutions-title[b-cmitxsfaub] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .op-solutions-grid[b-cmitxsfaub] {
        grid-template-columns: 1fr;
    }
    .op-solution-card[b-cmitxsfaub] {
        min-height: 280px;
    }
    .op-solution-card-featured[b-cmitxsfaub] {
        min-height: 320px;
    }
}
/* /Pages/Optechnologies.razor.rz.scp.css */
/* ============================================================
   OPTECHNOLOGIES LANDING — base visual heredada de HomeUltra
   con ritmo y refinamiento SaaS premium.
   ============================================================ */

/* ========== PAGE WRAPPER ========== */
.hu-page[b-ue682ysy9q] {
    background: #030812;
    min-height: 100vh;
    color: #e0e6f0;
    overflow-x: hidden;
}

/* ========== SCROLL PROGRESS ========== */
.hu-progress[b-ue682ysy9q] {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px; z-index: 9999; background: rgba(255,255,255,0.03);
}
.hu-progress-bar[b-ue682ysy9q] {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #0077cc, #00aaff, #00ddff, #7df9ff);
    transition: width 0.05s linear;
    box-shadow: 0 0 12px rgba(0,170,255,0.5);
}

/* ========== CANVAS ========== */
.hu-canvas[b-ue682ysy9q] {
    position: fixed; inset: 0;
    width: 100% !important; height: 100% !important;
    z-index: 0; pointer-events: none;
}

/* ========== CURSOR GLOW ========== */
.hu-cursor-glow[b-ue682ysy9q] {
    position: fixed; width: 400px; height: 400px;
    border-radius: 50%; pointer-events: none; z-index: 1;
    background: radial-gradient(circle, rgba(0,170,255,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.hu-page:hover .hu-cursor-glow[b-ue682ysy9q] { opacity: 1; }

/* ========== REVEAL ========== */
.hu-reveal[b-ue682ysy9q] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hu-reveal.hu-visible[b-ue682ysy9q] { opacity: 1; transform: translateY(0); }

.hu-word-reveal[b-ue682ysy9q] {
    display: inline-block;
    opacity: 0; transform: translateY(100%) rotateX(-80deg);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    transform-origin: bottom center;
}
.hu-word-reveal.hu-visible[b-ue682ysy9q] { opacity: 1; transform: translateY(0) rotateX(0); }

/* ========== COMMON ========== */
.hu-gradient-text[b-ue682ysy9q] {
    background: linear-gradient(135deg, #00aaff 0%, #00ddff 50%, #7df9ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hu-tag[b-ue682ysy9q] {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; color: rgba(96,165,250,0.6);
    margin-bottom: 16px; text-transform: uppercase;
}

.hu-section-title[b-ue682ysy9q] {
    font-size: clamp(1.9rem, 4.2vw, 2.7rem); font-weight: 800;
    color: #e0e6f0; letter-spacing: -0.02em; line-height: 1.15;
    margin: 0 0 32px;
}

.hu-section[b-ue682ysy9q] { position: relative; z-index: 2; padding: 110px 24px; }
.hu-inner[b-ue682ysy9q] { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ========== HERO (idéntico a HomeUltra) ========== */
.hu-hero[b-ue682ysy9q] {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, #0a1f4d 0%, #040b1e 70%);
    overflow: hidden; padding: 0 24px; z-index: 2;
}

.hu-hero-bg[b-ue682ysy9q] {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    background: url('Images/FondoPrincipalNuevoLogo.png') center center / cover no-repeat;
    z-index: 0;
    animation: optKenBurns-b-ue682ysy9q 25s ease-in-out infinite alternate;
}
@keyframes optKenBurns-b-ue682ysy9q {
    0%   { transform: scale(1) translate(0,0); }
    33%  { transform: scale(1.08) translate(-1.5%,-1%); }
    66%  { transform: scale(1.05) translate(1%,-0.5%); }
    100% { transform: scale(1.1) translate(-0.5%,1%); }
}

.hu-hero-overlay[b-ue682ysy9q] {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,11,30,0.5) 0%, rgba(4,11,30,0.65) 40%, rgba(3,8,18,0.95) 100%);
    z-index: 1;
}

.hu-hero-grid[b-ue682ysy9q] {
    position: absolute; inset: 0; z-index: 2;
    background-image:
        linear-gradient(rgba(0,170,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,170,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    animation: optGridPulse-b-ue682ysy9q 8s ease-in-out infinite alternate;
}
@keyframes optGridPulse-b-ue682ysy9q { 0% { opacity:.4 } 100% { opacity:.8 } }

.hu-glow[b-ue682ysy9q] {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 2;
}
.hu-glow--1[b-ue682ysy9q] { width: 600px; height: 600px; top: -10%; left: -10%; background: rgba(0,100,255,0.15); animation: optF1-b-ue682ysy9q 12s ease-in-out infinite alternate; }
.hu-glow--2[b-ue682ysy9q] { width: 500px; height: 500px; bottom: -15%; right: -10%; background: rgba(0,200,255,0.1); animation: optF2-b-ue682ysy9q 10s ease-in-out infinite alternate; }
.hu-glow--3[b-ue682ysy9q] { width: 300px; height: 300px; top: 30%; right: 20%; background: rgba(100,100,255,0.08); animation: optF3-b-ue682ysy9q 15s ease-in-out infinite alternate; }
@keyframes optF1-b-ue682ysy9q { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes optF2-b-ue682ysy9q { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,-30px)} }
@keyframes optF3-b-ue682ysy9q { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-30px,50px) scale(1.3)} }

.hu-hero-content[b-ue682ysy9q] { position: relative; z-index: 3; max-width: 880px; }

.hu-hero-badge[b-ue682ysy9q] {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(0,170,255,0.8);
    background: rgba(0,170,255,0.06); border: 1px solid rgba(0,170,255,0.15);
    border-radius: 50px; padding: 10px 24px; margin-bottom: 32px;
    position: relative;
    top: -80px;
}
.hu-badge-dot[b-ue682ysy9q] {
    width: 6px; height: 6px; border-radius: 50%; background: #00aaff;
    animation: optDotPulse-b-ue682ysy9q 2s ease-in-out infinite;
}
@keyframes optDotPulse-b-ue682ysy9q {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,170,255,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0,170,255,0); }
}

.hu-hero-title[b-ue682ysy9q] {
    font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800;
    line-height: 1.06; color: #fff; margin: 0 0 28px; letter-spacing: -0.04em;
}
.hu-text-line[b-ue682ysy9q] { display: block; }

/* ===== NEBULA TEXT EFFECT ===== */
.nebula-text[b-ue682ysy9q] {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #0077cc 0%,
        #00aaff 15%,
        #00ddff 35%,
        #7df9ff 50%,
        #00ddff 65%,
        #00aaff 85%,
        #0077cc 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nebulaFlow-b-ue682ysy9q 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(0,170,255,0.3));
}
.nebula-text[b-ue682ysy9q]::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: none;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    text-shadow:
        0 0 40px rgba(0,119,204,0.4),
        0 0 80px rgba(0,170,255,0.2),
        0 0 120px rgba(0,221,255,0.1);
    animation: nebulaGlow-b-ue682ysy9q 4s ease-in-out infinite alternate;
}
@keyframes nebulaFlow-b-ue682ysy9q {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes nebulaGlow-b-ue682ysy9q {
    0%   { opacity: 0.6; filter: blur(1px); }
    100% { opacity: 1; filter: blur(0px); }
}

/* ===== HERO ===== */
.hu-hero-sub[b-ue682ysy9q] {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.6); line-height: 1.7;
    max-width: 680px; margin: 0 auto 36px;
}

.opt-hero-micro[b-ue682ysy9q] {
    margin: 28px auto 0;
    font-size: 0.85rem;
    color: rgba(180,195,220,0.4);
    letter-spacing: 0.005em;
    max-width: 600px;
}

/* ========== SCROLL CUE ========== */
.hu-scroll-cue[b-ue682ysy9q] {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hu-scroll-cue span[b-ue682ysy9q] {
    font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(180,195,220,0.25); text-transform: uppercase;
}
.hu-scroll-bar[b-ue682ysy9q] {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(0,170,255,0.5), transparent);
    animation: optScrollPulse-b-ue682ysy9q 2s ease-in-out infinite;
}
@keyframes optScrollPulse-b-ue682ysy9q { 0%,100% { opacity:.3; transform:scaleY(1) } 50% { opacity:1; transform:scaleY(1.4) } }

/* ========== BUTTONS ========== */
.hu-hero-btns[b-ue682ysy9q] { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hu-btn[b-ue682ysy9q] {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 34px; font-weight: 600; font-size: 0.95rem;
    border: none; border-radius: 14px; text-decoration: none;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.hu-btn--magnetic[b-ue682ysy9q] {
    background: linear-gradient(135deg, #0066bb, #00aaff);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,120,255,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hu-btn--magnetic:hover[b-ue682ysy9q] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,120,255,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    color: #fff; text-decoration: none;
}
.hu-btn--nebula[b-ue682ysy9q] {
    position: relative;
    overflow: hidden;
    background: none;
    border: 1px solid rgba(0,170,255,0.3);
    color: #fff;
}
.hu-btn--nebula[b-ue682ysy9q]::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        #0077cc 0%,
        #00aaff 15%,
        #00ddff 35%,
        #7df9ff 50%,
        #00ddff 65%,
        #00aaff 85%,
        #0077cc 100%
    );
    background-size: 250% 100%;
    animation: nebulaFlow-b-ue682ysy9q 6s ease-in-out infinite alternate;
    opacity: 0.85;
}
.hu-btn--nebula span[b-ue682ysy9q] {
    position: relative;
    z-index: 1;
    color: #fff;
}
.hu-btn--nebula:hover[b-ue682ysy9q]::before {
    opacity: 1;
}
.hu-btn--nebula:hover[b-ue682ysy9q] {
    color: #fff;
    box-shadow: 0 0 30px rgba(0,170,255,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hu-btn-shine[b-ue682ysy9q] {
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: rotate(25deg) translateX(-120%);
    transition: none;
}
.hu-btn--magnetic:hover .hu-btn-shine[b-ue682ysy9q] { animation: optShine-b-ue682ysy9q 0.6s ease forwards; }
@keyframes optShine-b-ue682ysy9q { 0% { transform: rotate(25deg) translateX(-120%); } 100% { transform: rotate(25deg) translateX(120%); } }

.hu-btn--ghost[b-ue682ysy9q] {
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.hu-btn--ghost:hover[b-ue682ysy9q] {
    border-color: rgba(0,170,255,0.3); color: #fff;
    background: rgba(0,170,255,0.04); text-decoration: none;
}
.hu-btn--lg[b-ue682ysy9q] { padding: 18px 42px; font-size: 1.05rem; }

/* ========== SHARED CARD UTILS ========== */
.hu-card-glow[b-ue682ysy9q] {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0; transition: opacity 0.5s;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0,170,255,0.10), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.opt-card-border[b-ue682ysy9q] {
    position: absolute; inset: 0; pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.5s;
}
.opt-prose[b-ue682ysy9q] {
    font-size: 1rem; line-height: 1.75;
    color: rgba(200,212,232,0.72);
    margin: 0 0 18px;
}
.opt-prose:last-child[b-ue682ysy9q] { margin-bottom: 0; }
.opt-section-lead[b-ue682ysy9q] {
    text-align: center;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: rgba(200,212,232,0.55);
    line-height: 1.7;
    max-width: 720px;
    margin: -16px auto 50px;
}

/* ========== TRUST BAR (sin fondo, animaciones premium) ========== */
.opt-trust[b-ue682ysy9q] {
    position: relative; z-index: 2;
    padding: 64px 24px;
    background: transparent;
}
.opt-trust-inner[b-ue682ysy9q] {
    display: flex; justify-content: center; align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
}
.opt-trust-item[b-ue682ysy9q] {
    position: relative;
    display: flex; align-items: center;
    gap: 14px;
    padding: 12px 20px;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    flex: 0 0 auto;
}
.opt-trust-item:hover[b-ue682ysy9q] { transform: translateY(-5px); }

/* halo radial detrás del icono — aparece en hover */
.opt-trust-icon[b-ue682ysy9q] {
    position: relative;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    flex-shrink: 0;
    animation: optTrustFloat-b-ue682ysy9q 5.5s ease-in-out infinite;
}
.opt-trust-icon[b-ue682ysy9q]::before {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,0.22) 0%, rgba(125,249,255,0.06) 45%, transparent 75%);
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    pointer-events: none;
}
.opt-trust-item:hover .opt-trust-icon[b-ue682ysy9q] { animation-play-state: paused; }
.opt-trust-item:hover .opt-trust-icon[b-ue682ysy9q]::before {
    opacity: 1;
    transform: scale(1.45);
}

/* delays escalonados para que cada icono flote desincronizado
   (1,3,5,7,9 porque hay un divider entre cada par de items) */
.opt-trust-item:nth-child(1) .opt-trust-icon[b-ue682ysy9q] { animation-delay: 0s; }
.opt-trust-item:nth-child(3) .opt-trust-icon[b-ue682ysy9q] { animation-delay: 0.55s; }
.opt-trust-item:nth-child(5) .opt-trust-icon[b-ue682ysy9q] { animation-delay: 1.10s; }
.opt-trust-item:nth-child(7) .opt-trust-icon[b-ue682ysy9q] { animation-delay: 1.65s; }
.opt-trust-item:nth-child(9) .opt-trust-icon[b-ue682ysy9q] { animation-delay: 2.20s; }

.opt-trust-item img[b-ue682ysy9q] {
    position: relative; z-index: 1;
    width: 44px; height: 44px;
    filter: drop-shadow(0 2px 10px rgba(0,170,255,0.28));
    transition: filter 0.45s, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.opt-trust-item:hover img[b-ue682ysy9q] {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 22px rgba(0,170,255,0.7)) brightness(1.12);
}

@keyframes optTrustFloat-b-ue682ysy9q {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
}

/* label con subrayado animado en gradient */
.opt-trust-label[b-ue682ysy9q] {
    position: relative;
    font-size: 0.92rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: -0.005em;
    transition: color 0.4s, transform 0.45s cubic-bezier(.4,0,.2,1);
}
.opt-trust-label[b-ue682ysy9q]::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, #00aaff, #7df9ff);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0,170,255,0.5);
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.opt-trust-item:hover .opt-trust-label[b-ue682ysy9q] {
    color: #fff;
    transform: translateX(2px);
}
.opt-trust-item:hover .opt-trust-label[b-ue682ysy9q]::after { width: 100%; }

.opt-trust-divider[b-ue682ysy9q] {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

@media (max-width: 1100px) {
    .opt-trust-inner[b-ue682ysy9q] { flex-wrap: wrap; }
    .opt-trust-divider:nth-of-type(2n)[b-ue682ysy9q] { display: none; }
}

@media (max-width: 768px) {
    .opt-trust[b-ue682ysy9q] { padding: 40px 12px; }
    .opt-trust-inner[b-ue682ysy9q] { flex-wrap: wrap; }
    .opt-trust-item[b-ue682ysy9q] { padding: 10px 18px; gap: 12px; }
    .opt-trust-icon[b-ue682ysy9q] { width: 44px; height: 44px; }
    .opt-trust-item img[b-ue682ysy9q] { width: 32px; height: 32px; }
    .opt-trust-label[b-ue682ysy9q] { font-size: 0.8rem; }
    .opt-trust-divider[b-ue682ysy9q] { display: none; }
}

/* ========== S2 — BENEFICIOS RÁPIDOS ========== */
.opt-quick[b-ue682ysy9q] { padding: 110px 24px 80px; }
.opt-quick-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.opt-quick-card[b-ue682ysy9q] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 16px;
    padding: 30px 24px 26px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-quick-card[b-ue682ysy9q]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-quick-card:hover .hu-card-glow[b-ue682ysy9q] { opacity:1; }
.opt-quick-card:hover .opt-card-border[b-ue682ysy9q] { border-color: rgba(0,170,255,0.22); }
.opt-quick-card:hover[b-ue682ysy9q] { box-shadow: 0 16px 40px rgba(0,80,200,0.12); }
.opt-quick-icon[b-ue682ysy9q] {
    position: relative; z-index: 1;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(0,170,255,0.08);
    border: 1px solid rgba(0,170,255,0.18);
    color: #00aaff;
    margin-bottom: 18px;
    transition: transform 0.3s, background 0.3s;
}
.opt-quick-card:hover .opt-quick-icon[b-ue682ysy9q] { transform: scale(1.06); background: rgba(0,170,255,0.13); }
.opt-quick-card h3[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 1.05rem; font-weight: 700; color: #d6deec;
    margin: 0 0 8px; letter-spacing: -0.01em;
}
.opt-quick-card p[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 0.88rem; color: rgba(180,195,220,0.55);
    line-height: 1.55; margin: 0;
}

/* ========== S3 — PROBLEMA ========== */
.opt-problem[b-ue682ysy9q] { padding: 90px 24px; }
.opt-problem-inner[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.opt-problem-stack[b-ue682ysy9q] {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 14px;
    padding: 32px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.005));
    border: 1px solid rgba(255,255,255,0.06);
    isolation: isolate;
    overflow: hidden;
}
.opt-problem-stack[b-ue682ysy9q]::before {
    content:""; position:absolute; inset:-1px; border-radius:22px; pointer-events:none;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,170,255,0.08), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(125,249,255,0.06), transparent 55%);
    z-index:-1;
}
.opt-problem-stack[b-ue682ysy9q]::after {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none;
}
.opt-chip[b-ue682ysy9q] {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.85rem; font-weight: 600;
    color: rgba(220,232,250,0.78);
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
    justify-content: flex-start;
}
.opt-chip svg[b-ue682ysy9q] { color: rgba(0,170,255,0.55); flex-shrink: 0; }
.opt-chip--a[b-ue682ysy9q] { transform: rotate(-1.5deg); }
.opt-chip--b[b-ue682ysy9q] { transform: rotate(1deg); }
.opt-chip--c[b-ue682ysy9q] { transform: rotate(-0.5deg); }
.opt-chip--d[b-ue682ysy9q] { transform: rotate(1.8deg); }
.opt-chip--e[b-ue682ysy9q] { transform: rotate(-1deg); }
.opt-chip--f[b-ue682ysy9q] { transform: rotate(0.8deg); }
.opt-chip:hover[b-ue682ysy9q] {
    transform: rotate(0) translateY(-2px);
    border-color: rgba(0,170,255,0.25);
    background: rgba(0,170,255,0.06);
}

/* ========== S4 — ANTES Y DESPUÉS ========== */
.opt-vs[b-ue682ysy9q] { padding: 100px 24px; }
.opt-vs-bad-text[b-ue682ysy9q] {
    color: rgba(220,232,250,0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(220,80,80,0.4);
    text-decoration-thickness: 2px;
}
.opt-vs-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 44px;
}
.opt-vs-col[b-ue682ysy9q] {
    position: relative;
    padding: 36px 32px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
}
.opt-vs-col--before[b-ue682ysy9q] {
    background: linear-gradient(180deg, rgba(80,30,30,0.18), rgba(40,20,20,0.05));
    border: 1px solid rgba(220,80,80,0.14);
}
.opt-vs-col--after[b-ue682ysy9q] {
    background: linear-gradient(180deg, rgba(0,80,180,0.16), rgba(0,40,100,0.04));
    border: 1px solid rgba(0,170,255,0.20);
}
.opt-vs-col[b-ue682ysy9q]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    pointer-events:none;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
}
.opt-vs-col--before[b-ue682ysy9q]::before {
    background: linear-gradient(90deg, transparent, rgba(255,180,180,0.22), transparent);
}
.opt-vs-label[b-ue682ysy9q] {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(220,80,80,0.1);
    color: rgba(255,170,170,0.9);
    border: 1px solid rgba(220,80,80,0.25);
    margin-bottom: 22px;
}
.opt-vs-label--good[b-ue682ysy9q] {
    background: rgba(0,170,255,0.08);
    color: rgba(125,249,255,0.95);
    border-color: rgba(0,170,255,0.28);
}
.opt-vs-col ul[b-ue682ysy9q] { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.opt-vs-col li[b-ue682ysy9q] {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.95rem; line-height: 1.5;
    color: rgba(200,212,232,0.72);
}
.opt-vs-cross[b-ue682ysy9q], .opt-vs-check[b-ue682ysy9q] {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem; font-weight: 700;
    margin-top: 1px;
}
.opt-vs-cross[b-ue682ysy9q] { background: rgba(220,80,80,0.14); color: rgba(255,170,170,0.9); }
.opt-vs-check[b-ue682ysy9q] { background: rgba(0,170,255,0.14); color: #7df9ff; }
.opt-vs-arrow[b-ue682ysy9q] {
    align-self: center;
    color: rgba(0,170,255,0.55);
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0,170,255,0.06);
    border: 1px solid rgba(0,170,255,0.18);
}

/* ========== QUOTE / FRASE DESTACADA ========== */
.opt-quote[b-ue682ysy9q] {
    text-align: left;
    font-size: clamp(1.1rem, 1.7vw, 1.3rem);
    font-weight: 500;
    color: rgba(220,232,250,0.85);
    line-height: 1.55;
    max-width: 820px;
    margin: 30px auto 0;
    padding: 22px 28px;
    border-left: 2px solid rgba(0,170,255,0.45);
    background: rgba(0,170,255,0.025);
    border-radius: 0 14px 14px 0;
    letter-spacing: -0.01em;
}
.opt-quote--center[b-ue682ysy9q] {
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(0,170,255,0.18);
    border-bottom: 1px solid rgba(0,170,255,0.18);
    border-radius: 0;
    background: transparent;
    padding: 26px 24px;
    margin-top: 50px;
}

/* ========== S5 — QUÉ HACEMOS ========== */
.opt-services[b-ue682ysy9q] { padding: 110px 24px; }
.opt-services-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.opt-service-card[b-ue682ysy9q] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 18px;
    padding: 36px 28px 30px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-service-card[b-ue682ysy9q]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-service-card:hover .hu-card-glow[b-ue682ysy9q] { opacity: 1; }
.opt-service-card:hover .opt-card-border[b-ue682ysy9q] { border-color: rgba(0,170,255,0.22); }
.opt-service-card:hover[b-ue682ysy9q] { box-shadow: 0 18px 50px rgba(0,80,200,0.12); }
.opt-card-num[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
    color: rgba(0,170,255,0.55);
    display: block; margin-bottom: 14px;
}
.opt-service-card h3[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 1.1rem; font-weight: 700; color: #d6deec;
    margin: 0 0 10px; letter-spacing: -0.01em;
}
.opt-service-card p[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 0.92rem; color: rgba(180,195,220,0.6);
    line-height: 1.6; margin: 0;
}

/* ========== S6 — IA APLICADA ========== */
.opt-ai[b-ue682ysy9q] { padding: 100px 24px; }
.opt-ai-list[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    list-style: none;
    padding: 0;
    max-width: 820px;
    margin: 0 auto 30px;
}
.opt-ai-list li[b-ue682ysy9q] {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.96rem; line-height: 1.55;
    color: rgba(200,212,232,0.72);
}
.opt-ai-list li[b-ue682ysy9q]::before {
    content: "";
    flex-shrink: 0;
    margin-top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aaff, #7df9ff);
    box-shadow: 0 0 8px rgba(0,170,255,0.4);
}
.opt-ai-flow[b-ue682ysy9q] {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 56px;
    padding: 26px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,80,180,0.06), rgba(0,40,100,0.02));
    border: 1px solid rgba(0,170,255,0.14);
    position: relative;
    isolation: isolate;
}
.opt-flow-step[b-ue682ysy9q] {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    min-width: 110px;
    transition: transform 0.3s;
}
.opt-flow-step:hover[b-ue682ysy9q] { transform: translateY(-3px); }
.opt-flow-step span[b-ue682ysy9q] {
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(220,232,250,0.85);
}
.opt-flow-icon[b-ue682ysy9q] {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,170,255,0.08);
    border: 1px solid rgba(0,170,255,0.22);
    color: rgba(0,170,255,0.9);
}
.opt-flow-step--accent[b-ue682ysy9q] {
    background: linear-gradient(180deg, rgba(0,170,255,0.18), rgba(0,80,180,0.06));
    border-color: rgba(0,170,255,0.45);
    box-shadow: 0 0 22px rgba(0,170,255,0.18);
}
.opt-flow-step--accent span[b-ue682ysy9q] { color: #fff; }
.opt-flow-step--accent .opt-flow-icon[b-ue682ysy9q] {
    background: rgba(0,170,255,0.28);
    border-color: rgba(125,249,255,0.6);
    color: #fff;
}
.opt-flow-line[b-ue682ysy9q] {
    flex: 0 0 auto;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, rgba(0,170,255,0.5), rgba(125,249,255,0.7));
    border-radius: 2px;
    position: relative;
}
.opt-flow-line[b-ue682ysy9q]::after {
    content:""; position:absolute; right:-1px; top:50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 6px solid rgba(125,249,255,0.7);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* ========== S7 — SECTORES ========== */
.opt-sectors[b-ue682ysy9q] { padding: 100px 24px; }
.opt-sectors-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.opt-sector-card[b-ue682ysy9q] {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border-radius: 20px;
    padding: 36px 32px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s;
    transform-style: preserve-3d;
    isolation: isolate;
}
.opt-sector-card[b-ue682ysy9q]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.25), transparent);
    pointer-events:none; z-index:2;
}
.opt-sector-card:hover .hu-card-glow[b-ue682ysy9q] { opacity:1; }
.opt-sector-card:hover .opt-card-border[b-ue682ysy9q] { border-color: rgba(0,170,255,0.22); }
.opt-sector-card:hover[b-ue682ysy9q] { box-shadow: 0 18px 50px rgba(0,80,200,0.12); }
.opt-sector-icon[b-ue682ysy9q] {
    position: relative; z-index: 1;
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,170,255,0.18), rgba(0,170,255,0.04));
    border: 1px solid rgba(0,170,255,0.22);
    color: #00aaff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.opt-sector-card:hover .opt-sector-icon[b-ue682ysy9q] { transform: scale(1.06); }
.opt-sector-card h3[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 1.18rem; font-weight: 700;
    color: #d6deec;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.opt-sector-card p[b-ue682ysy9q] {
    position: relative; z-index: 1;
    font-size: 0.94rem; color: rgba(180,195,220,0.6);
    line-height: 1.65; margin: 0;
}

/* ========== S8 — MÉTODO TIMELINE ========== */
.opt-method[b-ue682ysy9q] { padding: 100px 24px; }
.opt-method-timeline[b-ue682ysy9q] {
    position: relative;
    max-width: 820px;
    margin: 50px auto 0;
}
.opt-method-line[b-ue682ysy9q] {
    position: absolute;
    left: 23px; top: 24px; bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(0,170,255,0.55), rgba(0,170,255,0.05));
}
.opt-method-step[b-ue682ysy9q] {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
    align-items: stretch;
}
.opt-method-step:last-child[b-ue682ysy9q] { margin-bottom: 0; }
.opt-method-dot[b-ue682ysy9q] {
    flex-shrink: 0;
    position: relative; z-index: 2;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0066bb, #00aaff);
    color: #fff;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(0,170,255,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.opt-method-card[b-ue682ysy9q] {
    flex: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 22px 26px;
    position: relative;
    isolation: isolate;
    transition: border-color 0.4s, background 0.4s;
}
.opt-method-card[b-ue682ysy9q]::before {
    content:""; position:absolute; left:14%; right:14%; top:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(180,210,255,0.22), transparent);
    pointer-events:none;
}
.opt-method-step:hover .opt-method-card[b-ue682ysy9q] {
    border-color: rgba(0,170,255,0.22);
    background: linear-gradient(180deg, rgba(0,170,255,0.05), rgba(0,170,255,0.01));
}
.opt-method-card h3[b-ue682ysy9q] {
    font-size: 1.05rem; font-weight: 700;
    color: #d6deec; margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.opt-method-card p[b-ue682ysy9q] {
    font-size: 0.92rem; color: rgba(180,195,220,0.62);
    line-height: 1.6; margin: 0;
}

/* ========== S9 — DIFERENCIAL ========== */
.opt-diff[b-ue682ysy9q] { padding: 100px 24px; }
.opt-diff-inner[b-ue682ysy9q] {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
}
.opt-diff-inner .hu-tag[b-ue682ysy9q],
.opt-diff-inner .hu-section-title[b-ue682ysy9q] { text-align: center; }
.opt-diff-text[b-ue682ysy9q] { margin-bottom: 30px; }
.opt-diff-text .opt-prose[b-ue682ysy9q] {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 18px;
}

/* ========== S10 — CONFIANZA TÉCNICA ========== */
.opt-tech[b-ue682ysy9q] { padding: 100px 24px; }
.opt-tech-grid[b-ue682ysy9q] {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto;
}
.opt-tech-pill[b-ue682ysy9q] {
    display: inline-flex; align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(0,170,255,0.16);
    font-size: 0.92rem; font-weight: 600;
    color: rgba(220,232,250,0.85);
    letter-spacing: -0.005em;
    transition: transform 0.3s, border-color 0.3s, background 0.3s, color 0.3s;
    cursor: default;
}
.opt-tech-pill:hover[b-ue682ysy9q] {
    transform: translateY(-2px);
    border-color: rgba(0,170,255,0.42);
    background: linear-gradient(180deg, rgba(0,170,255,0.08), rgba(0,170,255,0.02));
    color: #fff;
}

/* ========== S11 — CTA FINAL ========== */
.opt-cta-final[b-ue682ysy9q] {
    position: relative; overflow: hidden;
    padding: 110px 24px 130px;
}
.hu-cta-bg[b-ue682ysy9q] {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,100,255,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0,200,255,0.08) 0%, transparent 50%);
    animation: optCtaPulse-b-ue682ysy9q 6s ease-in-out infinite alternate;
}
@keyframes optCtaPulse-b-ue682ysy9q { 0% { opacity: 0.5; } 100% { opacity: 1; } }
.opt-cta-inner[b-ue682ysy9q] {
    text-align: center;
    position: relative; z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hu-cta-title[b-ue682ysy9q] {
    font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
    color: #e0e6f0; margin: 0 0 22px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.opt-cta-prose[b-ue682ysy9q] {
    font-size: 1.05rem; color: rgba(200,212,232,0.62);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 14px;
}
.opt-final-claims[b-ue682ysy9q] {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 38px auto 36px;
}
.opt-final-claim[b-ue682ysy9q] {
    display: inline-flex; align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0,170,255,0.07);
    border: 1px solid rgba(0,170,255,0.24);
    font-size: 0.85rem; font-weight: 600;
    color: rgba(125,249,255,0.95);
    letter-spacing: 0.01em;
}

/* ========== FOOTER ========== */
.hu-footer[b-ue682ysy9q] {
    position: relative; z-index: 2;
    background: rgba(3,6,16,0.9); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.04); padding: 56px 24px 0;
}
.hu-footer-top[b-ue682ysy9q] {
    display: flex; justify-content: space-between; gap: 48px;
    max-width: 1100px; margin: 0 auto; padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.04); flex-wrap: wrap;
}
.hu-footer-brand[b-ue682ysy9q] { max-width: 360px; }
.hu-footer-logo[b-ue682ysy9q] {
    height: 32px; opacity: 0.6; margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(0,170,255,0.1));
}
.hu-footer-brand p[b-ue682ysy9q] { font-size: 0.9rem; color: rgba(180,195,220,0.35); line-height: 1.6; }
.hu-footer-col[b-ue682ysy9q] { display: flex; flex-direction: column; gap: 7px; }
.hu-footer-col h4[b-ue682ysy9q] {
    font-size: 0.85rem; font-weight: 700; color: rgba(180,195,220,0.4);
    letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px;
}
.hu-footer-col a[b-ue682ysy9q] {
    font-size: 0.9rem; color: rgba(180,195,220,0.3);
    text-decoration: none; transition: color 0.3s;
}
.hu-footer-col a:hover[b-ue682ysy9q] { color: #60a5fa; }
.hu-footer-bottom[b-ue682ysy9q] { text-align: center; padding: 20px 0; max-width: 1100px; margin: 0 auto; }
.hu-footer-bottom p[b-ue682ysy9q] { font-size: 0.78rem; color: rgba(180,195,220,0.15); margin: 0; }

/* ========== SERVICIOS (formato Home — bento grid con foto e iconos) ========== */
.opt-services-home[b-ue682ysy9q] {
    padding: 100px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.opt-services-home .section-header[b-ue682ysy9q] {
    margin-bottom: 60px;
}

.opt-services-home .section-tag[b-ue682ysy9q] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.opt-services-home .section-title[b-ue682ysy9q] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 24px;
    text-align: center;
    max-width: 800px;
}

.opt-services-desc[b-ue682ysy9q] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Bento Grid (igual que Home) */
.opt-services-home .bento-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt-services-home .bento-card[b-ue682ysy9q] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
    background: rgba(10,20,50,0.6);
    display: flex;
    flex-direction: column;
}
.opt-services-home .bento-card:hover[b-ue682ysy9q] {
    transform: translateY(-6px);
    border-color: rgba(0,170,255,0.25);
    box-shadow: 0 20px 60px rgba(0,100,255,0.15), 0 0 0 1px rgba(0,170,255,0.08);
}

.opt-services-home .bento-card--large[b-ue682ysy9q] {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}
.opt-services-home .bento-card--medium[b-ue682ysy9q] {
    min-height: 240px;
}
.opt-services-home .bento-card--small[b-ue682ysy9q] {
    min-height: 220px;
    background: linear-gradient(145deg, rgba(10,25,60,0.8), rgba(6,15,41,0.9));
}

.opt-services-home .bento-card-bg[b-ue682ysy9q] {
    position: absolute;
    inset: 0;
}
.opt-services-home .bento-card-bg[b-ue682ysy9q]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,8,18,0.96) 0%, rgba(3,8,18,0.80) 45%, rgba(3,8,18,0.35) 100%);
    z-index: 1;
    pointer-events: none;
}
.opt-services-home .bento-card-bg img[b-ue682ysy9q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.5s ease, transform 0.8s ease;
}
.opt-services-home .bento-card:hover .bento-card-bg img[b-ue682ysy9q] {
    opacity: 0.45;
    transform: scale(1.05);
}

.opt-services-home .bento-card-content[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}
.opt-services-home .bento-card-content--no-bg[b-ue682ysy9q] {
    justify-content: center;
}

.opt-services-home .bento-card-icons[b-ue682ysy9q] {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.opt-services-home .bento-card-icons img[b-ue682ysy9q] {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 8px rgba(0,170,255,0.3));
}

.opt-services-home .bento-card h3[b-ue682ysy9q] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.opt-services-home .bento-card p[b-ue682ysy9q] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.opt-services-home .bento-card-link[b-ue682ysy9q] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ddff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.opt-services-home .bento-card-link:hover[b-ue682ysy9q] {
    color: #7df9ff;
    gap: 12px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0,170,255,0.35);
}
.opt-services-home .bento-card-link svg[b-ue682ysy9q] {
    transition: transform 0.3s ease;
}
.opt-services-home .bento-card-link:hover svg[b-ue682ysy9q] {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .opt-services-home .bento-grid[b-ue682ysy9q] {
        grid-template-columns: repeat(2, 1fr);
    }
    .opt-services-home .bento-card--large[b-ue682ysy9q] {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 380px;
    }
    .opt-services-home .bento-card--medium[b-ue682ysy9q] {
        min-height: 260px;
    }
    .opt-services-home .bento-card--small[b-ue682ysy9q] {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .opt-services-home[b-ue682ysy9q] {
        padding: 60px 16px;
    }
    .opt-services-home .section-title[b-ue682ysy9q] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .opt-services-home .bento-grid[b-ue682ysy9q] {
        grid-template-columns: 1fr;
    }
    .opt-services-home .bento-card--large[b-ue682ysy9q] {
        grid-column: span 1;
        min-height: 340px;
    }
    .opt-services-home .bento-card--medium[b-ue682ysy9q] { min-height: 280px; }
    .opt-services-home .bento-card--small[b-ue682ysy9q] { min-height: 160px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .opt-quick-grid[b-ue682ysy9q] { grid-template-columns: repeat(2, 1fr); }
    .opt-services-grid[b-ue682ysy9q] { grid-template-columns: repeat(2, 1fr); }
    .opt-problem-inner[b-ue682ysy9q] { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 820px) {
    .opt-vs-grid[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-vs-arrow[b-ue682ysy9q] { transform: rotate(90deg); margin: 0 auto; }
    .opt-ai-list[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-sectors-grid[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-ai-flow[b-ue682ysy9q] { padding: 22px 18px; }
    .opt-flow-line[b-ue682ysy9q] { width: 2px; height: 24px; background: linear-gradient(180deg, rgba(0,170,255,0.5), rgba(125,249,255,0.7)); }
    .opt-flow-line[b-ue682ysy9q]::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid rgba(125,249,255,0.7); border-bottom: none; }
    .opt-ai-flow[b-ue682ysy9q] { flex-direction: column; }
    .opt-flow-step[b-ue682ysy9q] { width: 100%; min-width: 0; }
}

@media (max-width: 768px) {
    .hu-hero-title[b-ue682ysy9q] { font-size: 2.2rem; }
    .hu-hero-sub[b-ue682ysy9q] { font-size: 0.95rem; }
    .hu-section[b-ue682ysy9q] { padding: 70px 16px; }
    .opt-quick-grid[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-services-grid[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-problem-stack[b-ue682ysy9q] { grid-template-columns: repeat(2, 1fr); padding: 24px 18px; }
    .opt-vs-col[b-ue682ysy9q] { padding: 28px 22px; }
    .opt-method-step[b-ue682ysy9q] { gap: 16px; }
    .opt-method-line[b-ue682ysy9q] { left: 23px; }
    .hu-footer-top[b-ue682ysy9q] { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
    .hu-hero-btns[b-ue682ysy9q] { flex-direction: column; align-items: stretch; }
    .hu-hero-btns a[b-ue682ysy9q], .hu-hero-btns .hu-btn[b-ue682ysy9q] { text-align: center; justify-content: center; }
    .opt-problem-stack[b-ue682ysy9q] { grid-template-columns: 1fr; }
    .opt-method-card[b-ue682ysy9q] { padding: 18px 20px; }
    .opt-quote[b-ue682ysy9q] { padding: 18px 20px; }
}

/* ============================================================
   OP LANDING WORK SECTION — reestructura precisa del grid
   ============================================================ */

.op-landing-work-section[b-ue682ysy9q] {
    padding: 100px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.op-landing-work-header[b-ue682ysy9q] {
    margin-bottom: 56px;
}

.op-landing-work-kicker[b-ue682ysy9q] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.op-landing-work-title[b-ue682ysy9q] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 800px;
}

.op-landing-work-subtitle[b-ue682ysy9q] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Contenedor principal de cards: replica el bento de Home */
.op-landing-work-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt[b-ue682ysy9q],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt[b-ue682ysy9q],
.opt-page .op-solutions-section .op-solution-card.hu-tilt[b-ue682ysy9q] {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt.hu-tilting[b-ue682ysy9q],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt.hu-tilting[b-ue682ysy9q],
.opt-page .op-solutions-section .op-solution-card.hu-tilt.hu-tilting[b-ue682ysy9q] {
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.opt-page .opt-services-home .op-landing-work-main-card.hu-tilt:hover[b-ue682ysy9q],
.opt-page .opt-services-home .op-landing-work-side-card.hu-tilt:hover[b-ue682ysy9q],
.opt-page .op-solutions-section .op-solution-card.hu-tilt:hover[b-ue682ysy9q] {
    transform: translateY(0);
}

/* Estos wrappers conservan el HTML, pero dejan que las cards ocupen el grid como en Home */
.op-landing-work-top[b-ue682ysy9q] {
    display: contents;
}

.op-landing-work-main-card[b-ue682ysy9q] {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,20,50,0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.op-landing-work-main-card:hover[b-ue682ysy9q] {
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}

.op-landing-work-side[b-ue682ysy9q] {
    display: contents;
}

.op-landing-work-side-card[b-ue682ysy9q] {
    min-height: 230px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,20,50,0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.op-landing-work-side-card:hover[b-ue682ysy9q] {
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}
.op-landing-work-main-card:hover .hu-card-glow[b-ue682ysy9q],
.op-landing-work-side-card:hover .hu-card-glow[b-ue682ysy9q] {
    opacity: 1;
}

/* Fila inferior: tres cards iguales */
.op-landing-work-bottom-grid[b-ue682ysy9q] {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.op-landing-work-bottom-card[b-ue682ysy9q] {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(145deg, rgba(10,25,60,0.8), rgba(6,15,41,0.9));
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
}
.op-landing-work-bottom-card:hover[b-ue682ysy9q] {
    transform: translateY(-6px);
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 20px 60px rgba(0,100,255,0.12);
}

/* Overlays e imágenes para cards con fondo */
.op-landing-work-main-card .bento-card-bg[b-ue682ysy9q],
.op-landing-work-side-card .bento-card-bg[b-ue682ysy9q] {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.op-landing-work-main-card .hu-card-glow[b-ue682ysy9q],
.op-landing-work-side-card .hu-card-glow[b-ue682ysy9q] {
    z-index: 1;
}
.op-landing-work-main-card .bento-card-bg[b-ue682ysy9q]::after,
.op-landing-work-side-card .bento-card-bg[b-ue682ysy9q]::after {
    content: none;
}
.op-landing-work-main-card .bento-card-bg img[b-ue682ysy9q],
.op-landing-work-side-card .bento-card-bg img[b-ue682ysy9q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.5s ease, transform 0.8s ease;
}
.op-landing-work-main-card:hover .bento-card-bg img[b-ue682ysy9q],
.op-landing-work-side-card:hover .bento-card-bg img[b-ue682ysy9q] {
    opacity: 0.35;
    transform: scale(1.05);
}

/* Contenido de las cards */
.op-landing-work-main-card .bento-card-content[b-ue682ysy9q],
.op-landing-work-side-card .bento-card-content[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
    background: linear-gradient(to top, rgba(4,11,30,0.95) 20%, transparent 100%);
}
.op-landing-work-bottom-card .bento-card-content[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    flex: 1;
}

/* Tipografía legible */
.op-landing-work-main-card h3[b-ue682ysy9q],
.op-landing-work-side-card h3[b-ue682ysy9q],
.op-landing-work-bottom-card h3[b-ue682ysy9q] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.op-landing-work-main-card p[b-ue682ysy9q],
.op-landing-work-side-card p[b-ue682ysy9q],
.op-landing-work-bottom-card p[b-ue682ysy9q] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 16px;
}
.op-landing-work-main-card .bento-card-link[b-ue682ysy9q],
.op-landing-work-side-card .bento-card-link[b-ue682ysy9q] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aaff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.op-landing-work-main-card .bento-card-link:hover[b-ue682ysy9q],
.op-landing-work-side-card .bento-card-link:hover[b-ue682ysy9q] {
    color: #00ddff;
    gap: 12px;
    text-decoration: none;
}

/* Responsive tablet */
@media (max-width: 1024px) {
    .op-landing-work-grid[b-ue682ysy9q] {
        grid-template-columns: repeat(2, 1fr);
    }
    .op-landing-work-main-card[b-ue682ysy9q] {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 380px;
    }
    .op-landing-work-side-card[b-ue682ysy9q] {
        min-height: 260px;
    }
    .op-landing-work-bottom-grid[b-ue682ysy9q] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive móvil */
@media (max-width: 768px) {
    .op-landing-work-section[b-ue682ysy9q] {
        padding: 60px 16px;
    }
    .op-landing-work-title[b-ue682ysy9q] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .op-landing-work-grid[b-ue682ysy9q] {
        grid-template-columns: 1fr;
    }
    .op-landing-work-main-card[b-ue682ysy9q] {
        grid-column: span 1;
        min-height: 340px;
    }
    .op-landing-work-side-card[b-ue682ysy9q] {
        min-height: 280px;
    }
    .op-landing-work-bottom-grid[b-ue682ysy9q] {
        grid-template-columns: 1fr;
    }
    .op-landing-work-bottom-card[b-ue682ysy9q] {
        min-height: 160px;
    }
}

/* ============================================================
   MARQUEE — piezas conectables (copiado desde OptInicio)
   ============================================================ */
.op-landing-marquee-section[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
    overflow: hidden;
}
.op-landing-marquee[b-ue682ysy9q] {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    padding: 14px 0;
    border-top: 1px solid rgba(0,170,255,0.08);
    border-bottom: 1px solid rgba(0,170,255,0.08);
    background: rgba(6,15,41,0.4);
}
.op-landing-marquee-track[b-ue682ysy9q] {
    display: inline-flex;
    gap: 36px;
    white-space: nowrap;
    animation: opLandingMarquee-b-ue682ysy9q 90s linear infinite;
}
.op-landing-marquee-track span[b-ue682ysy9q] {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(180,195,220,0.4);
    letter-spacing: -0.01em;
}
.op-landing-marquee-track span:nth-child(odd)[b-ue682ysy9q] {
    color: rgba(0,170,255,0.7);
}
@keyframes opLandingMarquee-b-ue682ysy9q {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .op-landing-marquee-track span[b-ue682ysy9q] {
        font-size: 1rem;
    }
}

/* ============================================================
   S1c — SOLUCIONES EN ACCIÓN
   ============================================================ */
.op-solutions-section[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 100px 24px 80px;
}

.op-solutions-header[b-ue682ysy9q] {
    margin-bottom: 56px;
}

.op-solutions-tag[b-ue682ysy9q] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00aaff;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.op-solutions-title[b-ue682ysy9q] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 800px;
}

.op-solutions-subtitle[b-ue682ysy9q] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(200,212,232,0.72);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.op-solutions-grid[b-ue682ysy9q] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.op-solution-card[b-ue682ysy9q] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.op-solution-card:hover[b-ue682ysy9q] {
    border-color: rgba(0,170,255,0.25);
    box-shadow: 0 20px 60px rgba(0,100,255,0.15), 0 0 0 1px rgba(0,170,255,0.08);
}
.op-solution-card:hover .hu-card-glow[b-ue682ysy9q] {
    opacity: 1;
}

.op-solution-card-featured[b-ue682ysy9q] {
    grid-column: 1 / -1;
    min-height: 380px;
}

.op-solution-card-bg[b-ue682ysy9q] {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.op-solution-card-bg img[b-ue682ysy9q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.op-solution-card:hover .op-solution-card-bg img[b-ue682ysy9q] {
    opacity: 0.65;
    transform: scale(1.05);
}

.op-solution-card-overlay[b-ue682ysy9q] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(3,8,18,0.92) 15%, rgba(3,8,18,0.50) 55%, rgba(3,8,18,0.20) 100%);
}
.op-solution-card .hu-card-glow[b-ue682ysy9q] {
    z-index: 1;
}

.op-solution-card-content[b-ue682ysy9q] {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}

.op-solution-card h3[b-ue682ysy9q] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.op-solution-card p[b-ue682ysy9q] {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.op-solution-card-link[b-ue682ysy9q] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ddff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.op-solution-card-link:hover[b-ue682ysy9q] {
    color: #7df9ff;
    gap: 12px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0,170,255,0.35);
}

.op-solution-card-link svg[b-ue682ysy9q] {
    transition: transform 0.3s ease;
}

.op-solution-card-link:hover svg[b-ue682ysy9q] {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .op-solutions-section[b-ue682ysy9q] {
        padding: 60px 16px;
    }
    .op-solutions-title[b-ue682ysy9q] {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    .op-solutions-grid[b-ue682ysy9q] {
        grid-template-columns: 1fr;
    }
    .op-solution-card[b-ue682ysy9q] {
        min-height: 280px;
    }
    .op-solution-card-featured[b-ue682ysy9q] {
        min-height: 320px;
    }
}
/* /Pages/RestaurantManager.razor.rz.scp.css */
/* Restaurant Manager - pagina premium aislada con acento burdeos */
.restaurant-page[b-pwcurwx6zd] {
    --restaurant-bg: #030812;
    --restaurant-wine: #8b1e2d;
    --restaurant-wine-strong: #9a1f35;
    --restaurant-wine-dark: #5e1220;
    --restaurant-wine-soft: rgba(154,31,53,0.16);
    --restaurant-text: #f0f2f8;
    --restaurant-muted: rgba(255,255,255,0.6);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--restaurant-text);
    background:
        radial-gradient(ellipse at 52% 0%, rgba(98,18,34,0.38) 0%, rgba(3,8,18,0) 52%),
        linear-gradient(180deg, #030812 0%, #060712 45%, #030812 100%);
}

.restaurant-page *[b-pwcurwx6zd],
.restaurant-page *[b-pwcurwx6zd]::before,
.restaurant-page *[b-pwcurwx6zd]::after {
    box-sizing: border-box;
}

.restaurant-progress[b-pwcurwx6zd] {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 9999;
    background: rgba(255,255,255,0.03);
}

.restaurant-progress-bar[b-pwcurwx6zd] {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #5e1220, #8b1e2d, #b33a4e, #d78991);
    box-shadow: 0 0 12px rgba(154,31,53,0.5);
    transition: width 0.05s linear;
}

.restaurant-canvas[b-pwcurwx6zd] {
    position: fixed;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 0;
}

.restaurant-cursor-glow[b-pwcurwx6zd] {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(154,31,53,0.08) 0%, transparent 70%);
    transition: opacity 0.3s ease;
}

.restaurant-page:hover .restaurant-cursor-glow[b-pwcurwx6zd] {
    opacity: 1;
}

.restaurant-accent[b-pwcurwx6zd] {
    color: var(--restaurant-wine-strong);
    background: linear-gradient(135deg, #7a1828 0%, #9a1f35 46%, #d78991 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(154,31,53,0.24);
}

.restaurant-nebula-text[b-pwcurwx6zd] {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #6b1424 0%, #8b1e2d 18%, #b43a50 44%, #d58d95 58%, #9a1f35 82%, #6b1424 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: restaurantNebulaFlow-b-pwcurwx6zd 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(154,31,53,0.32));
}

.restaurant-nebula-text[b-pwcurwx6zd]::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    text-shadow: 0 0 42px rgba(154,31,53,0.42), 0 0 88px rgba(120,20,38,0.2);
    animation: restaurantNebulaGlow-b-pwcurwx6zd 4s ease-in-out infinite alternate;
}

@keyframes restaurantNebulaFlow-b-pwcurwx6zd {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

@keyframes restaurantNebulaGlow-b-pwcurwx6zd {
    from { opacity: 0.62; filter: blur(1px); }
    to { opacity: 1; filter: blur(0); }
}

.restaurant-hero[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    overflow: hidden;
    text-align: center;
}

.restaurant-hero-bg[b-pwcurwx6zd] {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background: url('Images/FondoPrincipalNuevoLogo.png') center center / cover no-repeat;
    z-index: 0;
    animation: restaurantKenBurns-b-pwcurwx6zd 25s ease-in-out infinite alternate;
}

.restaurant-hero-overlay[b-pwcurwx6zd] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,6,12,0.62) 0%, rgba(7,7,14,0.78) 42%, rgba(3,8,18,0.97) 100%);
}

.restaurant-hero-grid[b-pwcurwx6zd] {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(154,31,53,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154,31,53,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    animation: restaurantGridPulse-b-pwcurwx6zd 8s ease-in-out infinite alternate;
}

.restaurant-glow[b-pwcurwx6zd] {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.restaurant-glow--1[b-pwcurwx6zd] {
    width: 600px;
    height: 600px;
    top: -12%;
    left: -10%;
    background: rgba(139,30,45,0.16);
    animation: restaurantFloat1-b-pwcurwx6zd 12s ease-in-out infinite alternate;
}

.restaurant-glow--2[b-pwcurwx6zd] {
    width: 520px;
    height: 520px;
    right: -12%;
    bottom: -16%;
    background: rgba(122,24,40,0.12);
    animation: restaurantFloat2-b-pwcurwx6zd 10s ease-in-out infinite alternate;
}

.restaurant-glow--3[b-pwcurwx6zd] {
    width: 320px;
    height: 320px;
    top: 28%;
    right: 18%;
    background: rgba(184,70,84,0.09);
    animation: restaurantFloat3-b-pwcurwx6zd 15s ease-in-out infinite alternate;
}

.restaurant-hero-content[b-pwcurwx6zd] {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-bg[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-grid[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-glow[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-badge[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-title[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-sub[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-btns[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-micro[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-scroll-cue[b-pwcurwx6zd] {
    opacity: 0;
}

.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-badge[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-title[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-sub[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-btns[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-hero-micro[b-pwcurwx6zd] {
    transform: translateY(24px);
}

.restaurant-page:not(.restaurant-hero-ready) .restaurant-text-line[b-pwcurwx6zd],
.restaurant-page:not(.restaurant-hero-ready) .restaurant-nebula-text[b-pwcurwx6zd] {
    opacity: 0;
}

.restaurant-page:not(.restaurant-hero-ready) .restaurant-text-line[b-pwcurwx6zd] {
    transform: translateY(34px) scale(0.985);
    filter: blur(8px);
}

.restaurant-page:not(.restaurant-hero-ready) .restaurant-nebula-text[b-pwcurwx6zd] {
    transform: translateY(12px);
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-bg[b-pwcurwx6zd] {
    animation: restaurantKenBurns-b-pwcurwx6zd 25s ease-in-out infinite alternate, restaurantHeroBackdropIn-b-pwcurwx6zd 0.95s cubic-bezier(.16, 1, .3, 1) both;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-grid[b-pwcurwx6zd] {
    animation: restaurantGridPulse-b-pwcurwx6zd 4s ease-in-out infinite alternate, restaurantHeroFadeIn-b-pwcurwx6zd 0.9s cubic-bezier(.16, 1, .3, 1) both;
}

.restaurant-page.restaurant-hero-ready .restaurant-glow[b-pwcurwx6zd] {
    opacity: 1;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-badge[b-pwcurwx6zd] {
    animation: restaurantHeroContentIn-b-pwcurwx6zd 0.78s cubic-bezier(.16, 1, .3, 1) 0.06s both;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-title[b-pwcurwx6zd] {
    transform: none;
    animation: restaurantHeroFadeIn-b-pwcurwx6zd 0.3s cubic-bezier(.16, 1, .3, 1) 0.1s both;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line[b-pwcurwx6zd] {
    animation: restaurantHeroLineIn-b-pwcurwx6zd 0.9s cubic-bezier(.16, 1, .3, 1) both;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(1)[b-pwcurwx6zd] {
    animation-delay: 0.14s;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(2)[b-pwcurwx6zd] {
    animation-delay: 0.24s;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(3)[b-pwcurwx6zd] {
    animation-delay: 0.34s;
}

.restaurant-page.restaurant-hero-ready .restaurant-nebula-text[b-pwcurwx6zd] {
    animation:
        restaurantNebulaFlow-b-pwcurwx6zd 6s ease-in-out infinite alternate,
        restaurantHeroWordIn-b-pwcurwx6zd 0.64s cubic-bezier(.34, 1.56, .64, 1) both;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(1) .restaurant-nebula-text[b-pwcurwx6zd] {
    animation-delay: 0s, 0.24s;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(2) .restaurant-nebula-text[b-pwcurwx6zd] {
    animation-delay: 0s, 0.36s;
}

.restaurant-page.restaurant-hero-ready .restaurant-text-line:nth-child(3) .restaurant-nebula-text[b-pwcurwx6zd] {
    animation-delay: 0s, 0.48s;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-sub[b-pwcurwx6zd] {
    animation: restaurantHeroContentIn-b-pwcurwx6zd 0.78s cubic-bezier(.16, 1, .3, 1) 0.28s both;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-btns[b-pwcurwx6zd] {
    animation: restaurantHeroContentIn-b-pwcurwx6zd 0.76s cubic-bezier(.16, 1, .3, 1) 0.42s both;
}

.restaurant-page.restaurant-hero-ready .restaurant-hero-micro[b-pwcurwx6zd] {
    animation: restaurantHeroContentIn-b-pwcurwx6zd 0.72s cubic-bezier(.16, 1, .3, 1) 0.56s both;
}

.restaurant-page.restaurant-hero-ready .restaurant-scroll-cue[b-pwcurwx6zd] {
    animation: restaurantHeroFadeIn-b-pwcurwx6zd 0.7s cubic-bezier(.16, 1, .3, 1) 0.72s both;
}

.restaurant-hero-badge[b-pwcurwx6zd] {
    position: relative;
    top: -80px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(154,31,53,0.24);
    background: rgba(154,31,53,0.08);
    color: rgba(230,130,145,0.95);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.restaurant-badge-dot[b-pwcurwx6zd] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--restaurant-wine-strong);
    animation: restaurantDotPulse-b-pwcurwx6zd 2s ease-in-out infinite;
}

.restaurant-hero-title[b-pwcurwx6zd] {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.restaurant-text-line[b-pwcurwx6zd] {
    display: block;
}

.restaurant-hero-sub[b-pwcurwx6zd] {
    max-width: 720px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.66);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.72;
}

.restaurant-hero-btns[b-pwcurwx6zd],
.restaurant-final-cta-actions[b-pwcurwx6zd] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.restaurant-hero-micro[b-pwcurwx6zd] {
    max-width: 620px;
    margin: 28px auto 0;
    color: rgba(220,220,230,0.46);
    font-size: 0.86rem;
}

.restaurant-scroll-cue[b-pwcurwx6zd] {
    position: absolute;
    bottom: 36px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.restaurant-scroll-cue span[b-pwcurwx6zd] {
    color: rgba(220,220,230,0.28);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
}

.restaurant-scroll-cue div[b-pwcurwx6zd] {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(154,31,53,0.7), transparent);
    animation: restaurantScrollPulse-b-pwcurwx6zd 2s ease-in-out infinite;
}

.restaurant-btn[b-pwcurwx6zd] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 32px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.restaurant-btn:hover[b-pwcurwx6zd] {
    color: #fff;
    text-decoration: none;
}

.restaurant-btn--primary[b-pwcurwx6zd] {
    background: linear-gradient(135deg, #7a1828, #9a1f35);
    box-shadow: 0 8px 28px rgba(154,31,53,0.34);
}

.restaurant-btn--primary:hover[b-pwcurwx6zd] {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 42px rgba(154,31,53,0.46);
}

.restaurant-btn--ghost[b-pwcurwx6zd] {
    background: transparent;
    border-color: rgba(154,31,53,0.34);
    color: rgba(255,255,255,0.82);
}

.restaurant-btn--ghost:hover[b-pwcurwx6zd] {
    background: rgba(154,31,53,0.08);
    border-color: rgba(154,31,53,0.58);
}

.restaurant-btn-shine[b-pwcurwx6zd] {
    position: absolute;
    inset: 0 auto 0 -100%;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.23), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.restaurant-btn--primary:hover .restaurant-btn-shine[b-pwcurwx6zd] {
    left: 140%;
}

.restaurant-trust[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    padding: 64px 24px;
    background: transparent;
}

.restaurant-trust-inner[b-pwcurwx6zd] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
}

.restaurant-trust-item[b-pwcurwx6zd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    flex: 0 0 auto;
}

.restaurant-trust-item:hover[b-pwcurwx6zd] {
    transform: translateY(-5px);
}

.restaurant-trust-icon[b-pwcurwx6zd] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    animation: restaurantTrustFloat-b-pwcurwx6zd 5.5s ease-in-out infinite;
}

.restaurant-trust-icon[b-pwcurwx6zd]::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154,31,53,0.24) 0%, rgba(215,137,145,0.07) 45%, transparent 75%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}

.restaurant-trust-item:hover .restaurant-trust-icon[b-pwcurwx6zd] {
    animation-play-state: paused;
}

.restaurant-trust-item:hover .restaurant-trust-icon[b-pwcurwx6zd]::before {
    opacity: 1;
    transform: scale(1.45);
}

.restaurant-trust-item:nth-child(1) .restaurant-trust-icon[b-pwcurwx6zd] { animation-delay: 0s; }
.restaurant-trust-item:nth-child(3) .restaurant-trust-icon[b-pwcurwx6zd] { animation-delay: 0.55s; }
.restaurant-trust-item:nth-child(5) .restaurant-trust-icon[b-pwcurwx6zd] { animation-delay: 1.10s; }
.restaurant-trust-item:nth-child(7) .restaurant-trust-icon[b-pwcurwx6zd] { animation-delay: 1.65s; }
.restaurant-trust-item:nth-child(9) .restaurant-trust-icon[b-pwcurwx6zd] { animation-delay: 2.20s; }

.restaurant-trust-item img[b-pwcurwx6zd] {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(154,31,53,0.3));
    transition: filter 0.45s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}

.restaurant-trust-item:hover img[b-pwcurwx6zd] {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 22px rgba(154,31,53,0.68)) brightness(1.12);
}

@keyframes restaurantTrustFloat-b-pwcurwx6zd {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.restaurant-trust-label[b-pwcurwx6zd] {
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255,255,255,0.02);
    transition: color 0.4s ease, transform 0.45s cubic-bezier(.4,0,.2,1);
}

.restaurant-trust-label[b-pwcurwx6zd]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #7a1828, #d78991);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

.restaurant-trust-item:hover .restaurant-trust-label[b-pwcurwx6zd] {
    color: #fff;
    transform: translateX(2px);
}

.restaurant-trust-item:hover .restaurant-trust-label[b-pwcurwx6zd]::after {
    width: 100%;
}

.restaurant-trust-divider[b-pwcurwx6zd] {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

.restaurant-section[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    padding: 96px 24px;
}

.restaurant-inner[b-pwcurwx6zd] {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.restaurant-block-tag[b-pwcurwx6zd] {
    display: inline-flex;
    margin: 0 0 14px;
    color: rgba(220,122,138,0.76);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.restaurant-block-title[b-pwcurwx6zd],
.restaurant-feature-title[b-pwcurwx6zd] {
    margin: 0 0 20px;
    color: #f0f2f8;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.restaurant-block-desc[b-pwcurwx6zd],
.restaurant-feature-text[b-pwcurwx6zd] {
    max-width: 720px;
    margin: 0;
    color: var(--restaurant-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.restaurant-bento-head[b-pwcurwx6zd] {
    margin-bottom: 60px;
    text-align: center;
}

.restaurant-bento-head .restaurant-block-tag[b-pwcurwx6zd] {
    display: flex;
    width: fit-content;
    margin-right: auto;
}

.restaurant-bento-head .restaurant-block-desc[b-pwcurwx6zd] {
    margin: 0 auto;
}

.restaurant-reveal[b-pwcurwx6zd] {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.restaurant-page.restaurant-motion-ready .restaurant-reveal[b-pwcurwx6zd] {
    opacity: 0;
    transform: translateY(34px);
}

.restaurant-page.restaurant-motion-ready .restaurant-reveal.restaurant-visible[b-pwcurwx6zd] {
    opacity: 1;
    transform: translateY(0);
}

.restaurant-tilt[b-pwcurwx6zd] {
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.restaurant-card-glow[b-pwcurwx6zd] {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(154,31,53,0.13), transparent 58%);
    transition: opacity 0.4s ease;
}

.restaurant-bento-card:hover .restaurant-card-glow[b-pwcurwx6zd],
.restaurant-connected-panel:hover .restaurant-card-glow[b-pwcurwx6zd],
.restaurant-final-cta-panel:hover .restaurant-card-glow[b-pwcurwx6zd] {
    opacity: 1;
}

.restaurant-bento-grid[b-pwcurwx6zd] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 18px;
}

.restaurant-bento-card[b-pwcurwx6zd] {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.055);
    background: rgba(255,255,255,0.015);
}

.restaurant-bento-card:hover[b-pwcurwx6zd],
.restaurant-connected-panel:hover[b-pwcurwx6zd],
.restaurant-final-cta-panel:hover[b-pwcurwx6zd] {
    border-color: rgba(154,31,53,0.28);
    box-shadow: 0 24px 78px rgba(154,31,53,0.15);
}

.restaurant-bento-card--wide[b-pwcurwx6zd] {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 22px;
    min-height: 478px;
    padding: 0;
}

.restaurant-bento-copy[b-pwcurwx6zd] {
    padding: 32px 32px 0;
}

.restaurant-bento-visual[b-pwcurwx6zd],
.restaurant-feature-media[b-pwcurwx6zd] {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 0 0 22px 22px;
}

.restaurant-bento-visual img[b-pwcurwx6zd],
.restaurant-feature-media img[b-pwcurwx6zd] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.82) saturate(1.08);
    transition: transform 0.8s ease, opacity 0.5s ease;
}

.restaurant-bento-card:hover .restaurant-bento-visual img[b-pwcurwx6zd],
.restaurant-feature-media:hover img[b-pwcurwx6zd] {
    transform: scale(1.05);
    opacity: 0.84;
}

.restaurant-bento-visual-overlay[b-pwcurwx6zd],
.restaurant-feature-media-shade[b-pwcurwx6zd] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(3,8,18,0.95) 0%, rgba(3,8,18,0.44) 50%, rgba(154,31,53,0.10) 100%),
        radial-gradient(circle at 82% 18%, rgba(154,31,53,0.18), transparent 38%);
}

.restaurant-bento-card > span[b-pwcurwx6zd],
.restaurant-bento-copy span[b-pwcurwx6zd] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(224,128,145,0.86);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.restaurant-bento-card h3[b-pwcurwx6zd] {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.22;
    font-weight: 850;
}

.restaurant-bento-card--wide h3[b-pwcurwx6zd] {
    font-size: 1.72rem;
}

.restaurant-bento-card p[b-pwcurwx6zd] {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,0.56);
    font-size: 0.94rem;
    line-height: 1.66;
}

.restaurant-bento-icon[b-pwcurwx6zd] {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #b43a50;
    pointer-events: none;
}

.restaurant-feature-grid[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(36px, 6vw, 74px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurant-feature-grid--reverse[b-pwcurwx6zd] {
    grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.restaurant-feature-content[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
}

.restaurant-feature-media[b-pwcurwx6zd] {
    min-height: 420px;
    padding: 0;
    border-radius: 22px;
    border: 1px solid rgba(154,31,53,0.13);
    background:
        radial-gradient(circle at 82% 12%, rgba(154,31,53,0.12), transparent 38%),
        rgba(255,255,255,0.018);
    box-shadow: 0 30px 90px rgba(0,0,0,0.32), 0 0 70px rgba(154,31,53,0.06);
}

.restaurant-feature-media .restaurant-card-glow[b-pwcurwx6zd] {
    z-index: 2;
}

.restaurant-feature-note[b-pwcurwx6zd] {
    margin: 24px 0 0;
    padding-left: 16px;
    border-left: 2px solid rgba(154,31,53,0.5);
    color: rgba(225,232,245,0.58);
    font-size: 0.94rem;
    line-height: 1.68;
}

.restaurant-chip-list[b-pwcurwx6zd] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.restaurant-chip-list--compact[b-pwcurwx6zd] {
    justify-content: center;
    margin-top: 28px;
}

.restaurant-chip[b-pwcurwx6zd] {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(154,31,53,0.19);
    background: rgba(154,31,53,0.07);
    color: rgba(245,248,255,0.78);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.25;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.restaurant-connected-section[b-pwcurwx6zd] {
    padding: 74px 24px;
}

.restaurant-connected-panel[b-pwcurwx6zd],
.restaurant-final-cta-panel[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(154,31,53,0.13);
    background:
        radial-gradient(circle at 18% 0%, rgba(154,31,53,0.12), transparent 38%),
        radial-gradient(circle at 84% 100%, rgba(98,18,34,0.08), transparent 42%),
        rgba(255,255,255,0.018);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.restaurant-connected-panel[b-pwcurwx6zd] {
    padding: clamp(32px, 5vw, 52px);
}

.restaurant-connected-panel .restaurant-feature-text[b-pwcurwx6zd],
.restaurant-final-cta-panel p[b-pwcurwx6zd] {
    max-width: 760px;
    margin: 0 auto;
}

.restaurant-connected-panel > :not(.restaurant-card-glow)[b-pwcurwx6zd],
.restaurant-final-cta-panel > :not(.restaurant-card-glow)[b-pwcurwx6zd] {
    position: relative;
    z-index: 1;
}

.restaurant-final-cta[b-pwcurwx6zd] {
    padding: 72px 24px 108px;
}

.restaurant-final-cta-panel[b-pwcurwx6zd] {
    max-width: 900px;
    padding: clamp(34px, 5vw, 56px);
}

.restaurant-final-cta-panel h2[b-pwcurwx6zd] {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1.14;
    font-weight: 850;
}

.restaurant-final-cta-panel p[b-pwcurwx6zd] {
    margin-top: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.62);
    font-size: 1.02rem;
    line-height: 1.68;
}

.restaurant-footer[b-pwcurwx6zd] {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}

.restaurant-footer-inner[b-pwcurwx6zd] {
    max-width: 760px;
    margin: 0 auto;
}

.restaurant-footer p[b-pwcurwx6zd] {
    margin: 0;
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

@keyframes restaurantKenBurns-b-pwcurwx6zd {
    0% { transform: scale(1) translate(0,0); }
    33% { transform: scale(1.08) translate(-1.5%,-1%); }
    66% { transform: scale(1.05) translate(1%,-0.5%); }
    100% { transform: scale(1.1) translate(-0.5%,1%); }
}

@keyframes restaurantGridPulse-b-pwcurwx6zd {
    from { opacity: 0.4; }
    to { opacity: 0.82; }
}

@keyframes restaurantFloat1-b-pwcurwx6zd {
    from { transform: translate(0,0); }
    to { transform: translate(60px,40px); }
}

@keyframes restaurantFloat2-b-pwcurwx6zd {
    from { transform: translate(0,0); }
    to { transform: translate(-40px,-30px); }
}

@keyframes restaurantFloat3-b-pwcurwx6zd {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(-30px,50px) scale(1.3); }
}

@keyframes restaurantDotPulse-b-pwcurwx6zd {
    0%, 100% { box-shadow: 0 0 0 0 rgba(154,31,53,0.45); }
    50% { box-shadow: 0 0 0 10px rgba(154,31,53,0); }
}

@keyframes restaurantScrollPulse-b-pwcurwx6zd {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.4); }
}

@keyframes restaurantHeroBackdropIn-b-pwcurwx6zd {
    from { opacity: 0; filter: blur(10px) brightness(0.72); }
    to { opacity: 1; filter: blur(0) brightness(1); }
}

@keyframes restaurantHeroFadeIn-b-pwcurwx6zd {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes restaurantHeroContentIn-b-pwcurwx6zd {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes restaurantHeroLineIn-b-pwcurwx6zd {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.985);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes restaurantHeroWordIn-b-pwcurwx6zd {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .restaurant-trust-inner[b-pwcurwx6zd] {
        flex-wrap: wrap;
    }

    .restaurant-trust-divider:nth-of-type(2n)[b-pwcurwx6zd] {
        display: none;
    }

    .restaurant-bento-grid[b-pwcurwx6zd] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-bento-card--wide[b-pwcurwx6zd] {
        grid-column: span 2;
    }

    .restaurant-feature-grid[b-pwcurwx6zd],
    .restaurant-feature-grid--reverse[b-pwcurwx6zd] {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
        gap: 42px;
    }
}

@media (max-width: 900px) {
    .restaurant-section[b-pwcurwx6zd] {
        padding: 72px 20px;
    }

    .restaurant-feature-grid[b-pwcurwx6zd],
    .restaurant-feature-grid--reverse[b-pwcurwx6zd] {
        grid-template-columns: 1fr;
    }

    .restaurant-feature-media[b-pwcurwx6zd] {
        min-height: 360px;
    }

    .restaurant-connected-section[b-pwcurwx6zd] {
        padding: 58px 20px;
    }

    .restaurant-final-cta[b-pwcurwx6zd] {
        padding: 60px 20px 88px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero[b-pwcurwx6zd] {
        min-height: auto;
        padding: 110px 18px 74px;
    }

    .restaurant-trust[b-pwcurwx6zd] {
        padding: 40px 12px;
    }

    .restaurant-trust-inner[b-pwcurwx6zd] {
        flex-wrap: wrap;
    }

    .restaurant-trust-item[b-pwcurwx6zd] {
        padding: 10px 18px;
        gap: 12px;
    }

    .restaurant-trust-icon[b-pwcurwx6zd] {
        width: 44px;
        height: 44px;
    }

    .restaurant-trust-item img[b-pwcurwx6zd] {
        width: 32px;
        height: 32px;
    }

    .restaurant-trust-label[b-pwcurwx6zd] {
        font-size: 0.8rem;
    }

    .restaurant-trust-divider[b-pwcurwx6zd] {
        display: none;
    }

    .restaurant-hero-badge[b-pwcurwx6zd] {
        top: 0;
    }

    .restaurant-bento-grid[b-pwcurwx6zd] {
        grid-template-columns: 1fr;
    }

    .restaurant-bento-card--wide[b-pwcurwx6zd] {
        grid-column: span 1;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .restaurant-bento-card--wide .restaurant-bento-visual[b-pwcurwx6zd] {
        min-height: 190px;
    }

    .restaurant-feature-media[b-pwcurwx6zd] {
        min-height: 300px;
        border-radius: 18px;
    }

    .restaurant-chip[b-pwcurwx6zd] {
        font-size: 0.8rem;
    }

    .restaurant-final-cta-actions .restaurant-btn[b-pwcurwx6zd] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .restaurant-hero-title[b-pwcurwx6zd] {
        font-size: 2.05rem;
    }

    .restaurant-block-title[b-pwcurwx6zd],
    .restaurant-feature-title[b-pwcurwx6zd] {
        font-size: 1.55rem;
    }

    .restaurant-btn[b-pwcurwx6zd] {
        width: 100%;
        padding-inline: 20px;
    }

    .restaurant-bento-card[b-pwcurwx6zd] {
        padding: 22px;
    }

    .restaurant-bento-copy[b-pwcurwx6zd] {
        padding: 24px 24px 0;
    }

    .restaurant-feature-media[b-pwcurwx6zd] {
        min-height: 240px;
    }
}
/* /Pages/TallerManager.razor.rz.scp.css */
/* ============================================================
   TALLER MANAGER — Landing premium con acento naranja
   Clases con prefijo tm- para aislar estilos de esta página.
   ============================================================ */

/* ========== PAGE WRAPPER ========== */
.tm-page[b-ap98w1x0ej] {
    background: #030812;
    min-height: 100vh;
    color: #e0e6f0;
    overflow-x: hidden;
    position: relative;
}

/* ========== SCROLL PROGRESS ========== */
.tm-progress[b-ap98w1x0ej] {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px; z-index: 9999; background: rgba(255,255,255,0.03);
}
.tm-progress-bar[b-ap98w1x0ej] {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #cc5500, #ff7700, #ffaa00, #ffcc00);
    transition: width 0.05s linear;
    box-shadow: 0 0 12px rgba(255,140,0,0.5);
}

/* ========== CANVAS ========== */
.tm-canvas[b-ap98w1x0ej] {
    position: fixed; inset: 0;
    width: 100% !important; height: 100% !important;
    z-index: 0; pointer-events: none;
}

/* ========== CURSOR GLOW ========== */
.tm-cursor-glow[b-ap98w1x0ej] {
    position: fixed; width: 400px; height: 400px;
    border-radius: 50%; pointer-events: none; z-index: 1;
    background: radial-gradient(circle, rgba(255,120,0,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.tm-page:hover .tm-cursor-glow[b-ap98w1x0ej] { opacity: 1; }

/* ========== UTILITIES ========== */
.tm-orange-accent[b-ap98w1x0ej] {
    color: #ff8c00;
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 42%, #ffcc66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(255, 120, 0, 0.22);
}

/* ===== NEBULA TEXT EFFECT (orange variant) ===== */
.tm-nebula-text[b-ap98w1x0ej] {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #cc5500 0%,
        #ff7700 15%,
        #ffaa00 35%,
        #ffcc00 50%,
        #ffaa00 65%,
        #ff7700 85%,
        #cc5500 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tmNebulaFlow-b-ap98w1x0ej 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255,140,0,0.35));
}
.tm-nebula-text[b-ap98w1x0ej]::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: none;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    text-shadow:
        0 0 40px rgba(255,100,0,0.45),
        0 0 80px rgba(255,140,0,0.25),
        0 0 120px rgba(255,180,0,0.12);
    animation: tmNebulaGlow-b-ap98w1x0ej 4s ease-in-out infinite alternate;
}
@keyframes tmNebulaFlow-b-ap98w1x0ej {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes tmNebulaGlow-b-ap98w1x0ej {
    0%   { opacity: 0.6; filter: blur(1px); }
    100% { opacity: 1; filter: blur(0px); }
}

/* ========== HERO ========== */
.tm-hero[b-ap98w1x0ej] {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    overflow: hidden; padding: 0 24px; z-index: 2;
}

.tm-hero-bg[b-ap98w1x0ej] {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    background: url('Images/FondoPrincipalNuevoLogo.png') center center / cover no-repeat;
    z-index: 0;
    animation: tmKenBurns-b-ap98w1x0ej 25s ease-in-out infinite alternate;
}
@keyframes tmKenBurns-b-ap98w1x0ej {
    0%   { transform: scale(1) translate(0,0); }
    33%  { transform: scale(1.08) translate(-1.5%,-1%); }
    66%  { transform: scale(1.05) translate(1%,-0.5%); }
    100% { transform: scale(1.1) translate(-0.5%,1%); }
}

.tm-hero-overlay[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,10,15,0.55) 0%, rgba(8,10,15,0.75) 40%, rgba(8,10,15,0.96) 100%);
    z-index: 1;
}

.tm-hero-grid[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 2;
    background-image:
        linear-gradient(rgba(255,120,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,120,0,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    animation: tmGridPulse-b-ap98w1x0ej 8s ease-in-out infinite alternate;
}
@keyframes tmGridPulse-b-ap98w1x0ej { 0% { opacity:.4 } 100% { opacity:.8 } }

.tm-glow[b-ap98w1x0ej] {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 2;
}
.tm-glow--1[b-ap98w1x0ej] { width: 600px; height: 600px; top: -10%; left: -10%; background: rgba(255,100,0,0.12); animation: tmF1-b-ap98w1x0ej 12s ease-in-out infinite alternate; }
.tm-glow--2[b-ap98w1x0ej] { width: 500px; height: 500px; bottom: -15%; right: -10%; background: rgba(255,160,0,0.08); animation: tmF2-b-ap98w1x0ej 10s ease-in-out infinite alternate; }
.tm-glow--3[b-ap98w1x0ej] { width: 300px; height: 300px; top: 30%; right: 20%; background: rgba(255,120,0,0.08); animation: tmF3-b-ap98w1x0ej 15s ease-in-out infinite alternate; }
@keyframes tmF1-b-ap98w1x0ej { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes tmF2-b-ap98w1x0ej { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,-30px)} }
@keyframes tmF3-b-ap98w1x0ej { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-30px,50px) scale(1.3)} }

.tm-hero-content[b-ap98w1x0ej] { position: relative; z-index: 3; max-width: 900px; }

.tm-hero-badge[b-ap98w1x0ej] {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,140,0,0.9);
    background: rgba(255,120,0,0.07); border: 1px solid rgba(255,140,0,0.18);
    border-radius: 50px; padding: 10px 24px; margin-bottom: 32px;
    position: relative;
    top: -80px;
}
.tm-badge-dot[b-ap98w1x0ej] {
    width: 6px; height: 6px; border-radius: 50%; background: #ff8c00;
    animation: tmDotPulse-b-ap98w1x0ej 2s ease-in-out infinite;
}
@keyframes tmDotPulse-b-ap98w1x0ej {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,140,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,140,0,0); }
}

.tm-hero-title[b-ap98w1x0ej] {
    font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800;
    line-height: 1.06; color: #fff; margin: 0 0 28px; letter-spacing: -0.04em;
}
.tm-text-line[b-ap98w1x0ej] { display: block; }

.tm-hero-sub[b-ap98w1x0ej] {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.6); line-height: 1.7;
    max-width: 680px; margin: 0 auto 36px;
}

.tm-hero-btns[b-ap98w1x0ej] {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
}

.tm-hero-micro[b-ap98w1x0ej] {
    margin: 28px auto 0;
    font-size: 0.85rem;
    color: rgba(180,195,220,0.4);
    letter-spacing: 0.005em;
    max-width: 600px;
}

/* ========== SCROLL CUE ========== */
.tm-scroll-cue[b-ap98w1x0ej] {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.tm-scroll-cue span[b-ap98w1x0ej] {
    font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(180,195,220,0.25); text-transform: uppercase;
}
.tm-scroll-bar[b-ap98w1x0ej] {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,140,0,0.5), transparent);
    animation: tmScrollPulse-b-ap98w1x0ej 2s ease-in-out infinite;
}
@keyframes tmScrollPulse-b-ap98w1x0ej { 0%,100% { opacity:.3; transform:scaleY(1) } 50% { opacity:1; transform:scaleY(1.4) } }

/* ========== BUTTONS ========== */
.tm-btn[b-ap98w1x0ej] {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.92rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 14px 32px; border-radius: 10px; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
    cursor: pointer; border: none;
}
.tm-btn--primary[b-ap98w1x0ej] {
    background: linear-gradient(135deg, #ff6600, #ff8c00);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255,120,0,0.35);
}
.tm-btn--primary:hover[b-ap98w1x0ej] {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 36px rgba(255,120,0,0.45);
    color: #fff;
    text-decoration: none;
}
.tm-btn-shine[b-ap98w1x0ej] {
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg); transition: left 0.6s;
}
.tm-btn--primary:hover .tm-btn-shine[b-ap98w1x0ej] { left: 140%; }

.tm-btn--ghost[b-ap98w1x0ej] {
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,140,0,0.3);
}
.tm-btn--ghost:hover[b-ap98w1x0ej] {
    background: rgba(255,140,0,0.08); border-color: rgba(255,140,0,0.5);
    color: #ffaa00; text-decoration: none;
}

/* ========== TRUST BAR ========== */
.tm-trust[b-ap98w1x0ej] {
    position: relative; z-index: 2;
    padding: 64px 24px;
    background: transparent;
}
.tm-trust-inner[b-ap98w1x0ej] {
    display: flex; justify-content: center; align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
}
.tm-trust-item[b-ap98w1x0ej] {
    position: relative;
    display: flex; align-items: center;
    gap: 14px;
    padding: 12px 20px;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    flex: 0 0 auto;
}
.tm-trust-item:hover[b-ap98w1x0ej] { transform: translateY(-5px); }

.tm-trust-icon[b-ap98w1x0ej] {
    position: relative;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    flex-shrink: 0;
    animation: tmTrustFloat-b-ap98w1x0ej 5.5s ease-in-out infinite;
}
.tm-trust-icon[b-ap98w1x0ej]::before {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,0.22) 0%, rgba(255,180,80,0.06) 45%, transparent 75%);
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    pointer-events: none;
}
.tm-trust-item:hover .tm-trust-icon[b-ap98w1x0ej] { animation-play-state: paused; }
.tm-trust-item:hover .tm-trust-icon[b-ap98w1x0ej]::before {
    opacity: 1;
    transform: scale(1.45);
}

.tm-trust-item:nth-child(1) .tm-trust-icon[b-ap98w1x0ej] { animation-delay: 0s; }
.tm-trust-item:nth-child(3) .tm-trust-icon[b-ap98w1x0ej] { animation-delay: 0.55s; }
.tm-trust-item:nth-child(5) .tm-trust-icon[b-ap98w1x0ej] { animation-delay: 1.10s; }
.tm-trust-item:nth-child(7) .tm-trust-icon[b-ap98w1x0ej] { animation-delay: 1.65s; }
.tm-trust-item:nth-child(9) .tm-trust-icon[b-ap98w1x0ej] { animation-delay: 2.20s; }

.tm-trust-item img[b-ap98w1x0ej] {
    position: relative; z-index: 1;
    width: 44px; height: 44px;
    filter: drop-shadow(0 2px 10px rgba(255,140,0,0.28));
    transition: filter 0.45s, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.tm-trust-item:hover img[b-ap98w1x0ej] {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 6px 22px rgba(255,140,0,0.7)) brightness(1.12);
}

@keyframes tmTrustFloat-b-ap98w1x0ej {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
}

.tm-trust-label[b-ap98w1x0ej] {
    position: relative;
    font-size: 0.92rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: -0.005em;
    transition: color 0.4s, transform 0.45s cubic-bezier(.4,0,.2,1);
}
.tm-trust-label[b-ap98w1x0ej]::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, #ff8c00, #ffcc00);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,140,0,0.5);
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.tm-trust-item:hover .tm-trust-label[b-ap98w1x0ej] {
    color: #fff;
    transform: translateX(2px);
}
.tm-trust-item:hover .tm-trust-label[b-ap98w1x0ej]::after { width: 100%; }

.tm-trust-divider[b-ap98w1x0ej] {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

@media (max-width: 1100px) {
    .tm-trust-inner[b-ap98w1x0ej] { flex-wrap: wrap; }
    .tm-trust-divider:nth-of-type(2n)[b-ap98w1x0ej] { display: none; }
}

@media (max-width: 768px) {
    .tm-trust[b-ap98w1x0ej] { padding: 40px 12px; }
    .tm-trust-inner[b-ap98w1x0ej] { flex-wrap: wrap; }
    .tm-trust-item[b-ap98w1x0ej] { padding: 10px 18px; gap: 12px; }
    .tm-trust-icon[b-ap98w1x0ej] { width: 44px; height: 44px; }
    .tm-trust-item img[b-ap98w1x0ej] { width: 32px; height: 32px; }
    .tm-trust-label[b-ap98w1x0ej] { font-size: 0.8rem; }
    .tm-trust-divider[b-ap98w1x0ej] { display: none; }
}

/* ========== SECTIONS COMMON ========== */
.tm-section[b-ap98w1x0ej] { position: relative; z-index: 2; padding: 120px 24px; }
.tm-inner[b-ap98w1x0ej] { max-width: 1200px; margin: 0 auto; width: 100%; }

.tm-block-tag[b-ap98w1x0ej] {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; color: rgba(255,140,0,0.7);
    margin-bottom: 14px; text-transform: uppercase;
}

.tm-block-title[b-ap98w1x0ej] {
    font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
    color: #f0f2f8; letter-spacing: -0.02em; line-height: 1.12;
    margin: 0 0 20px;
}

.tm-block-desc[b-ap98w1x0ej] {
    font-size: 1.05rem; color: rgba(255,255,255,0.55);
    line-height: 1.75; margin: 0 0 22px;
}

.tm-feature-list[b-ap98w1x0ej] {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.tm-feature-list li[b-ap98w1x0ej] {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.95rem; color: rgba(255,255,255,0.7);
}
.tm-check[b-ap98w1x0ej] {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(255,140,0,0.12); color: #ffaa00;
    font-size: 0.72rem; font-weight: 700;
}

/* ============================================================
   S1 — OPERATIVA (Parallax Glass Cards)
   ============================================================ */
.tm-parallax-section[b-ap98w1x0ej] {
    position: relative;
    overflow: hidden;
    padding: 140px 24px;
}
.tm-parallax-bg[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.tm-parallax-bg img[b-ap98w1x0ej] {
    width: 100%; height: 120%; object-fit: cover;
    position: absolute; top: -10%; left: 0;
    opacity: 0.25;
    animation: tmParallaxMove-b-ap98w1x0ej 20s ease-in-out infinite alternate;
}
@keyframes tmParallaxMove-b-ap98w1x0ej {
    0%   { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.12) translateY(-3%); }
}
.tm-parallax-vignette[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(3,8,18,0.92) 70%);
}
.tm-parallax-inner[b-ap98w1x0ej] { position: relative; z-index: 2; }
.tm-parallax-header[b-ap98w1x0ej] { text-align: center; margin-bottom: 60px; }

.tm-glass-grid[b-ap98w1x0ej] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tm-glass-card[b-ap98w1x0ej] {
    position: relative;
    border-radius: 20px;
    padding: 32px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,140,0,0.10);
    backdrop-filter: blur(12px);
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.tm-glass-card:hover[b-ap98w1x0ej] {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.35);
    box-shadow: 0 20px 50px rgba(255,120,0,0.12);
}
.tm-glass-glow[b-ap98w1x0ej] {
    position: absolute; top: -40%; right: -40%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    opacity: 0; transition: opacity 0.5s;
}
.tm-glass-card:hover .tm-glass-glow[b-ap98w1x0ej] { opacity: 1; }
.tm-glass-icon[b-ap98w1x0ej] {
    margin-bottom: 18px;
}
.tm-glass-card h3[b-ap98w1x0ej] {
    font-size: 1.05rem; font-weight: 700; color: #fff;
    margin: 0 0 8px; letter-spacing: -0.01em;
}
.tm-glass-card p[b-ap98w1x0ej] {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    line-height: 1.55; margin: 0;
}

/* ============================================================
   S2 — TIMELINE (Animated horizontal)
   ============================================================ */
.tm-timeline-section[b-ap98w1x0ej] { padding: 120px 24px; }
.tm-timeline-header[b-ap98w1x0ej] { text-align: center; margin-bottom: 60px; }
.tm-timeline[b-ap98w1x0ej] {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px; margin: 0 auto;
    gap: 16px;
}
.tm-timeline-line[b-ap98w1x0ej] {
    position: absolute; top: 28px; left: 0; right: 0; height: 2px;
    background: rgba(255,255,255,0.08); z-index: 0;
}
.tm-timeline-line-fill[b-ap98w1x0ej] {
    position: absolute; top: 28px; left: 0; height: 2px; width: 100%;
    background: linear-gradient(90deg, #cc5500, #ff8c00, #ffcc00);
    z-index: 0;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(255,140,0,0.3);
}
.tm-timeline-step[b-ap98w1x0ej] {
    position: relative; z-index: 1;
    flex: 1;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
}
.tm-timeline-node[b-ap98w1x0ej] {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, #cc5500, #ff8c00);
    box-shadow: 0 0 0 6px rgba(255,140,0,0.10), 0 0 30px rgba(255,120,0,0.25);
    margin-bottom: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}
.tm-timeline-step:hover .tm-timeline-node[b-ap98w1x0ej] {
    transform: scale(1.12);
    box-shadow: 0 0 0 8px rgba(255,140,0,0.18), 0 0 40px rgba(255,120,0,0.4);
}
.tm-timeline-card h3[b-ap98w1x0ej] {
    font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 6px;
}
.tm-timeline-card p[b-ap98w1x0ej] {
    font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0;
}

/* ============================================================
   S3 — PORTAL + NOTIFICACIONES (Split)
   ============================================================ */
.tm-split-section[b-ap98w1x0ej] {
    position: relative;
    overflow: hidden;
    padding: 140px 24px;
}
.tm-split-bg[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 0;
}
.tm-split-bg img[b-ap98w1x0ej] {
    width: 100%; height: 120%; object-fit: cover;
    position: absolute; top: -10%; left: 0;
    opacity: 0.22;
    animation: tmParallaxMove-b-ap98w1x0ej 25s ease-in-out infinite alternate;
}
.tm-split-vignette[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, transparent 0%, rgba(3,8,18,0.92) 65%);
}
.tm-split-inner[b-ap98w1x0ej] {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 80px;
}
.tm-split-text[b-ap98w1x0ej] { flex: 1; }
.tm-split-visual[b-ap98w1x0ej] {
    flex: 1;
    position: relative;
    display: flex; justify-content: center; align-items: center;
    min-height: 400px;
}
.tm-phone-mockup--enhanced[b-ap98w1x0ej] {
    width: 280px;
    background: rgba(20,22,30,0.85);
    border: 1px solid rgba(255,140,0,0.18);
    border-radius: 32px;
    padding: 12px 14px 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,140,0,0.05);
    backdrop-filter: blur(16px);
    z-index: 2;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.tm-phone-mockup--enhanced:hover[b-ap98w1x0ej] {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.tm-phone-header[b-ap98w1x0ej] {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 6px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
}
.tm-phone-dot[b-ap98w1x0ej] {
    width: 8px; height: 8px; border-radius: 50%; background: #ff8c00;
    box-shadow: 0 0 8px rgba(255,140,0,0.6);
}
.tm-phone-title[b-ap98w1x0ej] {
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em;
}
.tm-phone-glow[b-ap98w1x0ej] {
    position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,0.12) 0%, transparent 70%);
    filter: blur(50px); z-index: 1;
    animation: tmPhoneGlowPulse-b-ap98w1x0ej 4s ease-in-out infinite alternate;
}
@keyframes tmPhoneGlowPulse-b-ap98w1x0ej {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.15); }
}

/* Chat bubbles */
.tm-chat-bubble[b-ap98w1x0ej] {
    display: flex; flex-direction: column; gap: 3px;
    padding: 10px 12px; border-radius: 14px;
    font-size: 0.82rem; line-height: 1.35;
    max-width: 90%;
    transition: transform 0.3s;
}
.tm-chat-bubble:hover[b-ap98w1x0ej] { transform: scale(1.02); }
.tm-chat-bubble--in[b-ap98w1x0ej] {
    align-self: flex-start;
    background: rgba(255,140,0,0.1);
    border: 1px solid rgba(255,140,0,0.18);
    color: rgba(255,255,255,0.85);
    border-bottom-left-radius: 4px;
}
.tm-chat-bubble--out[b-ap98w1x0ej] {
    align-self: flex-end;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-bottom-right-radius: 4px;
}
.tm-chat-sender[b-ap98w1x0ej] { font-size: 0.65rem; font-weight: 700; color: #ffaa00; text-transform: uppercase; letter-spacing: 0.08em; }
.tm-chat-time[b-ap98w1x0ej] { font-size: 0.65rem; color: rgba(255,255,255,0.35); align-self: flex-end; }

/* ============================================================
   S4 — OCR TERMINAL (Hologram)
   ============================================================ */
.tm-terminal-section[b-ap98w1x0ej] {
    position: relative;
    overflow: hidden;
    padding: 140px 24px;
}
.tm-terminal-bg[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 0;
}
.tm-terminal-bg img[b-ap98w1x0ej] {
    width: 100%; height: 120%; object-fit: cover;
    position: absolute; top: -10%; left: 0;
    opacity: 0.18;
    animation: tmParallaxMove-b-ap98w1x0ej 22s ease-in-out infinite alternate;
}
.tm-terminal-vignette[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(3,8,18,0.92) 65%);
}
.tm-terminal-inner[b-ap98w1x0ej] {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 80px;
    max-width: 1200px; margin: 0 auto;
}
.tm-terminal-visual[b-ap98w1x0ej] { flex: 1; display: flex; justify-content: center; }
.tm-terminal-text[b-ap98w1x0ej] { flex: 1; }

.tm-scan-box[b-ap98w1x0ej] {
    position: relative;
    width: 320px;
    background: rgba(255,140,0,0.03);
    border: 1px solid rgba(255,140,0,0.18);
    border-radius: 16px;
    padding: 32px 28px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255,140,0,0.08), inset 0 0 30px rgba(255,140,0,0.03);
}
.tm-scan-lines[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 2px, rgba(255,140,0,0.03) 2px, rgba(255,140,0,0.03) 4px
    );
    pointer-events: none; z-index: 1;
}
.tm-scan-bar[b-ap98w1x0ej] {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    box-shadow: 0 0 20px rgba(255,140,0,0.6);
    animation: tmScanMove-b-ap98w1x0ej 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes tmScanMove-b-ap98w1x0ej {
    0%,100% { top: 0; opacity: 0.6; }
    50%     { top: 100%; opacity: 1; }
}
.tm-scan-data[b-ap98w1x0ej] {
    position: relative; z-index: 3;
    display: flex; flex-direction: column; gap: 14px;
}
.tm-scan-row[b-ap98w1x0ej] {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.88rem;
}
.tm-scan-label[b-ap98w1x0ej] {
    color: rgba(255,255,255,0.4); font-weight: 600;
    letter-spacing: 0.08em; font-size: 0.72rem;
    text-transform: uppercase;
}
.tm-scan-value[b-ap98w1x0ej] {
    color: rgba(255,255,255,0.85); font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.tm-scan-ok[b-ap98w1x0ej] { color: #ffcc00; text-shadow: 0 0 8px rgba(255,200,0,0.4); }
.tm-scan-corner[b-ap98w1x0ej] {
    position: absolute; width: 12px; height: 12px;
    border-color: rgba(255,140,0,0.4); border-style: solid; z-index: 4;
}
.tm-scan-corner--tl[b-ap98w1x0ej] { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.tm-scan-corner--tr[b-ap98w1x0ej] { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.tm-scan-corner--bl[b-ap98w1x0ej] { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.tm-scan-corner--br[b-ap98w1x0ej] { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

/* ============================================================
   S5 — SPOTLIGHT GRID
   ============================================================ */
.tm-spotlight-section[b-ap98w1x0ej] { padding: 120px 24px; }
.tm-spotlight-header[b-ap98w1x0ej] { text-align: center; margin-bottom: 60px; }
.tm-spotlight-grid[b-ap98w1x0ej] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px; margin: 0 auto;
}
.tm-spotlight-card[b-ap98w1x0ej] {
    position: relative;
    border-radius: 16px;
    padding: 28px 20px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    cursor: default;
}
.tm-spotlight-card:hover[b-ap98w1x0ej] {
    background: rgba(255,140,0,0.06);
    border-color: rgba(255,140,0,0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,120,0,0.10);
}
.tm-spotlight-num[b-ap98w1x0ej] {
    font-size: 0.7rem; font-weight: 800; color: rgba(255,140,0,0.5);
    letter-spacing: 0.1em; margin-bottom: 12px;
}
.tm-spotlight-card h3[b-ap98w1x0ej] {
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin: 0 0 6px; letter-spacing: -0.01em;
}
.tm-spotlight-card p[b-ap98w1x0ej] {
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
    line-height: 1.5; margin: 0;
}

/* ============================================================
   S6 — CTA FINAL (Cinematic)
   ============================================================ */
.tm-cta-section[b-ap98w1x0ej] {
    position: relative;
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 24px;
    overflow: hidden;
}
.tm-cta-bg-img[b-ap98w1x0ej] {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    z-index: 0;
    overflow: hidden;
}
.tm-cta-bg-img img[b-ap98w1x0ej] {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.3;
    animation: tmKenBurns-b-ap98w1x0ej 30s ease-in-out infinite alternate;
}
.tm-cta-vignette[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(3,8,18,0.90) 70%);
}
.tm-cta-radial[b-ap98w1x0ej] {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,100,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255,160,0,0.06) 0%, transparent 50%);
}
.tm-cta-content[b-ap98w1x0ej] { position: relative; z-index: 2; max-width: 820px; }
.tm-cta-btns[b-ap98w1x0ej] {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.tm-footer[b-ap98w1x0ej] {
    position: relative; z-index: 2;
    padding: 40px 24px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.tm-footer-inner[b-ap98w1x0ej] { max-width: 700px; margin: 0 auto; }
.tm-footer-inner p[b-ap98w1x0ej] { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ============================================================
   BENTO — POR QUÉ TALLER MANAGER
   ============================================================ */
.tm-bento-section[b-ap98w1x0ej] { padding: 120px 24px; }
.tm-bento-head[b-ap98w1x0ej] { text-align: left; margin-bottom: 60px; }
.tm-bento-head .tm-block-title[b-ap98w1x0ej] { text-align: center; }

/* Reveal on scroll (same as LandingOptUltra hu-reveal but tm- prefixed).
   Elements stay visible if the page JS cannot initialize. */
.tm-reveal[b-ap98w1x0ej] {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tm-page.tm-motion-ready .tm-reveal[b-ap98w1x0ej] {
    opacity: 0;
    transform: translateY(34px);
}

.tm-page.tm-motion-ready .tm-reveal.tm-visible[b-ap98w1x0ej] {
    opacity: 1;
    transform: translateY(0);
}

/* Tilt animation */
.tm-tilt[b-ap98w1x0ej] {
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.4s, box-shadow 0.4s;
}

.tm-card-glow[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    opacity: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 140, 0, 0.10), transparent 58%);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.tm-bento-card:hover .tm-card-glow[b-ap98w1x0ej] { opacity: 1; }

.tm-bento-icon[b-ap98w1x0ej] {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ff8c00;
    pointer-events: none;
}

.tm-bento-grid[b-ap98w1x0ej] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 18px;
}
.tm-bento-card[b-ap98w1x0ej] {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255,255,255,0.015);
}
.tm-bento-card:hover[b-ap98w1x0ej] {
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 0 24px 78px rgba(255, 100, 0, 0.14);
}

.tm-bento-card--wide[b-ap98w1x0ej] {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 22px;
    min-height: 478px;
    padding: 0;
}
.tm-bento-card--wide .tm-bento-copy[b-ap98w1x0ej] {
    padding: 32px 32px 0;
}
.tm-bento-card--wide .tm-bento-visual[b-ap98w1x0ej] {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 22px 22px;
    min-height: 240px;
}
.tm-bento-card--wide .tm-bento-visual img[b-ap98w1x0ej] {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    opacity: 0.6;
    transition: transform 0.8s ease, opacity 0.5s;
}
.tm-bento-card--wide:hover .tm-bento-visual img[b-ap98w1x0ej] {
    transform: scale(1.05);
    opacity: 0.75;
}
.tm-bento-visual-overlay[b-ap98w1x0ej] {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,8,18,0.95) 0%, rgba(3,8,18,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.tm-bento-card > span[b-ap98w1x0ej],
.tm-bento-copy span[b-ap98w1x0ej] {
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(255, 180, 100, 0.85);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.tm-bento-card h3[b-ap98w1x0ej] {
    position: relative; z-index: 1;
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.22;
    font-weight: 800;
}
.tm-bento-card--wide h3[b-ap98w1x0ej] {
    font-size: 1.72rem;
}
.tm-bento-card p[b-ap98w1x0ej] {
    position: relative; z-index: 1;
    margin: 0 0 18px;
    color: rgba(255,255,255,0.55);
    font-size: 0.94rem;
    line-height: 1.66;
}
.tm-bento-link[b-ap98w1x0ej] {
    display: inline-flex; align-items: center; gap: 8px;
    color: #ffaa00; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s ease;
}
.tm-bento-link:hover[b-ap98w1x0ej] {
    color: #ffcc00; gap: 12px; text-decoration: none;
}
.tm-bento-link[b-ap98w1x0ej]::after {
    content: '→'; transition: transform 0.3s;
}
.tm-bento-link:hover[b-ap98w1x0ej]::after { transform: translateX(4px); }

/* ============================================================
   TALLER MANAGER — NUEVAS SECCIONES COMERCIALES
   ============================================================ */
.tm-feature-section[b-ap98w1x0ej] {
    padding: 96px 24px;
}

.tm-feature-grid[b-ap98w1x0ej] {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(36px, 6vw, 74px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tm-feature-grid--reverse[b-ap98w1x0ej] {
    grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.tm-feature-content[b-ap98w1x0ej] {
    position: relative;
    z-index: 2;
}

.tm-feature-title[b-ap98w1x0ej] {
    margin: 0 0 22px;
    color: #f0f2f8;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.tm-feature-text[b-ap98w1x0ej] {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 1.02rem;
    line-height: 1.76;
}

.tm-feature-note[b-ap98w1x0ej] {
    margin: 24px 0 0;
    padding-left: 16px;
    border-left: 2px solid rgba(255,140,0,0.42);
    color: rgba(225,232,245,0.58);
    font-size: 0.94rem;
    line-height: 1.68;
}

.tm-chip-list[b-ap98w1x0ej] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.tm-chip-list--compact[b-ap98w1x0ej] {
    justify-content: center;
    margin-top: 28px;
}

.tm-chip[b-ap98w1x0ej] {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255,140,0,0.17);
    background: rgba(255,140,0,0.055);
    color: rgba(245,248,255,0.76);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.25;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tm-feature-media[b-ap98w1x0ej] {
    --tm-feature-radius: 22px;
    position: relative;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--tm-feature-radius);
    border: 1px solid rgba(255,140,0,0.12);
    background:
        radial-gradient(circle at 82% 12%, rgba(255,140,0,0.12), transparent 38%),
        rgba(255,255,255,0.018);
    box-shadow: 0 30px 90px rgba(0,0,0,0.32), 0 0 70px rgba(255,110,0,0.06);
    transform-style: preserve-3d;
}

.tm-feature-media img[b-ap98w1x0ej] {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    opacity: 0.78;
    filter: brightness(0.82) saturate(1.08);
    transition: transform 0.8s ease, opacity 0.5s ease;
}

.tm-feature-media:hover img[b-ap98w1x0ej] {
    transform: scale(1.035);
    opacity: 0.88;
}

.tm-feature-media-shade[b-ap98w1x0ej] {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        linear-gradient(120deg, rgba(3,8,18,0.74) 0%, rgba(3,8,18,0.22) 44%, rgba(255,120,0,0.08) 100%),
        radial-gradient(circle at 82% 18%, rgba(255,140,0,0.18), transparent 38%);
    pointer-events: none;
}

.tm-feature-media .tm-card-glow[b-ap98w1x0ej] {
    z-index: 2;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 140, 0, 0.10), transparent 58%);
}

.tm-notification-stack[b-ap98w1x0ej] {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: min(270px, calc(100% - 44px));
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,140,0,0.22);
    background: rgba(6,12,24,0.74);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

.tm-notification-stack span[b-ap98w1x0ej] {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,180,100,0.86);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tm-notification-stack strong[b-ap98w1x0ej] {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.tm-flow-line[b-ap98w1x0ej] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
}

.tm-flow-line span[b-ap98w1x0ej] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,140,0,0.18);
    background: rgba(255,255,255,0.025);
    color: rgba(245,248,255,0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.tm-flow-line span[b-ap98w1x0ej]::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8c00;
    box-shadow: 0 0 14px rgba(255,140,0,0.52);
}

.tm-connected-section[b-ap98w1x0ej] {
    padding: 74px 24px;
}

.tm-connected-panel[b-ap98w1x0ej] {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 52px);
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,140,0,0.11);
    background:
        radial-gradient(circle at 18% 0%, rgba(255,140,0,0.11), transparent 38%),
        radial-gradient(circle at 84% 100%, rgba(255,170,0,0.06), transparent 42%),
        rgba(255,255,255,0.018);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.tm-connected-panel .tm-feature-text[b-ap98w1x0ej] {
    max-width: 840px;
    margin: 0 auto;
}

.tm-connected-panel > :not(.tm-card-glow)[b-ap98w1x0ej],
.tm-final-cta-panel > :not(.tm-card-glow)[b-ap98w1x0ej] {
    position: relative;
    z-index: 1;
}

.tm-final-cta[b-ap98w1x0ej] {
    padding: 72px 24px 108px;
}

.tm-final-cta-panel[b-ap98w1x0ej] {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 56px);
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255,140,0,0.14);
    background:
        radial-gradient(circle at 50% 0%, rgba(255,140,0,0.14), transparent 42%),
        rgba(255,255,255,0.02);
    text-align: center;
    box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.tm-final-cta-panel h2[b-ap98w1x0ej] {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.tm-final-cta-panel p[b-ap98w1x0ej] {
    max-width: 660px;
    margin: 18px auto 30px;
    color: rgba(255,255,255,0.62);
    font-size: 1.02rem;
    line-height: 1.68;
}

.tm-final-cta-actions[b-ap98w1x0ej] {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .tm-glass-grid[b-ap98w1x0ej] { grid-template-columns: repeat(2, 1fr); }
    .tm-spotlight-grid[b-ap98w1x0ej] { grid-template-columns: repeat(3, 1fr); }
    .tm-bento-grid[b-ap98w1x0ej] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tm-bento-card--wide[b-ap98w1x0ej] { grid-column: span 2; }
    .tm-feature-grid[b-ap98w1x0ej],
    .tm-feature-grid--reverse[b-ap98w1x0ej] {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
        gap: 42px;
    }
    .tm-timeline[b-ap98w1x0ej] { flex-wrap: wrap; gap: 32px; }
    .tm-timeline-line[b-ap98w1x0ej], .tm-timeline-line-fill[b-ap98w1x0ej] { display: none; }
    .tm-timeline-step[b-ap98w1x0ej] { flex: 1 1 45%; }
    .tm-timeline-node[b-ap98w1x0ej] { margin-bottom: 12px; }
}

@media (max-width: 900px) {
    .tm-split-inner[b-ap98w1x0ej], .tm-terminal-inner[b-ap98w1x0ej] {
        flex-direction: column; gap: 48px;
    }
    .tm-section[b-ap98w1x0ej] { padding: 80px 20px; }
    .tm-parallax-section[b-ap98w1x0ej] { padding: 100px 20px; }
    .tm-split-section[b-ap98w1x0ej] { padding: 100px 20px; }
    .tm-terminal-section[b-ap98w1x0ej] { padding: 100px 20px; }
    .tm-cta-section[b-ap98w1x0ej] { min-height: auto; padding: 100px 20px; }
    .tm-bento-section[b-ap98w1x0ej] { padding: 80px 20px; }
    .tm-feature-section[b-ap98w1x0ej] { padding: 72px 20px; }
    .tm-feature-grid[b-ap98w1x0ej],
    .tm-feature-grid--reverse[b-ap98w1x0ej] {
        grid-template-columns: 1fr;
    }
    .tm-feature-media[b-ap98w1x0ej] {
        min-height: 360px;
    }
    .tm-connected-section[b-ap98w1x0ej] { padding: 58px 20px; }
    .tm-final-cta[b-ap98w1x0ej] { padding: 60px 20px 88px; }
}

@media (max-width: 768px) {
    .tm-glass-grid[b-ap98w1x0ej] { grid-template-columns: 1fr; }
    .tm-spotlight-grid[b-ap98w1x0ej] { grid-template-columns: repeat(2, 1fr); }
    .tm-bento-grid[b-ap98w1x0ej] { grid-template-columns: 1fr; }
    .tm-bento-card--wide[b-ap98w1x0ej] {
        grid-column: span 1;
        min-height: auto;
        display: flex; flex-direction: column;
    }
    .tm-bento-card--wide .tm-bento-visual[b-ap98w1x0ej] { min-height: 180px; }
    .tm-timeline-step[b-ap98w1x0ej] { flex: 1 1 100%; }
    .tm-scan-box[b-ap98w1x0ej] { width: 100%; max-width: 320px; }
    .tm-phone-mockup--enhanced[b-ap98w1x0ej] { transform: none; }
    .tm-feature-media[b-ap98w1x0ej] {
        --tm-feature-radius: 18px;
        min-height: 300px;
    }
    .tm-chip[b-ap98w1x0ej] { font-size: 0.8rem; }
    .tm-flow-line span[b-ap98w1x0ej] { width: 100%; }
    .tm-final-cta-actions .tm-btn[b-ap98w1x0ej] { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .tm-hero-title[b-ap98w1x0ej] { font-size: 2rem; }
    .tm-block-title[b-ap98w1x0ej] { font-size: 1.5rem; }
    .tm-btn[b-ap98w1x0ej] { padding: 12px 24px; font-size: 0.85rem; }
    .tm-spotlight-grid[b-ap98w1x0ej] { grid-template-columns: 1fr; }
    .tm-bento-card[b-ap98w1x0ej] { padding: 22px; }
    .tm-bento-card--wide .tm-bento-copy[b-ap98w1x0ej] { padding: 24px 24px 0; }
    .tm-feature-title[b-ap98w1x0ej] { font-size: 1.6rem; }
    .tm-feature-text[b-ap98w1x0ej],
    .tm-final-cta-panel p[b-ap98w1x0ej] { font-size: 0.95rem; }
    .tm-feature-media[b-ap98w1x0ej] { min-height: 240px; }
    .tm-notification-stack[b-ap98w1x0ej] {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
    }
}
