@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../../fonts/Roboto_Mono/static/RobotoMono-Regular.ttf") format("truetype");
}
:root {
  background-color: #fff;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  width: 100vw;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

header {
  color: #fff;
  background-color: rgba(94, 51, 131, 0.8705882353);
}
header section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header section section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 3.5rem;
}
header section section div:first-child {
  display: flex;
  flex-direction: column;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header section section div:first-child div {
  align-self: center;
}
header section section div:first-child div:first-child img {
  height: 3rem;
  width: auto;
}
header section section div:nth-child(2) div h1 {
  font-size: 1rem;
  text-align: center;
}
header section section div:nth-child(2) div h1 a p {
  padding: 0.2rem 0;
  color: #fff;
}

/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  header section section div:first-child div:first-child img {
    height: 4.5rem;
    width: auto;
  }
  header section section div:first-child div:nth-child(2) div h1 {
    font-size: 1.8rem;
  }
}
/* Estilos para pantallas grandes */
@media screen and (min-width: 992px) {
  header {
    width: 100%;
  }
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
  }
  header section section div:first-child div:first-child img {
    height: 13vh;
    width: auto;
  }
  header section section div:nth-child(2) div h1 {
    margin: 0rem 3rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
/* Estilos para pantallas pequeñas */
@media screen and (max-width: 575px) {
  .header_position {
    position: fixed;
    z-index: 999;
    bottom: 0%;
    left: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    bottom: 5rem;
    left: 0;
    background-color: rgba(94, 51, 131, 0.8705882353);
    width: 100%;
  }
}
/* Estilos para pantallas medianas */
@media all and (min-width: 576px) and (max-width: 991px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: rgba(94, 51, 131, 0.8705882353);
  }
}
/* Estilos para pantallas grandes */
@media all and (min-width: 992px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 20vh;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .header_position section section {
    height: 100%;
  }
  .menu ul {
    position: relative;
    top: 0;
    right: 0;
    background-color: transparent;
  }
}
/* ********** Botón Menu de hamburguesa ********** */
.menu-btn {
  border: 0;
  cursor: pointer;
  background-color: transparent;
}

.menu-btn img {
  fill: transparent;
  height: 1.5rem;
  width: auto;
}

.none {
  display: none;
}

/* ********** Barra de navegación-Menú hamburguesa  ********** */
.menu {
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li {
  width: 100%;
  height: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li:hover {
  background-color: #3ab9c8;
}
.menu ul li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
}
.menu ul li a > div:first-child {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.menu ul li a > div:first-child div img {
  padding-right: 1rem;
  height: 2.3rem;
  width: auto;
}
.menu ul li a > div:nth-child(2) {
  width: 50%;
  height: auto;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 300;
}

.menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .menu-btn img {
    fill: transparent;
    height: 3rem;
    width: auto;
  }
  .menu ul {
    justify-content: center;
    align-items: center;
  }
  .menu ul li {
    height: 4rem;
    padding: 0.3rem 0rem;
  }
  .menu ul li a {
    border-bottom: 0px;
  }
  .menu ul li a div {
    font-size: 2rem;
    font-weight: 300;
  }
  .menu ul li a div img {
    height: 3rem;
    width: auto;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
  .navbar {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
    height: 100%;
  }
  .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 100%;
  }
  .menu ul:hover {
    background-color: transparent;
  }
  .menu ul li {
    color: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu ul li:hover {
    background-color: #3ab9c8;
  }
  .menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 0px;
  }
  .menu ul li a div {
    width: max-content;
    padding: 0vw 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu ul li a div:first-child {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .menu ul li a div:first-child div img {
    height: 5vh;
    width: auto;
  }
  .menu ul li a div:nth-child(2) {
    width: fit-content;
    height: auto;
    text-align: center;
    font-size: 3vh;
    font-weight: 300;
  }
  .menu ul:last-child {
    padding-right: 0;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer section {
  width: 100%;
}
footer section:first-child {
  padding: 1rem;
  background-color: #f6a51e;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
footer section:first-child div:first-child img {
  height: auto;
  width: 5rem;
}
footer section:first-child div:nth-child(2) a {
  font-family: "Roboto";
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.4rem;
}
footer section:first-child div:last-child {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer section:first-child div:last-child span {
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}
footer section:first-child div:last-child a {
  padding: 0rem 0.3rem;
}
footer section:first-child div:last-child a img {
  height: 1.5rem;
  width: 100%;
}
footer section:nth-child(2) {
  padding: 1rem 0rem;
  background-color: #3ab9c8;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
footer section:nth-child(2) div {
  padding: 0.5rem 0rem 0rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
footer section:nth-child(3) {
  padding: 1rem 2rem;
  background-color: #a8c83f;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
footer section:nth-child(3) div {
  padding: 0.5rem 0rem 0rem;
}
footer section:nth-child(3) div img {
  height: 2rem;
  width: auto;
}

.empty_footer {
  width: 100%;
  height: 5rem;
}

@media all and (min-width: 575px) {
  .empty_footer {
    display: none;
  }
}
/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 0.5rem;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 2.5rem;
    width: auto;
    padding-left: 4rem;
  }
  footer section:first-child div:nth-child(2) a {
    font-size: 2rem;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 0.3rem;
  }
  footer section:first-child div:last-child a img {
    height: 1.7rem;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 0.5rem 0rem;
  }
  footer section:nth-child(2) div {
    padding: 0.5rem 0rem 0rem;
    font-size: 0.8rem;
  }
  footer section:nth-child(3) {
    padding: 0.4rem 2rem;
  }
  footer section:nth-child(3) div {
    padding: 0.5rem 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 1.7rem;
    width: auto;
  }
}
/* Estilos para pantallas grandes */
@media only screen and (min-width: 992px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 1vh;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 8vh;
    width: auto;
  }
  footer section:first-child div:nth-child(2) a {
    color: #fff;
    font-size: 5vh;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 1vw;
  }
  footer section:first-child div:last-child a img {
    height: 5vh;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 1vh 0rem;
  }
  footer section:nth-child(2) div {
    padding: 1vh 0rem 0rem;
    font-size: 1.8vh;
  }
  footer section:nth-child(3) {
    padding: 1vh 2vh;
  }
  footer section:nth-child(3) div {
    padding: 2vh 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 5vh;
    width: auto;
  }
}
.stock_productos {
  padding: 1vh 5vw 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.h2_food_cats {
  font-family: "Roboto", sans-serif;
  margin: 5vh 0vh 3vh;
  font-style: italic;
  font-weight: 400;
  color: #777;
  text-align: center;
  width: 80%;
  font-size: 3.4rem;
}

.contactenos {
  text-align: center;
  margin: 2rem 0rem;
  color: #888;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  width: 70%;
  padding: 2rem 0rem;
}

@media all and (min-width: 576px) {
  .h2_food_cats {
    padding-top: 10vh;
  }
  .contactenos {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 992px) {
  .contactenos {
    font-size: 2rem;
  }
}
.ofertas {
  padding: 10vh 5vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ofertas_text_h2 {
  margin: 3rem 0rem;
  text-transform: uppercase;
  text-align: center;
  color: #777;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
}

.gallery_containerGrid {
  margin: 3vh 3vw;
  display: grid;
  height: 70vw;
  width: 100%;
  gap: 0vw 1vw;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "img1 img2 img3" "img4 img5 img6";
  justify-content: space-evenly;
}

.gallery {
  cursor: pointer;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}

.gallery:hover {
  transform: scale(1.15);
  filter: grayscale(0) saturate(110%);
}

.img-1 {
  grid-area: img1;
}

.img-2 {
  grid-area: img2;
}

.img-3 {
  grid-area: img3;
}

.img-4 {
  grid-area: img4;
}

.img-5 {
  grid-area: img5;
}

.img-6 {
  grid-area: img6;
}

.cat_img-focus_container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.504);
  /*#00000081*/
  transition: transform 0.3s ease-in;
  z-index: 200;
}

.cat_img-focus_leyenda {
  position: absolute;
  font-size: 1.5vw;
  color: #fff;
  bottom: 3vw;
  font-family: var(--fuente);
}

.cat_img-focus_bx-x {
  filter: invert(100);
  position: absolute;
  height: 4vw;
  top: 3vw;
  right: 20vw;
  cursor: pointer;
}

.cat_img-focus_img {
  height: 80%;
  display: block;
  object-fit: cover;
}

@media only screen and (min-width: 576px) {
  .ofertas {
    padding: 20vh 0vh;
  }
  .ofertas_text_h2 {
    font-size: 3rem;
    width: 70%;
    padding: 0.5rem 0rem;
  }
}
@media only screen and (min-width: 992px) {
  .ofertas_text_h2 {
    font-size: 4rem;
  }
  .cat_img-focus_img {
    height: 60%;
  }
  .cat_img-focus_bx-x {
    height: 10vw;
    top: 12vw;
    right: 8vw;
  }
  .cat_img-focus_leyenda {
    font-size: 20px;
    bottom: 80px;
  }
  .ofertas {
    padding: 25vh 0vh;
  }
}
.derivador {
  padding: 5vh 10vw 10vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}
.derivador > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem;
  margin: 3.5vh 0vh;
  background-color: #5e3383;
  border: solid 1px #481c6e;
  border-radius: 10px;
  transition: background-color 0.3s, border 0.3s, box-shadow 0.3s;
}
.derivador > div:hover {
  background-color: #3ab7c8;
  border: solid 1px #eee;
  box-shadow: 0 0 4px rgba(235, 80, 255, 0.3098039216);
  cursor: pointer;
}
.derivador > div a {
  text-align: center;
  color: #fff;
  font-weight: 800;
  transition: color 0.2s;
}
.derivador > div a img {
  height: 1rem;
  width: auto;
  margin-left: 1rem;
}

@media all and (min-width: 576px) {
  .derivador {
    padding: 15vh 20vw 10vh;
  }
  .derivador > div {
    padding: 0.8rem 0rem;
    margin: 1rem 0rem;
    width: 100%;
  }
  .derivador > div a {
    font-size: 1.5rem;
  }
  .derivador > div a img {
    height: 1.8rem;
  }
}
@media all and (min-width: 992px) {
  .derivador {
    padding: 30vh 5vw 20vh;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .derivador > div {
    padding: 2vh 0vw;
    margin: 5vh 3vw;
    width: 38vw;
    /*a {
        font-size: 2rem;
        img {
            height: 2.5rem;
        }
    }*/
  }
}
.carrousel_de_perros {
  position: relative;
  width: 100vw;
  height: 52vw;
}

.carrusel-contenido {
  padding: 0 auto;
  overflow: hidden;
  text-align: center;
  position: absolute;
  z-index: -100;
  width: 100%;
  height: 52vw;
}

#gatos_carrusel-caja {
  -moz-animation: gatos_automatizacion 15s infinite linear;
  -o-animation: gatos_automatizacion 15s infinite linear;
  -webkit-animation: gatos_automatizacion 15s infinite linear;
  animation: gatos_automatizacion 20s infinite linear;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
  height: 52vw;
  width: 500%;
}

.gatos_carrusel-elemento {
  float: left;
  width: 20%;
}

.caratula {
  height: 52vw;
  width: 85vw;
  padding: 5vh 0vh;
}

#gatos_carrusel-contenido {
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  position: absolute;
  z-index: -100;
}

.empty_header {
  width: 100%;
  height: 2rem;
  position: absolute;
  top: -5rem;
}

#carrusel-caja {
  -moz-animation: automatizacion 15s infinite linear;
  -o-animation: automatizacion 15s infinite linear;
  -webkit-animation: automatizacion 15s infinite linear;
  animation: automatizacion 15s infinite linear;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
  height: 500px;
  width: 300%;
}

#carrusel-contenido {
  padding: 0 auto;
  overflow: hidden;
  text-align: left;
  position: absolute;
  z-index: -100;
  width: 100%;
}

.carrusel-elemento {
  float: left;
  width: 33.333%;
}

.smallscreen_carrusel-caja {
  -moz-animation: automatizacion 15s infinite linear;
  -o-animation: automatizacion 15s infinite linear;
  -webkit-animation: automatizacion 15s infinite linear;
  animation: automatizacion 15s infinite linear;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
  height: 30vw;
  width: 300%;
}

.smallscreen_carrusel-contenido {
  display: none;
  margin: 15vw auto;
  overflow: hidden;
  text-align: center;
  position: absolute;
}

.smallscreen_carrusel-elemento {
  height: 35vw;
  float: left;
  width: 33.333%;
}

.smallscreen_carrusel-elemento img {
  height: 100%;
  width: auto;
}

@media only screen and (max-width: 1064px) {
  #carrusel-contenido {
    display: none;
  }
  .smallscreen_carrusel-contenido {
    display: block;
  }
}
@-moz-keyframes gatos_automatizacion {
  0% {
    margin-left: 0;
  }
  17% {
    margin-left: 0;
  }
  22% {
    margin-left: -100%;
  }
  39% {
    margin-left: -100%;
  }
  44% {
    margin-left: -200%;
  }
  61% {
    margin-left: -200%;
  }
  66% {
    margin-left: -300%;
  }
  83% {
    margin-left: -300%;
  }
  88% {
    margin-left: -400%;
  }
  98% {
    margin-left: -400%;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes gatos_automatizacion {
  0% {
    margin-left: 0;
  }
  17% {
    margin-left: 0;
  }
  22% {
    margin-left: -100%;
  }
  39% {
    margin-left: -100%;
  }
  44% {
    margin-left: -200%;
  }
  61% {
    margin-left: -200%;
  }
  66% {
    margin-left: -300%;
  }
  83% {
    margin-left: -300%;
  }
  88% {
    margin-left: -400%;
  }
  98% {
    margin-left: -400%;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes gatos_automatizacion {
  0% {
    margin-left: 0;
  }
  17% {
    margin-left: 0;
  }
  22% {
    margin-left: -100%;
  }
  39% {
    margin-left: -100%;
  }
  44% {
    margin-left: -200%;
  }
  61% {
    margin-left: -200%;
  }
  66% {
    margin-left: -300%;
  }
  83% {
    margin-left: -300%;
  }
  88% {
    margin-left: -400%;
  }
  98% {
    margin-left: -400%;
  }
  100% {
    margin-left: 0;
  }
}/*# sourceMappingURL=productos.css.map */