html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    font-weight: lighter;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}


.seccion-producto2 {
    position: relative;
    padding: 164px 20px 10px 20px;
    overflow: hidden;
    background: #e61a30;
    box-shadow: inset 0em 8em 10em rgba(0, 0, 0, 0.5);
}

.search-icon2 {
    position: absolute;
    top: 124px;
    right: calc(50% - 90px);
    /* transform: translateY(-50%); */
    cursor: pointer;
    padding: 5px 10px 5px 150px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}
.search-icon2:hover {
  transform: scale(1.1);
}
.search-icon2 img {
    width: 30px;
    height: 30px;
    filter: opacity(0.8) invert(1);
}
.search-icon2:hover img{
  filter: opacity(1); /* Pone el icono blanco (para fondo oscuro) */
}
/* Overlay del buscador */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.search-header input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e61a30;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.search-header input:focus {
  border-color: #c41426;
  box-shadow: 0 0 0 3px rgba(230, 26, 48, 0.1);
}

.close-search {
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  margin-left: 15px;
  padding: 5px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-search:hover {
  background: #f5f5f5;
  color: #e61a30;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px 0;
}

.search-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.search-item:hover {
  background: #f8f9fa;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-item-info {
  flex: 1;
}

.search-item-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.search-item-code {
  font-size: 14px;
  color: #666;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-style: italic;
}

.loading-results {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

/* 1. FRANJA SUPERIOR */
.top-info {
    background: white;
    color: black;
    padding: 0px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1rem;
    gap: 15px;
    border-bottom: 1px solid #ccc;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.top-info a {
    color: black;
}

.top-info .languaje {
    font-size: 1.1rem;
    font-weight: 300;
    font-style: normal;
    cursor: pointer;
}

.top-info img {
    height: 50px;
    vertical-align: middle;
    margin-right: 20px;
}

/* 2. HEADER ROJO */
.main-header {
    background: #e61a30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.logo-container {
    position: relative;
}

.logo-container img {
    height: 40px;
    z-index: 1;
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-3px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid white;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    padding: 8px;
}

.catalogo-btn img {
    height: 40px;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #e61a30;
    width: 100%;
}

.mobile-menu a {
    color: white;
    padding: 15px 20px;
    border-top: 1px solid #fff2;
    text-decoration: none;
}

.banner {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.espaciador {
    flex: 1 1 0%;
    max-width: 0px;
}

.banner-texto {
    flex: 1 1 55%;
    max-width: 600px;
    z-index: 1;
    padding-left: 30px;
}

.banner-imagen {
    flex: 1 1 45%;
    margin-left: -60px;
    /* Imagen invade un poco la izquierda */
    z-index: 0;
    text-align: right;
}

/* Responsive */
@media (min-width: 1300px) {
    .espaciador {
        flex: 1 1 10%;
        max-width: 300px;
    }

    .banner-texto {
        flex: 1 1 45%;
        max-width: 600px;
        z-index: 1;
        padding-left: 30px;
    }

    .banner-imagen {
        flex: 1 1 45%;
        margin-left: -60px;
        /* Imagen invade un poco la izquierda */
        z-index: 0;
        text-align: right;
    }
}


.banner-imagen img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.banner-texto h2 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.1;
}

.banner-texto h2 .thin {
    font-weight: 100;
}

.banner-texto h2 .bold {
    font-weight: 800;
}

.banner-texto h2 .red {
    color: #e61a30;
}

.subtitulo {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 10px 0 20px;
    color: #666;
}

.descripcion {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.descripcion .rojo {
    color: #e61a30;
    font-weight: bold;
}

.listado-boton {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-right: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.ventajas {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.ventajas li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.ventajas li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('../IMG/icono-mas.png');
    /* Aquí pones tu ícono "+" en rojo */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.boton img {
    height: 60px;
    object-fit: contain;
}

.seccion-clientes {
    margin-top: 0px;
    font-family: "Lato", sans-serif;
}

/* Fondo negro superior */
.h1-black {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 10px;
}

.h1-black h1 {
    font-size: 1.2rem;
    font-weight: 200;
}

.h1-black strong {
    font-weight: 700;
}

/* Contenido rojo */
.contenido-clientes {
    background-color: #e61a30;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
}

/* Izquierda */
.izquierda {
    flex: 1 1 300px;
    text-align: center;
}

.img-garantia {
    max-width: 300px;
    width: 100%;
}

.izquierda p {
    font-size: 16px;
    margin-top: 10px;
}

.izquierda strong {
    color: white;
    font-weight: 700;
}

/* Derecha */
.derecha {
    flex: 1 1 300px;
    text-align: left;
}

.derecha h2 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    margin: 0;
    color: #000;
}

.derecha h3 {
    display: block;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1;
    margin: 0;
    color: #000;
    width: 90%;
    max-width: 400px;
}

.derecha h3 strong {
    font-weight: 800;
    color: #fff;
}

.derecha p {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 300;
}

.img-banderas {
    margin-top: 10px;
    max-width: 300px;
    width: 100%;
}

.seccion-items {
    text-align: center;
    padding: 40px 0px;
    font-family: "Lato", sans-serif;
}

.titulo-items h2 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.titulo-items .rojo {
    color: #e61a30;
}

.titulo-items p {
    font-size: 1.3rem;
    font-weight: 200;
    margin: 5px 0;
}

.franja {
    width: 100%;
    margin: 0 auto;
    margin-bottom: -3%;
}

.subtitulo {
    font-size: 1rem;
}

.slider-productos {
    margin: 2rem auto;
    width: 1024px;
    max-width: 90%;
    position: relative;
}

/* Contenedor del botón */
.slick-arrow-custom {
    background: none;
    border: none;
    top: 50%;
    transform: translateY(-70%);
    z-index: 10;
    cursor: pointer;
    position: absolute;
}

/* Imagen de la flecha */
.arrow {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Flecha izquierda girada */
.arrow-right {
    transform: rotate(180deg);
}

/* Posiciones */
.slick-prev {
    left: -50px;
    /* ajusta según tu layout */
}

.slick-next {
    right: -50px;
}

.slick-next:before,
.slick-prev:before {
    content: '';
    background: none;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}


.producto {
    display: inline-block;
    max-width: 600px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.07),
        0 2px 4px rgba(0, 0, 0, 0.07),
        0 4px 8px rgba(0, 0, 0, 0.07),
        0 8px 16px rgba(0, 0, 0, 0.27),
        0 16px 24px rgba(0, 0, 0, 0.17);
}

.producto {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    /* altura fija para TODAS las tarjetas */
}


.slide {
    height: 100%;
    background-color: #ccc;
    padding: 10px;
}

.imagen-contenedor {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: #e61a30 2px solid;
    box-shadow: inset 0 -3em 3em rgba(65, 65, 65, 0.3);
}

.imagen-contenedor {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detalle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.detalle h3 {
    font-weight: bold;
    position: relative;
    margin: 10px 0 5px;
}

.detalle h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #e61a30;
    margin: 0 auto;
    margin-top: 5px;
}

.codigo {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
}

.btn-catalogo {
    display: block;
    border-radius: 6px;
    font-size: 0.7rem;
    margin: 10px auto;
    padding: 4px 10px;
    background-color: #e61a30;
    color: white;
    border: none;
    cursor: pointer;
}

.ensambles {
    font-family: "Lato", sans-serif;
}

/* ⚪ Sección blanca con dos columnas */
.ensambles-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 5%;
    background: white;
    gap: 20px;
    width: 1024px;
    max-width: 100%;
    margin: auto;
}

.ensambles-texto {
    flex: 1 1 50%;
}

.ensambles-texto h2 {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 20px;
}

.ensambles-texto .rojo {
    font-size: 2rem;
    color: #e61a30;
    font-weight: 800;
}

.ensambles-texto .bold {
    font-size: 2rem;
    font-weight: 900;
}

.ensambles-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ensambles-lista li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ensambles-lista li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    background-image: url('../IMG/icono-mas.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-cotizar {
    background: none;
    padding: 0;
    border: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    /* evita espacio indeseado debajo de img */
}

.btn-cotizar img {
    width: 200px;
    max-width: 90%;
    height: auto;
    display: block;
}

.btn-cotizar:hover img {
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.ensambles-img {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ensambles-img img {
    max-width: 300px;
    width: 90%;
    height: auto;
}

.VIDEO {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* No recorta el video, lo ajusta */
    aspect-ratio: 1920/720;
    /* Mantiene proporción mientras carga */
    background-color: #000;
    /* Fondo mientras carga */
    display: block;
    pointer-events: none;
    /* Evita que se abra en móvil */
}

/* 🔴 Franja CTA */
.franja-cta {
    background: #e61a30;
    background-image: url('../IMG/fondorojo1.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    width: 100vw;
    padding: 30px 5%;
}

.franja-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10%;
}

.franja-content p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.2rem;
}

.franja-content .bold {
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 0.3rem;
}

.btn-cotizar.blanco {
    background-color: none;
}

.btn-cotizar.blanco img {
    width: 200px;
    max-width: 90%;
}

.btn-cotizar.blanco:hover img {
    filter: brightness(0.8), contrast(1.2);
    transition: filter 0.3s ease;
}


.lean-beneficios {
    padding: 40px 5%;
    background-color: #f9f9f9;
}

.contenedor-cajas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.caja {
    flex: 1 1 auto;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f2f2f2;
    overflow: hidden;
}

.caja img {
    max-height: 100%;
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.caja:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.equipo-manual {
    background-color: #e4e4e4;
    padding: 60px 5%;
}

.equipo-manual .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.equipo-manual .texto {
    flex: 1 1 200px;
}

.equipo-manual h2 {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0;
}

.linea1 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #111;
    line-height: 1;
}

.linea3 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.linea3 .rojo {
    color: #e61a30;
}

.equipo-manual .imagenes {
    flex: 2 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.equipo-manual .imagenes img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
}

.equipo-manual .imagenes a:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
}

.seccion-listado-circular {
    padding: 60px 5%;
    background-color: #fff;
}

.contenedor-central {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.lista {
    flex: 1 1 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista li {
    margin-bottom: 20px;
}

.lista h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #111;
    line-height: 1;
}

.lista h3 span {
    color: #e61a30;
    font-weight: bold;
}

.lista p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1;
}

.lista-izquierda p,
.lista-izquierda h3 {
    text-align: right;
}

.lista-derecha p,
.lista-derecha h3 {
    text-align: left;
}

.imagen-central {
    flex: 1 1 500px;
    text-align: center;
}

.imagen-central img {
    max-width: 600px;
    width: 100%;
    height: auto;
    transform: translateY(0) scale(1);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    /* sin sombra al inicio */
}

.imagen-central img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
}

.cta-footer {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    gap: 1rem;
}

.cta-texto {
    color: #fff;
    font-weight: 200;
    font-size: 1.5rem;
}

.cta-texto span {
    font-weight: 800;
}

.cta-botones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-circular img {
    height: 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Alineados arriba */
    flex-wrap: wrap;
    background: #e61a30;
    color: white;
    padding: 2rem;
    gap: 1.5rem;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
    margin-top: 0;
    /* Asegura que no bajen */
}

.footer-col h4 {
    font-weight: 100;
    font-size: 1rem;
    margin-bottom: 0rem;
    line-height: 1.5em;
    text-align: center;
}

.footer-col h5 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0rem;
    line-height: 1.5em;
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 100;
    line-height: 1em;
    margin: 0;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-col.social {
    flex: 0 0 100px;
    max-width: 100px;
}

.footer-col.social .social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col.social .social-icons li {
    list-style: none;
}

.footer-col.social img {
    display: inline-block;
    width: 2rem;
}

.footer-col.subscribe {
    flex: 2 1 300px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-col.subscribe .subheading {
    font-weight: 800;
    font-size: 1.8rem;
    color: #000;
    margin: 0;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
}

.footer-col.subscribe form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col.subscribe label {
    text-align: center;
    display: block;
    line-height: 1.5em;
    margin: 10px 0;
}

.footer-col.subscribe input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.footer-col.subscribe button {
    padding: 0.5rem;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    width: 100px;
    margin: auto;
}

.footer {
    background-color: #e6e6e6;
    text-align: center;
    font-family: sans-serif;
    padding: 20px;
}

.footer-top2 .highlight {
    color: #e61a30;
    font-weight: bold;
}

.contact-button {
    margin: 20px 0;
    width: 150px;
    /* ajusta según el tamaño del botón */
}

.email-bar {
    margin: 10px auto;
    border-top: 2px solid #e61a30;
    border-bottom: 2px solid #e61a30;
    display: inline-block;
    padding: 10px 0;
    width: 900px;
    max-width: 90%;
}

.email {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #555;
}

.bottom-left,
.bottom-center,
.bottom-right {
    flex: 1 1 33%;
    margin: 5px 0;
}

.bottom-left a {
    color: #000;
    text-decoration: none;
}

.bottom-right img.logo-dublanc {
    margin-top: 5px;
    height: 20px;
    vertical-align: middle;
}

.Fadein {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition:
        opacity 800ms ease-out,
        transform 800ms ease-out,
        visibility 800ms ease-out;
    will-change: opacity, transform, visibility;
}

.Fadein.visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}


/* SUBMENU */
.seccion-productos {
    display: none;
    position: fixed;
    z-index: 150;
    top: 130px;
    left: 5%;
    width: 90%;
    justify-content: space-between;
    align-items: stretch;
    padding: 0px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    border-radius: 0 8px 0 8px;
}

.contenedor-listas {
    display: flex;
    flex: 3;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.columna {
    min-width: 200px;
}

.columna h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.subrayado {
    border-bottom: 2px solid #e61a30;
    padding-bottom: 3px;
}

.columna ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columna li {
    margin-bottom: 8px;
    color: #222;
    font-size: 0.95rem;
}

.columna li a {
    color: #222;
    font-size: 0.95rem;
    line-height: 1;
    margin: 0;
    text-decoration: none;
}

.columna li a:hover {
    text-decoration: underline;
}

.panel-derecho {
    background-color: rgba(0, 0, 0, .3);
    padding: 30px;
    text-align: center;
    flex: 1;
    border-radius: 0 0 8px 0;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.panel-derecho p {
    margin: 10px 0;
}

.medida {
    font-size: 1.3rem;
    font-weight: 100;
    color: #fff;
}

.medida strong {
    font-size: 1.8rem;
    font-weight: 400;
}

.fabricamos {
    font-size: 1.3rem;
    font-weight: 100;
    color: #fff;
}

.fabricamos strong {
    font-size: 1.8rem;
    font-weight: 400;
}

.cta {
    font-size: 0.95rem;
    color: #000000;
    margin-top: 10px;
}

.icono-sierra {
    width: 80px;
    margin: 10px 0;
}

.boton-cotizar img {
    height: 60px;
}


/* 📱 Responsive */
@media (max-width: 768px) {
    .logo-container::after {
        transform: translateX(-50%) translateY(-7px);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 16px solid white;
    }

    .espaciador {
        flex: 1 1 0%;
        max-width: 0px;
    }
    .banner-texto h2 {
        font-size: 2.3rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .main-header {
        justify-content: space-between;
    }

    .mobile-menu.show {
        display: flex;
    }

    .top-info {
        justify-content: center;
        text-align: center;
        font-size: 0.7rem;
        padding: 0;
    }

    .top-info img {
        height: 1.8rem;
    }

    .contenido-clientes {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }

    .derecha h2 {
        font-size: 20px;
    }

    .derecha h2 strong {
        font-size: 24px;
    }

    .img-garantia,
    .img-banderas {
        max-width: 90%;
    }

    .ensambles-content {
        flex-direction: column;
        text-align: center;
    }

    .franja-content {
        flex-direction: column;
        text-align: center;
    }

    .ensambles-img {
        margin-top: 20px;
    }

    .contenedor-cajas {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .caja {
        flex: none;
        max-width: 100%;
        height: 120px;
    }

    .caja img {
        height: auto;
        width: auto;
        max-height: 100%;
        max-width: 100%;
        object-fit: initial;
    }

    .equipo-manual .contenedor {
        flex-direction: column;
        text-align: center;
    }

    .equipo-manual h2 {
        font-size: 1.6rem;
    }

    .equipo-manual .texto {
        flex: 1 1 100px;
    }

    .equipo-manual .imagenes {
        flex: 2 1 500px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .equipo-manual .imagenes img {
        max-width: 200px;
        width: 100%;
        height: auto;
        display: block;
    }

    .contenedor-central {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lista {
        text-align: center;
    }

    .imagen-central img {
        max-width: 90%;
    }


    .footer-col.social .social-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        /* ← centrado horizontal */
        align-items: center;
        /* ← centrado vertical (opcional) */
        flex-wrap: wrap;
        gap: 10px;
        /* ← opcional, separa íconos si están muy juntos */
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        flex: 1 1 100px;
        min-width: 200px;
        width: 90%;
        text-align: center;
    }

    .footer-col.social {
        flex: 0 0 50px;
        max-width: 100%;
    }

    .bottom-left,
    .bottom-center,
    .bottom-right {
        flex: 1 1 100%;
        text-align: center;
    }

    .seccion-productos {
        flex-direction: column;
        align-items: center;
        top: 90px;
        overflow-x: scroll;
        max-height: calc(100vh - 100px);
    }

    .contenedor-listas {
        gap: 10px;
    }

    .contenedor-listas .columna {
        min-width: 150px;
    }

    .seccion-productos {
        flex-direction: row;
        overflow-x: auto;
    }

    .panel-derecho {
        min-width: 100%;
        border-radius: 0 0 8px 8px;
    }

    .slider-productos {
        margin: 2rem auto;
        width: 1024px;
        max-width: 70%;
        position: relative;
    }

    .imagen-central {
        flex: 1 1 300px;
        text-align: center;
    }

    .search-icon2 {
        left: 5%;
    }
}