     
        .container-description {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header-description {
            text-align: center;
            margin-bottom: 40px;
        }

        .header-description h1 {
            font-size: 2.5rem;
            color: #007BFF;
        }

        .header-description p {
            font-size: 1.2rem;
            color: #555;
        }

        .icon-block {
            display: flex;
            /*flex-wrap: wrap;*/
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            text-align: center;
        }

        .icon-item {
            flex: 1 1 20%;
            padding: 5px;
        }

        .icon-item img {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }

        .icon-item p {
            font-size: 2rem;
            color: #333;
        }

        .product-overview {
            text-align: center;
            margin-bottom: 40px;
        }

        .product-overview img {
            width: 100%;
            height: auto;
            /*max-width: 600px;*/
            alt: "Vista del Producto";
        }
		
		.product-overview p{
            font-size: 2rem;
        }
		
		.product-overview img.desktop-image {
            display: block;
        }

        .product-overview img.mobile-image {
            display: none;
        }
		
		.video-section .desktop-video {
            display: block;
        }

        .video-section .mobile-video {
            display: none;
        }

        .feature-block, .feature-block-alt {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 40px;
        }

        .feature-block img, .feature-block-alt img {
            flex: 1;
            max-width: 50%;
            padding: 10px;
        }

        .feature-block .text-content, .feature-block-alt .text-content {
            flex: 1;
            max-width: 50%;
            padding: 10px;
        }

        .feature-block .text-content h2, .feature-block-alt .text-content h2 {
		
			font-size: 3rem !important;
            color: #007BFF !important;
            margin-bottom: 0 0 0 0 !important;
		
			/*
            font-size: 1.8rem;
            color: #007BFF;
            margin-bottom: 10px;*/
        }

        .feature-block .text-content h3, .feature-block-alt .text-content h3 {
            font-size: 2rem;
            color: #555;
            margin-bottom: 10px;
        }

        .feature-block .text-content p, .feature-block-alt .text-content p {
            font-size: 1.5rem;
            color: #333;
        }

        .feature-block-alt {
            flex-direction: row-reverse;
        }

        .video-section {
            margin-bottom: 40px;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background-color: #f1f1f1;
        }

        @media (max-width: 768px) {
            .feature-block, .feature-block-alt {
                flex-direction: column;
            }

            .feature-block img, .feature-block-alt img, .feature-block .text-content, .feature-block-alt .text-content {
                max-width: 100%;
            }

            .icon-block {
                flex-wrap: wrap;
            }

            .icon-item {
                flex: 1 1 45%;
                max-width: 45%;
            }
			
			.product-overview img.desktop-image {
                display: none;
            }

            .product-overview img.mobile-image {
                display: block;
            }
			
			.video-section .desktop-video {
                display: none;
            }

            .video-section .mobile-video {
                display: block;
            }
			
			.text-over-image-description {
            position: relative;
            text-align: center;
            color: white;
			}

			.text-over-image-description img {
				width: 100%;
				height: auto;
			}

			.text-over-image-description .text {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				color: #fff;
			}

			.text-over-image-description .text h2 {
				font-size: 2rem;
				margin-bottom: 10px;
			}

			.text-over-image-description .text p {
				font-size: 1.2rem;
			}
			
			.features-we-love {
            position: relative;
            margin: 40px 0;
            text-align: left;
            color: #fff;
        }

        .features-we-love .background-image {
            width: 100%;
            height: auto;
            filter: brightness(50%);
        }

        .features-we-love .text-container {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 20px;
            border-radius: 10px;
            max-width: 400px;
        }

        .features-we-love .text-container h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .features-we-love .text-container h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .features-we-love .text-container p {
            font-size: 1rem;
        }

        .features-we-love .badge {
            display: inline-block;
            background-color: #28a745;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        }
		
		
		.specifications-section {
            padding: 10px;
            background-color: #f9f9f9;
        }

        .specifications-section h2 {
			float:none;
            text-align: center;
            margin-bottom: 20px;
        }

        .specifications-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            max-width: 800px;
            margin: 0 auto;
        }

        .specifications-item {
            padding: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
			font-size: 1.5rem;
        }

        .specifications-item:nth-child(even) {
            background-color: #f1f1f1;
        }

        @media (max-width: 768px) {
            .specifications-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
		
		
		.container-description-specs {
            width: 95%;
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 20px;
        }
		
		/* Estilos para la sección de Preguntas Frecuentes */
		
		
		.container-description-faqs {
            width: 95%;
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 20px;
        }
		
		
		
        .faq-section {
            padding: 10px;
            /*background-color: #e9e9e9;*/
        }

        .faq-section h2 {
			float:none;
            text-align: center;
            margin-bottom: 20px;
        }

        .faq-item {
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
        }

        .faq-question {
			font-size: 1.6rem;
            padding: 15px;
            background-color: #f2f2f2;
            cursor: pointer;
        }

        .faq-answer {
			font-size: 1.5rem;
            padding: 15px;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        @media (max-width: 768px) {
            .faq-question, .faq-answer {
                padding: 10px;
            }
        }