:root {
            --verde-yerba: #4a7c59;
            --verde-claro: #6fa876;
            --verde-oscuro: #2d5a3b;
            --blanco-arena: #f8f6f0;
            --blanco: #ffffff;
            --gris-suave: #e8e6e0;
            --texto-oscuro: #2c3e50;
            --sombra: rgba(74, 124, 89, 0.15);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--blanco-arena) 0%, var(--gris-suave) 100%);
            color: var(--texto-oscuro);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header y Navegación */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(74, 124, 89, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px var(--sombra);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--verde-yerba);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::before {
            content: "🌿";
            margin-right: 0.5rem;
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--texto-oscuro);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.1), transparent);
            transition: left 0.5s;
        }

        .nav-links a:hover::before {
            left: 100%;
        }

        .nav-links a:hover {
            background: rgba(74, 124, 89, 0.1);
            color: var(--verde-yerba);
            transform: translateY(-2px);
        }

        .nav-links a.active {
            background: var(--verde-yerba);
            color: white;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--verde-yerba);
            cursor: pointer;
        }

        /* Contenido principal */
        main {
            margin-top: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--verde-yerba), var(--verde-claro));
            color: white;
            padding: 4rem 2rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.03) 20px
            );
            animation: heroPattern 20s linear infinite;
        }

        @keyframes heroPattern {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Blog Container */
        .blog-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        .blog-main {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px var(--sombra);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .blog-post {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--gris-suave);
        }

        .blog-post:last-child {
            border-bottom: none;
        }

        .post-header {
            margin-bottom: 1.5rem;
        }

        .post-title {
            font-size: 2rem;
            color: var(--verde-yerba);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .post-meta {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .post-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--texto-oscuro);
        }

        .post-content h3 {
            color: var(--verde-yerba);
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }

        .post-content ol, .post-content ul {
            margin: 1rem 0 1rem 2rem;
        }

        .post-content li {
            margin: 0.5rem 0;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 16px var(--sombra);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .widget-title {
            color: var(--verde-yerba);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gris-suave);
        }

        .recent-posts {
            list-style: none;
        }

        .recent-posts li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gris-suave);
        }

        .recent-posts li:last-child {
            border-bottom: none;
        }

        .recent-posts a {
            text-decoration: none;
            color: var(--texto-oscuro);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .recent-posts a:hover {
            color: var(--verde-yerba);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: var(--verde-claro);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--verde-yerba);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--verde-oscuro), var(--verde-yerba));
            color: white;
            text-align: center;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 8px 32px var(--sombra);
            }

            .nav-links.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .blog-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar {
                order: -1;
            }

            nav {
                padding: 1rem;
            }

            main {
                padding: 1rem;
            }

            .hero {
                padding: 3rem 1rem;
            }
            .post-image {
                width: 100%; 
                height: auto;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-post {
            animation: fadeInUp 0.6s ease-out;
        }

        .sidebar-widget {
            animation: fadeInUp 0.6s ease-out;
        }