@import url('/CSS/responsive.css');
@import url('/CSS/carouselYFooter.css');

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ========================================
   NAVBAR - NAVIGATION
   ======================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 100px;
    border-radius: 50px;
    margin: 20px auto;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 70px;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin: 15px;
    text-align: center;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    background: transparent;
    white-space: nowrap;
}

.navbar a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.navbar a:not(:hover) {
    background: transparent;
    color: #333;
}

.navbar .logo {
    padding: 0; 
    margin: 0;
    background: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 60px;
    width: auto;
    display: block;
}

.navbar .logo:hover {
    background: none !important;
    color: inherit;
}

/* Dropdown Principal */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    text-align: left;
}

.navbar li.dropdown-open > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    white-space: nowrap;
    margin: 0;
    position: relative;
}

.dropdown a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* Dropdown secundario para BISAGRAS */
.dropdown-item {
    position: relative;
}

.subdropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.dropdown-item.subdropdown-open > .subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.subdropdown a {
    display: block;
    padding: 10px 20px;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
    white-space: nowrap;
}

.subdropdown a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* ========================================
   HEADER SECTION
   ======================================== */

.header-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 100;
}

.portada-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ========================================
   SECCIONES DE PRODUCTO - DUAL CONTENT
   ======================================== */

.producto-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  margin: 0;
}

.dual-content {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin: 0;
}

.left-content,
.right-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: auto;
  width: 50%;
}

/* izquierda (solo imagen, sin fondo beige) */
.left-content {
  background: none !important; 
}

.left-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* derecha (texto) */
.right-content {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  background: #fff;
}


/* ========================================
   SECCIÓN 1 - BISAGRA SOFT CLOSING
   ======================================== */

.section-1 .right-content {
  background: white;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 120px 60px 40px;
  position: relative;
}

.section-1 .left-content img {
    object-position: center;
    width: 100vh;
}

.section-1 .right-content {
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.badge-thowel {
    position: absolute;
    top: 130px;
    right: 60px;
}

.badge-thowel img {
    width: 100px;
    height: auto;
}

.producto-titulo {
    font-size: 48px;
    font-weight: 900;
    color: #1e3a8a;
    line-height: 1.1;
    margin-bottom: 30px;
    display: block;
}

/* Título en una sola línea */
.producto-titulo.titulo-una-linea {
    display: block !important;
    font-size: 28px !important;
    line-height: 0.9 !important;
    word-wrap: break-word;
    max-width: 100%;
    margin-bottom: 20px !important;
}

.producto-titulo.titulo-una-linea b {
    display: block !important;
    font-size: 28px !important;
    margin-bottom: -5px !important;
}

.producto-titulo.titulo-una-linea .smooth,
.producto-titulo.titulo-una-linea .touch,
.producto-titulo.titulo-una-linea .estandar {
    display: block !important;
    font-size: 26px !important;
    margin-top: -2px !important;
}

.estandar,
.smooth,
.touch {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #e74c3c;
  display: block;
}

/* Asegurar que estandar sea rojo */
.estandar {
  color: #e74c3c !important;
}

.producto-descripcion {
    font-size: 18px;
    color: #1e3a8a;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
}

.diagrama-tecnico {
    margin-top: 20px;
    margin-left: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 350px;
}

.diagrama-tecnico img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* ========================================
   SECCIÓN 2 - VIDEO DEL HERRAJE SOLO
   ======================================== */

.section-2 .left-content {
    background: white;
    padding: 0;
}

.section-2 .left-content img {
    object-position: center;
    width: 100vh;
    height: 100%;
    object-fit: cover;
}

.section-2 .right-content {
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.video-container {
    width: 100%;
}

.video-titulo {
    font-size: 36px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.video-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.specs-intro {
    font-size: 16px;
    color: #1e3a8a;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 10px;
    max-width: 500px;
}

/* Sección de Información del catálogo */
.info-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.info-lista {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    max-width: 600px;
    text-align: left;
}

.info-lista li {
    font-size: 15px;
    color: #1e3a8a;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
}

/* Imágenes del producto estilo catálogo */
.imagenes-producto-catalogo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.imagenes-producto-catalogo .diagrama-tecnico {
    flex: 0 0 auto;
    margin: 0;
    max-width: 280px;
}

.imagenes-producto-catalogo .diagrama-tecnico img {
    width: 100%;
    height: auto;
}

.fotos-producto {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
}

.fotos-producto img {
    width: 100%;
    height: auto;
}

/* Badge H45/H35 */
.badge-h45 {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    font-size: 24px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.badge-h45 span {
    display: block;
}

/* Diagrama con iconos al lado */
.diagrama-con-iconos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.diagrama-con-iconos .diagrama-tecnico {
    flex: 0 0 auto;
    max-width: 350px;
    margin: 0;
}

.diagrama-con-iconos .diagrama-tecnico img {
    width: 100%;
    height: auto;
}

/* Iconos en disposición vertical (para cuando van al lado del diagrama) */
.specs-all-logos.specs-vertical {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 250px !important;
    margin: 0 !important;
}

.specs-all-logos.specs-vertical img {
    max-width: 70px !important;
    height: 70px !important;
}

/* Diagrama centrado */
.diagrama-centrado {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.diagrama-centrado img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Tablas dobles lado a lado */
.tablas-dobles {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.tablas-dobles .specs-table-image {
    flex: 0 0 auto;
    width: 280px;
    max-width: 280px;
}

.tablas-dobles .specs-table-image img {
    width: 100%;
    height: auto;
}

/* Tablas con iconos en el medio */
.tablas-con-iconos {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.tablas-con-iconos .specs-table-image {
    flex: 0 0 auto;
    width: 250px;
    max-width: 250px;
    margin: 0 !important;
}

.tablas-con-iconos .specs-table-image img {
    width: 100%;
    height: auto;
}

/* Iconos en el centro entre tablas */
.specs-iconos-centro {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    max-width: 120px !important;
    margin: 0 !important;
}

.specs-iconos-centro img {
    max-width: 60px !important;
    height: 60px !important;
}

.specs-all-logos {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 50px !important;
    margin: 40px auto !important;
    width: 100% !important;
    max-width: none !important;
}

.specs-all-logos img {
    width: auto !important;
    max-width: 90px !important;
    height: 90px !important;
    object-fit: contain !important;
    display: block !important;
}

.specs-table-image {
    width: 100% !important;
    max-width: 450px !important;
    margin: 20px auto !important;
    display: flex !important;
    justify-content: center !important;
}

.specs-table-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* ========================================
   SECCIÓN 3 - CODAZOS
   ======================================== */

.section-3 .left-content {
    background: #d4d4d4;
    padding: 0;
}

.section-3 .left-content img {
    object-position: center;
    width: 100vh;
}

.section-3 .right-content {
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.codazos-imagenes {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.codazos-imagenes img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SECCIÓN 4 - VIDEO ELABORADO
   ======================================== */

.section-4 .left-content {
    background: #e8e8e8;
    flex-direction: column;
    align-items: flex-start;
}

.section-4 .right-content {
    background: #2c2c2c;
}

.video-elaborado-container {
    width: 100%;
}

.video-placeholder img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ========================================
   PRODUCTOS SIMILARES - Estilos específicos de esta página
   ======================================== */

.productos-similares {
    width: 100%;
    padding: 60px 0 0 0;
    margin: 0;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.similares-titulo {
    font-size: 36px;
    font-weight: 900;
    color: #1e3a8a;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0 60px;
    flex-shrink: 0;
}

.productos-similares .catalog-carousel {
    margin-top: 0;
    padding-top: 0;
    flex: 1;
    height: auto;
    min-height: auto;
    overflow: visible;
}

.productos-similares .catalog-track {
    height: 100%;
    min-height: 100%;
    width: auto;
}

.productos-similares .catalog-item {
    height: 100%;
    min-height: 100%;
    flex-shrink: 0;
}

/* Los estilos del carousel y footer se importan desde carouselYFooter.css */

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet Grande */
@media (max-width: 1200px) {
    .section-1 .right-content {
        padding: 100px 40px 40px;
    }

    .badge-thowel {
        top: 110px;
        right: 60px;
    }

    .badge-thowel img {
        width: 100px;
    }

    .producto-titulo {
        font-size: 56px;
    }

    .diagrama-tecnico {
        margin-left: 0;
    }

    .diagrama-tecnico img {
        max-width: 320px;
    }

    .specs-table-image,
    .specs-table-image img {
        max-width: 320px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .dual-content {
        flex-direction: column;
        min-height: auto;
    }

    .left-content,
    .right-content {
        width: 100%;
        min-height: 50vh;
    }

    .section-1 .left-content img,
    .section-2 .left-content img,
    .section-3 .left-content img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .section-1 .right-content {
        padding: 80px 50px 50px;
        min-height: 50vh;
        justify-content: flex-start;
    }

    .section-2 .right-content,
    .section-3 .right-content {
        padding: 50px;
        min-height: 50vh;
    }

    .badge-thowel {
        top: 90px;
        right: 40px;
    }

    .badge-thowel img {
        width: 80px;
    }

    .producto-titulo {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .estandar {
        font-size: 40px;
    }

    .producto-descripcion {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .diagrama-tecnico {
        margin-top: 15px;
        margin-left: 0;
    }

    .diagrama-tecnico img {
        max-width: 300px;
    }

    .specs-table-image,
    .specs-table-image img {
        max-width: 300px;
    }

    .specs-intro {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .codazos-imagenes {
        gap: 20px;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .left-content,
    .right-content {
        min-height: auto;
    }

    .section-1 .left-content img,
    .section-2 .left-content img,
    .section-3 .left-content img {
        height: 40vh;
        min-height: 300px;
    }

    .section-1 .right-content {
        padding: 60px 30px 40px;
        min-height: auto;
    }

    .section-2 .right-content,
    .section-3 .right-content {
        padding: 40px 30px;
        min-height: auto;
    }

    .badge-thowel {
        top: 70px;
        right: 25px;
    }

    .badge-thowel img {
        width: 60px;
    }

    .producto-titulo {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .estandar {
        font-size: 32px;
    }

    .producto-descripcion {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .diagrama-tecnico {
        margin-top: 15px;
        margin-left: 0;
        text-align: left;
    }

    .diagrama-tecnico img {
        max-width: 280px;
        width: 100%;
    }

    .specs-intro {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .specs-table-image,
    .specs-table-image img {
        max-width: 280px;
    }

    .specs-all-logos {
        max-width: 100%;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .specs-all-logos img {
        max-width: 70px !important;
        width: 70px !important;
        height: 70px !important;
        object-fit: contain !important;
    }

    .codazos-imagenes {
        gap: 15px;
    }

    .similares-titulo {
        font-size: 28px;
        padding: 0 30px;
    }

    /* Imágenes de catálogo en móvil - apilar verticalmente */
    .imagenes-producto-catalogo {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    .imagenes-producto-catalogo .diagrama-tecnico,
    .fotos-producto {
        max-width: 280px !important;
        width: 280px !important;
    }

    .imagenes-producto-catalogo .diagrama-tecnico img,
    .fotos-producto img {
        width: 280px !important;
        max-width: 280px !important;
        height: auto !important;
    }
}

/* Mobile Pequeño */
@media (max-width: 480px) {
    .section-1 .right-content {
        padding: 50px 20px 30px;
    }

    .section-2 .right-content,
    .section-3 .right-content {
        padding: 30px 20px;
    }

    .badge-thowel {
        top: 60px;
        right: 15px;
    }

    .badge-thowel img {
        width: 50px;
    }

    .producto-titulo {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .estandar {
        font-size: 26px;
    }

    .producto-descripcion {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .diagrama-tecnico img {
        width: 200px;
    }

    .specs-intro {
        font-size: 14px;
    }

    .similares-titulo {
        font-size: 24px;
        padding: 0 20px;
    }
}

/* ========================================
   SECCIÓN UNIFICADA CON EFECTO SCROLL
   ======================================== */

.producto-section-unified {
    min-height: auto;
    width: 100%;
    padding-top: 0;
}

.producto-section-unified.three-sections {
    min-height: auto;
}

.producto-section-unified .dual-content {
    min-height: auto;
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    margin: 0 !important;
}

.producto-section-unified.three-sections .dual-content {
    min-height: auto;
}

/* Contenedor izquierdo para sticky */
.producto-section-unified .left-content {
    position: relative !important;
    flex: 1 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    width: 50% !important;
    height: auto !important;
    padding: 0 !important;
    background: none !important;
}

/* Contenedor de imágenes sticky */
.producto-section-unified .image-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: block;
}

.producto-section-unified .image-sticky-container img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* Forzar la primera imagen visible desde el inicio */
.producto-section-unified .image-sticky-container img:first-child {
    opacity: 1;
    z-index: 2;
}

.producto-section-unified .image-sticky-container img.active {
    opacity: 1;
    z-index: 3;
}

/* Contenedor de textos */
.producto-section-unified .right-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 50% !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    background: white !important;
}

.producto-section-unified .text-section {
    min-height: auto;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 20px 60px;
    background: white;
    text-align: center;
    width: 100% !important;
}

.producto-section-unified .text-section:first-child {
    padding-top: 120px;
}

/* Desktop - asegurar sticky */
@media (min-width: 1201px) {
    .producto-section-unified {
        min-height: auto;
        padding-top: 0;
    }

    .producto-section-unified.three-sections {
        min-height: auto;
    }

    .producto-section-unified.three-sections .dual-content {
        min-height: auto;
    }

    .producto-section-unified .image-sticky-container {
        position: sticky;
        top: 0;
        height: 100vh;
    }

    .producto-section-unified .text-section {
        padding: 40px 60px;
        min-height: auto;
    }

    .producto-section-unified .diagrama-tecnico img,
    .producto-section-unified .specs-table-image img {
        max-width: 350px;
    }

    .producto-section-unified .specs-all-logos {
        max-width: 500px;
        flex-direction: row;
        gap: 30px;
        justify-content: flex-start;
    }

    .producto-section-unified .specs-all-logos img {
        max-width: 70px;
        height: 70px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .producto-section-unified {
        min-height: auto !important;
        padding-top: 80px !important;
    }

    .producto-section-unified .dual-content {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .producto-section-unified .left-content {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

    .producto-section-unified .image-sticky-container {
        position: relative !important;
        height: 60vh !important;
        top: 0 !important;
    }

    .producto-section-unified .image-sticky-container img {
        position: relative !important;
        opacity: 1 !important;
    }

    .producto-section-unified .right-content {
        width: 100% !important;
        align-items: center !important;
    }

    .producto-section-unified .text-section {
        padding: 40px 30px !important;
        min-height: auto !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .producto-section-unified .diagrama-tecnico,
    .producto-section-unified .specs-table-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 350px !important;
    }

    .producto-section-unified .diagrama-tecnico img,
    .producto-section-unified .specs-table-image img {
        max-width: 100% !important;
        width: 350px !important;
    }

    .producto-section-unified .specs-all-logos {
        margin: 30px auto !important;
        max-width: 100% !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .producto-section-unified .specs-all-logos img {
        max-width: 70px !important;
        width: 70px !important;
        height: 70px !important;
        object-fit: contain !important;
    }

    /* Mostrar todas las imágenes en móvil/tablet */
    .producto-section-unified .image-sticky-container img:first-child,
    .producto-section-unified .image-sticky-container img {
        position: relative !important;
        opacity: 1 !important;
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .producto-section-unified {
        padding-top: 80px !important;
    }

    .producto-section-unified .image-sticky-container {
        height: 50vh !important;
    }

    .producto-section-unified .text-section {
        padding: 30px 20px !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .producto-section-unified .diagrama-tecnico,
    .producto-section-unified .specs-table-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }

    .producto-section-unified .diagrama-tecnico img,
    .producto-section-unified .specs-table-image img {
        max-width: 100% !important;
        width: 300px !important;
    }

    .producto-section-unified .specs-all-logos {
        margin: 20px auto !important;
        max-width: 100% !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    .producto-section-unified .specs-all-logos img {
        max-width: 70px !important;
        width: 70px !important;
        height: 70px !important;
        object-fit: contain !important;
    }

    /* Ajustar tamaños de elementos en mobile */
    .producto-section-unified .producto-titulo {
        font-size: 32px !important;
    }

    .producto-section-unified .producto-descripcion {
        font-size: 14px !important;
    }

    .producto-section-unified .badge-thowel {
        top: 20px !important;
        right: 20px !important;
    }

    .producto-section-unified .badge-thowel img {
        width: 60px !important;
    }

    .producto-section-unified .codazos-imagenes {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .producto-section-unified .codazos-imagenes img {
        max-width: 80% !important;
    }
}