

        /* === ESTILOS GENERALES === */
        .blog .container {
            padding: 40px 0;
        }

        .blog .post-item {
            margin-bottom: 40px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .blog .post-item .image-holder {
            margin-bottom: 20px;
        }

        .blog .post-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .blog .post-item .text h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .blog .post-item .text ul.status {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        .blog .post-item .text ul.status li {
            display: inline-block;
            margin-right: 10px;
            font-size: 14px;
            color: #888;
        }

        .blog .post-item .text ul.status li i {
            margin-right: 5px;
            color: #555;
        }

        .blog .post-item .text p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }

        .blog .post-item .text p.button {
            margin-top: 20px;
        }

        .blog .post-item .text p.button a {
            display: inline-block;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .blog .post-item .text p.button a:hover {
            background-color: #0056b3;
        }

        /* === ESTILOS PARA EL ENCABEZADO DEL BLOG === */
        .blog-header {
            background-color: #ccc;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            margin-top: 2%;
            z-index: 0;
        }

        .blog-header h2 {
            font-size: 36px;
            margin: 0;
        }

        /* === BARRA LATERAL === */
        .blog .sidebar .widget {
            margin-bottom: 30px;
        }

        .blog .sidebar .widget h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        .blog .sidebar .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .blog .sidebar .widget ul li {
            margin-bottom: 10px;
        }

        .blog .sidebar .widget ul li a {
            font-size: 16px;
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog .sidebar .widget ul li a:hover {
            color: #007bff;
        }

        /* === CONTENEDOR DE VIDEO === */
        .video-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .video-container iframe {
            width: 640px;
            height: 360px;
        }

        /* === EFECTOS PARA ICONOS === */
        i:hover {
            transform: scale(1.1);
        }

        /* === CONTENEDOR DE BLOGS === */
        #blog-list {
            display: grid;
            gap: 20px;
            justify-content: center;
            margin: 0 auto;
        }

        /* === ESTILOS PARA LAS CARDS DE BLOG === */
        .blogPost {
            background: white;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blogPost:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        }

        .blogPost img {
            width: 100%;
            max-height: 180px;
            object-fit: cover;
            border-radius: 8px;
        }

        .blogPost h3 {
            font-size: 18px;
            margin: 10px 0;
            color: #333;
        }

        .blogPost h3 a:hover {
            text-decoration: underline;
        }

        .blogPost p {
            font-size: 14px;
            color: #666;
            margin: 10px 0;
        }

        .blogPost a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 12px;
            color: rgb(7, 7, 7);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .blogPost a:hover {
            background-color: #ffffff;
        }

        /* === FILTRO DE CATEGORÍAS === */
        #category-selector {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 10px;
        }

        #category-selector button {
            padding: 10px 15px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        #category-selector button:hover {
            background-color: #ddd;
        }

        /* Responsive */
        @media (max-width: 600px) {
            #category-selector {
                flex-direction: column;
                align-items: center;
                display: none;
            }
        }

        /* === LISTA DE CATEGORÍAS === */
        #categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 20px;
        }

        #categories-list button {
            padding: 10px 15px;
            font-size: 1em;
            border: none;
            background-color: #f4f4f4;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #categories-list button:hover {
            background-color: #ddd;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #categories-list {
                flex-direction: column;
                align-items: center;
            }

            .blogPost {
                max-width: 100%;
            }

            .blogPost img {
                max-width: 100%;
            }
        }
