       .contenedor-blog-netplus {
            display: flex;
            max-width: 1300px;
            margin: 60px auto;
            padding: 0 20px;
            gap: 50px;
            align-items: flex-start;
        }

        .contenido-principal-netplus {
            flex: 1;
            background-color: #ffffff;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            border: 1px solid #eeeeee;
        }

        .imagen-principal-blog {
            width: 100%;
            height: 450px;
            background: linear-gradient(rgba(7, 3, 10, 0.151), rgba(24, 10, 39, 0.322)), 
                        url('../public/images/cincomundosdeentretenimiento.webp');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .imagen-principal-blog h2 {
            font-size: 3.5rem;
            margin: 0;
            font-weight: 800;
            text-transform: uppercase;
        }

        .contenido-principal-netplus h1 {
            color: #333333;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .datos-publicacion {
            color: #888888;
            font-size: 0.9rem;
            margin-bottom: 35px;
            display: flex;
            gap: 15px;
        }

        .datos-publicacion span {
            background-color: #f1f1f1;
            padding: 5px 12px;
            border-radius: 20px;
        }

        .seccion-estrenos {
            margin: 60px 0;
            padding: 20px 0;
        }

        .seccion-estrenos h2 {
            color: #4b1a7d;
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
            border: none;
        }

        .seccion-estrenos h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff6600;
            border-radius: 2px;
        }

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

        .card-pelicula {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .card-pelicula:hover {
            transform: scale(1.05);
        }

        .poster-simulado {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
            background: linear-gradient(45deg, #4b1a7d, #ff6600);
        }

        .info-pelicula {
            padding: 15px;
        }

        .info-pelicula h4 {
            margin: 0 0 5px 0;
            color: #333;
            font-size: 1.1rem;
        }

        .info-pelicula span {
            color: #ff6600;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

    
        .texto-articulo p {
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #444;
        }

        .mundo-box {
            background: #fdf6f2;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            border-left: 6px solid #ff6600;
        }

        .mundo-box h3 {
            margin-top: 0;
            color: #4b1a7d;
            font-size: 1.6rem;
            text-transform: uppercase;
        }

        .boton-contrata-blog {
            display: inline-block;
            background-color: #ff6600; 
            color: #ffffff;
            padding: 20px 45px;
            text-decoration: none;
            border-radius: 50px; 
            font-weight: 800;
            font-size: 1.2rem;
            margin: 40px 0;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
        }

        .boton-contrata-blog:hover {
            background-color: #4b1a7d; 
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(75, 26, 125, 0.3);
        }

        .seccion-navegacion-blog {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #f1f1f1;
        }

        .grid-navegacion {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .card-enlace {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            text-decoration: none;
            color: #333;
            transition: 0.3s;
            border: 1px solid #eee;
        }

        @media (max-width: 992px) {
            .contenedor-blog-netplus { flex-direction: column; }
            .imagen-principal-blog h2 { font-size: 2.2rem; }
            .contenido-principal-netplus { padding: 30px; }
        }