.elementor-5256 .elementor-element.elementor-element-aca26df{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8790d30 *//* --- Estilos Base --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background-color: #fff;
            color: #2B3031;
            line-height: 1.5;
        }

        /* Contenedor general para la sección */
        .product-description-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        @media (min-width: 768px) {
            .product-description-section {
                padding: 2rem 2rem;
            }
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title span {
            background-color: #fff;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        /* Estilo para el contenido de texto (RTE) */
        .rte-content p {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.6;
            color: #2B3031;
        }

        /* --- Layout de las secciones internas (3 columnas) --- */
        .product-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-row {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 992px) {
            .product-row {
                flex-direction: row;
                align-items: center;
            }
            .product-row .text-content {
                flex: 1;
            }
            .product-row .image-placeholder {
                flex: 1;
            }
            /* Alternar orden para filas pares (imagen izquierda, texto derecha) */
            .product-row:nth-child(even) {
                flex-direction: row-reverse;
            }
        }

        .text-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .image-placeholder {
            text-align: center;
        }

        .image-placeholder img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* --- Estilos para el carrusel de características --- */
        .caracteristicas-section {
            margin: 3rem 0;
            padding: 1rem 0;
        }

        .carousel-container {
            position: relative;
            margin: 2rem 0;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            flex: 0 0 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1rem;
        }

        .carousel-slide img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }

        .carousel-slide h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #2B3031;
        }

        .carousel-slide p {
            max-width: 600px;
            font-size: 1rem;
            color: #4a5568;
        }

        /* Botones de navegación */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: rgba(0,0,0,0.8);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        /* Paginación (puntos) */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #2B3031;
        }

        /* --- Especificaciones técnicas --- */
        .especificaciones-section {
            margin: 3rem 0;
            padding: 1rem 0;
        }

        .especificaciones-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .especificaciones-grid {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
        }

        .especificaciones-image {
            flex: 1;
            text-align: center;
        }

        .especificaciones-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .especificaciones-datos {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
        }

        .dato-card {
            background: #f9f9f9;
            padding: 1rem;
            border-radius: 12px;
            width: calc(50% - 1rem);
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .dato-card img {
            width: 32px;
            height: auto;
            margin-bottom: 0.5rem;
        }

        .dato-card p:first-of-type {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .dato-card p:last-of-type {
            font-size: 1.2rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .medidas-lista {
            background: #f9f9f9;
            padding: 1rem;
            border-radius: 12px;
            width: 100%;
            margin-top: 0.5rem;
        }

        .medidas-lista p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* --- Responsive --- */
        @media (max-width: 767px) {
            .section-title {
                font-size: 1.8rem;
            }
            .text-content h2 {
                font-size: 1.5rem;
            }
            .carousel-slide h3 {
                font-size: 1.4rem;
            }
        }/* End custom CSS */