    :root{
        --accent:#386642;
        --muted:#f5f5f5;
        --text:#222;
        --max-width:1200px;
        --gap:28px;
        font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }
    *{box-sizing:border-box}
    body{margin:0;color:var(--text);background:white;line-height:1.4}
    a{color:inherit;text-decoration:none}

    /* Container */
    .wrap{max-width:var(--max-width);margin:0 auto;padding:0px 15px}

    /* Header */
    .main-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3; 
        padding: 18px 0;
        background: transparent;
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .main-header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        padding: 12px 0;
    }

    .main-header.scrolled nav a,
    .main-header.scrolled .hamburger span {
        color: var(--text);
    }

    .main-header .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .main-header img {
        height: 50px;
        transition: height 0.3s ease;
    }

    .main-header.scrolled img {
        height: 45px;
    }

    /* Navigation Desktop */
    .main-header nav ul {
        display: flex;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-header nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.3s ease, color 0.3s ease;
        font-size: 16px;
    }

    .main-header nav a:hover {
        opacity: 0.8;
        color: #386642;
    }

    .main-header .actions .cta {
        display: inline-block;
        background: var(--accent);
        color: #fff;
        padding: 10px 18px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

    .main-header .actions .cta:hover {
        background: #2a4d32;
    }

    /* Mobile CTA - Oculto en desktop */
    .mobile-cta {
        display: none;
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .main-header.scrolled .hamburger span {
        background: var(--text);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .main-header .wrap {
            padding: 0 15px;
        }

        .main-header img {
            height: 45px;
        }

        .main-header.scrolled img {
            height: 40px;
        }

        .hamburger {
            display: flex;
        }

        /* Navigation Mobile */
        .main-header nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }

        .main-header nav.active {
            right: 0;
        }

        .main-header nav ul {
            flex-direction: column;
            gap: 0;
        }

        .main-header nav li {
            border-bottom: 1px solid #eee;
        }

        .main-header nav a {
            color: var(--text);
            display: block;
            padding: 15px 0;
            font-size: 18px;
        }

        .main-header .actions {
            display: none;
        }

        /* Mobile CTA - Solo visible en móvil */
        .mobile-cta {
            display: block;
            background: var(--accent);
            color: #fff !important;
            padding: 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            margin-top: 20px;
        }

        /* Hamburger animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--text);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: var(--text);
        }
    }

    /* Tablet Styles */
    @media (max-width: 1024px) and (min-width: 769px) {
        .main-header nav ul {
            gap: 15px;
        }

        .main-header nav a {
            font-size: 15px;
        }

        .main-header .actions .cta {
            padding: 8px 16px;
            font-size: 14px;
        }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
        .main-header {
            padding: 15px 0;
        }

        .main-header.scrolled {
            padding: 10px 0;
        }

        .main-header img {
            height: 40px;
        }

        .main-header.scrolled img {
            height: 35px;
        }

        .main-header nav {
            width: 85%;
        }
    }