    /* Importar fuente Ubuntu - más redonda y suave */
    @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
    
    /* HEADER PRINCIPAL */
    .public-header {
        background: #FFFFFF;
        box-shadow: 0 2px 10px rgba(46, 204, 113, 0.15);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        border-bottom: 2px solid rgba(46, 204, 113, 0.1);
        font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .public-header.scrolled {
        box-shadow: 0 4px 20px rgba(46, 204, 113, 0.25);
    }
    
    /* CONTAINER DEL HEADER */
    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* TODO: Ajustar padding según diseño */
        padding: 8px 40px;
    }
    
    /* LOGO */
    .header-brand {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .header-brand:hover {
        transform: scale(1.05);
    }
    
    .header-logo {
        /* TODO: Ajustar dimensiones si cambia el logo */
        width: 70px;
        height: 70px;
        object-fit: contain;
        transition: all 0.3s ease;
        filter: drop-shadow(0 2px 4px rgba(46, 204, 113, 0.2));
    }
    
    .header-brand:hover .header-logo {
        filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.4));
        transform: scale(1.08);
    }
    
    /* NAVEGACIÓN PRINCIPAL */
    .header-nav {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 8px;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        display: block;
        /* TODO: Ajustar padding según diseño */
        padding: 10px 18px;
        color: #2C3E50;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }
    
    /* Efecto de subrayado animado - línea más delgada */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #2ECC71;
        transform: translateX(-50%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px 2px 0 0;
    }
    
    /* Hover elegante y sutil */
    .nav-link:hover {
        color: #1e8449;
        transform: translateY(-2px);
        text-shadow: 0 2px 8px rgba(46, 204, 113, 0.2);
    }
    
    .nav-link:hover::after {
        width: 80%;
    }
    
    /* Estado activo: verde oscuro con sombra roja */
    .nav-link.active {
        color: #145a32;
        font-weight: 700;
    }
    
    .nav-link.active::after {
        width: 100%;
        height: 2px;
        box-shadow: 0 0 8px rgba(231, 76, 60, 0.5),
                    0 3px 6px rgba(231, 76, 60, 0.3);
    }
    
    .nav-link.active:hover {
        transform: translateY(-2px);
        color: #0d3d23;
    }
    
    .nav-link.active:hover::after {
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.6),
                    0 4px 8px rgba(231, 76, 60, 0.35);
    }
    
    /* BOTÓN CTA */
    .header-cta {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .btn-inscribirse {
        /* TODO: Ajustar padding según diseño */
        padding: 8px 18px;
        background: #FFFFFF;
        color: #2ECC71;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 700;
        font-size: 0.8rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(46, 204, 113, 0.15);
        border: 2px solid #2ECC71;
        cursor: pointer;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }
    
    /* Efecto de marca de agua verde desde abajo */
    .btn-inscribirse::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: #2ECC71;
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        border-radius: 6px;
    }
    
    .btn-inscribirse:hover::before {
        height: 100%;
    }
    
    .btn-inscribirse:hover {
        color: #FFFFFF;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        border-color: #2ECC71;
    }
    
    /* Mantener z-index del contenido del botón */
    .btn-inscribirse {
        position: relative;
        z-index: 1;
    }
    
    .btn-inscribirse * {
        position: relative;
        z-index: 2;
    }
    
    /* MENÚ MÓVIL */
    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle-bar {
        width: 28px;
        height: 3px;
        background: #2ECC71;
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .menu-toggle:hover .menu-toggle-bar {
        background: #1e8449;
    }
    
    .menu-toggle.active .menu-toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active .menu-toggle-bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .menu-toggle.active .menu-toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* RESPONSIVE */
    @media (max-width: 1200px) {
        .nav-link {
            padding: 10px 14px;
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 1100px) {
        .header-container {
            padding: 8px 20px;
        }
        
        .header-logo {
            width: 60px;
            height: 60px;
        }
        
        .menu-toggle {
            display: flex;
        }
        
        .header-nav {
            position: fixed;
            top: 74px;
            right: -350px;
            width: 320px;
            height: auto;
            max-height: calc(100vh - 100px);
            background: #FFFFFF;
            flex-direction: column;
            padding: 25px 20px;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            border-radius: 12px 0 0 12px;
            border-left: 3px solid #2ECC71;
        }
        
        .header-nav.active {
            right: 0;
        }
        
        .nav-menu {
            flex-direction: column;
            width: 100%;
            gap: 8px;
        }
        
        .nav-link {
            width: 100%;
            text-align: left;
            padding: 12px 16px;
            font-size: 0.95rem;
            letter-spacing: 0.8px;
            border-radius: 6px;
        }
        
        .nav-link:hover {
            background: rgba(46, 204, 113, 0.05);
        }
        
        .header-cta {
            width: 100%;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(46, 204, 113, 0.2);
        }
        
        .btn-inscribirse {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .header-container {
            padding: 8px 15px;
        }
        
        .header-logo {
            width: 45px;
            height: 45px;
        }
    }
