﻿:root {
    --primary: #004799;
    --primary2: #003366;
    --accent: #FBBF24;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #ffffff;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
}

.tl-accent {
    color: var(--accent);
}

.tl-container {
    max-width: 1140px;
}

.tl-hero {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
    padding-top: 48px;
    padding-bottom: 0;
}

.tl-brand-squares {
    display: grid;
    grid-template-columns: repeat(2, 10px);
    gap: 3px;
}

    .tl-brand-squares span {
        width: 10px;
        height: 10px;
        background: #fff;
        display: block;
    }

        .tl-brand-squares span.accent {
            background: var(--accent);
        }

.tl-brand-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 22px;
}

.tl-hero-title {
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    max-width: 920px;
}

.tl-hero-sub {
    color: rgba(219,234,254,0.9);
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    max-width: 860px;
}

.tl-btn-cta {
    background: var(--accent);
    color: #0b2a55;
    font-weight: 800;
    border-radius: 999px;
    padding: 14px 34px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
    border: 0;
}

    .tl-btn-cta:hover {
        background: #f59e0b;
        transform: translateY(-1px) scale(1.02);
    }

.tl-mock-wrap {
    max-width: 920px;
    margin-bottom: -1px;
}

.tl-mock-frame {
    background: #0b0b0b;
    padding: 14px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.35);
    border-left: 8px solid #2b2b2b;
    border-right: 8px solid #2b2b2b;
    border-top: 8px solid #2b2b2b;
}

.tl-mock-screen {
    background: #38bdf8;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tl-login-card {
    background: rgba(255,255,255,0.95);
    width: 66%;
    max-width: 420px;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.22);
    text-align: center;
}

.tl-login-logo {
    color: #0b2a55;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 16px;
}

.tl-login-welcome {
    color: #9ca3af;
    font-size: 12px;
    text-align: left;
    margin-bottom: 8px;
}

.tl-login-input {
    height: 40px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tl-login-btn {
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
}

.tl-login-links {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #9ca3af;
}

/* Logos */
.tl-logos {
    background: #f8fafc;
    border-color: #e2e8f0 !important;
}

.tl-section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 24px;
}

.tl-logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 34px;
    opacity: 0.65;
    filter: grayscale(1);
    transition: 200ms;
}

    .tl-logo-row:hover {
        opacity: 0.9;
        filter: grayscale(0);
    }

.tl-logo-item {
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
}

    .tl-logo-item span {
        font-weight: 900;
    }

.tl-logo-nb {
    font-style: italic;
    font-size: 24px;
}

.tl-logo-prose {
    font-style: italic;
    color: #0b2a55;
}

.tl-logo-crystal {
    color: #06b6d4;
    background: #cffafe;
    padding: 4px 8px;
    border-radius: 8px;
}

/* WHY */
.tl-why-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(34px, 3.6vw, 52px);
    margin-bottom: 10px;
}

.tl-why-sub {
    font-weight: 500;
    color: #64748b;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.2;
}

    .tl-why-sub .strong {
        color: #0f172a;
        font-weight: 900;
    }

.tl-p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.tl-strong {
    color: #0f172a;
    font-weight: 800;
}

/* Features */
.tl-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tl-feature-ico {
    background: rgba(251,191,36,0.10);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .tl-feature-ico .material-symbols-outlined {
        color: var(--accent);
        font-size: 30px;
        font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 24;
    }

.tl-feature-title {
    font-weight: 900;
    margin-bottom: 4px;
    font-size: 18px;
}

.tl-feature-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .tl-login-card {
        width: 88%;
        padding: 18px;
    }

    .tl-login-links {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}


/* =========================
   NUEVO: SPLITS + MOCKUPS
   ========================= */

.tl-split-white {
    background: #fff;
}

.tl-split-gray {
    background: #f8fafc;
}

.tl-split-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(26px, 2.7vw, 44px);
    line-height: 1.1;
    margin: 0 0 14px;
}

.tl-split-text {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.tl-right {
    text-align: right;
}

@media (max-width: 991px) {
    .tl-right {
        text-align: left;
    }
}

.tl-btn-cta2 {
    background: var(--accent);
    color: #0b2a55;
    font-weight: 900;
    border-radius: 12px;
    padding: 12px 22px;
    box-shadow: 0 14px 26px rgba(2,6,23,0.14);
    border: 0;
}

    .tl-btn-cta2:hover {
        background: #f59e0b;
        transform: translateY(-1px);
    }

/* Checklist */
.tl-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .tl-checklist li {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 600;
    }

    .tl-checklist .material-symbols-outlined {
        color: var(--accent);
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
    }

.tl-rightlist li {
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .tl-rightlist li {
        justify-content: flex-start;
    }
}

/* Shadows helper */
.shadow-2 {
    box-shadow: 0 26px 60px rgba(2,6,23,0.18);
}

/* Skeletons */
.tl-skel {
    background: #e2e8f0;
    border-radius: 10px;
}

.skel-line {
    height: 10px;
}

.skel-h6 {
    height: 14px;
    border-radius: 8px;
}

.skel-pill {
    height: 18px;
    border-radius: 999px;
}

.skel-dot {
    height: 22px;
    width: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-66 {
    width: 66%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

/* ========== 1) Browser mock ========== */
.tl-browser {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.tl-browser-top {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tl-dots {
    display: flex;
    gap: 6px;
}

    .tl-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        display: block;
    }

        .tl-dots .dot.r {
            background: #f87171;
        }

        .tl-dots .dot.y {
            background: #fbbf24;
        }

        .tl-dots .dot.g {
            background: #34d399;
        }

.tl-url {
    height: 12px;
    width: 120px;
    background: #e2e8f0;
    border-radius: 999px;
}

.tl-browser-body {
    padding: 18px;
}

.tl-row-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #fff;
}

.tl-avatar {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 999px;
}

    .tl-avatar.xl {
        width: 64px;
        height: 64px;
    }

.tl-badge {
    height: 24px;
    min-width: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
}

.tl-badge-high {
    background: #ecfdf5;
    color: #16a34a;
}

.tl-badge-mid {
    background: #fffbeb;
    color: #d97706;
}

.tl-badge-low {
    background: #fef2f2;
    color: #dc2626;
}

/* ========== 2) Phone mock ========== */
.tl-phone {
    width: 260px;
    height: 500px;
    background: #1f2937;
    border-radius: 3rem;
    border: 10px solid #1f2937;
    overflow: hidden;
    position: relative;
}

.tl-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 26px;
    background: #1f2937;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 2;
}

.tl-phone-inner {
    background: #fff;
    height: 100%;
    padding: 16px;
    padding-top: 44px;
}

.tl-phone-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 11px;
}

.tl-phone-card {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 12px;
}

/* ========== 3) Tilt + side phone ========== */
.tl-tilt-card {
    width: 400px;
    height: 280px;
    background: #1f2937;
    border-radius: 22px;
    border: 10px solid #1f2937;
    overflow: hidden;
    transform: rotate(-12deg) translateX(42px) translateY(42px);
}

.tl-tilt-inner {
    height: 100%;
    background: #fff;
    padding: 16px;
}

.tl-mini-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-tile {
    height: 64px;
    background: #f8fafc;
    border-radius: 14px;
}

.tl-tile-blue {
    background: #eff6ff;
}

.tl-side-phone {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    width: 190px;
    height: 340px;
    background: #1f2937;
    border-radius: 2.2rem;
    border: 8px solid #1f2937;
    overflow: hidden;
    z-index: 10;
}

.tl-side-inner {
    height: 100%;
    background: #fff;
    padding: 14px;
}

.tl-side-card {
    height: 100%;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

/* ========== 4) Chart mock ========== */
.tl-chart {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.tl-chart-top {
    background: var(--primary);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tl-chart-body {
    padding: 18px;
}

.tl-bars {
    height: 200px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 14px;
}

    .tl-bars span {
        width: 28px;
        background: rgba(37,99,235,0.45);
        border-radius: 10px 10px 0 0;
    }

        .tl-bars span.accent {
            background: var(--accent);
        }

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(37,99,235,0.9);
}

    .tl-dot.accent {
        background: var(--accent);
    }

/* FOOTER */
.tl-footer {
    background: #0f172a;
    color: #fff;
}

.tl-footer-brand {
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.tl-footer-copy {
    color: rgba(148,163,184,0.85);
    font-size: 13px;
    text-align: center;
}

.tl-btn-footer {
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    border-radius: 10px;
    padding: 10px 18px;
}

    .tl-btn-footer:hover {
        filter: brightness(0.96);
    }


/* =========================
   NUEVO: ACOMPAÑAMIENTO + FAQ + DEMO + FOOTER
   ========================= */

.tl-support-orange {
    background: #F39C12; /* brand-orange */
    position: relative;
    overflow: hidden;
}

.tl-support-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(34px, 3.2vw, 52px);
    margin: 0 0 14px;
}

.tl-support-text {
    font-size: 18px;
    line-height: 1.75;
    opacity: 0.92;
    margin: 0 0 14px;
}

.tl-support-strong {
    font-weight: 900;
    font-size: 18px;
    margin: 0 0 18px;
}

.tl-support-btn {
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    border-radius: 12px;
    padding: 14px 28px;
    box-shadow: 0 18px 36px rgba(2,6,23,0.25);
    border: 0;
}

    .tl-support-btn:hover {
        background: #0b2a55;
        transform: translateY(-1px);
    }

/* Shapes behind mock */
.tl-support-shape {
    position: absolute;
    border-radius: 14px;
    opacity: 1;
}

    .tl-support-shape.s1 {
        width: 96px;
        height: 96px;
        background: #2563eb;
        top: -18px;
        left: -18px;
    }

    .tl-support-shape.s2 {
        width: 128px;
        height: 128px;
        background: #0ea5e9;
        top: 70px;
        left: -44px;
        z-index: 1;
    }

    .tl-support-shape.s3 {
        width: 112px;
        height: 112px;
        background: #1e40af;
        bottom: 42px;
        left: 10px;
    }

    .tl-support-shape.s4 {
        width: 80px;
        height: 80px;
        background: #e2e8f0;
        bottom: -14px;
        left: 130px;
    }

.tl-support-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    width: min(420px, 100%);
    margin-left: 36px;
    transform: rotate(3deg);
}

@media (max-width: 991px) {
    .tl-support-card {
        margin-left: 0;
    }
}

.tl-support-ph {
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .tl-support-ph .material-symbols-outlined {
        font-size: 64px;
        color: #94a3b8;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
    }

/* FAQs */
.tl-faqs {
    background: #fff;
}

.tl-faq-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(34px, 3vw, 46px);
}

.tl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tl-faq {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
}

    .tl-faq summary {
        list-style: none;
        cursor: pointer;
        padding: 18px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: var(--primary);
        font-weight: 900;
        font-size: 18px;
    }

        .tl-faq summary::-webkit-details-marker {
            display: none;
        }

.tl-faq-body {
    padding: 0 18px 18px;
    color: #64748b;
    line-height: 1.7;
}

.tl-faq summary .material-symbols-outlined {
    transition: transform 220ms ease;
    font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
}

.tl-faq[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

/* DEMO */
.tl-demo {
    background: var(--primary);
}

.tl-demo-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(34px, 3.2vw, 52px);
    margin: 0 0 12px;
}

.tl-demo-sub {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 520px;
    margin: 0;
}

.tl-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    color: #0f172a;
}

.tl-label {
    font-weight: 900;
    font-size: 12px;
    color: #334155;
}

.tl-input {
    border-radius: 12px !important;
    border-color: #e2e8f0 !important;
    padding: 12px 12px;
}

.tl-prefix {
    border-radius: 12px 0 0 12px !important;
    border-color: #e2e8f0 !important;
    background: #f8fafc !important;
    color: #64748b !important;
    font-weight: 700;
}

.input-group .tl-input {
    border-radius: 0 12px 12px 0 !important;
}

.tl-legal {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

.tl-legal-link {
    color: #64748b;
    text-decoration: underline;
    font-weight: 800;
}

.tl-next-btn {
    background: #2563eb;
    color: #fff;
    font-weight: 900;
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: 0 16px 30px rgba(2,6,23,0.18);
    border: 0;
}

    .tl-next-btn:hover {
        background: #1d4ed8;
    }

/* Footer links (black) */
.tl-footer-links {
    background: #000;
    color: #fff;
}

.tl-footer-mini {
    font-size: 12px;
    color: rgba(148,163,184,0.85);
}

    .tl-footer-mini a {
        color: rgba(148,163,184,0.85);
        text-decoration: none;
        transition: 150ms;
    }

        .tl-footer-mini a:hover {
            color: #fff;
        }

/* =========================
   NAV TOP TRANSPARENTE
   ========================= */


/* Para que no se tape el hero por el fixed nav */
.tl-hero {
    padding-top: 92px;
}



.tl-client-carousel-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.tl-client-carousel {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
}

.tl-carousel-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px;
}

.tl-carousel-img {
    width: 100%;  border-radius: 14px;
/*   *height: 140px;
    *object-fit: cover;  
    *border: 1px solid rgba(15, 23, 42, 0.08);
    *box-shadow: 0 12px 30px rgba(2,6,23,0.06);*/
}

/* Indicators más suaves */
.tl-client-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

/* Flechas visibles pero discretas */
.tl-client-carousel .carousel-control-prev-icon,
.tl-client-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
}

/* Responsive: 2 por fila en mobile */
@media (max-width: 768px) {
    .tl-carousel-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-carousel-img {
        height: 80px;
    }
}

/* Extra pequeño: 1 por fila */
@media (max-width: 420px) {
    .tl-carousel-row {
        grid-template-columns: 1fr;
    }

    .tl-carousel-img {
        height: 160px;
    }
}
/* Screenshot dentro del mock browser */
/* Screenshot dentro del mock browser */
.tl-shot-wrap {
    padding: 0 !important;
    background: #ffffff;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.tl-shot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Logo real en hero */
.tl-brand-logo {
    /*height: 42px;*/ /* desktop */
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .tl-brand-logo {
        height: 90px; /* mobile */
    }
}
/* Contenedor del brand */
.tl-brand-wrap {
    height: 52px; /* altura estable */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px; /* mismo espacio que antes */
}


/* Logo */
.tl-brand-logo {
    max-height: 150px; /* crece pero sin romper layout */
    width: auto;
    object-fit: contain;
}
/*.tl-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease;
}*/

    /* Estado cuando pasás el hero */
    /*.tl-topnav.scrolled {
        background: rgba(248, 250, 252, 0.72);*/ /* gris clarito transparente */
        /*backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }*/

    /* Colores del botón y marca según estado */
    /*.tl-topnav .tl-btn-clientes {
        border-radius: 999px;
        padding: 10px 18px;
        font-weight: 900;
        border: 1px solid rgba(255,255,255,0.35);
        color: #fff;
        background: rgba(255,255,255,0.08);
        transition: 200ms ease;
    }

    .tl-topnav.scrolled .tl-btn-clientes {
        color: #0b2a55;
        background: rgba(255,255,255,0.95) !important;
        border-color: rgba(15, 23, 42, 0.10);
    }
    .tl-topnav.scrolled {
        background: rgba(248, 250, 252, 0.72) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-bottom-color: rgba(15, 23, 42, 0.08) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
    }

    .tl-topnav:hover {
        background: rgba(248, 250, 252, 0.72);
        backdrop-filter: blur(10px);
        border-bottom-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }*/


/* =========================
   NAV TOP (ÚNICO Y LIMPIO)
   ========================= */

.tl-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    /* Estado cuando pasás el hero (o hover) */
    .tl-topnav.scrolled,
    .tl-topnav:hover {
        background: rgba(248, 250, 252, 0.72);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

/* Marca (si querés que cambie de color en scrolled/hover) */
.tl-topnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.tl-topnav.scrolled .tl-topnav-brand,
.tl-topnav:hover .tl-topnav-brand {
    color: #0f172a;
}

/* Botón “Acceso a clientes” */
.tl-btn-clientes {
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.08);
    transition: 200ms ease;
}

.tl-topnav.scrolled .tl-btn-clientes,
.tl-topnav:hover .tl-btn-clientes {
    color: #0b2a55;
    background: rgba(255,255,255,0.95);
    border-color: rgba(15, 23, 42, 0.10);
}

.tl-btn-clientes:hover {
    transform: translateY(-1px);
}



/* ========= Scroll reveal ========= */
.tl-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .75s ease, transform .75s ease;
    will-change: opacity, transform;
}

    .tl-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Variantes opcionales */
.tl-reveal-left {
    transform: translateX(-18px);
}

.tl-reveal-right {
    transform: translateX(18px);
}

.tl-reveal-zoom {
    transform: scale(.98);
}

    /* Cuando es visible, resetea transform en cualquiera de las variantes */
    .tl-reveal-left.is-visible,
    .tl-reveal-right.is-visible,
    .tl-reveal-zoom.is-visible {
        transform: none;
    }

/* Stagger: si un contenedor tiene tl-stagger, sus hijos entran escalonados */
.tl-stagger .tl-reveal {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* Accesibilidad: si el usuario prefiere menos animaciones */
@media (prefers-reduced-motion: reduce) {
    .tl-reveal,
    .tl-reveal.is-visible {
        transition: none;
        transform: none;
        opacity: 1;
    }
}


/* ========= PRELOADER ========= */
#tl-preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease, visibility .6s ease;
}

#tl-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.tl-preloader-inner {
  text-align: center;
  color: white;
  animation: tl-fadeIn .6s ease;
}

.tl-preloader-inner img {
  width: 240px;
  margin-bottom: 28px;
  animation: tl-float 2.2s ease-in-out infinite;
}

/* Spinner minimalista */
.tl-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25);
  border-top: 3px solid white;
  margin: 0 auto 16px;
  animation: spin 0.9s linear infinite;
}

.tl-loading-text {
  font-size: 14px;
  opacity: .8;
  letter-spacing: .4px;
}

/* Animaciones */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes tl-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes tl-fadeIn {
  from { opacity: 0; transform: scale(.98); }
  to { opacity: 1; transform: scale(1); }
}


/* ========= PRELOADER ========= */
#tl-preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .6s ease, visibility .6s ease;
}

    #tl-preloader.hide {
        opacity: 0;
        visibility: hidden;
    }

.tl-preloader-inner {
    text-align: center;
    color: white;
    animation: tl-fadeIn .6s ease;
}

    .tl-preloader-inner img {
        width: 240px;
        margin-bottom: 28px;
        animation: tl-float 2.2s ease-in-out infinite;
    }

/* Spinner minimalista */
.tl-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.25);
    border-top: 3px solid white;
    margin: 0 auto 16px;
    animation: spin 0.9s linear infinite;
}

.tl-loading-text {
    font-size: 14px;
    opacity: .8;
    letter-spacing: .4px;
}

/* Animaciones */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tl-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes tl-fadeIn {
    from {
        opacity: 0;
        transform: scale(.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Oculta contenido mientras carga */
.tl-loading body {
    overflow: hidden;
}

.tl-loading form {
    visibility: hidden;
}

/* ===== TOPNAV LAYOUT (RESPONSIVE) ===== */
.tl-topnav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.tl-topnav-logo {
    height: 46px; /* desktop */
    width: auto;
    max-width: 240px; /* evita que se coma todo */
    object-fit: contain;
    display: block;
}

/* Evita que el botón se aplaste feo */
.tl-btn-clientes {
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 576px) {
    .tl-topnav-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    .tl-topnav-logo {
        height: 38px;
        max-width: 80vw;
    }

    .tl-btn-clientes {
        width: 100%;
        max-width: 420px;
        justify-content: center;
    }
}

/* ====== Device mock real (tablet + phone) ====== */
.tl-device-stage {
    min-height: 520px; /* da aire para la composición */
}

.tl-device {
    position: absolute;
    display: block;
    height: auto;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 26px 60px rgba(2,6,23,0.22));
}

/* Tablet grande inclinada */
.tl-device-tablet {
    width: min(599px, 100%);
    right: 26px;
    top: 30px;
    transform: rotate(-18deg);
    transform-origin: center;
    z-index: 1;
}

/* Phone superpuesto abajo a la derecha */
.tl-device-phone {
    width: min(430px, 100%);
    right: -74px;
    bottom: 96px;
    z-index: 2;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
    .tl-device-stage {
        min-height: 460px;
        margin-top: 10px;
    }

    .tl-device-tablet {
        width: min(538px, 100%);
        right: 38px;
        left: 0;
        margin: 0 auto;
        top: 20px;
        transform: rotate(-12deg);
    }

    .tl-device-phone {
        width: min(430px, 100%);
        right: -74px;
        bottom: 96px;
        z-index: 2;
    }
}

@media (max-width: 576px) {
    .tl-device-stage {
        min-height: 380px;
    }

    .tl-device-tablet {
        transform: rotate(-10deg);
        top: 10px;
    }

    .tl-device-phone {
        width: min(150px, 44%);
        right: 6px;
        bottom: -6px;
    }
}

/* ====== Device mock real (tablet + phone) ====== */
.tl-device-stage {
    min-height: 520px; /* da aire para la composición */
}

.tl-device {
    position: absolute;
    display: block;
    height: auto;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 26px 60px rgba(2,6,23,0.22));
}

/* Tablet grande inclinada */
.tl-device-tablet {
    width: min(560px, 92%);
    right: 20px;
    top: 30px;
    transform: rotate(-18deg);
    transform-origin: center;
    z-index: 1;
}

/* Phone superpuesto abajo a la derecha */
.tl-device-phone {
    width: min(431px, 100%);
    right: -82px;
    bottom: 102px;
    z-index: 2;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
    .tl-device-stage {
        min-height: 460px;
        margin-top: 10px;
    }

    .tl-device-tablet {
        width: min(520px, 96%);
        right: 0;
        left: 0;
        margin: 0 auto;
        top: 20px;
        transform: rotate(-12deg);
    }

    .tl-device-phone {
        width: min(431px, 100%);
        right: -82px;
        bottom: 102px;
        z-index: 2;
    }
}

@media (max-width: 576px) {
    .tl-device-stage {
        min-height: 380px;
    }

    .tl-device-tablet {
        transform: rotate(-10deg);
        top: 10px;
    }

    .tl-device-phone {
        width: min(363px, 100%);
        right: -41px;
        bottom: 2px;
    }
}

.tl-support-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* ===== Cuadrados flotantes SkyCom ===== */
.tl-support-shape {
    position: absolute;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

    /* Azul oscuro */
    .tl-support-shape.s1 {
        width: 110px;
        height: 110px;
        background: #003366;
        left: -30px;
        top: 40px;
    }

    /* Azul principal */
    .tl-support-shape.s2 {
        width: 140px;
        height: 140px;
        background: #007BCE;
        left: 40px;
        top: -20px;
    }

    /* Amarillo */
    .tl-support-shape.s3 {
        width: 120px;
        height: 120px;
        background: #FBBF24;
        left: 140px;
        top: 60px;
    }

    /* Gris claro */
    .tl-support-shape.s4 {
        width: 90px;
        height: 90px;
        background: #e5e7eb;
        left: 20px;
        bottom: -20px;
    }


@media (max-width: 991px) {

    .tl-support-card {
        transform: none;
    }

    .tl-support-shape {
        transform: scale(.75);
        opacity: .9;
    }
}

@media (max-width: 576px) {

    .tl-support-shape {
        display: none; /* en mobile suele quedar más limpio */
    }
}

/* ===== Screenshot real ===== */
.tl-realshot-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px;
}

.tl-realshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.tl-realshot-wrap::before {
    content: "";
    display: block;
    height: 26px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: radial-gradient(circle at 18px 13px, #f87171 6px, transparent 7px), radial-gradient(circle at 38px 13px, #fbbf24 6px, transparent 7px), radial-gradient(circle at 58px 13px, #34d399 6px, transparent 7px), #f8fafc;
}

@media (max-width: 991px) {
    .tl-realshot-wrap {
        margin-top: 12px;
    }
}

/* ===== Phone con screenshot real ===== */
.tl-phone-real {
    padding: 0;
    overflow: hidden;
    border-radius: 2.2rem; /* mismo radio interno */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* clave */
    display: block;
}

.tl-phone-img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 1.8rem;
}

@media (max-width: 576px) {
    .tl-phone {
        transform: scale(.9);
    }
}

.tl-chart-real {
    width: 100%;
    max-width: 620px; /* podés subirlo un toque */
    margin: 0 auto;
    background: #0f172a;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid rgba(15,23,42,.25);
    overflow: hidden;
}

/* el área visible de la captura */
.tl-chart-real-img {
    width: 100%;
    height: 360px; /* 👈 clave: fija el alto */
    display: block;
    border-radius: 10px;
    object-fit: cover; /* 👈 se ve "relleno" como screenshot real */
    object-position: top; /* 👈 muestra la parte de arriba (menú/filtros) */
}

@media (max-width: 991px) {
    .tl-chart-real-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .tl-chart-real-img {
        height: 240px;
    }
}
.tl-chart-real-top {
    height: 26px;
    background: #020617;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 10px;
}

    .tl-chart-real-top span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #334155;
    }

        .tl-chart-real-top span:nth-child(1) {
            background: #f87171;
        }

        .tl-chart-real-top span:nth-child(2) {
            background: #fbbf24;
        }

        .tl-chart-real-top span:nth-child(3) {
            background: #34d399;
        }

@media (max-width: 991px) {
    .tl-chart-real {
        margin-top: 14px;
    }
}

.tl-iframe-wrap {
    position: relative;
    padding: 0;
    overflow: hidden;
}

#ycbm-embed {
    width: 100%;
    height: 920px;
    border: 0;
    display: block;
}

.tl-iframe-loader {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity .35s ease, visibility .35s ease;
}

    .tl-iframe-loader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }