* {
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    margin: 0px;
    padding: 0;
}

h2 {
    color: #00A7FD;
    font-weight: 600;
    font-size: 24px;
}

h1 {
    color: #495057;
    font-weight: 600;
    font-size: 34px;
}

p {
    color: #7a7a7a;
    font-size: 18px;
}

span {
    color: #00A7FD;
}

button {
    background: linear-gradient(90deg, #00C58F 0%, #00A7FD 100%);
    border: none;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
}

a button:hover {
    cursor: pointer;
}

.section {
    width: 1200px;
    margin: 0 auto;
}

.text-align-center {
    text-align: center;
}

.pb-20 {
    padding-bottom: 20px;
}

/******** inicio *********/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
}

.header-content {
    width: 100%;
    display: flex;
    padding: 16px 12px;
    justify-content: space-between;
}

.header-content img {
    width: 200px;
    object-fit: contain;
}

.about-content {
    width: 100%;
    padding: 80px 12px 40px;
    display: flex;
    gap: 20px;
}

.about-item {
    width: 50%;
}

.about-insig {
    display: flex;
    gap: 10px;
    padding-top: 40px;
}

.about-insig--item {
    display: flex;
    align-items: center;
}

.about-insig--item img {
    width: 80px;
    height: 80px;
    margin-right: 8px;
}

.about-item--right-img {
    width: 90%;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    height: 85vh;
    overflow: hidden;
    margin-top: 88px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    opacity: 0;
}

.carousel-slide.active {
    opacity: 1;
}


.products-content {
    width: 100%;
    padding: 40px 12px 40px;
}

.products-list {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.products-item {
    background-image: url(../images/Dinousario-KIDS.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 32%;
    border-radius: 4px;
    padding: 20px;
}

.products-item-01 {
    background-image: url(../images/Caja-KIDS.jpg);

}

.products-item-02 {
    background-image: url(../images/Caja-Grande-de-KIDS.jpg);

}

.products-item-03 {
    background-image: url(../images/Banner-Nuevo-de-Mascarilla.jpg);

}

.products-item-04 {
    background-image: url(../images/Banner-caja.jpg);

}

.products-item-05 {
    background-image: url(../images/Banner-caja-grande.jpg);

}

.delivery-content {
    padding: 40px 12px;
}

.delivery-row {
    display: flex;
    gap: 20px;
}

.delivery-row-item {
    width: 50%;
}

.delivery-row img {
    border-radius: 12px;
    width: 100%;
}


.scroll img{
    width: 150px;
    margin: 0 20px;
    transition: .5s;
    cursor: pointer;
}

.scroll img:not(:hover){
    filter: grayscale(100%);
}

.scroll{
    position: relative;
    display: flex;
    width: 1200px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.scroll div{
    white-space: nowrap;
    animation: animate 30s linear infinite;
}


@keyframes animate {
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100%);
    }
}

.scroll:hover div{
    animation-play-state: paused;
}



.contact-content {
    padding: 40px 12px 0px;
}
.contact-list {
    width: 100%;
    display: flex;
    gap: 10px;
}

.contact-list--item {
    width: 25%;
    display: flex;
}

.contact-list--item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

footer {
    background-color: #fff;
    padding: 0px;
}

footer div {
    padding: 12px;
    text-align: center;
}

footer div p {
    color: #495057;
    margin: 0px;
}

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.float:hover {
    text-decoration: none;
    color: #25d366;
    background-color: white;
}

.my-float {
    margin-top: 15px;
    margin-left: 3px;
}


@media screen and (max-width: 750px) {
    .header-content img {
        width: 180px;
        object-fit: contain;
    }

    .carousel-container {
        position: relative;
        max-width: 100%;
        height: 250px;
        overflow: hidden;
        margin-top: 88px;
    }
    
    .about-content {
        display: block;
        padding-top: 50px;
    }

    .products-list {
        display: block;
    }

    .delivery-row {
        display: block;
    }
    .delivery-row-item {
        width: 100%;
    }
    .contact-list {
        display: block;
    }
    .contact-list--item span {
        color: #495057;
        font-weight: 700;
    }
    .section {
        width: 100%;
        margin: 0 auto;
    }
    iframe {
        width: 100%;
        border-radius: 20px;
    }
    .about-insig {
        display: block;
        gap: 10px;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .about-item {
        width: 100%;
    }
    .products-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .carousel-item {
        flex: 1 0 calc(100% / 2);
        padding: 10px;
    }
    .contact-list--item {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .about-insig--item {
        width: 80%;
        margin: 0 auto;
        display: flex;
        text-align: center;
        margin-bottom: 20px;
    }
    .scroll{
        width: 100%;
    }
}