.home-search-bar-wrapper {
    position: relative; /* 🔁 Clave para que el hijo se posicione correctamente*/
    display: flex;
    justify-content: center;
}
.home-search-results {
    position: absolute;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    z-index: 1000;
    list-style: none;
    padding: 0px 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px; 
    margin: 0px !important;
    margin-top: 75px !important;
}
.ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ajax-search-results li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.ajax-search-results li:hover {
    background: #f9f9f9;
}
.wcha-client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: white;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.wcha-client-logo {
    flex: 0 0 auto;
    width: clamp(80px, 10vw, 140px); /* Escalado progresivo */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wcha-client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
@media (max-width: 600px) {
    .wcha-client-logos {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    .wcha-client-logo {
        width: clamp(90px, 28vw, 140px);
    }
}
.linea-divisoria-home {
    position: relative;
    width: 100vw;
    height: 1px;
    background-color: #ccc;
    border: none;
    margin: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.wcha-home-summary {
    background: #ffffff;
    color: #141414;
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    border-bottom: 1px solid #d8dadd;
}

.wcha-home-summary-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.wcha-home-summary-header {
    max-width: 860px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.wcha-home-summary-kicker {
    margin: 0 0 0.75rem;
    color: #93000e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wcha-home-summary h2 {
    margin: 0 0 1rem;
    color: #141414;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    text-align: left;
}

.wcha-home-summary-header p:not(.wcha-home-summary-kicker) {
    margin: 0;
    color: #4f5458;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.wcha-home-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wcha-home-summary-card {
    min-width: 0;
}

.wcha-home-summary-card a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d8dadd;
    border-radius: 8px;
    background: #ffffff;
    color: #141414;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wcha-home-summary-card a:hover {
    border-color: rgba(147, 0, 14, 0.34);
    color: #141414;
    box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
    transform: translateY(-3px);
}

.wcha-home-summary-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f5f5f2;
}

.wcha-home-summary-label,
.wcha-home-summary-card h3,
.wcha-home-summary-card p,
.wcha-home-summary-link {
    margin-left: 24px;
    margin-right: 24px;
}

.wcha-home-summary-label {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 24px;
    margin-bottom: 0.75rem;
    color: #93000e;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.wcha-home-summary-card h3 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    color: #141414;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.wcha-home-summary-card p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: #5f6368;
    font-size: 1rem;
    line-height: 1.58;
}

.wcha-home-summary-link {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 24px;
    color: #93000e;
    font-weight: 900;
}

.wcha-home-summary-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.wcha-home-summary-points span {
    min-height: 64px;
    padding: 16px;
    border: 1px solid #d8dadd;
    border-radius: 8px;
    background: #f8f8f5;
    color: #2c2c2c;
    font-weight: 800;
    line-height: 1.3;
}

.wcha-home-summary-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(380px, 1fr) minmax(260px, 0.65fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.wcha-home-system-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    text-align: left;
}

.wcha-home-system-copy > p:not(.wcha-home-summary-kicker) {
    margin: 0;
    color: #4f5458;
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
    line-height: 1.65;
}

.wcha-home-system-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.wcha-home-system-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border: 1px solid #d8dadd;
    border-radius: 8px;
    background: #ffffff;
    color: #141414;
    font-weight: 900;
    text-decoration: none;
}

.wcha-home-system-actions a:hover {
    border-color: rgba(147, 0, 14, 0.36);
    color: #93000e;
}

.wcha-home-system-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wcha-home-system-flow article {
    min-height: 220px;
    padding: 22px;
    border: 1px solid #d8dadd;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
    color: #141414;
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
}

.wcha-home-system-flow article span {
    display: inline-flex;
    margin-bottom: 24px;
    color: #93000e;
    font-size: 0.86rem;
    font-weight: 900;
}

.wcha-home-system-flow article h3 {
    margin: 0 0 10px;
    color: #141414;
    font-size: clamp(1.1rem, 1.8vw, 1.32rem);
    font-weight: 900;
    line-height: 1.16;
}

.wcha-home-system-flow article p {
    margin: 0;
    color: #5f6368;
    font-size: 0.96rem;
    line-height: 1.5;
}

.wcha-home-system-console {
    overflow: hidden;
    border: 1px solid #d8dadd;
    border-radius: 8px;
    background: #141414;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
}

.wcha-home-system-bar {
    display: flex;
    gap: 7px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wcha-home-system-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.wcha-home-system-screen {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.wcha-home-system-screen div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.wcha-home-system-screen small {
    display: block;
    margin-bottom: 6px;
    color: #ffb6bd;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.wcha-home-system-screen strong {
    display: block;
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.32;
}

.wcha-home-summary-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.wcha-home-summary-points span {
    min-height: 0;
    padding: 9px 11px;
    border: 1px solid #d8dadd;
    border-radius: 999px;
    background: #ffffff;
    color: #2c2c2c;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
}

.info-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}
.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tab-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    background-color: #ccc;
    color: #333;
    font-weight: 600;
    height: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.tab-btn.active {
  background-color: #2244ee;
  color: #fff;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* SOLO dos columnas fijas */
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}
.info-card {
  background-color: #f4f4f4;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.info-card:hover {
  transform: translateY(-3px);
}
.info-card h3 {
    font-size: 1.5em!important;
    margin-bottom: 0.75rem;
    font-weight: bold;
    text-align: center;
}
.info-card p {
  font-size: 1.2em;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.info-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    margin-top: auto;
    margin-bottom: auto;
}
.info-card.bg-yellow {
  background-color: #ffcc4d;
}
.info-card.bg-blue {
  background-color: #bbe1fa;
}
.info-card.bg-green {
  background-color: #d4edda;
}
.catalogo-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.catalogo-gallery::-webkit-scrollbar {
    display: none; /* Chrome */
}
.catalogo-gallery img {
    flex: 0 0 auto;
    width: calc(25% - 0.5625rem); /* Distribuir 4 imágenes con espacio */
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}
.lote-info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    height: 100%;
}
.lote-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    margin-top: 25px;
    text-align: left !important;
}
.lote-body {
    display: flex;
    flex: 1;
    gap: 2rem;
    align-items: stretch;
    justify-content: space-between;
}
.lote-text,
.lote-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lote-text p {
    font-size: 1.1em;
    color: #333;
    text-align: left !important;
    line-height: 1.6;
    margin-top: auto !important;
    margin-bottom: auto !important;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.lote-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 300px;
    margin: auto;
    display: block;
    border-radius: 6px;
}
.info-intro {
    text-align: center;
    margin-bottom: 2rem;
}
.info-intro-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.info-intro-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}
.info-card.info-pedidos {
    background-color: #FFED4E;
    color: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.info-pedidos-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: #000;
    text-align: left !important;
}
.info-pedidos-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    color: #2d2d2d;
    text-align: left !important;
}
.info-card.info-fabricacion {
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.info-fabricacion-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: #000;
    text-align: left!important;
}
.info-fabricacion-text {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: #2d2d2d;
    margin-top: auto !important;
    margin-bottom: auto !important;
    flex: 0 !important;
}
.info-fabricacion-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.info-disenografico {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: #f9f9f9;
    height: 100%;
}
.info-disenografico-title {
    font-size: 1.3rem;
    margin-top: 25px;
    text-align:left!important;
}
.info-disenografico-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #333;
}
.info-disenografico-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.info-materiales {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
}
.info-materiales-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left !important;
    margin-top:20px!important;
}
.info-materiales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}
.info-materiales-text {
    font-size: 0.95rem;
    color: #333;
    align-self: center;
}
.info-materiales-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-materiales-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.info-medidas {
    display: flex;
    justify-content: center;
    background-color: #9ADD4E;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
}
.info-medidas-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left !important;
}
.info-medidas-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.info-medidas-img {
    width: 140px;
    object-fit: contain;
    border-radius: 8px;
}
.info-impresion-text {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}
.info-impresion-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.info-medidas-text {
    font-size: 0.95rem;
    color: #333;
    align-self: center;
    flex: 1;
}
.info-medidas-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-medidas-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.info-impresion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: #f9f9f9;
}
.info-impresion-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-impresion-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: left !important;
    margin-top: 20px;
}
.info-impresion-text {
    font-size: 0.95rem;
    color: #333;
}
.info-impresion-image-col {
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}
.info-impresion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.info-online-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}
.info-online-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}
.info-online-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 20px;
    text-align: left !important;
}
.info-online-presupuesto,
.info-online-transparencia,
.info-online-muestras {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-online-compra {
    display: flex;
    justify-content: center;
    background-color: #9ADD4E;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
}
.info-online-text {
    font-size: 0.95rem;
    color: #333;
    align-items: center;
    justify-content: center;
    display: flex;
}
.info-servicio-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: left!important;
    margin-top:20px!important;
}
.info-servicio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}
.info-servicio-entrega,
.info-servicio-almacenamiento {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-servicio-almacenamiento img {
    width: auto;
    height: 250px;
    margin-top: 1rem;
    border-radius: 8px;
    object-fit: contain;
}
.info-servicio-entrega img {
    width: auto;
    margin-top: 1rem;
    border-radius: 8px;
    object-fit: contain;
    max-height: 300px!important;
}
.info-empresa-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: left !important;
    margin-top: 25px;
}
.info-empresa-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.info-empresa-experiencia {
    padding: 1.5rem;
    border-radius: 16px;
}
.info-empresa-calidad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: #f9f9f9;
}
.info-empresa-calidad-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.info-empresa-datos {
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.info-empresa-datos-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1rem;
    flex: 1;
}
.info-empresa-datos-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-empresa-datos-col.izquierda {
    justify-content: space-between;
}
.info-empresa-datos-col.derecha {
    align-items: center;
    gap: 0.75rem;
}
.info-empresa-datos-col img {
    width: 80%;
    height: auto;
    object-fit: contain;
}
.info-empresa-contacto {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 16px;
}
.logo-empresa-principal {
    width: 50%!important;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
}
.catalogo-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.catalogo-texto {
    margin-bottom: 1.5rem;
}
.catalogo-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left !important;
}
.catalogo-parrafo {
    font-size: 1rem;
    color: #333;
    text-align: left!important;
}
.catalogo-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.catalogo-gallery img:hover {
    transform: scale(1.15);
}
.info-servicio-desarrollo {
    background-color: #FFBF4E;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contacto-info-card {
    position: relative;
    padding-bottom: 2rem;
}
.contacto-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left !important;
}
.contacto-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}
.contacto-parrafo {
    font-size: 1rem;
    color: #333;
}
.info-empresa-calidad-img {
    margin-top: auto !important;
    margin-bottom: auto !important;
    padding: 1em;
}
.info-empresa-datos-text {
    font-size: 1em !important;
}
.wcha-industries-carousel {
    margin: 10px auto 0 auto; 
    padding: 40px 20px;
    max-width: 1400px;
    background-color: #fff;
}
.wcha-industries-carousel .industries-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}
h2 {
    font-size: 2.5em!important;
    font-weight: 900!important;
    color: #000;
    margin-bottom: 1rem;
    text-align:center;
}
.wcha-industries-carousel .industries-header-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    text-align:center;
}
.wcha-industries-carousel .industries-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
/* Carrusel: scroll horizontal suave */
.wcha-industries-carousel .industries-carousel {
    display: flex;
    gap: 20px;
    padding: 10px 10px 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.wcha-industries-carousel .industries-carousel::-webkit-scrollbar {
    display: none;
}
.wcha-industries-carousel .industry-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    text-align: center;
}
.wcha-industries-carousel .industry-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.wcha-industries-carousel .industry-name {
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: left;
}
.wcha-industries-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(0 0 0 / 80%);
    color: #fff;
    border: none;
    width: auto;
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.wcha-industries-carousel .carousel-nav.prev {
    left: 10px;
}
.wcha-industries-carousel .carousel-nav.next {
    right: 10px;
}
.home-search-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #2244ee;
}
.carousel-img {
  aspect-ratio: 1 / 1;
}
.result-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}
.result-info {
    font-size: 0.9rem;
}
.result-section-title {
    font-weight: bold;
    background: #f9f9f9;
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}
.result-ver-todos {
    text-align: center;
    font-weight: 400;
    color: #0073aa;
    justify-content:center;
}
.resultado-titulo-bloque {
    font-weight: 700;
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #333;
}
.resultado-total {
    font-weight: normal;
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}
.resultado-producto-nombre {
    font-weight: 600;
    color: black;
    display: inline-block;
    margin-bottom: 2px;
}
.resultado-categoria-nombre {
    color:black;
    font-weight: 600;
}
.result-price{
    color: #333;
}
.cantidad-busque{
    color: #0073aa;
    font-size: .8rem;
}
#home-search-results li {
  list-style: none;
}
#home-search-results li.limite-msg {
  display: block; /* 🔥 Forzamos bloque, no flex */
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left; /* Mejor alineación del texto */
}
#home-search-results li.limite-msg strong {
  color: #0073aa;
}
#home-search-results li.limite-msg a {
  color: #0073aa;
  text-decoration: underline;
}
.carousel-container {
  display: flex;
  gap: 0.5rem;
  overflow: hidden;
  max-height: 600px;
  position: relative;
}
.carousel-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: scrollVertical 24s linear infinite;
  min-height: 600px;
}
.carousel-column.column-2 {
  margin-top: 4rem;
  animation-delay: 1s;
}
.carousel-mobile {
  display: none;
}
@keyframes scrollVertical {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 1024px) {
  .wcha-home-summary-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    align-items: start;
  }

  .wcha-home-system-copy {
    max-width: none;
  }

  .wcha-home-system-console {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: none;
  }

  .wcha-home-system-flow {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .wcha-home-system-flow article {
    min-height: 0;
  }

  .wcha-home-summary-cards {
    grid-template-columns: 1fr;
  }

  .wcha-home-summary-card a {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
  }

  .wcha-home-summary-card img {
    height: 100%;
    min-height: 260px;
  }

  .wcha-home-summary-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
    .wcha-home-summary {
        padding: 3rem 0.75rem;
    }
    .wcha-home-summary-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .wcha-home-summary h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.08;
        text-align: left;
    }
    .wcha-home-system-copy > p:not(.wcha-home-summary-kicker) {
        font-size: 1.02rem;
    }
    .wcha-home-system-actions,
    .wcha-home-system-actions a {
        width: 100%;
    }
    .wcha-home-system-console {
        grid-column: auto;
        grid-row: auto;
    }
    .wcha-home-system-flow {
        grid-template-columns: 1fr;
    }
    .wcha-home-system-flow article {
        min-height: 0;
        padding: 20px;
    }
    .wcha-home-system-flow article span {
        margin-bottom: 16px;
    }
    .wcha-home-system-screen {
        padding: 14px;
    }
    .tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .lote-body {
        flex-direction: column;
        align-items: stretch;
    }
    .lote-text,
    .lote-image {
        width: 100%;
    }
    .lote-image img {
        max-width: 100%;
        max-height: none;
    }
  body {
    overflow-x: hidden;
    }
  .info-card {
    aspect-ratio: auto !important;
  }
  .catalogo-gallery img {
    width: 120px;
    flex: 0 0 auto;
  }
  .info-materiales-content,
  .info-impresion,
  .info-empresa-calidad,
  .info-online-row,
  .info-empresa-datos-body {
    grid-template-columns: 1fr !important;
  }
  .info-empresa-calidad-img {
    padding: 0 !important;
  }
    .wcha-industries-carousel .industry-card {
        flex: 0 0 80%;
    }
    .wcha-industries-carousel .industry-name {
        font-size: 1rem;
    }
    #home-search-input {
       min-width: 250px;
    }
      .carousel-container {
        display: none !important;
      }
      .carousel-mobile {
        display: flex !important;
      }
}
@media (max-width: 1000px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
body.home .wcha-client-logos,
body.home .wcha-industries-carousel .industries-carousel {
  scroll-behavior: auto !important;
}
