.productos-bases-quimicas, .productos-fibras, .quimicos-concreto {
    width: 100%;
    max-width: 1438px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 100%;
    max-width: 1438px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-content, .item-content1, .item-content2 {
    text-align: center;
}

.item-content a, .item-content1 a, .item-content2 a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 500ms ease;
    border-bottom: 2px solid transparent;
}

.item-content a:hover {
    color: #bfd630;
    border-bottom: 2px solid;
}

.item-content1 a:hover {
    color: #6d4016;
    border-bottom: 2px solid #6d4016;
}

.item-content2 a:hover {
    color: #dc8c1b;
    border-bottom: 2px solid #dc8c1b;
}

.title {
    color: black;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: 36px;
    margin: 10px 0;
}

.product {
    color: rgb(0, 131, 202, 1);
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 10px;
}

.image {
    width: 455px;
    height: 455px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.descripcion {
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 131, 202, 0.5);
    border-radius: 30%;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    transition: all 500ms ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: #bfd630;
}

@media (max-width: 1200px) {
    .title, .product, .descripcion {
        font-size: 28px;
    }

    .image {
        width: 355px;
        height: 355px;
    }
}

@media (max-width: 768px) {
    .title, .product, .descripcion {
        font-size: 24px;
    }

    .image {
        width: 300px;
        height: 300px;
    }


    .prev, .next {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .title, .product, .descripcion {
        font-size: 20px;
    }

    .image {
        width: 250px;
        height: 250px;
    }

    .carousel-item {
        min-width: 100%;
    }
}