body {
    background-color: #f4f6f8;
    font-family: Arial, sans-serif;
}

/* ZONA SUPERIOR */

.zona-superior {

    position: sticky;

    top: 0;

    z-index: 1000;

}


/* BUSCADOR */

.buscador-fijo {

    background-color: white;

    box-shadow:
        0 3px 8px
        rgba(0, 0, 0, 0.15);

}


/* CONTENEDOR DE PRODUCTOS */

.productos-container {

    padding-top: 30px;

    padding-bottom: 30px;

}


/* TARJETAS */

.producto-card {

    height: 100%;

    transition:
        transform 0.2s ease;

}


.producto-card:hover {

    transform:
        translateY(-5px);

}


/* IMÁGENES */

.producto-imagen {

    width: 100%;

    height: 220px;

    object-fit: cover;

}


/* CELULAR */

@media (max-width: 576px) {
    

    .producto-imagen {

        height: 180px;
        

    }


}


/* TABLET */

@media (min-width: 577px)
       and (max-width: 991px) {


    .producto-imagen {

        height: 200px;

    }


}









.producto-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.10);
    transition: 0.3s;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.20);
}

.card-title {
    font-weight: bold;
}

h1 {
    font-weight: bold;
    
    
}
