        body {
            font-family: "DM Sans", sans-serif;
            color: #282828;
            margin: 0 auto;
        }
        .p-guia{
            font-size: 20px;
            
        }
        .img-head {
            width: 100%;
            height: auto;
        }

        /* Imagen para móviles oculta por defecto */
        .mobile-img {
            display: none;
        }

        /* Contenedor de los videos */
        .video-container {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            margin: 0 auto;
            max-width: 100vw;
            width: 100%;
            position: relative;
        }

        /* Contenedor individual de video y línea */
        .video-wrapper {
            position: relative;
            width: 100%;
        }

        /* Estilos generales para los videos */
        .video-wrapper video {
            width: 100%;
            display: block;
            cursor: pointer;
            position: relative;
            z-index: 1;
            margin-top: 25px;
        }

        /* Líneas de colores encima de cada video */
        .video-wrapper .linea-naranja,
        .video-wrapper .linea-amarilla,
        .video-wrapper .linea-verde,
        .video-wrapper .linea-azul {
            content: '';
            display: block;
            height: 15px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2;
        }

        .linea-naranja {
            background-color: #D28859;
        }

        .linea-amarilla {
            background-color: #EEBF6C;
        }

        .linea-verde {
            background-color: #B5BC95;
        }

        .linea-azul {
            background-color: #89A5BD;
        }

        /* Transición de altura para las líneas de color */
        .linea-naranja,
        .linea-amarilla,
        .linea-verde,
        .linea-azul {
            height: 15px;
            transition: height 0.5s ease;
        }

        /* Estilo para pantallas pequeñas */
        @media (max-width: 767px) {
            .desktop-img {
                display: none;
            }

            .mobile-img {
                display: block;
            }

            .video-container {
                flex-direction: column;
            }

            .video-wrapper {
                width: 100%;
                margin-bottom: 20px;
            }
            .video-wrapper video{
                margin-bottom: 20px;
            } 
            .contenido-mobile {
                display: none;
            }

            .contenido-mobile.open {
                display: block;
            }

            .contenido-desktop {
                display: none;
            }
        
        .contenido-mobile .one-image {
            width: 100%;
            text-align: center;
            margin-top:10px;
        }

        .contenido-mobile .one-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .contenido-mobile .two-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            width: 100%;
        }

        .contenido-mobile .two-images img {
            width: 100%;
            height: auto;
        }


        .contenido-mobile .line-decoration {
            width: 110%;
            margin: 10px;
            margin-left: -50px;
        }

        .contenido-mobile .line-decoration img {
            width: 110%;
            height: auto;
            object-fit: cover;
        }

        .one-button {
            text-align: center;
            margin: 20px;
        }

        .one-button button {
            width: 50%;
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            background-color: #C01F2E;
            color: #fff;
            border: none;
            border-radius: 0px;
        }

        .one-button button a {
            text-decoration: none;
            /* Elimina el subrayado del enlace */
            color: #fff;
            /* Asegura que el texto del enlace sea blanco */
        }

        .one-button button:hover {
            opacity: 0.7;
        }
         /* Contenedor de botones */
         .button-container {
            display: flex;
            justify-content: center;
            margin: 40px -15px 100px !important;
            gap: 20px !important;
        }

        /* Estilos de los botones */
        .button-container button {
            /*padding: 10px 20px;*/
            width: 50% !important; 
            /*height: 40px;*/
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            background-color: #C01F2E;
            color: #fff;
            border: none;
            border-radius: 0px;
        }
    }
        /* Estilo para pantallas de escritorio */
        @media (min-width: 768px) {
            .video-container {
                flex-direction: row;
                justify-content: center;
                margin-bottom: 20px;
            }

            .video-wrapper {
                flex: 1 1 25%;
                max-width: 25%;
                margin: 0;
            }

            .contenido-mobile {
                display: none;
            }

            .contenido-desktop {
                display: block;
            }
            
        }

        /* Estilos para bloques desplegables */
        .contenido {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s ease-in;
            background-color: #ffffff;
            padding: 0 20px;
            margin-top: 0px;
            opacity: 0;
        }

        .contenido.open {
            max-height: 700vh;
            opacity: 1;
        }

        .contenido p {
            margin: 20px 0;
        }

        /* Estilos del bloque de ideas */
        .block-ideas,
        .block-ideas-bottom {
            text-align: center;
            padding: 0px 20px;
            line-height: 40px;
            background-color: #ffffff;
            margin: 20px auto;
            width: 80%;
        }

        .block-ideas h1 {
            font-size: 25px;
            margin-bottom: 30px;
            margin-top: 50px;
        }

        .block-ideas,
        .block-ideas-bottom p {
            font-size: 20px;
            margin-bottom: 20px;
        }

        /* Contenedor de botones */
        .button-container {
            display: flex;
            justify-content: center;
            margin: 40px 0px 100px;
            gap: 80px;
        }

        /* Estilos de los botones */
        .button-container button {
            /*padding: 10px 20px;*/
            width: 150px;
            height: 40px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            background-color: #C01F2E;
            color: #fff;
            border: none;
            border-radius: 0px;
        }

        .custom-link {
            text-decoration: none;
            color: #ffffff;
        }

        .button-container button:hover {
            opacity: 0.7;
        }

        .block-ideas p:last-of-type {
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .contenido-desktop .one-image {
            width: 100%;
            text-align: center;
            margin-top:10px;
        }

        .contenido-desktop .one-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .contenido-desktop .two-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            width: 100%;
        }

        .contenido-desktop .two-images img {
            width: 100%;
            height: auto;
        }


        .contenido-desktop .line-decoration {
            width: 110%;
            margin: 10px;
            margin-left: -50px;
        }

        .contenido-desktop .line-decoration img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .one-button {
            text-align: center;
            margin: 20px;
        }

        .one-button button {
            padding: 10px 20px;
            width: 175px;
            height: 40px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            background-color: #C01F2E;
            color: #fff;
            border: none;
            border-radius: 0px;
        }

        .one-button button a {
            text-decoration: none;
            color: #fff;
        }

        .one-button button:hover {
            opacity: 0.7;
        }