        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 30px;
            background-color: white;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        /* Efecto de hojas decorativas - más sutiles */
        .header-content::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23e8f5e9" d="M50,5 C70,5 85,25 85,50 C85,75 70,95 50,95 C30,95 15,75 15,50 C15,25 30,5 50,5 Z" /></svg>') no-repeat;
            top: -50px;
            left: -50px;
            opacity: 0.4;
            animation: floatLeaf 25s infinite linear;
        }
        
        .header-content::after {
            content: "";
            position: absolute;
            width: 90px;
            height: 90px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23c8e6c9" d="M50,10 C65,10 75,30 75,50 C75,70 65,90 50,90 C35,90 25,70 25,50 C25,30 35,10 50,10 Z" /></svg>') no-repeat;
            bottom: -40px;
            right: -40px;
            opacity: 0.4;
            animation: floatLeaf 20s infinite linear reverse;
        }
        
        @keyframes floatLeaf {
            0% { transform: rotate(0deg) translateY(0); }
            50% { transform: rotate(180deg) translateY(-5px); }
            100% { transform: rotate(360deg) translateY(0); }
        }
        
        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s ease;
            z-index: 2;
        }
        
        .logo-link:hover {
            transform: translateY(-2px);
        }
        
        .header-logo {
            width: 55px;
            height: 55px;
            object-fit: contain;
            filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.08));
            animation: gentlePulse 10s infinite ease-in-out;
        }
        
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }
        
        .brand-text {
            display: flex;
            flex-direction: column;
            margin-left: 15px;
        }
        
        .brand-name {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2e7d32;
            letter-spacing: 0.8px;
            position: relative;
            display: inline-block;
        }
        
        .brand-name::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #4caf50, #81c784);
            transition: width 0.3s ease;
        }
        
        .logo-link:hover .brand-name::after {
            width: 100%;
        }
        
        .brand-slogan {
            font-size: 0.8rem;
            color: #666;
            font-style: italic;
            margin-top: 2px;
            letter-spacing: 0.4px;
            position: relative;
            padding-left: 16px;
        }
        
        .brand-slogan::before {
            content: "❧";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #81c784;
            font-size: 1rem;
            animation: heartBeat 3s infinite;
        }
        
        @keyframes heartBeat {
            0%, 100% { transform: translateY(-50%) scale(1); }
            50% { transform: translateY(-50%) scale(1.05); }
        }
        
        .main-nav {
            display: flex;
            align-items: center;
            z-index: 2;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 22px;
        }
        
        .main-nav a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.2s ease;
        }
        
        .main-nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #4caf50, #81c784);
            border-radius: 1px;
            transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        
        .main-nav a:hover {
            color: #2e7d32;
        }
        
        .main-nav a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #2e7d32;
            cursor: pointer;
            transition: transform 0.2s ease;
            padding: 4px;
            z-index: 3;
        }
        
        .menu-toggle:hover {
            transform: rotate(90deg);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .header-content {
                padding: 10px 25px;
            }
            
            .main-nav ul {
                gap: 18px;
            }
            
            .brand-name {
                font-size: 1.7rem;
            }
            
            .header-logo {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                padding: 10px 20px;
                flex-wrap: wrap;
            }
            
            .brand-name {
                font-size: 1.6rem;
            }
            
            .brand-slogan {
                font-size: 0.75rem;
                padding-left: 14px;
            }
            
            .menu-toggle {
                display: block;
                order: 2;
                font-size: 1.5rem;
            }
            
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            
            .main-nav.active {
                display: block;
                animation: slideDown 0.4s ease forwards;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-15px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            
            .main-nav a {
                font-size: 1.1rem;
            }
        }
        
        /* Animación para elementos al cargar */
        .logo-link, .main-nav, .menu-toggle {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .logo-link {
            animation-delay: 0.1s;
        }
        
        .main-nav {
            animation-delay: 0.2s;
        }
        
        .menu-toggle {
            animation-delay: 0.15s;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
