      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     :root {
          
            --color-blanco-title: #1e293b;
          }   
          .textoBlancoTitle {
            color: #d89b00;
          }

        /* ===== CONTAINER ===== */
        .specsContainerProduct {
            max-width: 1400px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-top: 142px;
        }

        /* ===== HEADER BLOCK ===== */
        .headerProduct {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            padding: 40px;
            text-align: center;
            border-bottom: 3px solid #ffb700;
            position: relative;
        }

        .headerProduct__title {
            color: #454545;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .headerProduct__subtitle {
            color: #64748b;
            font-size: 1.1rem;
        }

        /* ===== BUTTON BLOCK ===== */
        .buttonProduct {
            display: inline-block;
            margin-top: 20px;
            padding: 15px 40px;
            background:#ffb700;
            color: #454545;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
        }

        .buttonProduct:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(249, 233, 19, 0.5);
            background: linear-gradient(135deg, #eacf08 0%, #ffb700 100%);
        }

        .buttonProduct--download {
            /* Specific modifier for download button if needed */
        }

        /* ===== CONTENT BLOCK ===== */
        .contentProduct {
            padding: 40px;
        }

        /* ===== SECTION BLOCK ===== */
        .sectionProduct {
            margin-bottom: 40px;
        }

        .sectionProduct__title {
            color: #454545;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sectionProduct__title::before {
            content: '';
            width: 6px;
            height: 30px;
            background: #ffb700;
            border-radius: 3px;
        }

        /* ===== SPECS-GRID BLOCK ===== */
        .specsGridProduct {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        /* ===== SPEC-CARD BLOCK ===== */
        .specCardProduct {
            background: #f1f5f9;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            transition: all 0.3s ease;
        }

        .specCardProduct:hover {
            border-color: #ffb700;
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(14, 165, 233, 0.2);
        }

        .specCardProduct__label {
            color: #ffb700;
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .specCardProduct__value {
            color: #1e293b;
            font-size: 1.3rem;
            font-weight: 600;
        }

        /* ===== TABLE BLOCK ===== */
        .tableProduct {
            width: 100%;
            background: #f2f2f2;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #cbd5e1;
            margin-bottom: 20px;
        }

        .tableProduct__wrapper {
            width: 100%;
            border-collapse: collapse;
        }

        .tableProduct__header {
            background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
            color: #454545;
            padding: 15px;
            text-align: left;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-bottom: 2px solid #ffb700;
        }

        .tableProduct__cell {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
            border: solid 1px #b6b6b6 
        }

        .tableProduct__cell--label {
            /* color: #ffb700; */
            font-weight: 600;
        }

        .tableProduct__row:last-child .tableProduct__cell {
            border-bottom: none;
        }

        .tableProduct__row:hover {
            background: rgba(14, 165, 233, 0.05);
        }

        /* ===== TEMP-GRID BLOCK ===== */
        .tempGridProduct {
            display: flex;
            justify-content: space-around;
            background: #f1f5f9;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #cbd5e1;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* ===== TEMP-CARD BLOCK ===== */
        .tempCardProduct {
            text-align: center;
            padding: 15px;
            background: #ffffff;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            min-width: 120px;
            transition: all 0.3s ease;
        }

        .tempCardProduct:hover {
            border-color: #ffb700;
            transform: scale(1.05);
        }

        .tempCardProduct__temp {
            color: #ffb700;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .tempCardProduct__capacity {
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* ===== HIGHLIGHT-BOX BLOCK ===== */
        .highlightBoxProduct {
            background: #f2f2f2;
            border-left: 4px solid #ffb700;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .highlightBoxProduct__title {
            color: #ffb700;
            margin-bottom: 15px;
        }

        .highlightBoxProduct__list {
            list-style: none;
            padding-left: 0;
        }

        .highlightBoxProduct__item {
            padding: 8px 0;
            color: #475569;
            position: relative;
            padding-left: 25px;
        }

        .highlightBoxProduct__item::before {
            content: '✓';
            color: #ffb700;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* ===== ILLUSTRATIONS BLOCK ===== */
        .illustrationsProduct {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        /* ===== ILLUSTRATION-CARD BLOCK ===== */
        .illustrationCardProduct {
            background: #f2f2f2;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .illustrationCardProduct:hover {
            border-color: #ffb700;
            transform: translateY(-5px);
        }

        .illustrationCardProduct__placeholder {
            background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
            height: 250px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 2px dashed #cbd5e1;
        }
        .illustrationCardProduct__placeholder img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 8px;
        }

        .illustrationCardProduct__placeholderText {
            color: #94a3b8;
            font-size: 1.1rem;
        }

        .illustrationCardProduct__title {
            color: #454545;
            margin-top: 10px;
        }

        /* ===== FOOTER-NOTE BLOCK ===== */
        .footerNoteProduct {
            background: #f1f5f9;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.8;
        }

        .footerNoteProduct__text {
            margin-bottom: 10px;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .headerProduct__title {
                font-size: 1.8rem;
            }

            .contentProduct {
                padding: 20px;
            }

            .sectionProduct__title {
                font-size: 1.4rem;
            }

            .specsGridProduct {
                grid-template-columns: 1fr;
            }

            .tableProduct {
                overflow-x: auto;
            }

            .tableProduct__wrapper {
                min-width: 500px;
            }

            .tempGridProduct {
                flex-direction: column;
            }

            .tempCardProduct {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .headerProduct {
                padding: 20px;
            }

            .headerProduct__title {
                font-size: 1.5rem;
            }

            .buttonProduct {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .sectionProduct__title {
                font-size: 1.2rem;
            }
        }




      .Comparison {
            max-width: 1600px;
            margin: 0 auto;
        }

        .Comparison__header {
            text-align: center;
            margin-bottom: 40px;
        }

        .Comparison__title {
            font-size: 2.5rem;
            color: #ffb700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .Comparison__subtitle {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .Comparison__intro {
            background: rgba(14, 165, 233, 0.1);
            border-left: 4px solid #ffb700;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .Comparison__intro-text {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
        }

        .Comparison__intro strong {
            color: #ffb700;
        }

        /* Producto destacado */
        .Comparison__featured {
            background: #f1f5f9;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(14, 165, 233, 0.3);
            margin-bottom: 40px;
            text-align: center;
        }

        .Comparison__featured-title {
            font-size: 2rem;
            font-weight: bold;
            color: #ffb700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .Comparison__featured-model {
            font-size: 1.3rem;
            color: #64748b;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .Comparison__featured-tagline {
            font-size: 1.1rem;
            color: #ffb700;
            font-style: italic;
        }




        /* ===== TABLA SENCILLA - FILAS COMPACTAS ===== */


        .Comparison__header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 10px;
}

.Comparison__brand-badge {
    display: flex;
    align-items: center;
    justify-content: center;
   
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.1);
    min-height: 60px;
}

.Comparison__brand-logo {
   
    height: auto;
    max-height: 130px;
    object-fit: contain;
}
.Comparison__brand-logo img {
   width: 100%;
}


.Comparison__model {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .Comparison__brand-logo {
        width: 60px;
        max-height: 30px;
    }
    
    .Comparison__model {
        font-size: 14px;
    }
}


/* ===========================
           SECTION PRODUCT
        =========================== */
  :root {
            /* Colores principales - OPCIÓN 4 APLICADA */
            --color-dark-bg: #f1f5f9;
            --color-dark-secondary: #ffffff;
            --color-dark-tertiary: #e2e8f0;
            --color-gold-primary: #ffb700;
            --color-gold-secondary: #38bdf8;
            --color-gold-dark: #0284c7;
            
            /* Colores de marca */
            --color-rolls: #0066cc;
            --color-trojan: #cc0000;
            
            /* Colores de texto */
            --color-text-primary: #1e293b;
            --color-text-secondary: #475569;
            --color-text-muted: #64748b;
            
            /* Espaciados */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            
            /* Sombras */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
            --shadow-gold: 0 0 20px rgba(14, 165, 233, 0.4);
            
            /* Bordes */
            --border-radius-sm: 4px;
            --border-radius-md: 8px;
            --border-radius-lg: 12px;
            
            /* Transiciones */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
        }

        /* ===========================
           SECTION PRODUCT
        =========================== */
        .sectionProduct {
            max-width: 1400px;
            margin: 0 auto;
            padding: var(--spacing-lg) 0;
        }

      

        /* ===========================
           COMPARISON TABLE - DESKTOP
        =========================== */
        .Comparison__table-container {
            background-color: #f2f2f2;
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-lg);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .Comparison__table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            min-width: 600px;
            border: 2px solid #cbd5e1;
        }

        /* Header */
        .Comparison__row--header .Comparison__cell {
            text-align: center;
            font-weight: 600;
            color: var(--color-text-primary);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Header Content */
        .Comparison__header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--spacing-xs);
        }

        /* Brand Badge */
        .Comparison__brand-badge {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius-md);
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            overflow: hidden;
        }

        .Comparison__brand-badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold);
        }

        .Comparison__brand-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
           
        }

        .Comparison__model {
            font-size: var(--font-size-base);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-top: var(--spacing-xs);
        }

        .Comparison__winner {
            font-size: var(--font-size-lg);
            margin-top: var(--spacing-xs);
        }

        /* Body Rows */
        .Comparison__row:not(.Comparison__row--header):hover {
            background-color: rgba(14, 165, 233, 0.08);
        }

        .Comparison__row:not(.Comparison__row--header):nth-child(even) {
            background-color: rgba(0, 0, 0, 0.02);
        }

        /* Cells */
        .Comparison__cell {
            padding: 4px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .Comparison__cell--spec {
            background: linear-gradient(90deg, var(--color-dark-tertiary) 0%, transparent 100%);
            font-weight: 700;
            text-align: left;
            color: var(--color-text-primary);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding-left: var(--spacing-md);
        }

        .Comparison__cell--spec small {
            display: block;
            font-size: var(--font-size-xs);
            color: var(--color-text-muted);
            font-weight: 400;
            text-transform: none;
            margin-top: 2px;
        }

        /* Brand-specific cell colors */
        .Comparison__cell--rolls {
            position: relative;
        }

        .Comparison__cell--rolls::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--color-rolls);
        }

        .Comparison__cell--trojan {
            position: relative;
        }

        .Comparison__cell--trojan::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--color-trojan);
        }

        /* Values */
        .Comparison__value {
            display: block;
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 2px;
        }

        .Comparison__unit {
            display: block;
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            font-weight: 400;
        }

        /* ===========================
           MOBILE CARDS (Generadas dinámicamente)
        =========================== */
        .Comparison__mobile-cards {
            display: none;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .Comparison__card {
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-md);
            border: 2px solid #cbd5e1;
            transition: all var(--transition-normal);
            background-color: var(--color-dark-bg);
        }

        .Comparison__card:hover {
            border-color: var(--color-gold-primary);
            box-shadow: var(--shadow-gold);
            transform: translateY(-5px);
        }

        .Comparison__card-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: var(--spacing-md);
            border-bottom: 2px solid var(--color-gold-primary);
            margin-bottom: var(--spacing-md);
        }

        .Comparison__card-image {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius-md);
            padding: var(--spacing-sm);
            margin-bottom: var(--spacing-sm);
        }

        .Comparison__card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-height: 200px;
        }

        .Comparison__card-title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-xs);
            text-align: center;
        }

        .Comparison__card-rating {
            font-size: var(--font-size-lg);
        }

        .Comparison__card-specs {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .Comparison__card-spec {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm);
            background-color: rgba(0, 0, 0, 0.02);
            border-radius: var(--border-radius-sm);
            border: solid 1px #cbd5e1;
        }

        .Comparison__card-spec:nth-child(even) {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .Comparison__card-spec-label {
            font-size: var(--font-size-sm);
            color: var(--color-text-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .Comparison__card-spec-value {
            text-align: right;
            color: var(--color-text-primary);
            font-weight: 600;
        }

        /* ===========================
           RESPONSIVE - TABLET
        =========================== */
        @media (max-width: 992px) {
            .Comparison__table {
                min-width: 500px;
            }

            .Comparison__brand-badge {
                max-width: 120px;
                height: 100px;
            }

            .Comparison__model {
                font-size: var(--font-size-sm);
            }

            .Comparison__winner {
                font-size: var(--font-size-base);
            }

            .Comparison__value {
                font-size: var(--font-size-base);
            }
        }

        /* ===========================
           RESPONSIVE - MOBILE
        =========================== */
        @media (max-width: 768px) {
            body {
                padding: var(--spacing-sm);
            }

            .sectionProduct {
                padding: var(--spacing-md) 0;
            }

            .sectionProduct__title {
                font-size: var(--font-size-xl);
                margin-bottom: var(--spacing-md);
            }

            .Comparison__table-container {
                padding: var(--spacing-sm);
            }

            /* Ocultar tabla en mobile */
            .Comparison__table {
                display: none;
            }

            /* Mostrar cards en mobile */
            .Comparison__mobile-cards {
                display: flex;
            }
        }

        /* ===========================
           RESPONSIVE - SMALL MOBILE
        =========================== */
        @media (max-width: 480px) {
            .sectionProduct__title {
                font-size: var(--font-size-lg);
            }

            .Comparison__card {
                padding: var(--spacing-sm);
            }

            .Comparison__card-title {
                font-size: var(--font-size-base);
            }

            .Comparison__card-spec {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--spacing-xs);
            }

            .Comparison__card-spec-value {
                text-align: left;
            }
        }

        /* ===========================
           ACCESSIBILITY
        =========================== */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        *:focus-visible {
            outline: 2px solid var(--color-gold-primary);
            outline-offset: 2px;
        }
