

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         :root {
            --color-text-muted: #535353;
            --color-accent: #ffd700;
            --color-accent-dark: #ffb700;
          }
     
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        } */



/* ── TOP BAR DESCARGAS ── */
.header__topbar {
    background: var(--color-accent);
    padding: 7px 0;
    width: 100%;
    overflow: hidden;
    max-height: 40px;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Se colapsa al hacer scroll */
.header.scrolled .header__topbar {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header__topbar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #454545;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 6px;
}

.header__topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    white-space: nowrap;
}

.header__topbar-link--manual {
    background: var(--color-primary);
    color: var(--color-accent);
}
.header__topbar-link--manual:hover {
    background: #333;
}

.header__topbar-link--soporte {
    background: transparent;
    color: #454545;
    border: 1.5px solid #454545;
    clip-path: none;
    border-radius: 2px;
}
.header__topbar-link--soporte:hover {
    background: #454545;
    color: var(--color-accent);
}

.topbar-sep {
    width: 1px;
    height: 16px;
    background: rgba(0,0,0,0.2);
}

/* Ocultar label en móvil */
@media (max-width: 768px) {
    .header__topbar-label { display: none; }
    .header__topbar-inner { justify-content: center; }
    .header__topbar-link { font-size: 0.7rem; padding: 4px 12px; }
}





        /* Header */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: #fff;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
        }

        .header__top {
            background: var(--color-secondary);
            border-bottom: 1px solid var(--color-border);
            padding: 8px 0;
            color: #fff;
        }

        .header__top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            color: var(--color-text-Gray-200);
        }

        .header__contact {
            display: flex;
            gap: 30px;
            font-weight: 600;
        }

        .header__contact-item {
            clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
            background: var(--color-accent);
            display: flex;
            align-items: center;
            gap: 8px;
            color: #454545;
            padding: 0 20px;
        }

        .header__nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        .header__logo {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--color-text);
            text-decoration: none;
            z-index: 1;
            display: flex;
            align-items: center;
            flex-shrink: 1;
            min-width: 0;
        }
        .header__logo img{
            height: 90px;
            transition: height 0.3s ease;
        }

        .header__logo-accent {
            color: var(--color-accent);
        }

        .header__menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .header__menu-item {
            position: relative;
        }

        .header__menu-link {
            color: #535353;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .header__menu-link:hover {
            color: var(--color-accent);
        }

        .header__submenu-icon {
            font-size: 0.7rem;
            transition: var(--transition);
        }

        .header__submenu {
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: var(--color-secondary);
            border: 1px solid var(--color-border);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            overflow: hidden;
        }

        .header__menu-item:hover .header__submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header__menu-item:hover .header__submenu-icon {
            transform: rotate(180deg);
        }

        .header__submenu-item {
            list-style: none;
        }

        .header__submenu-link {
            display: block;
            padding: 12px 20px;
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border-bottom: 1px solid var(--color-border);
        }

        .header__submenu-link:hover {
            background: var(--color-primary);
            color: var(--color-accent);
            padding-left: 30px;
        }

        .header__submenu-item:last-child .header__submenu-link {
            border-bottom: none;
        }

        .header__cta {
            background: var(--color-accent);
            color: #001a33;
            padding: 12px 30px;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.85rem;
            clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
        }

        .header__cta:hover {
            background: var(--color-accent-dark);
            transform: translateY(-2px);
        }

        .header__menu-item--cta {
            display: none;
        }

        .header__burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1001;
            padding: 10px;
            flex-shrink: 0;
            min-width: 48px;
        }

        .header__burger-line {
            width: 28px;
            height: 2px;
            background: var(--color-text-muted);
            transition: var(--transition);
        }

        .header__burger.active .header__burger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .header__burger.active .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger.active .header__burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Overlay para móvil */
        .header__overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .header__overlay.active {
            display: block;
            opacity: 1;
        }

        /* Demo Content */
        .demo-content {
            margin-top: 150px;
            padding: 40px;
            background: var(--color-secondary);
            border-radius: 8px;
            text-align: center;
        }

        .demo-content h1 {
            color: var(--color-accent);
            margin-bottom: 20px;
        }

    
        @media (max-width: 1228px) {
            .header__top {
                display: none;
            }
            
            .header__menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 400px;
                height: 100vh;
                background: var(--color-secondary);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                gap: 0;
                transition: right 0.4s ease-in-out;
                padding-top: 80px;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                border-left: 1px solid var(--color-border);
                z-index: 1000;
            }

            .header__menu.active {
                right: 0;
            }

            .header__menu-item {
                border-bottom: 1px solid var(--color-border);
                width: 100%;
            }

            .header__menu-item:last-child {
                border-bottom: none;
            }

            .header__menu-link {
                display: block;
                padding: 16px 20px;
                text-align: left;
                font-size: 0.95rem;
                text-transform: none;
                letter-spacing: 0.5px;
                color: var(--color-text);
                background: transparent;
                transition: var(--transition);
                border: none;
                cursor: pointer;
            }

            .header__menu-link:hover {
                background: var(--color-primary);
                color: var(--color-accent);
                padding-left: 30px;
            }

            .header__submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: var(--color-primary);
                box-shadow: none;
                border: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                min-width: auto;
            }

            .header__menu-item.submenu-open .header__submenu {
                max-height: 400px;
            }

            .header__submenu-icon {
                margin-left: auto;
                transition: transform 0.3s ease;
            }

            .header__menu-item.submenu-open .header__submenu-icon {
                transform: rotate(180deg);
            }

            .header__submenu-link {
                padding: 12px 30px;
                color: var(--color-text-Gray-200);
                border-bottom: 1px solid var(--color-border);
                background: var(--color-primary);
            }

            .header__submenu-link:hover {
                background: var(--color-secondary);
                color: var(--color-accent);
                padding-left: 40px;
            }

            .header__burger {
                display: flex;
            }

            .header__cta--desktop {
                display: none;
                underline: none;
            }
            .header__cta--desktop a{
               text-decoration: none;
            }

            .header__menu-item--cta {
                display: block;
                border-bottom: none;
                padding: 20px;
            }

            .header__cta {
                width: 100%;
                margin: 0;
                padding: 12px;
                font-size: 0.9rem;
                clip-path: none;
                border-radius: 4px;
            }

            .header__overlay {
                display: none;
            }

            .header__overlay.active {
                display: block;
                opacity: 1;
            }
        }

        /* Pantallas muy pequeñas */
        @media (max-width: 350px) {
            .container {
                padding: 0 10px;
            }

            .header__logo {
                font-size: 1.2rem;
                max-width: calc(100% - 60px);
            }

            .header__nav {
                padding: 15px 0;
            }

            .header__burger {
                padding: 8px;
                min-width: 44px;
            }

            .header__burger-line {
                width: 24px;
            }

            .header__menu {
                width: 90%;
                padding-top: 70px;
            }

            .header__menu-link {
                font-size: 0.9rem;
                padding: 14px 16px;
            }

            .header__submenu-link {
                padding: 10px 24px;
                font-size: 0.85rem;
            }

            .demo-content {
                margin-top: 120px;
                padding: 30px 15px;
            }
        }

        
      

header.scrolled .header__logo img  {
    height: 50px;
 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

        