.container {
    width: 100%;
    transition: opacity 2s linear;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.header h2 {
    font-size: 24px;
    font-weight: bold;
}

.button1 {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    color: #fff;
    transition: transform 0.3s;
}
.button-left {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    color: #fff;
    left: 2%;
    transition: transform 0.3s;
}
.button-right {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    color: #fff;
    right: 4%;
    transition: transform 0.3s;
}

.button.rotate-180 {
    transform: rotate(180deg);
}

.products {
    display: none;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    padding: 16px;
    transition: opacity 2s linear;
    
}

.products.show {
    display: grid;
    transition: opacity 2s linear;

}

.product {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 2s linear;
}

.product img {
    width: 100%;
    height: 256px;
    object-fit: contain;
}

.product-info {
    padding: 16px;
    background-color: #f4f4f4;
    height: 100%;
}

.product-info h3 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 70px;
}


.button-more {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background-color: #0072C6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all 0.3s;
}

.button-more:hover {
    width: 200px;
    height: 48px;
    border-radius: 20px;
    transition: width 0.3s, height 0.3s;

}

.button-more span {
    display: none;
    color: #fff;
    font-weight: medium;
}

.button-more:hover span {
    display: block;
    margin-left: 8px;
}

.button-more img {
    width:44px;
    height:44px;
}
.button-more:hover {
    cursor: pointer;
}

.pdf-button {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 150px;
    height: 48px;
    background-color: #0072C6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: medium;
    text-decoration: none;
    transition: background-color 0.3s;
}

.pdf-button:hover {
    background-color: #005a9e;
    cursor: pointer;
}


@media (min-width: 640px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
        padding: 24px;
    }
}

.limpieza-p img{
    margin-left:-2%;
    object-fit: contain;
    width: 80%;
}
.control-p img{
    margin-left: 25%;
    object-fit: contain;
    width: 80%;
}