@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");

:root {
  --fuente: "Montserrat", sans-serif;
  --fondo: #e0e6e4;
  --ancho-contenedor: 1200px;
  --azul-oscuro: #0c172c;
  --azul-claro: #0b4d79;
  --verde-oscuro: #0b2627;
  --verde-claro: #0b5457;
  --rojo-oscuro: #480d0d;
  --rojo-claro: #e0a3f8;
  --rojo-opaco: #a02727;
  --neumorfismo: -3px -3px 10px rgb(255, 255, 255),
    3px 3px 10px rgba(38, 38, 38, 0.7);
  --neumorfismoInset: inset -5px -5px 10px rgba(255, 255, 255, 0.57),
    inset 5px 5px 10px rgba(77, 77, 77, 0.234);

  --neumorfismoDoble: inset -5px -5px 8px rgba(255, 255, 255, 0.535),
    inset 5px 5px 8px rgba(77, 77, 77, 0.152),
    -5px -5px 8px rgb(255, 255, 255, 0.535), 5px 5px 8px rgba(77, 77, 77, 0.152);
}

body {
  font-family: "Montserrat", sans-serif !important;
  /* background-image: linear-gradient(to right bottom, rgba(153, 183, 234, .6),
	rgba(171, 226, 247, .1) ), url(../img/bg.JPG); */
  /* background: #e0e6e4 !important; */
  background-image: url('../../img/15.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  margin: 0 !important;
  height: 100vh !important;
  background-attachment: fixed !important;
  /* color: var(--fondo) !important; */
}

/* NAVEGACION */
#modal-body {
  height: 200px !important;
  padding: 0px !important;
}

/* 
#fondo-modal:before {
	content:'';
	position: absolute;
        top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.46) !important;
} */

#fondo-modal {
  border: none !important;
  /* border: solid 2px black !important; */
  box-shadow: var(--neumorfismo) !important;
  background-color: rgb(255, 255, 255) !important;
  background-image: url('../../img/11.jpg') !important;
  /* background-size: 600px auto !important; */
}

.tarjeta {
  height: auto !important;
  padding-bottom: 10px !important;
}

.contenedorTarjeta {
  /* border: solid 1px #999 !important; */
  border-radius: 5px !important;
  padding: 5px !important;
  box-shadow: var(--neumorfismo) !important;
}

.textoDesc {
  font-size: 12px !important;
  font-weight: bold !important;
  text-transform: capitalize !important;
  display: block !important;
  padding: 5px 15px !important;
  /* white-space: nowrap !important; */
}

.btnAccion {
  padding: 1px 7px !important;
}

#cabeceraArticulo {
  padding: 0px 0px !important;
}

.imagenProducto {
  width: 100%;
  height: 100%;
  /* box-shadow: -5px -5px 8px rgba(255, 255, 255, 0.6),
    5px 5px 8px rgba(36, 36, 36, 0.33); */
  border-radius: 5px !important;
  transition: 0.3s ease all !important;
}

.imagenProducto img {
  width: auto !important;
  height: 200px !important;
  border-radius: 5px !important;
  transition: 0.3s ease all !important;
}
@supports (object-fit: cover) {
  .imagenProducto img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: 0.3s ease all !important;
  }
}

.imagenSlider img {
  width: 100% !important;
  height: 200px !important;
  border-radius: 5px !important;
  transition: 0.3s ease all !important;
}
@supports (object-fit: cover) {
  .imagenSlider img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: 0.3s ease all !important;
  }
}

/* #seccionArticulos{
  overflow-y: scroll !important;
} */

.tarjetaArticulo:hover{
  cursor: pointer !important;
  box-shadow: 3px 3px 7px rgb(151, 151, 151) !important;
  transition: ease all .3s !important;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: bold;
  margin-top: 100px !important;
  align-self: flex-end;
  background: #6954a2 !important;
}