body {
    font-family: 'Montserrat', sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

.nuestros-productos {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    text-align: left; /* Alinea todo a la izquierda */
}

.nuestros-productos h2 {
    color: #0A7672;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px; /* Ajustado para línea debajo */
}

.nuestros-productos .line {
    width: 80px;
    height: 4px;
    background: #0A7672;
    margin-bottom: 30px;
    border-radius: 2px;
}

.carrusel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 320px;
    position: relative;
    margin-bottom: 60px; /* Espacio entre carruseles */
}

.fila {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    transform: translateX(0);
    flex-wrap: nowrap;
}

.item {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0A7672;
}

.item img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

/* Botón de consulta con icono dentro */
.btn-consulta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0A7672;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.btn-consulta img.ws-icon {
    width: 20px;
    height: 20px;
    filter: none; /* Si tu icono ya es blanco */
    display: inline-block;
}

.btn-consulta:hover {
    background: #095f5a;
}

.ws-icon img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Flechas del carrusel */
.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
}

.flecha:hover {
    background: rgba(0, 0, 0, 0.6);
}

.flecha.izquierda {
    left: 10px;
}

.flecha.derecha {
    right: 10px;
}
