     .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
        }

        .heart-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 32px;
        }

        .main-title {
            font-size: 48px;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .main-title .highlight-red {
            color: #e74c3c;
        }

        .main-title .highlight-blue {
            color: #3b5998;
        }

        .main-description {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .stat-card {
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .stat-card:nth-child(1)::before {
            background: #e74c3c;
        }

        .stat-card:nth-child(2)::before {
            background: #3b5998;
        }

        .stat-card:nth-child(3)::before {
            background: #e74c3c;
        }

        .stat-card:nth-child(4)::before {
            background: #3b5998;
        }

        .stat-icon {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .stat-card:nth-child(1) .stat-icon {
            color: #e74c3c;
        }

        .stat-card:nth-child(2) .stat-icon {
            color: #3b5998;
        }

        .stat-card:nth-child(3) .stat-icon {
            color: #e74c3c;
        }

        .stat-card:nth-child(4) .stat-icon {
            color: #3b5998;
        }

        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 16px;
        }

        /* Categories Section */
        .categories-section {
            margin-bottom: 60px;
        }

        .categories-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .category-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .category-btn.active {
            background: linear-gradient(135deg, #e74c3c, #3b5998);
            color: white;
        }

        .category-btn:not(.active) {
            background: #f8f9fa;
            color: #666;
            border: 1px solid #ddd;
        }

        .category-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Cards Section */
        .cards-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .card-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .card-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 16px;
            border-radius: 20px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .card-tag.salud {
            background-color: #3b5998;
        }

        .card-tag.acceso {
            background-color: #e74c3c;
        }

        .card-tag.educacion {
            background-color: #27ae60;
        }

        .card-content {
            padding: 30px;
        }

        .card-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-title {
            font-size: 20px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .card-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-link {
            color: #3b5998;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .card-link:hover {
            color: #e74c3c;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-main .container {
                flex-direction: column;
                gap: 20px;
            }

            .main-title {
                font-size: 36px;
            }

            .stats-section {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .categories-nav {
                flex-direction: column;
                align-items: center;
            }

            .cards-section {
                grid-template-columns: 1fr;
            }
        }

        /* style detalles */

          /* .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        } */

        .back-link {
            display: inline-flex;
            align-items: center;
            color: #6c5ce7;
            text-decoration: none;
            margin-bottom: 20px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .back-link:hover {
            color: #5a4fcf;
        }

        .back-link::before {
            content: "←";
            margin-right: 8px;
            font-size: 16px;
        }

        .category-tag {
            display: inline-block;
            background-color: #6c5ce7;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            color: #636e72;
            font-size: 14px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-icon {
            width: 16px;
            height: 16px;
            opacity: 0.7;
        }

        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #2d3436;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px 0;
            color: #2d3436;
        }

        .highlight-text {
            font-weight: 600;
            color: #6c5ce7;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .article-image {
                height: 250px;
            }
        }

        [v-cloak] { 
            display: none; 
        }

        .wow { 
            visibility: hidden; 
        }
        .wow.animated { 
            visibility: visible; 
        }
