        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #2196f3;
            --text-dark: #263238;
            --text-light: #eceff1;
            --gradient-1: linear-gradient(135deg, #5484ccc4 0%, #4b5fa2 100%);
            --gradient-2: linear-gradient(135deg, #030303 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-color);
            color: white;
            padding: 10px 0;
        }

        .top-bar-left,
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar .text {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar h2 {
            font-size: 14px;
            margin: 0;
        }

        .social a {
            color: white;
            margin: 0 8px;
            transition: transform 0.3s;
        }

        .social a:hover {
            transform: translateY(-3px);
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%) !important;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 60px;
            transition: transform 0.3s;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 20px !important;
            transition: all 0.3s;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transform: translateX(-50%);
            transition: width 0.3s;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-1);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .hero-section h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        .hero-section p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            position: relative;
            z-index: 1;
        }

        /* Filter Section */
        .filter-container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin: -40px auto 50px;
            max-width: 1200px;
            position: relative;
            z-index: 10;
        }

        .filter-tabs {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 2px solid var(--accent-color);
            background: white;
            color: var(--accent-color);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }

        .filter-btn.active {
            background: var(--gradient-3);
            color: white;
            border-color: transparent;
        }

        /* Blog Grid */
        .blog-container {
            padding: 20px 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .card-category {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .category-evento {
            background: linear-gradient(135deg, #2d2f3a 0%, #272a3a 100%);
            color: white;
        }

        .category-representacion {
            background: linear-gradient(135deg, #2c8ddd 0%, #2088dd 100%);
            color: white;
        }

        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .card-image {
            transform: scale(1.1);
        }

        .card-image-wrapper {
            overflow: hidden;
            position: relative;
        }

        .card-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 15px;
            border-radius: 10px;
            font-weight: 700;
            color: var(--primary-color);
            z-index: 5;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            font-weight: 600;
        }

        .card-description {
            color: #546e7a;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            display: inline-block;
            padding: 10px 25px;
            background: var(--gradient-3);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 14px;
        }

        .read-more:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
            text-decoration: none;
            color: white;
        }

        /* Search Box */
        .search-box {
            margin: 30px 0;
            display: flex;
            justify-content: center;
        }

        .search-input {
            width: 100%;
            max-width: 600px;
            padding: 15px 25px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }

        .footer h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 10px;
        }

        .footer a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-newsletter .form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .footer-newsletter input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px;
        }

        .footer-newsletter .btn {
            padding: 12px 30px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .footer-newsletter .btn:hover {
            background: #1976d2;
            transform: translateY(-2px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .filter-container {
                margin: -20px 15px 30px;
                padding: 20px;
            }
        }