@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Roboto', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');
/* font-family: 'Signika', sans-serif; */

* {
  /* Calculation */
  --responsive: calc((var(--min-font) * 1px) + (var(--max-font) - var(--min-font)) * ((100vw - 420px) / (1200 - 420)));
  /* Ranges from 421px to 1199px */
  font-family: 'Roboto', sans-serif;
}

@use postcss-cssnext;

:root {
  --base-width: 1920;
  --base-height: 1080;
  --bvh: var(--base-height)px / 100;
  --bvw: var(--base-width)px / 100;
  --heading-multiplier: 1;
  --gris: #707070;
  --gris_claro: #f1f1f1;
  --rojo: #d60812;
  --amarillo: #ffd100;
  --cafe: #3a2b23;
    --gris-claro: #F1F1F1;
    --gray: #8D8D8D;
    --gris-dark: #ABA9A9;
    --negro-grisaceo: #303030;
  --rosa: #FDF3F3;
}

/*-------------------------
              Loader
--------------------------*/
        .contenedor-loader {
          height: 100vh;
          display: flex;
          align-items: center;
          margin: 0 auto;
          position: relative;
        }
        
        #preloader {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: #D60812;
          z-index: 9999999;
          
        }
        
        .loader {
            height: 100%;
            width: 100%;
            background-color: #fefefe;
            position: absolute;
            z-index: 0;
            display: none;
            /* clip-path: circle(100% at 50% 50%); */
        }
        
        .contenedor-loader .count{
            position: absolute;
            font-size: 2rem;
            font-weight: bold;
            z-index: 1;
            left: 50%;
            top: 71%;
            color: #f2f2f2;
            transform: translateX(-50%) translateY(-50%);
            text-shadow: 1px 2px 11px rgba(0,0,0,0.5);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
        }
        
        .contenedor-loader span {
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 78%;
            transform: translateX(-50%) translateY(-50%);
        }
        
        .contenedor-loader .logo_loader {
            position: absolute;
            width: 40%;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
        }


        @media (min-width: 576px) {
          .contenedor-loader .logo_loader {
            width: 30%;
            left: 36%;
          }
         }

        @media (min-width: 768px) {
            .contenedor-loader .logo_loader {
                width: 20%;
            }
         }

        @media (min-width: 992px) {
            
            .contenedor-loader .logo_loader {
                width: 20%;
            }
         }

        @media (min-width: 1200px) { }

        @media (min-width: 1400px) {
            .contenedor-loader .count{
                font-size: 4rem;
            }
         }

         /*-------------------------
              Loader interiores
--------------------------*/
        .contenedor-loader {
          height: 100vh;
          display: flex;
          align-items: center;
          margin: 0 auto;
          position: relative;
        }
        
        #preloader-2 {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: #ffffffdc;
          z-index: 9999999;
          
        }
        
        .loader {
            height: 100%;
            width: 100%;
            background-color: #fefefe;
            position: absolute;
            z-index: 0;
            display: none;
            /* clip-path: circle(100% at 50% 50%); */
        }
        
        .contenedor-loader .count{
            position: absolute;
            font-size: 2rem;
            font-weight: bold;
            z-index: 1;
            left: 50%;
            top: 71%;
            color: #f2f2f2;
            transform: translateX(-50%) translateY(-50%);
            text-shadow: 1px 2px 11px rgba(0,0,0,0.5);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
        }
        
        .contenedor-loader span {
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 78%;
            transform: translateX(-50%) translateY(-50%);
        }
        
        .contenedor-loader .logo_loader {
          position: absolute;
          width: 40%;
          left: 32%;
          top: 40%;
          transform: translateX(-50%) translateY(-50%);
          animation: loaderLogo 0.6s;
          animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          animation-iteration-count: infinite;
        }

        @keyframes loaderLogo {
          0% {
            transform: scale(.9);
          }
          50% {
            transform: scale(1);
          }
          100%{
            transform: scale(.9);
          }
        }


        @media (min-width: 576px) {
            .contenedor-loader .logo_loader {
                width: 30%;
                left: 37%;
            }
         }

        @media (min-width: 768px) {
          .contenedor-loader .logo_loader {
            width: 20%;
            left: 41%;
            top: 50%;
          }
         }

        @media (min-width: 992px) {
            
            .contenedor-loader .logo_loader {
                width: 20%;
            }
         }

        @media (min-width: 1200px) { 
          .contenedor-loader .logo_loader {
            top: 40%;
        }
        }

        @media (min-width: 1400px) {
            .contenedor-loader .count{
                font-size: 4rem;
            }
         }

/*======= container custom ===========*/

.container-custom {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.text-rojo {
  color: var(--rojo);
}
.text-blanco, .link-blanco {
  color: #ffffff;
}
.text-cafe {
  color: var(--cafe);
}

.text-amarillo {
  color: var(--amarillo);
}

.bg-rojo {
  background-color: var(--rojo) !important;
}

.bg-rosa {
  background-color: var(--rosa) !important;
}


.bg-amarillo {
  background-color: var(--amarillo);
}

.bg-gris-claro {
  background-color: var(--gris_claro);
}
.bg-white {
  background-color: #ffffff;
}

.bg-textura {
  background-image: url(../img/fondo-carton-ch.jpg);
}

.ft-signika {
  font-family: "Signika", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

.fw-custom {
  font-weight: 900;
}

.br-3 {
  border-radius: 30px;
}

.link-rojo:hover {
  color: var(--cafe);
}

.link-cafe:hover {
  color: var(--rojo);
}

.card-post .link-recetas {
  width: 50px;
  margin: 0 auto;
  font-size: 2rem;
  left: 10%;
  position: absolute;
  top: 35vh;
  background: var(--amarillo);
  border-radius: 100%;
  height: auto;
  color: white;
  transform: translate(-50%, -50%);
}

.card-post .link-recetas:hover {
  background: var(--rojo);
}

.card-post .link-recetas i{
  transition: all 0.3s;
}


.card-post .link-recetas:hover i{
  transform: scale(1.1);
}

.br-40 {
  border-radius: 40px;
}

.border-bottom-custom {
  position: absolute;
  width: 70%;
  height: 1px;
  opacity: 0.25;
  background-color: #707070;
  bottom: -6rem;
  left: 15%;
}

/* ------------ Margenes ------------ */

.mt-6,
.my-6 {
  margin-top: 6rem !important;
}

.mt-7,
.my-7 {
  margin-top: 7rem !important;
}

.mt-8,
.my-8 {
  margin-top: 8rem !important;
}

.mt-9,
.my-9 {
  margin-top: 9rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 6rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 7rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 8rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 9rem !important;
}


/* ============== fin Margenes ============== */

/* ======================== header ====================== */

#header {
  transition: all .5s ease-in-out;
}

.header-fix #logoHeader{
  width: 55%;
}

nav {
  border-color: transparent;
}

nav:after {
  content: "";
  height: calc(5vmax + 5vh);
  width: 100%;
  background: white;
  position: absolute;
  top: -20px;
  left: 0;
  transform: rotate(-1deg);
  z-index: -1;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
  transition: all 0.4s ease-in-out;
}

.menu-menu-principal-container {
  height: 100px;
  display: flex;
  align-items: center;
}

nav.custom-pagination:after {
  box-shadow: none!important;
}

/* #menu-menu-principal, #menu-menu-principal-1 {
  list-style: none;
  transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  top: 50%;
} */

#menu-menu-principal, 
#menu-menu-principal-1 {
  padding: 0;
  list-style: none;
  display: block;
  float: right;
  left: 20%;
  position: absolute;
}

#menu-menu-principal li {
  margin: 0 20px;
}

#menu-menu-principal li a {
  color: var(--gris);
  font-weight: 600;
  transition: all .5s ease-in-out;
  text-decoration: none;
}

#menu-menu-principal .active a {
  color: var(--rojo);
  font-weight: 700;
  transition: all .5s ease-in-out;
  text-decoration: none;
}

#menu-menu-principal li a:hover {
  color: var(--rojo);
  font-weight: 700;
  text-decoration: none;
}

#logoHeader {
  width: 70%;
  margin: 0 auto;
  height: auto;
  transition: all .5s ease-in-out;
  top: 0%;
}

#logoHeader:hover{
  top: 0%;
}

/*---------------- SUB MENU ----------------*/

.menu-item-has-children:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  color: #d60812;
}

.menu-item-has-children {
  position: relative;
  height: auto;
  cursor: pointer;
}



/*------ ANCHOR menu mobil ----*/

#btnMenu {
  height: 60px;
  width: 60px;
  border: none;
  position: absolute;
  top: 85vh;
  right: 5%;
  background-color: #d60812;
  text-align: center;
  border-radius: 100%;
  box-shadow: 3px 2px 4px 1px #0000007a;
  outline: none;
}

#btnMenu span {
  height: 6px;
  width: 60%;
  background-color: #fcfcfc;
  position: absolute;
  left: 21%;
  margin: 0 auto;
  transition: all .4s ease;
}

#btnMenu span:nth-child(1) {
  top: 24%;
}

#btnMenu span:nth-child(2) {
  top: 44%;
}

#btnMenu span:nth-child(3) {
  bottom: 26%;
}

.open-btn {
  background-color: var(--amarillo)!important;
}

.open-btn span:nth-child(1) {
  top: 20%;
  transform: rotate(45deg) translate(12px, 12px);
}

.open-btn span:nth-child(2) {
  display: none;
}

.open-btn span:nth-child(3) {
  bottom: 27%;
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-mobil {
  display: none;
  position: absolute;
  background-color: white;
  height: 100vh;
  position: fixed;
}

.menu-mobil ul li{
  margin: 10px 0;
}

.menu-mobil ul li a{
  color: var(--cafe);
  text-decoration: none;
  --max-font: 20;
  --min-font: 18;
  font-size: var(--responsive);
  letter-spacing: 1px;
  line-height: 45px;
  text-transform: uppercase;
}

.open-menu {
  display: flex;
  z-index: 999;
  width: 100%;
  align-items: center;
  top: 0;
}

.open-menu-mobil {
  display: flex;
  z-index: 999;
  width: 100%;
  align-items: center;
}

/*-------------submenu------------------*/

ul.sub-menu {
  display: none;
  position: absolute;
  background: white;
  width: 100%;
  list-style: none;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 1px 1px 1px rgb(0 0 0 / 12%);
}

ul.sub-menu.show-submenu {
  display: block;
  animation: submenuAnimate .5s ease-in;
  animation-fill-mode: forwards;
}

@keyframes submenuAnimate {
  0%{
    opacity: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: auto;
  }
}

/*--- buscador header ----*/

#btnSearch,
#btnSearchClose {
  color: white;
  right: 0px;
  position: fixed;
  top: 10px;
  background: var(--amarillo);
  height: auto;
  width: 85px;
  border-radius: 25px 0px 0px 25px;
  border: 0;
  font-size: 30px;
  padding: 10px;
  z-index: 5000;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
}

.animation-btn-search {
  animation: animateBtnSearch 0.5s ease-out;
  animation-fill-mode: forwards;
}

@keyframes animateBtnSearch  {
  0%{
  top: 0px;
  width: 83px;
  opacity: 1;
  right: 0px;
  }
  100%{
    top: 0px;
    width: 0px;
    opacity: 0;
    right: -10px;
    display: none;
  }
}

.animation-btn-search-close {
  animation: animateBtnClose 1s ease-in;
  animation-fill-mode: forwards;
}

@keyframes animateBtnClose  {
  0%{
    top: 0px;
    width: 0px;
    opacity: 0;
    right: -10px;
  }
  100%{
    top: 0px;
    width: 73px;
    opacity: 1;
    right: 0px;
  }
}

.header-fix #btnSearch {
  padding: 15px;
  width: 50px;
}

.header-fix nav:after {
  top: -30px;
  transform:rotate(0deg)
}

/* #btnSearch:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
  position: absolute;
  font-size: 30px;
} */

.content-fields {
  width: 100%;
  position: relative;
  margin: 0 auto;
  position: relative;
}

.form-search-header {
  position: fixed;
  float: left;
  left: 0;
  padding: 0;
  /* height: 100vh; */
  width: 100%;
  z-index: 4000;
  background: #ffd100;
  top: 0px;
  display: none;
  align-items: center;
  border-radius: 0px;
  padding-left: 15px;
  opacity: 0;
  transition: all .3s ease-in-out;
  box-shadow: 2px 4px 4px 2px #00000091;
}

.form-search-header input {
  padding: 15px;
  border: white;
  border-radius: 15px;
  outline: none;
  width: 80%;
  box-shadow: 2px 2px rgb(0 0 0 / 22%);
}

#searchsubmit {
  border: none;
  color: white;
  font-size: 25px;
  height: 49px;
  width: 50px;
  margin: 0px;
  top: 0px;
  position: absolute;
  right: 6vw;
  background: transparent;
}

.open-form {
  animation: openFormMobil .6s ease-in;
   animation-fill-mode: forwards;
   align-items: center;
   display: flex;
}
 
.opacity {
  opacity: 1;
}

@keyframes openFormMobil {
  0% {
    height: 0vh;
    opacity: 0;
  }
  100% {
    height: 30vh;
    opacity: 1;
    display: flex;
  }
}

#clearInput {
  position: absolute;
  right: 25%;
  top: 15%;
  background: transparent;
  border: 0;
  font-size: 25px;
  display: none;
  opacity: 1;
  transition: all .5s ease-in-out;
  cursor: pointer;
  color: #d60812;
}

.animate-btn-search {
  animation: animateBtn 1.5s ease-in-out;
  animation-iteration-count: infinite;
  opacity: 1!important;
}

@keyframes animateBtn {
  0% {
    transform: scale(.9);
  }
  50% {
    transform: scale(1);
  }
  100%{
    transform: scale(.9);;
  }
}


/* ANCHOR ============================== NUEVO BUSCADOR ====================*/




/*------------ slider home ---------------*/

.swiper-container {
  width: 100%;
  height: 77vh;
  margin-top: 2rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
      background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide.swiper-slide-active {
    background-size: 180vw;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 70vh;
}

.mySwipereb .swiper-slide.swiper-slide-active {
  height: 100%;
}

.mySwipereb .swiper-button-next::after, 
.mySwipereb .swiper-container-rtl .swiper-button-prev::after {
  content: '>';
}

.mySwipereb .swiper-button-prev::after, 
.mySwipereb .swiper-container-rtl .swiper-button-next::after {
  content: '<';
}

.fa-brands, .fa-solid {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

  .fa-brands, .fa-solid {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400; }
    .fa-tiktok:before {
      content: "\e07b"; }

.t28{
  font-size: calc(21px + (28 - 21) * ((100vw - 300px) / (1920 - 300)));
}
.t40{
  font-size: calc(25px + (40 - 25) * ((100vw - 300px) / (1920 - 300)));
}
.t32{
  font-size: calc(28px + (32 - 28) * ((100vw - 300px) / (1920 - 300)));
}
.t20{
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300))) !important;
}
.t12{
  font-size: 12px;
}
.t2{
  font-size:calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300))) ;
}

.my-10{
  margin-top:5rem;
  margin-bottom:5rem;
}
.mb-5rem{
margin-bottom:5rem;
}
.h-50{
  height: 50px;
}

.mt-2r{margin-top: 2rem;}
/*landing*/
#logoHeaderl {
  width: 70%;
  margin: 0 auto;
  height: auto;
  transition: all .5s ease-in-out;
  top: 0%;
}

.melige{
  list-style: none;
  margin-top: 0px;
  z-index: 1500;
  position: fixed;
  right: 0px;
  background-color: var(--amarillo);
  padding: 10px;
  border-radius: 14px 0px 0px 14px;
}
.melige a{
  text-decoration: none;
  font-weight: bold;
}
.mt-neg{
  margin-top: -3rem;
  padding-top:12rem;
}
.frecetario{
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 15px;
  position: relative;
  width: 100% !important;
  height: 400px;
  margin-top: 0;
  box-shadow: 10px 2px 15px var(--gray);
}

.linea{
  width: 100%;
  height: 3px;
  background-color: var(--amarillo);
  float: left;
  margin: 4% 0 4%;
}
.iframe iframe{
  height: 300px;
  width: 100%;
}
.ebprod ul {
  list-style: none;
  display: grid;
  justify-content: center;
  align-content: center;
  padding-left: 0;
  text-align: center;
}
.ebprod ul li{
  margin-bottom: 3rem;
}
.ebprod ul span{
  padding-left: 0px;
  padding-bottom: 10px;
  display: block;
}
.ebprod ul li a{
  text-decoration: none;
  color: var(--cafe);
  font-family: "Signika", serif;
}
.ebprod ul img{

}
.pt-5rem{
  padding-top: 5rem;
}
.imgsubscribete{
  margin-top: -2.5rem;
  margin-bottom: 2rem;
    border-radius: 30px;
    object-fit: cover;
    height: 425px;
}

/* .swiper-slide:after {
  z-index: 1;
  transform: skewY(-2deg);
  height: 120px;
  width: 100%;
  position: absolute;
  bottom: -1rem;
  background: #ffffff;
  content:
  "";
} */

/* .home .section-home-2:after {
  position: absolute;
  content: "";
  background: white;
  width: 100%;
  height: 100px;
  z-index: 99;
  top: -20vw;
} */

.cuadro-rojo {
  background-color:transparent;
  transform: skewY(-2deg);
  color: white;
  height: 200px;
  width:100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.cuadro-rojo:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, #654ea3, #eaafc8);
  transform: skewY(5deg);
}

.texto-slider h2 {
  --max-font: 25;
  --min-font: 18;
  font-size: var(--responsive);
}

.contenido-cuadro-rojo {
  max-width: 100%;
  margin: 0 auto;
  transform: skewY(3deg);
  position: relative;
  text-align: center;
}

.btn_navs {
  position: absolute;
  bottom: 45px;
  z-index: 9999;
  width: 35%;
  height: 50px;
  left: 5px;
  max-width: 50em;
  margin: 0 auto;
  transform: skewY(5deg);
}

.swiper-button-next {
  background-color: var(--amarillo);
  color: var(--cafe);
  border-radius: 100%;
  height: 50px;
  width: 50px;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: '';
}

.swiper-button-prev {
  background-color: var(--amarillo);
  color: var(--cafe);
  border-radius: 100%;
  height: 50px;
  width: 50px;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: '';
}

/*---------- nav custom owl ---------------------*/

.customPrevBtn, .customNextBtn {
  background-color: var(--amarillo);
  color: var(--cafe);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  --max-font: 15;
  --min-font: 10;
  font-size: var(--responsive);
  padding: 4% 6%;
  margin: 10px;
  position: relative;
  transition: all 0.5s ease-in;
}

.customPrevBtn:hover, .customNextBtn:hover {
  background: #e6bf0b;
}

.customPrevBtn i, .customNextBtn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-custom {
  display: flex;
  left: 1vw;
  position: relative;
  top: 2vw;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-nav button i {
  --max-font: 21;
  --min-font: 50;
  font-size: var(--responsive);
  color: white;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent;
}

.owl-prev {
  left: 0;
  position: relative;
  float: left;
}

.owl-next {
  right: 0;
  position: relative;
  float: right;
}

.texto-slider {
    padding: 0px 2vw;
    min-height: 7vw;
    transform: translate(0, 2vw);
}

/* .item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}
 */

/*---------- nav custom ---------------------*/

.btn-descubrelos {
    color: var(--cafe);
    background: var(--amarillo);
    padding: 1vmax 2vmax;
    top: 85%;
    position: absolute;
    border-radius: 20px;
    box-shadow: none;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
    width: auto;
}

.btn-descubrelos:hover {
  color: white;
  text-decoration: none;
  background-color: var(--cafe);
}

/* -------------- estilos btn -------------- */

.btn-gvt {
  color: var(--cafe);
  background: var(--amarillo);
  padding: 15px 20px;
  right: 0;
  float: none;
  top: 0;
  position: relative;
  border-radius: 20px;
  box-shadow: none;
  font-weight: 600;
  --max-font: 18;
  --min-font: 16;
  font-size: var(--responsive);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin: 1rem 0;
  width: auto;
}

.btn-gvt:hover {
  color: white;
  background-color: var(--cafe);
}

.btn-gvt-productos {
  color: var(--cafe);
  background: var(--amarillo);
  padding: 10px 15px;
  right: 0;
  float: none;
  top: 0rem;
  position: relative;
  border-radius: 10px 20px 20px 10px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-gvt-productos:hover {
  color: white;
  background-color: var(--cafe);
}


/* --------------- fin estilos btn ------------------ */

/*--------------------------banner slider----------------------------*/



/*------------------------------- fin banner slider ---------------------*/

/*------------- Banner estatico - home ---------------*/

/* .section-home-2:before {
  z-index: 1;
  content: "";
  transform: skewY(-2deg);
  height: 100px;
  width: 100%;
  position: absolute;
  top: -5rem;
  background: white;
} */

/* .section-home-2:after {
  content: "";
  transform: skewY(-2deg);
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: -12rem;
  background-color: var(--gris_claro);
  left: 0;
} */

/* --------------- blog - home ------------ */

.imagen-tip-noticia-home .thumbnail-post {
  height: calc(100% - 2*5px - 2*10px - 2px);
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.imagen-tip-noticia-home:before {
  content: "";
  position: absolute;
  height: calc(140% - 2*5px - 2*10px - 2px);
  width: 100%;
  background: var(--rojo);
  transform: translate(-15rem, -2rem);
  border-radius: 10px 20px 20px 10px;
  z-index: 0;
  display: none;
}

.categoria-item-blog-right {
  position: absolute;
  height: calc(40% - 2*5px - 2*10px - 2px);
  width: 100%;
  transform: translate(0px, 0px);
  right: 25%;
  top: 10%;
  z-index: 6;
}

.categoria-item-blog-left {
  position: absolute;
  height: calc(40% - 2*5px - 2*10px - 2px);
  width: auto;
  transform: translate(-27%, 0px);
  left: 10%;
  top: 10%;
  z-index: 2;
}

.tip-noticias-home:nth-child(2) .imagen-tip-noticia-home:before,
.tip-noticias-home:nth-child(4) .imagen-tip-noticia-home:before {
  transform: translate(15rem, -2rem);
  border-radius: 20px 0px 0px 20px;
}

.btn-gvt-2 {
  background: var(--amarillo);
  padding: 15px;
  --max-font: 20;
  --min-font: 17;
  font-size: var(--responsive);
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  color: var( --cafe);
  height: 40px;
  display: table;
  width: 60%;
  margin: 0 auto;
  position: relative;
}

.btn-gvt-2:hover {
  color: white;
  background-color: var(--cafe);
}

/* ------------------- Productos - home ------ */

/* .section-home-4:before {
  content: "";
  transform: skewY(-2deg);
  height: 120px;
  width: 100%;
  position: absolute;
  top: -12rem;
  background-color: var(--gris_claro);
  left: 0;
  z-index: -1;
} */

.section-home-4:after {
  z-index: -1;
  content: "";
  height: 100px;
  width: 100%;
  background: #f1f1f1;
  position: absolute;
  transform: skewY(2deg);
  bottom: -3vw;
}

/*============= Menu productos===============*/

#menu-menu-productos-1,
#menu-menu-productos {
  padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0 0;
    grid-template-areas:
        ". ."
        ". .";
}

.category #menu-menu-productos-1, 
.category #menu-menu-productos {
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0 0;
  grid-template-areas:
      ". ."
      ". .";
}

.item-producto-menu {
  display: block;
  text-align: center;
  transition: .3s ease-in-out;
  margin: 0 1vw;
}

.item-producto-menu a {
  color: white;
  text-decoration: none;
}

.item-producto-menu img {
  position: relative;
  z-index: 1;
  transform: translate(0px, 5%);
  height: auto;
  object-fit: cover;
  width: 17vw!important;
}

.item-producto-menu span {
  position: absolute;
  bottom: 0;
  color: white;
}

.item-producto-menu a:after {
  content: "";
  border-radius: 100%;
  height: 100px;
  width: 100px;
  background: var(--rojo);
  position: absolute;
  z-index: 0;
  top: 60%;
  margin: 0 auto;
  text-align: center;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: circle(100% at 50% 50%);
 
}

.item-producto-menu span {
  z-index: 1;
  position: relative;
  bottom: 5vmin;
  color: white;
  margin: 0 auto;
  font-size: 16px;
  left: 0;
  transform: none;
  font-weight: bold;
}

/*============== ANCHOR animaciones hover menu productos ============*/


.item-producto-menu:hover img{
  animation: animateImgMenu .3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes animateImgMenu {
  0% {
      transform: translateY(-5px);
  }
  50% {
      transform: translateY(0px);
  }
  100% {
      transform: translateY(-5px);
  }
}

.item-producto-menu a:hover:after{
  animation: animateCircle .4s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes animateCircle {
  0%{
    clip-path: circle(50% at 50% 50%);
    background: var(--rojo);
  }
  50%{
    clip-path: circle(0% at 50% 50%);
    background: var(--rojo);
  }
  100%{
    clip-path: circle(50% at 50% 50%);
    background: var(--amarillo);
  }
}

.item-producto-menu:hover a::before{
  background-color: var(--amarillo);
  display: block;
  opacity: 1;
 }

.item-producto-menu:hover span{
  color: var(--cafe);
 }

/*============= Menu productos===============*/
.enlace-icono {
  height: auto;
  display: block;
}

.enlace-icono h5 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.enlace-icono:hover h5 {
  color: var(--cafe);
}

.icono-hover-menu-productos {
  position: relative;
  left: 0;
  opacity: 0;
  display: none;
  margin: 0 auto;
}

.enlace-icono:hover .icono-menu-productos {
  opacity: 0;
  display: none;
}

.enlace-icono:hover .icono-hover-menu-productos {
  opacity: 1;
  display: block;
}

/*------------------ banner nutriologos -home ------*/

.section-home-5 {
  transform: skewY(-2deg);
  background-color: var(--cafe);
  background-image: url(../img/fondo-verduras.png);
  background-attachment: fixed;
  height: auto;
  padding: 5vmax 0;
}

.section-home-5 .container-custom {
  transform: skewY(2deg);
}

/*--------------- Unete a la familia - home ------------- */
.section-home-6 {
  padding-bottom: 5rem;
  position: relative;
}
.section-home-6:before {
  content: "";
  background-color: var(--gris_claro);
  position: absolute;
  top: -7rem;
  left: 0;
  height: 120px;
  width: 100%;
  z-index: -1;
}

.section-home-6:after {
  content: "";
  background-color: var(--gris_claro);
  position: absolute;
  bottom: -5rem;
  left: 0;
  height: 100px;
  width: 100%;
}

.box-social {
  position: relative;
  transition: all .5s ease-in-out;
}

.box-social:hover .icon-social-home,
.box-social:hover h5 {
  background-color: var(--rojo);
  color: white;
}

.box-social:hover img {
  transform: translate(0px, -10px);
}

.icon-social-home {
  position: absolute;
  right: 5%;
  top: 5%;
  background: var(--amarillo);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  color: var(--cafe);
  transition: all .2s ease-in-out;
  z-index: 1;
}

.icon-social-home i {
  margin: 0 auto;
  --max-font: 25;
  --min-font: 25;
  font-size: var(--responsive);
  transition: all .1s ease-in-out;
}

.box-social img {
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all .5s ease-in-out;
}

.box-social h5 {
  position: absolute;
  bottom: 14%;
  background-color: var(--amarillo);
  color: var(--cafe);
  border-radius: 30px;
  padding: 4%;
  margin: 0 auto;
  transform: translate(-50%, 50%);
  left: 50%;
  --max-font: 18;
  --min-font: 17;
  font-size: var(--responsive);
  font-weight: 900;
  width: 80%;
  text-align: center;
  transition: all .5s ease-in-out;
}

.box-red {
  position: relative;
  text-align: center;
}

.box-red img {
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.box-red:after {
  content: "";
  height: 40vw;
  background: var(--rojo);
  position: absolute;
  z-index: 0;
  border-radius: 30px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  left: 50%;
  top: 92%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.box-red span {
  position: relative;
  color: white;
  margin: 0 auto;
  --max-font: 20;
  --min-font: 20;
  font-size: var(--responsive);
  width: 50%;
  display: block;
  top: 3vw;
  z-index: 1;
}


/*=================  footer ====================*/

.vertical-footer:before {
  content: "";
  height: 50vh;
  width: 100%;
  position: absolute;
  top: 0rem;
  background-color: var(--gris_claro);
  z-index: -1;
}

.newsletter {
  transform: skewY(-2deg);
  height: auto;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 5rem;
  padding: 10vw 0;
}

.contenido-news {
  margin: 0 auto;
  transform: skewY(2deg);
  position: relative;
}

footer:before {
  content: "";
  /* background-image: url(../img/fondo-carton-ch.jpg); */
  background-color: var(--gris_claro);
  height: 100px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  position: absolute;
  transform: translate(0px, -40%);
}

footer:after {
  content: "";
  /* background-image: url(../img/fondo-carton-ch.jpg); */
  background-color: var(--gris_claro);
  height: 90PX;
  bottom: -3rem;
  left: 0;
  width: 100%;
  z-index: 0;
  position: absolute;
  transform: skewY(-2deg);
  z-index: -1;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin: 1rem 0;
}

.copy {
  opacity: 0.5;
}

#snippet-box {
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: none!important;
}

/*---------------- fin footer --------------------*/

/* ---- form newsletter ---*/

.contenedor-formulario {
  top: 0;
  height: 580px;
  width: 100%;
  border-radius: 50px;
  padding: 25px;
  border-radius: 30px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%);
  position: relative;
  transform: translateY(0rem) skewY(0deg);
  left: 0;
}

#mce-NOMBRE,
#mce-APELIDOS,
#mce-EMAIL,
#mce-PHONE,
#mce-CIUDAD {
  height: 60px !important;
  background: #f1f1f1 !important;
  border-radius: 30px !important;
  border: none !important;
  padding: 10px !important;
}

#mce-ESTADO {
    height: 60px !important;
    background: #f1f1f1 !important;
    padding: 10px !important;
    border: none !important;
    width: 100% !important;
    outline: none !important;
    box-shadow: none !important;
}

#mc_embed_signup .size1of2 {
  width: 96%!important;
}
#mc_embed_signup{width: 100% !important;}
#mce-NACIMIENTO-day,
#mce-NACIMIENTO-month,
#mce-NACIMIENTO-year {
  width: 30%!important;
  height: 30px !important;
  background: #f1f1f1 !important;
  border-radius: 30px !important;
  border: none !important;
  padding: 10px !important;
}

#mc-embedded-subscribe {
  color: var(--cafe);
  float: right;
  right: 5%;
  position: relative;
  background-color: var(--amarillo);
  border: 0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  font-size: 19px;
  padding: 20px;
  border-radius: 20px;
  font-weight: bold;
}
#mc_embed_signup input{
  border: 0px !important;
  border-radius: 0px !important;
  background-color: transparent;
  padding-top: 10px;
  margin-right: 10px;
}
#mc_embed_signup img{
  margin-top:-10px;
}

/* ---- fin form newsletter ---*/

/*-------------- fin footer -------------------*/

/*--------------  Diagonales ---------------*/

.diagonal:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-3deg);
  top: -11%;
  left: 0;
  z-index: 1;
}

.diagonal:after {
  content: "";
  position: absolute;
  height: 115px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-3deg);
  bottom: -140px;
  left: 0;
  z-index: 0;
}

.diagonal-top:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-3deg);
  top: -11%;
  left: 0;
  z-index: 1;
}

.diagonal-bottom:after {
  content: "";
  position: absolute;
  height: 115px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-3deg);
  bottom: -140px;
  left: 0;
  z-index: 0;
}

.diagonal-top-gris:before{
  content: "";
  transform: skewY(-2deg);
  height: 100px;
  width: 100%;
  position: absolute;
  top: -2vw;
  background-color: var(--gris_claro);
  left: 0;
  z-index: -1;
}

.diagonal-bottom-gris:after {
  content: "";
  transform: skewY(
-2deg
);
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: -12rem;
  background-color: var(--gris_claro);
  left: 0;
}

.header-search {
  height: 20rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 35%;
}

.header-search img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.resultados {
    margin-top: 5vw;
}

/*=======================================================
                Interior Feed productos
=========================================================*/

.header-productos {
  height: 40rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 35%;
}

.section-productos-new-1:after {
  content: "";
  background-color: var(--gris_claro);
  width: 100%;
  height: 250px;
  position: absolute;
  top: -10vh;
  z-index: -1;
  transform: skewY(-3deg);
}

.section-productos-1 {
  transform: skewY(-3deg);
  height: auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 0rem;
  position: relative;
  padding: 15vh 0;
}

.category-avenas .section-productos-1 .filtro-header,
.category-galletas .section-productos-1 .filtro-header,
.category-granolas .section-productos-1 .filtro-header,
.category-barras .section-productos-1 .filtro-header,
.category-harinas-de-avena .section-productos-1 .filtro-header {
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: black;
  opacity: 0.3;
}

.section-productos-1 .filtro-header {
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: transparent;
  opacity: 0.3;
}

.section-productos-1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 100% 0;
  transform: skewY(3deg);
}

/* 
.section-productos-2:before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  background-image: url(../img/fondo-carton-ch.jpg);
  transform: skewY(-3deg);
  top: -3vw;
  left: 0;
  z-index: -1;
} */

/* .section-productos-3 {
    padding-bottom: 0rem;
    margin-top: 5rem;
} */

/* .section-productos-3:before {
  height: 330px;
  width: 100%;
  background: white;
  position: absolute;
  content: "";
  z-index: 1;
  transform: skewY(
0deg
);
  top: -4vw;
  z-index: 0;
} */

/* .section-productos-3:after {
  height: 120px;
  width: 100%;
  background: #ffffff;
  position: absolute;
  content: "";
  z-index: 1;
  transform: skewY(-3deg);
  bottom: -4vw;
  z-index: 0;
} */

.link-category-productos {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 10%;
  margin: 0 auto;
  color: white;
  text-decoration: none;
}

.link-category-productos:hover {
  color: var(--cafe);
}

.link-category-productos:hover:after{
  animation: animateCircle .4s ease-in-out;
  animation-fill-mode: forwards;
}

.link-category-productos span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 16px;
  font-weight: bold;
  width: 100%;
}

.link-category-productos:after {
    content: "";
    position: absolute;
    background: var(--rojo);
    border-radius: 100%;
    top: 0;
    left: 50%;
    height: 120px;
    width: 120px;
    z-index: -1;
    transform: translate(-50%, 50%);
}

.link-category-productos img {
  height: auto;
  width: 100px;
  position: relative;
  object-fit: cover;
  top: 7vw;
  margin: 0 auto;
}

.link-category-productos.noshadow-image img {
  top: 5.5vw;
}

.link-category-productos .btn-avenas-title,
.link-category-productos .btn-granolas-title {
  bottom: -15%;
}

.categoria-producto {
  z-index: 1;
}

.name-categoria {
  transform: skewY(-3deg) translate(0px, 4px);
  background-color: var(--rojo);
  color: white;
  height: 5rem;
  width: auto;
  margin: 0 auto;
  text-align: center;
  padding: 5%;
  display: inline-flex;
  align-items: center;
  right: 10%;
  float: right;
  position: relative;
  margin-top: 3.2rem;
}



.thumbnail-producto {
  transform: translate(0, -25%);
  border-radius: 30px;
}

.info-producto:before {
  content: "";
  position: absolute;
  height: 130px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-2deg);
  top: -6%;
  left: 0;
  z-index: 0
}

/* .relacionados:before {
  content: "";
  transform: skewY( -2deg);
  height: 120px;
  width: 100%;
  position: absolute;
  top: -2rem;
  z-index: -1;
  background-color: var(--gris_claro);
} */

/* Dropdown Button */
.dropbtn {
  background-color: #ffffff;
  color: #3a2b23;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: initial;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  transition: all .3s ease-in-out;
  margin-top: 3rem;
}

.dropbtn i {
  float: right;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #d60812;
  color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  width: 100%;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.separador-single-producto {
  transform: skewY(-3deg);
  background-color: var(--gris_claro);
  margin-top: 8rem;
  height: 100px;
  width: 100%;
  position: relative;
}

.sociales-interior {
  transform: skewY(-5deg);
  float: right;
  background: var(--rojo);
  padding: 5px;
  height: 100px;
  display: flex;
  align-items: center;
  width: auto;
  margin-top: 1rem;
}

.sociales-interior .contenedor-iconos {
  transform: skewY(5deg);
  color: white;
}

.sociales-interior .contenedor-iconos a {
  margin: 0 auto;
  color: white;
  margin: 20px;
  font-size: 22px;
}

.sociales-interior-tips {
  transform: skewY(-3deg) translate(0, -3rem);
  float: right;
  background: var(--rojo);
  padding: 5px;
  height: 100px;
  display: flex;
  align-items: center;
  width: auto;
  margin-top: 0rem;
}

.sociales-interior-tips .contenedor-iconos {
  transform: skewY(5deg);
  color: white;
}

.at-resp-share-element.at-mobile .at-share-btn {
  margin-right: 1px!important;
}

.sociales-interior-tips .contenedor-iconos a {
  margin: 0 auto;
  color: white;
  margin: 20px;
  font-size: 22px;
}

/*=======================================================
             SECTION   Interior Feed tips y recetas
=========================================================*/

.section-tips-recetas-2:before {
  content: "";
  position: absolute;
  height: 10vh;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-3deg);
  top: -5vh;
  left: 0;
  z-index: 0;
}

.card-post h3 {
  min-height: 60px;
  height: 100%;
}

.card-post img {
  height: 40vh;
  object-fit: cover;
  width: 100%;
}

.card-post .fecha-card {
  position: relative;
  transform: translateY(-50%);
  background-color: var( --rojo);
  color: white;
  margin: 0 auto;
  width: 25%;
  padding: 9px 15px;
  border-radius: 15px;
  height: auto;
  display: flex;
  align-items: center;
}

.fecha-card .dia {
  font-size: 30px;
  font-weight: 500;
}

.tag-categoria-recetario-post {
  background-image: url(../img/etiqueta-recetario.svg);
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 20vh;
  position: absolute;
  width: 100%;
  height: 10vh;
  right: 0;
  top: 1%;
  color: transparent;
  font-size: 0;
}

.tag-categoria-frio,
.tag-categoria-recetas-con-avena,
.tag-categoria-dulce,
.tag-categoria-comida,
.tag-categoria-desayuno, 
.tag-categoria-postre,
.tag-categoria-ensalada,
.tag-categoria-bebida,
.tag-categoria-snack,
.tag-categoria-caliente {
  background-image: url(../img/etiqueta-recetario.svg);
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 20vh;
  position: absolute;
  width: 100%;
  height: 10vh;
  right: 0;
  top: 1%;
  color: transparent;
  font-size: 0;
}

.tag-categoria-hazlo-en-casa {
  background-image: url(../img/etiqueta-hazlo-en-casa.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  width: 40%;
  height: 15%;
  right: 5%;
  top: 5%;
  color: transparent;
  font-size: 0;
}

.tag-categoria-ponte-en-forma {
  background-image: url(../img/etiqueta-activate.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  width: 40%;
  height: 15%;
  right: 5%;
  top: 5%;
  color: transparent;
  font-size: 0;
}

.tag-categoria-vida-saludable {
  background-image: url(../img/etiqueta-nutre-tu-vida.svg);
  background-repeat: no-repeat;
    background-position: 85%;
    background-size: 30vw;
    position: absolute;
    width: 100%;
    height: 10vh;
    right: 0;
    top: 1%;
    color: transparent;
    font-size: 0;
}

/* .tag-categoria-recetario-post {
  background-color: var(--amarillo);
  position: absolute;
  width: auto;
  height: 10%;
  right: 5%;
  top: 5%;
  color: var(--cafe);
  font-size: calc(7px + 1vh);
  border-radius: 16px;
  z-index: 999999;
  padding: 2%;
  font-weight: 900;
} */

.tag-categoria-create-en-casa {
  background-image: url(../img/etiqueta-nutre-tu-vida.svg);
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 30vw;
  position: absolute;
  width: 100%;
  height: 10vh;
  right: 0;
  top: 1%;
  color: transparent;
  font-size: 0;
}
/*============ SECTION menu categorias tips y recetas ============*/

#menu-menu-categorias-tips-y-recetas {
  display: inline-grid;
  list-style: none;
}

#menu-menu-categorias-tips-y-recetas .menu-item a {
  color: white;
  background: var(--rojo);
  margin: 1rem;
  padding: 10px 1vw;
  border-radius: 20px;
  transition: all .2s ease-in;
  display: block;
  text-decoration: none;
}

#menu-menu-categorias-tips-y-recetas .menu-item a:hover{
  background: var(--amarillo);
  color: var(--cafe);
  font-weight: 600;
}

#menu-menu-categorias-tips-y-recetas .menu-item.active a{
  background: var(--amarillo);
  color: var(--cafe);
  font-weight: 600;
}

/*----------------- submenu recetario ----------------*/

#menu-menu-subcategorias-recetario {
  display: inline-flex;
  list-style: none;
}

#menu-menu-subcategorias-recetario .menu-item a {
  color: white;
  background: var(--rojo);
  margin: 1rem;
  padding: 10px 1vw;
  border-radius: 20px;
  transition: all .2s ease-in;
  display: block;
  text-decoration: none;
}

#menu-menu-subcategorias-recetario .menu-item a:hover{
  background: var(--amarillo);
  color: var(--cafe);
  font-weight: 600;
}

#menu-menu-subcategorias-recetario .menu-item.active a{
  background: var(--amarillo);
  color: var(--cafe);
  font-weight: 600;
}

/*===================================
    SECTION Single recetario
===================================*/

.header-recetario .img-header-single-recetario {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  object-position: 25% -10vw;
}

/* .header-recetario {
  height: 550px;
  width: 100%;
  object-fit: cover;
} */

#breadcrumbs {
  position: relative;
  z-index: 99;
}

.header-recetario:after {
  content: "";
  position: absolute;
  height: 10vh;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(-2deg);
  bottom: 3vh;
  left: 0;
  z-index: 0;
}

.data-single-recetario {
  position: absolute;
  background: white;
  bottom: -3%;
  left: 0%;
  border-radius: 30px;
  padding: 30px;
  z-index: 1;
  width: 100%;
}

.icono-tiempo {
  height: 100px;
  width: 100px;
  background: #3a2b23;
  border-radius: 100%;
  color: white;
  text-align: center;
  margin: 0 auto;
}

.icono-dificultad {
  margin: 0 auto;
  display: block;
  height: 100px;
  width: 100px;
}

.icono-dificultad span {
  position: absolute;
  bottom: 15%;
  color: white;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icono-fecha {
  height: 100px;
  width: 100px;
  background: #3a2b23;
  border-radius: 100%;
  color: white;
  margin: 0 auto;
  text-align: center;
}

#breadcrumbs a {
  color: var(--rojo);
}

.section-receta-1 h2 {
  color: var(--cafe);
}

.section-receta-1 a {
  color: var(--rojo);
}

.embed-responsive-item {
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: block;
  height: 50vh;
}

.relacionados-recetario:before {
  content: "";
  transform: skewY(-3deg);
  height: 100px;
  width: 100%;
  position: absolute;
  top: -3rem;
  background-color: var(--gris_claro);
  left: 0;
  z-index: -1;
}

/*--- tags categorias ---*/

.list-tags ul {
  list-style: none;
    padding: 0;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        ". ."
        ". .";
    gap: 10px 0px;
}

.list-tags ul li{
  margin: 0px 10px;
}

.list-tags ul li a {
  background-color: var(--gris);
  color: white;
  text-decoration: none;
  padding: 1vh;
  border-radius: 20px;
  display: block;
  font-size: 14px;
  text-align: center;
}

.contenido-recetario img,
.contenido-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------- etiquetas de interiores ---- */

.titulo-categoria-interiores-recetas-con-avena {
  background-image: url(../img/etiqueta-recetario.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  width: 11%;
  height: 15%;
  right: 5%;
  bottom: 15%;
  color: transparent;
  font-size: 0;
}

/*===================================
    SECTION Contacto
===================================*/

.section-contacto-1 {
  transform: skewY(3deg);
  height: 50vh;
}

.section-contacto-1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transform: skewY(-3deg);
}

.section-contacto-2:before {
    content: "";
    position: absolute;
    height: 10vh;
    width: 100%;
    background-color: #ffffff;
    transform: skewY(-2deg);
    top: -10vh;
    left: 0;
    z-index: 0;
}


.contenedor-formulario-contacto {
  top: 0;
  height: auto;
  width: 100%;
  border-radius: 50px;
  padding: 25px;
  border-radius: 30px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%);
  background-color: var(--gris_claro);
}

.contenedor-formulario-contacto input{
  height: 60px;
  background: #ffffff;
  border-radius: 30px;
  border: none;
  padding: 10px;
  width: 100%;
}

.contenedor-formulario-contacto textarea {
  background: #ffffff;
  border-radius: 30px;
  border: none;
  padding: 10px;
  width: 100%;
}

.wpcf7-form-control.wpcf7-submit {
  color: var(--cafe);
  float: right;
  right: 5%;
  top: 1vw;
  position: relative;
  background-color: var(--amarillo);
  border: 0;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  font-size: 19px;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  width: auto;
  display: table;
}

body.page-template-page-contacto .section-home-6:before {
  content: none;
}

/*===================================
    SECTION Paginador
===================================*/

.page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
}

.page-numbers li {
  margin: 5px;
  display: flex;
  align-items: center;
}

.page-numbers li span {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  background: var(--rojo);
  color: white;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 3px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}

.page-numbers li a {
  display: block;
  margin: 0 auto;
  background: var(--amarillo);
  color: var(--cafe);
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 3px;
  transition: all .2s ease-in-out;
  text-decoration: none;
  font-weight: bold;
  box-shadow: none;
}

.page-numbers li a:hover {
  background: var(--rojo);
  color: white;
}

.name-categoria span {
  transform: skewY(3deg);
  display: block;
  margin: 0 auto;
  --max-font: 25;
  --min-font: 20;
  font-size: var(--responsive);
  font-weight: bold;
}

/* ======================= paginador search =======================*/

nav.custom-pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
}

.custom-pagination .page-numbers.page-num {
  display: none;
}

.custom-pagination .page-numbers li span {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  background: var(--rojo);
  color: white;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 3px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}

.custom-pagination a.page-numbers {
  display: block;
  margin: 0 5px;
  background: var(--amarillo);
  color: var(--cafe);
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 3px;
  transition: all .2s ease-in-out;
  text-decoration: none;
  font-weight: bold;
  box-shadow: none;
  
}

nav.custom-pagination span.page-numbers.current {
  display: block;
  margin: 0 5px;
  font-weight: bold;
  background: var(--rojo);
  color: white;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding: 3px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}

a.prev.page-numbers,
a.next.page-numbers {
  position: relative;
  color: transparent;
}

a.prev.page-numbers:after {
  content: "\f060";
  position: absolute;
  left: 30%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: black;
}

a.next.page-numbers:after {
  content: "\f061";
  position: absolute;
  left: 30%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: black;
}

/* ===================================
  ANCHOR --- single productos
======================================*/

.header-single-producto {
  background-image: url(../img/2024-05-31-14.15.47.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
}


/*--- avenas -----*/
/* .avenas .header-single-producto {
  background-image: url(../img/portada-avena-granvita.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh; 
}*/

/*--- barras -----*/
/* .alimentos-liquidos-granvita .header-single-producto,
.barras .header-single-producto,
.bebidas .header-single-producto {
  background-image: url(../img/banner-nuevos-sabores-consentirte-granola0.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
} */

/* ===================================
  SECTION --- Conexion saludable
======================================*/

.section-conexion-1 {
  transform: skewY(-2deg);
  background-color: var(--cafe);
  background-image: url(../img/fondo-verduras.png);
  background-attachment: fixed;
  position: relative;
  height: auto;
  padding: 10vh 0;
}

.section-conexion-1:after {
  content: "";
  height: 30px;
  width: 100%;
  background-color: white;
  bottom: -10px;
  position: absolute;
}

.img-conexion-1 {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  bottom: -1vh;
  position: relative;
}

.section-conexion-3 {
  transform: skewY(-2deg);
  background-color: var(--cafe);
  background-image: url(../img/fondo-verduras.png);
  background-attachment: fixed;
  position: relative;
  padding: 10vh 0;
  height: auto;
}

.section-conexion-3:after {
  content: "";
  height: 100px;
  width: 100%;
  background-color: var(--gris_claro);
  bottom: -5rem;
  position: absolute;
}

.rq-conexion {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  top: 0;
  position: relative;
  margin: 0 auto;
}

.skew1 {
  transform: skewY(-2deg);
}

.skew2 {
  transform: skewY(2deg);
}

.search-results .tag-categoria-avenas-instantaneas-granvita-tradicionales,
.search-results .tag-categoria-galletas-granvita-tradicionales,
.search-results .tag-categoria-granolas-granvita-0-azucar,
.search-results .tag-categoria-barras-granvita-0-azucar,
.search-results .tag-categoria-barras-granvita-tradicionales,
.search-results .tag-categoria-harinas-de-avena-granvita {
  display: none;
}

.ir-arriba {
	display:none;
	padding: 12px;
	background: var(--rojo);
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	position: fixed;
	bottom: 50px;
	right: 6vw;
	border-radius: 15px;
	height: 50px;
	width: 50px;
	box-shadow: 2px 3px 3px 0px #00000075;
	text-align: center;
	z-index: 999999;
}

.btn-gvt-conexion {
  color: var(--cafe);
  background: var(--amarillo);
  padding: 15px 20px;
  right: 0;
  float: none;
  top: 1.5vh;
  position: relative;
  border-radius: 10px 20px 20px 10px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  width: auto;
  display: table;
}

.btn-gvt-conexion:hover{
  color: white;
  background-color: var(--cafe);
}

.avenas #wpdevar_comment_1,
.barras  #wpdevar_comment_1,
.granolas #wpdevar_comment_1,
.galletas #wpdevar_comment_1,
.bebidas #wpdevar_comment_1,
.harinas #wpdevar_comment_1,
.productos #wpdevar_comment_1 {
display: none;
}

.nuevo-producto {
  background: #d60812;
  color: white;
  position: absolute;
  padding: 5px 10px;
  left: 10%;
  box-shadow: 2px 2px 6px 0px #0000005e;
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes shake-animation {
  0% { transform:translate(0,0) }
 1.78571% { transform:translate(5px,0) }
 3.57143% { transform:translate(0,0) }
 5.35714% { transform:translate(5px,0) }
 7.14286% { transform:translate(0,0) }
 8.92857% { transform:translate(5px,0) }
 10.71429% { transform:translate(0,0) }
 100% { transform:translate(0,0) }
}


.owl-productos {
  position: relative;
  z-index: 1;
}

.owl-productos .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  z-index: 1;
  left: 0;
}

.owl-productos .owl-nav .owl-prev i, 
.owl-productos .owl-nav .owl-next i {
  background-color: var(--amarillo);
  color: var(--cafe);
  padding: 8px;
  --max-font: 30;
  --min-font: 30;
  font-size: var(--responsive);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  border-radius: 10px;
  outline: none;
}

.owl-productos .owl-nav .owl-prev {
  float: left;
  left: 0;
}

.owl-productos .owl-nav .owl-next {
  float: right;
  right: 0;
}

.intro-section-category {
  height: auto;
  align-items: center;
  display: flex;
  margin-bottom: 0rem;
}

.category .vertical-footer:before {
  content: "";
  height: 270px;
  width: 100%;
  position: absolute;
  top: 0rem;
  background-color: var(--gris_claro);
  z-index: -1;
  transform: skewY(0deg);
}


.item-producto-menu.active {
  display: none;
}

.section-productos-1 h1 {
  transform: skewY(1deg)!important;
}

.section-productos-2 {
  background-color: var(--cafe);
  background-image: url(../img/fondo-verduras.png);
  background-attachment: fixed;
  height: auto;
  overflow: hidden;
}

.section-productos-2:after {
  height: 5vh;
      width: 100%;
      background: #ffffff;
      position: absolute;
      content: "";
      transform: skewY(-2deg);
      bottom: -3vh;
      z-index: 99;
}

.text-infografia {
  padding: 10vh 0;
}

.section-productos-2:before {
  z-index: 99;
  transform: skewY(-2deg);
  position: absolute;
  height: 100px;
  width: 100%;
  background: #ffffff;
  left: 0;
  top: -4rem;
  content: "";
} 

/* 
.intro-section-category:after {
  z-index: 999;
  transform: skewY(-3deg);
  position: absolute;
  height: 50px;
  width: 100%;
  background: #ffffff;
  left: 0;
  bottom: -2rem;
  content: "";
} */

.title-subcategory-header {
  --max-font: 45;
  --min-font: 30;
  font-size: var(--responsive);
}

/*------------filtro-----------*/

.filtro.position-relative {
  width: 100%;
  height: 50vh;
}

/*--------------- Search resultados--------------*/

.search-results .search-form-filter {
  text-align: center;
  background-color: var(--gris_claro);
  padding: 5vw 37px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  position: relative;
}

.search-results .search-form-filter:before {
  content: "";
  position: absolute;
  background-color: var(--gris_claro);
  transform: skewY(-2deg);
  top: -2vw;
  width: 100%;
  left: 0;
  z-index: 1;
  height: 81px;
}

/*--------------- fin search resultados--------------*/

.search-form-filter {
  text-align: center;
  background-color: var(--gris_claro);
  padding: 1vh 2vw;
  width: 100%;
  margin: 10vw auto;
  border-radius: 30px;
}

.search-form-filter input.search-field {
  margin-right: 0;
  padding: 12px 15px;
  border-radius: 30px;
  color: #716f6f;
  width: 90vw;
  margin-bottom: 5px;
}

.search-form-filter #category_name {
  margin-right: 2rem;
  padding: 13px 15px;
  border-radius: 30px;
  color: #716f6f;
      
}

.search-form-filter select#tag,
.search-form-filter #tipo-de-alimento,
.search-form-filter #momentos-de-consumo,
.search-form-filter #tipo-de-sabor {
  margin-right: 2rem;
  padding: 13px 15px;
  border-radius: 30px;
  color: #716f6f;
  outline: none;
  width: 100%;
  margin: 10px 0;
}

.search-form-filter input.search-submit {
  background: #d60812;
  border: none;
  padding: 13px 25px;
  color: white;
  border-radius: 30px;
}

.owl-infografias .owl-nav {
  position: absolute;
  bottom: -3rem;
  right: 35%;
  z-index: 999;
  display: inline-flex;
}

.owl-infografias .owl-nav .owl-prev i, 
.owl-infografias .owl-nav .owl-next i {
  background-color: var(--amarillo);
  color: var(--cafe);
  padding: 8px;
  --max-font: 30;
  --min-font: 30;
  font-size: var(--responsive);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  border-radius: 10px;
  outline: none;
}

.icon-tips {
  position: absolute;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  left: 50%;
  background-color: var(--gris_claro);
  padding: 5%;
  border-radius: 100%;
  height: 90px;
  width: 90px;
  bottom: -7rem;
  display: flex;
  align-items: center;
}

.icon-tips:after {
  content: "";
  background-color: #ffffff;
  height: 70px;
  width: 70px;
  z-index: -1;
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.card-tips:hover {
  background: var(--cafe);
}

.card-tips:hover .icon-tips{
  background: var(--cafe);
}

.card-tips:hover a{
  color: white!important;
}

.icon-tips img {
  height: 5vh;
  width: 100%;
  object-fit: scale-down;
}

.active-card {
  background: var(--cafe);
}

.active-card a{
  color: white!important;
}

.active-card .icon-tips {
  background: var(--cafe);
}

.owl-infografias .owl-item img {
  top: 0%;
  position: relative;
  height: 40vh;
  width: 100%;
  object-fit: cover;
}

#breadcrumbs span a {
  color: #3a2b23;
  background: #f1f1f1;
  padding: 1%;
  border-radius: 10px;
  font-weight: 900;
  font-size: 15px;
  transition: all 0.3s ease-in;
}

#breadcrumbs span a:hover {
  background: #cccccc;
}

/*#wpdevar_comment_1 {
  display: none;
}*/

#ajaxsearchlite1 {
  margin-top: 2vw;
}

.card-tips span {
  min-height: 90px;
  position: relative;
  display: block;
}

.section-categoria-header {
  width: 100%;
  height: 50vh;
}

.section-categoria-header img {
  height: 100%;
  object-fit: cover;
  object-position: 100% 0;
  width: 100%;
}

.wpcf7 .wpcf7-recaptcha iframe {
  margin-bottom: 0;
  transform: scale(0.8) translate(-10vw,0);
}

.owl-info-producto {
  position: relative;
  transform: translate(0px, -5vw);
  border-radius: 30px;
  background: white;
  padding: 10px;
}

.owl-info-producto .owl-carousel .owl-stage-outer {
  border-radius: 30px;
}

.owl-info-producto .owl-nav {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.owl-info-producto .owl-nav button.owl-next, 
.owl-info-producto .owl-nav button.owl-prev, 
.owl-info-producto button.owl-dot {
  background: var(--amarillo);
  padding: 10px!important;
}

.owl-info-producto .owl-nav button i {
  --max-font: 25;
  --min-font: 20;
  font-size: var(--responsive);
  color: var(--cafe);
}

.zoom-image img{
  transform: scale(1);
  transition: all 0.5s ease-in;

}

.zoom-image:hover img {
  transform: scale(1.2);
}

.zoom-image button {
  background-color: #d60812;
  color: white;
  position: absolute;
  z-index: 99999;
  animation: zoomAnimation 1s ease;
  animation-iteration-count: infinite;
  padding: 10px;
  border-radius: 20px;
  top: 3%;
  left: 5%;
}

@keyframes zoomAnimation {
    0%{
      transform: scale(1);
    }
    50%{
      transform: scale(1.2);
    }
    100%{
      transform: scale(1);
    }
}

.woocommerce-product-gallery {
  position: relative;
  transform: translate(-10%, -30%);
  background: white;
  border-radius: 30px;
}

section.related.products h2 {
  display: none;
}

h2.woocommerce-loop-product__title {
  display: block!important;
}

/*>>>>>>>WOOCOMMERCE<<<<<<<<<<<<<<<*/

p.product.woocommerce.add_to_cart_inline {
  border: none!important;
}

p.product.woocommerce.add_to_cart_inline bdi {
  font-size: 20px;
  font-weight: bold;
  color: #3a2b23;
}

/* a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  float: right;
  right: 30%;
  background: #d60812;
  color: white;
} */

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffc400;
  color: #3a2b23;
  border-radius: 13px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
  background: #d60812;
  color: white;
}

a.added_to_cart.wc-forward {
  position: absolute;
  right: 0;
  color: #3a2b23;
  font-size: 16px;
  font-weight: 600;
}

.cart-icon-custom {
  position: fixed;
  z-index: 999;
  right: 79px;
  top: 50%;
  height: 40px;
  width: 40px;
  background: var(--rojo);
  color: white;
  border-radius: 100%;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #ffd100;
  color: var(--cafe);
  -webkit-font-smoothing: antialiased;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: #d60812;
  color: #fff;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
  padding: 7px;
  border: 2px solid #d60812;
  border-radius: 40px;
}

h2.woocommerce-loop-product__title {
  color: #3a2b23;
  text-align: center;
}

.woocommerce ul.products li.product .price {
  text-align: center;
  color: #d60812;
  font-weight: bolder;
  font-size: 20px;
}

td.product-name a {
  color: var(--cafe);
}

.woocommerce form input {
  border: 1px solid #bfbfbf;
  padding: 10px;
  border-radius: 10px;
}

a.added_to_cart.wc-forward {
  display: none;
}

.woocommerce-message {
  display: none;
}

bdi {
  color: #d60812;
  font-weight: 800;
  font-size: 1.4rem;
}

/*---------------- nuevos estilos productos--------------------*/

/* header------ */

section.header-productos-feed {
  position: relative;
  height: 20rem;
  margin-top: 1rem;
  background-position: center;
}

.icon-header-category img {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 90%;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

.icon-header-category span {
  color: white;
  display: block;
  font-size: 30px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 65%;
  position: absolute;
}

.icon-header-category {
  width: auto;
  display: inline-block;
  margin: 0 auto;
  margin-top: 15rem;
  margin-bottom: 0rem;
  background: #d60812;
  height: 150px;
  width: 150px;
  position: relative;
  border-radius: 100%;
}

/*boton productos----*/
a.btn-comprar {
  background: var(--amarillo);
  padding: 5px 3rem;
  border-radius: 4px;
  color: var(--cafe);
  text-decoration: none;
  margin: 1rem 0;
  position: relative;
  display: block;
  text-align: center;
}

#btnGrid,
#btnList {
  cursor: pointer;
}

.list .list-active-img {
  text-align: center;
}

.list .border-custom {
  border-bottom: 1px solid #d8d8d8;
}

.grid .list-active-text {
  text-align: center;
  padding: 1rem 30px;
}

.grid .border-custom {
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}

.list-active-text h4 {
  min-height: 35px;
}

.resumen-producto.fst-italic {
  min-height: 50px;
}

button {
  border: none;
  background-color: transparent;
}

button.grid,
button.list {
  background: none;
  padding: 4px;
  border: 1px solid #e7e5e5;
  border-radius: 5px;
}

/* ===================================
  ANCHOR --- RESPONSIVOS
======================================*/

@media (min-width: 576px) {
  
  .box-social h5 {
    --min-font: 20;
    --max-font: 25;
  }

  .box-red span {
    --max-font: 20;
    --min-font: 25;
    width: 70%;
}

.rq-conexion {
  width: 90%;
}

.category #menu-menu-productos-1, .category #menu-menu-productos {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}



} /*-----------------fin media 576 ----------------------*/


@media (min-width: 768px) {
  .linea{
    width:150px;
    margin: 4% 10px 4%;
  }
  .iframe iframe{
    height: 400px;
    width: 100%;
  }
  .pt-5rem{
    padding-top: 10rem;
  }

  .frecetario {
    height: 435px;
    width: 100% !important;
  }
  /*-------- Margenes md-768------*/
  .mt-md-6,
  .my-md-6 {
    margin-top: 6rem !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 7rem !important;
  }

  .mt-md-8,
  .my-md-8 {
    margin-top: 8rem !important;
  }

  .mt-md-9,
  .my-md-9 {
    margin-top: 9rem !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 6rem !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 7rem !important;
  }

  .mb-md-8,
  .my-md-8 {
    margin-bottom: 8rem !important;
  }

  .mb-md-9,
  .my-md-9 {
    margin-bottom: 9rem !important;
  }

  .box-red span {
    --max-font: 25;
    --min-font: 25;
    font-size: var(--responsive);
    top: 2rem;
}

.cuadro-rojo {
  width: 100%;
}

.section-home-2:before {
  top: -10rem;
  z-index: 1;
}

#logoHeader {
  width: 70%;
}

.header-fix #logoHeader {
  width: 65%;
}




  /*============= Menu productos===============*/

/*   #menu-menu-productos-1,
  #menu-menu-productos {
    position: relative;
    width: 100%;
    display: inline-flex;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        ". ."
        ". .";
} */

.item-producto-menu {
  margin: 0 1vw;
}

.item-producto-menu a {
  color: white;
  text-decoration: none;
}

.item-producto-menu img {
  position: relative;
  z-index: 1;
  transform: translate(0px, -10%);
  display: block!important;
  height: auto;
  width: auto!important;
}

.item-producto-menu.noshadow-image img {
  top: -40px;
}

.item-producto-menu span {
  position: absolute;
  bottom: 0;
  color: white;
}

.item-producto-menu a:after {
  content: "";
  border-radius: 100%;
  height: 150px;
  width: 150px;
  background: var(--rojo);
  position: absolute;
  z-index: 0;
  top: 60%;
  margin: 0 auto;
  text-align: center;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: circle(100% at 50% 50%);
  display: block;
}

.item-producto-menu span {
  z-index: 1;
  position: absolute;
  bottom: 15%;
  color: white;
  margin: 0 auto;
  font-size: 22px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

#btnSearch, #btnSearchClose {
  color: white;
  right: 0px;
  position: fixed;
  top: 23px;
  background: var(--amarillo);
  height: auto;
  width: 85px;
  border-radius: 25px 0px 0px 25px;
  border: 0;
  font-size: 23px;
  padding: 20px;
  z-index: 5000;
  outline: none;
}

@keyframes animateBtnSearch  {
  0%{
  width: 83px;
  opacity: 1;
  right: 0px;
  }
  100%{
    width: 0px;
    opacity: 0;
    right: -10px;
    display: none;
  }
}

@keyframes animateBtnClose  {
  0%{

  }
  100%{
    top: 23px;
  }
}

.open-menu {
  display: flex;
  z-index: 999;
  width: 100%;
  align-items: center;
}

.form-search,
.form-search-header {
  position: fixed;
  float: right;
  right: 0px;
  height: 74px;
  width: 60%;
  z-index: 4000;
  background: #ffd100;
  top: 23px;
  display: none;
  align-items: center;
  border-radius: 20px 0px 0 20px;
  padding-left: 15px;
  opacity: 0;
  transition: all .3s ease-in-out;
  left: auto;
}

#searchsubmit {
  right: 12vw;
}

.open-form {
   animation: openFormDesktop .6s ease-in;
   animation-fill-mode: forwards;
   display: flex;
 }

 @keyframes openFormDesktop {
  0% {
    right: -10px;
  }
  100% {
    right: 0px;
    opacity: 1;
  }
}

 .form-search input,
 .form-search-header input {
    width: 67%;
  }

  #clearInput {
    top: 15%;
    right: 40%;
}

.data-single-recetario {
  width: 50%;
}

.icono-dificultad span {
  bottom: 5%;
}

.titulo-categoria-interiores-recetas-con-avena {
  width: 25vw;
}

/* .swiper-slide:after {
  height: 128px;
  bottom: -7rem;
} */

.section-conexion-1:after {
  height: 100px;
  bottom: -2rem;
}

.owl-infografias .owl-item img {
  height: 50vw;
}

.owl-infografias .owl-nav {
  bottom: -2rem;
  right: 80%;
}

/* .section-productos-3:before {
  height: 270px;
} */

.card-post .link-recetas {
  left: 20%;
}

.search-form-filter input.search-field {
  width: 93vw;
}

.categoria-item-blog-right,
.categoria-item-blog-left {
  height: calc(30% - 2*5px - 2*10px - 2px);
}

.categoria-item-blog-right {
  right: 30%;
}

.categoria-item-blog-left {
  left: 10%;
}

.section-conexion-1 {
  padding: 15vh 0;
}

img.img-conexion-1 {
  height: 75%;
  bottom: 6vh;
}

.tag-categoria-recetas-con-avena, .tag-categoria-dulce, .tag-categoria-comida, .tag-categoria-desayuno, 
.tag-categoria-postre, .tag-categoria-ensalada, .tag-categoria-bebida, .tag-categoria-snack, .tag-categoria-caliente {
  background-size: 15vw;
}

.tag-categoria-vida-saludable,
.tag-categoria-create-en-casa {
  background-size: 17vw;
}

.category #menu-menu-productos-1, 
.category #menu-menu-productos {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.btn-descubrelos {
  top: 80%;
}

.contenedor-formulario {
  height: 640px;
}

}/* ==== fin media 768px ==== */


@media (min-width: 992px) {

  .iframe iframe{
    height: 500px;
    width: 100%;
  }
  .ebprod ul{
    list-style: none;
    display: block;
    justify-content: space-between;
    align-content: center;
  }
  .ebprod ul li {
    margin-bottom: 3rem;
    width: 50%;
    float: left;
  }
  .linea {
    width: 263px;
    margin: 3% 10px 1%;
  }
  .mt-neg {
    margin-top: -3rem;
    padding-top: 6rem;
  }
  .susb .frecetario {
    margin-top: -75px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100% !important;
    height: 465px;
  }
  .pl-50{padding-left: 50px;}
  .pr-50{padding-right: 50px;}
  .container-custom {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  /*-------- Margenes lg-992------*/
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 7rem !important;
  }

  .mt-lg-8,
  .my-lg-8 {
    margin-top: 8rem !important;
  }

  .mt-lg-9,
  .my-lg-9 {
    margin-top: 9rem !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 7rem !important;
  }

  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 8rem !important;
  }

  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 9rem !important;
  }

  .open-menu {
    display:none;
  }

  #logoHeader {
    width: 70%;
  }

  .header-fix #logoHeader{
    width: 60%;
  }

  .imagen-tip-noticia-home:before {
    display: block;
  }

  .cuadro-rojo {
    background-color: var(--rojo);
  }

  .item {
    padding-top: 2vw;
  }

  .cuadro-rojo {
    background-color: var(--rojo);
    transform: skewY(-3deg);
    color: white;
    height: 300px;
    width: 400px;
    position: absolute;
    bottom: -55px;
    left: 0;
  } 



 /*  .home .section-home-2:after {

    height: 120px;
    top: -15%;
  } */
  
  .btn_navs {
    bottom: 6vh;
  }

  .btn-gvt-2 {
    background: var(--amarillo);
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    color: var(--cafe);
    height: 40px;
    display: table;
    width: 25%;
    margin: 0 auto;
    position: relative;
    margin-top: 5rem;
  }

  .categoria-item-blog-right {
    right: 2vw;
  }

  .section-home-6:before {
    top: -5rem;
    height: 100px;
  }

  .contenedor-formulario {
    position: absolute;
    transform: translateY(-9rem) skewY(0deg);
    height: auto;
  }

  .newsletter {
    height: auto;
    margin-top: 16rem;
    padding: 1vw 0;
  }

  .box-red span {
    top: 1vw;
  }
  
  .box-red span {
    --max-font: 20;
    --min-font: 15;
    width: 80%;
}

.box-red:after {
  top: 90%;
  width: 85%;
  height: 16vw;
}

  .form-search, .form-search-header {
    width: 40vw;
  }

  #searchsubmit {
    right: 7.5vw;
  }

  .section-productos-1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0px 5vh;
    margin-bottom: 5rem;
    margin-top: 2rem;
}

  .name-categoria span{
    transform: skewY(3deg);
    display: block;
    margin: 0 auto;
    --max-font: 25;
    --min-font: 15;
    font-size: var(--responsive);
    font-weight: bold;
  }

  .name-categoria {
    transform: skewY(-3deg) translate(0px, 32px);
    background-color: var(--rojo);
    color: white;
    height: 8rem;
    width: auto;
    margin: 0 auto;
    text-align: center;
    padding: 10% 15%;
    display: inline-flex;
    align-items: center;
    right: 10%;
    float: right;
    position: relative;
    margin-top: 0rem;
  }

  .dropbtn {
    width: 70%;
    margin-top: 0rem;
  }

  .page-numbers li {
    margin: 10px;
  }

  .page-numbers li span {
    height: 40px;
    width: 40px;
    padding: 7px;
  }
  
  .page-numbers li a {
    height: 40px;
    width: 40px;
    padding: 7px;
  }

  #menu-menu-categorias-tips-y-recetas {
    display: inline-flex;
    list-style: none;
  }

  .data-single-recetario {
    position: absolute;
    background: white;
    bottom: -3%;
    left: 20%;
    border-radius: 30px;
    padding: 30px;
    z-index: 1;
    width: 40vw;
  }

  .icono-tiempo {
    height: 120px;
    width: 120px;
    background: #3a2b23;
    border-radius: 100%;
    color: white;
    text-align: center;
    margin: 0 auto;
  }

  .icono-dificultad {
    margin: 0 auto;
    display: block;
    height: 120px;
    width: 120px;
  }
  
  .icono-dificultad span {
    position: absolute;
    bottom: 15%;
    color: white;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .icono-fecha {
    height: 120px;
    width: 120px;
    background: #3a2b23;
    border-radius: 100%;
    color: white;
    margin: 0 auto;
    text-align: center;
  }

  .sociales-interior-tips {
    transform: skewY(-3deg) translate(0, -11vh);
  }

  .list-tags ul li a{
    padding: 10px;
  }

  /* Dropdown Content (Hidden by Default) */
.dropdown-content {
  width: 70%;
}

#menu-menu-principal, 
#menu-menu-principal-1 {
  display: inline-flex;
  left: 0;
}

#menu-menu-productos-1,
#menu-menu-productos {
  display: inline-grid;
  padding: 0;
  list-style: none;
  left: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr ;
  gap: 0px 0px;
  transform: translate(-50%, -50%);
    left: 50%;
    position: relative;
    top: 50%;
}

.card-post .fecha-card {
  width: 10vw;

}

/*---------------------------------------------------*/
  
.header-search {
  height: 25vw;
}

.titulo-categoria-interiores-recetas-con-avena {
  width: 17vw;
}

.item-producto-menu img {
  height: auto;
  width: 155px!important;
}

.sociales-interior {
  transform: skewY(0deg);
  padding: 5px;
  margin-top: 0rem;
  height: 100px;
}

.separador-single-producto {
  transform: skewY(-3deg);
  margin-top: 8rem;
  height: 70px;
}

.diagonal-top-gris:before {
  transform: skewY(-3deg);
  height: 100px;
}

.link-category-productos img {
  top: 2vw;
}

.link-category-productos.noshadow-image img {
  top: 1vw;
}

.intro-section-category {
  height: 20rem;
  align-items: center;
  display: flex;
}

.owl-productos .owl-nav {
  width: 110%;
  left: -5%;
}

.vertical-footer:before {
  top: 0rem;
}

.section-tips-recetas-2:before {
  content: "";
  position: absolute;
  height: 130px;
  width: 100%;
  background-color: #ffffff;
  transform: skewY(
-3deg
);
  top: -6vh;
  left: 0;
  z-index: 0;
}

.img-conexion-1 {
  height: 70%;
  bottom: 4vw;
}

.owl-infografias .owl-item img {
  height: 40vw;
}

/* .owl-infografias .owl-item img {
  height: 100%;
} */

.owl-infografias .owl-nav {
  bottom: 20%;
  right: 31%;
}

ul.sub-menu {
  width: 16vw;
  padding: 0;
}

ul.sub-menu.show-submenu li a {
  margin: 5px 0;
  display: block;
}

.search-form-filter select#tag,
.search-form-filter #tipo-de-alimento,
.search-form-filter #momentos-de-consumo,
.search-form-filter #tipo-de-sabor {
  width: 20%;
}

.box-social h5 {
    --max-font: 14;
    --min-font: 10;
    font-size: var(--responsive);
}

.btn-descubrelos {
  padding: 1vmax 2vmax;
  top: 80%;
}

.item-producto-menu {
  margin: 0 1vw;
}

.categoria-item-blog-left {
  left: 15%;
  height: 5vh;
  width: auto;
}

.categoria-item-blog-right {
  right: 10%;
  height: 5vh;
  width: auto;
}

.img-conexion-1 {
  height: 80%;
  bottom: 7vh;
}

.section-productos-2:after {
  height: 10vh;
}

.text-infografia {
  padding: 20vh 0;
}

.category #menu-menu-productos-1, .category #menu-menu-productos {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.list-tags ul {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        ". ."
        ". .";
    gap: 10px 0px;
}

.search-form-filter input.search-field {
  width: auto;
}

.contenedor-formulario-contacto {
  padding: 45px;
}

.wpcf7 .wpcf7-recaptcha iframe {
  margin-bottom: 0;
  transform: scale(1) translate(0vw,0);
}

} /* ==== fin media 992px ==== */

@media (min-width: 1000px) {

/* #menu-menu-productos-1,
#menu-menu-productos {
  display: inline-flex;
}
 */
}/* ==== fin media 1000px ==== */

@media (min-width: 1200px) {

  .iframe iframe{
    height: 600px;
    width: 100%;
  }
  .linea{
    width:338px;
    margin: 2% 10px 1%;
  }
  .ebprod ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-content: center;
  }
  .susb .frecetario {
    margin-top: -40px;
  }

  /*-------- Margenes xl-1200------*/
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 6rem !important;
  }

  .mt-xl-7,
  .my-xl-7 {
    margin-top: 7rem !important;
  }

  .mt-xl-8,
  .my-xl-8 {
    margin-top: 8rem !important;
  }

  .mt-xl-9,
  .my-xl-9 {
    margin-top: 9rem !important;
  }

  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 6rem !important;
  }

  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 7rem !important;
  }

  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 8rem !important;
  }

  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 9rem !important;
  }

  .container-custom {
    width: 80%;
}

  #menu-menu-principal li {
    margin: 0 35px;
  }

  #searchsubmit {
    right: 8vw;
  }

  .header-recetario .img-header-single-recetario {
    height: 40vw;
  }
  
  #logoHeader {
    width: 80%;
  }
  
  .header-fix #logoHeader{
  	width: 75%;
   }
  
/* .item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: 0px 50%;
} */

/*   .swiper-slide:after {
    bottom: -1rem;
    height: 130px;
  } */

  .cuadro-rojo {
    height: 230px;
    width: 30vw;
    bottom: 6%;
}

  /*-------------------------- menu productos -------------- */
  .item-producto-menu img {
    height: auto;
    width: auto;
  }

  .item-producto-menu:after {
    height: 150px;
    width: 150px;
  }

  .item-producto-menu span {
    bottom: 10%;
  }

  .item-producto-menu {
    margin: 0 2.4vw;
  }

  #menu-menu-productos-1, #menu-menu-productos {
    display: inline-flex;
    gap: 0px 0px;
  }

  .img-conexion-1 {
    bottom: 5vw;
    height: 60%;
    width: 100%;
    object-fit: cover;
    left: 5vw;
}

.name-categoria {
  transform: skewY(-3deg) translate(0px, 45px);
}


.wpcf7-form-control.wpcf7-submit {
  width: 17vw;
}

.titulo-categoria-interiores-recetas-con-avena {
  width: 10vw;
}

.menu-menu-productos-container {
  margin-top: 5rem;
}

.diagonal-top-gris:before {
  transform: skewY(-2deg);
  height: 100px;
}

.section-productos-1 {
  height: 80vh;
  margin-top: 1rem;
}

.section-tips-recetas-2:before {
  top: -5vh;
  height: 15vh;
}

.owl-infografias .owl-nav {
  position: absolute;
  bottom: 9vw;
  right: 30%;
  z-index: 999;
}

.rq-conexion {
  height: 70%;
  top: 0vw;
}

.categoria-item-blog-right {
    height: 60px;
    width: auto;
    transform: translate(10px, 10px);
    right: 10%;
}

.categoria-item-blog-left {
  height: 60px;
  width: auto;
  transform: translate(10px, 10px);
  left: 1vw;
}


.search-form-filter input.search-field {
  margin-right: 2rem;
  padding: 12px 15px;
  border-radius: 30px;
  color: #716f6f;
  margin-bottom: 0px;
  width: 100%;
}

.search-form-filter {
  margin: 0vw auto;
}

.cuadro-rojo {
  width: 50vw;
}

.box-red span {
  width: 75%;
}

.header-recetario:after {
  bottom: -4vh;
}

.text-infografia {
  padding: 10vh 5vh;
}

.section-contacto-1 {
  height: 60vh;
}

.card-post img {
  height: 30vh;
}

.section-productos-2:after {
  height: 15vh;
  bottom: -5vh;
}

.card-post .link-recetas {
  top: 25vh;
  left: 15%;
}

.header-recetario .img-header-single-recetario {
  height: 80vh;
  width: 100%;
  object-position: 0% -10vw;
}

.section-categoria-header {
  height: 80vh;
}

.box-red:after {
  height: 14vw;
}

.owl-info-producto .owl-nav {
    position: absolute;
    top: 110%;
    width: 30%;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

} /* ==== fin media 1200px ==== */

@media (min-width: 1336px) {
  .linea {
    width: 335px;
    margin: 2.5% 10px 1%;
  }
/*   .swiper-slide:after {
    bottom: 0rem;
    height: 120px;
  } */

  .sociales-interior-tips {
    transform: skewY(-3deg) translate(0, -5rem);
  }

/*   .section-productos-3:before {
    height: 17rem;
    top: -5vw;
} */

/*   .swiper-slide:after {
    bottom: 0rem;
  } */

.item {
  padding-top: 5vw;
}


}/* ==== fin media 1360px ==== */

@media (min-width: 1400px) {

  .iframe iframe{
    height: 700px;
    width: 100%;
  }
  .linea{
    width:420px;
  }

  /*-------- Margenes xl-1200------*/
  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 6rem !important;
  }

  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 7rem !important;
  }

  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 8rem !important;
  }

  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 9rem !important;
  }

  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 6rem !important;
  }

  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 7rem !important;
  }

  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 8rem !important;
  }

  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 9rem !important;
  }

/*   .swiper-slide:after {
    bottom: 2rem;
    height: 100px;
  } */

  .item {
    padding-top: 2vw;
  }

  nav:after {
    height: 110px;
  }

  .cuadro-rojo {
    height: 270px;
    width: 20vw;
    bottom: 5%;
    z-index: 2;
  }

  .item-producto-menu img {
    width: 180px!important;
  }

  .item-producto-menu:after {
    height: 180px;
    width: 180px;
  }

  .contenedor-loader .logo_loader {
    width: 15%;
    left: 43%;
    top: 45%;
  }

  .wpcf7-form.init {
    background-color: var(--gris_claro);
  }

  .form-search, .form-search-header {
  width: 33vw;
  }

  .data-single-recetario {
  width: 30vw;
  }

  .name-categoria {
  transform: skewY(-3deg) translate(0px, 35px);
  }

  #searchsubmit {
  right: 100px;
  }

  .card-post .fecha-card {
  width: 7vw;
  }

  .titulo-categoria-interiores-recetas-con-avena {
  height: 100%;
  width: 10vw;
  bottom: -5vw;
  }
  
  .intro-section-category {
  margin-bottom: 0rem;
  }

  .item-producto-menu a:after {
  height: 180px;
  width: 180px;
  }

  .section-productos-1 img {
  object-position: 0px 1vh;
  }

  .section-productos-2:after {
    bottom: -4vh;
    height: 10vh;
}

/* .section-productos-3:before {
  height: 25rem;
} */

.img-conexion-1 {
    height: 75%;
    bottom: 3vw;
    object-fit: cover;
    width: 85%;
    float: right;
    right: 0;
    position: relative;
    left: 5vw;
}

.categoria-item-blog-right,
.categoria-item-blog-left {
  height: 8vh;
}

.card-tips span {
  min-height: 70px;
}

#menu-menu-productos-1, #menu-menu-productos {
  gap: 0px 0px;
}

.item-producto-menu {
  margin: 0 1.8vw;
}

.imagen-tip-noticia-home:before {
  height: calc(130% - 2*5px - 2*10px - 2px);
}

.tag-categoria-recetas-con-avena, .tag-categoria-dulce, .tag-categoria-comida, .tag-categoria-desayuno, 
.tag-categoria-postre, .tag-categoria-ensalada, .tag-categoria-bebida, .tag-categoria-snack, .tag-categoria-caliente {
  background-size: 10vw;
}

.tag-categoria-vida-saludable,
.tag-categoria-create-en-casa {
  background-size: 12vw;
}

.header-recetario:after {
  bottom: -4vh;
}

.section-categoria-header {
  height: 60vh;
}

.section-productos-1 {
  height: 60vh;
}

.header-recetario .img-header-single-recetario {
  height: 60vh;
}

.section-categoria-header {
  height: 60vh;
}

}/* ==== fin media 1400px ==== */


@media (min-width: 1600px) {
  .linea{
    width:393px;
  }
  .frecetario{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 15px;
    position: absolute;
    width: 100% !important;
    height: 490px !important;
    margin-top: -170px;
    box-shadow: 10px 2px 15px var(--gray);
  }
  .pt-5rem{
    padding-top: 15rem;
  }
  .item-producto-menu {
    margin: 0 2.5vw;
  }

  #menu-menu-productos-1, #menu-menu-productos {
    gap: 0px 1vw;
}


}/* ==== fin media 1600px ==== */

/************
    GiveAway
 */

/*.section-banner-giveaway picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

.giveaway-description {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--amarillo);
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    height: 261px;
    font-size: calc(16px + (28 - 16) * ((100vw - 340px) / (1920 - 340)));
    line-height: calc(24px + (32 - 24) * ((100vw - 340px) / (1920 - 340)));
    margin-top: -26px;
    margin-bottom: calc(40px + (120 - 40) * ((100vw - 340px) / (1920 - 340)));
}

.giveaway-description p {
    margin-top: 20px;
    font-family: "Signika", sans-serif;
}

.giveaway-suerte {
    width: 100%;
    position: relative;
    font-size: calc(10px + (40 - 24) * ((100vw - 340px) / (1920 - 340)));
    line-height: 1;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

.giveaway-suerte p {
    position: relative;
    background-color: #fff;
    padding: 0 calc(15px + (30 - 15) * ((100vw - 340px) / (1920 - 340)));
    font-family: "Signika", sans-serif;
    z-index: 10;
}

.giveaway-suerte::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 35%;
    background-color: var(--amarillo);
}

.terminos {
    margin-bottom: 80px;
    color: var(--gray);
    font-size: 12px;
}

.terminos h4 {
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
}

.p92 {
    margin-top: 92px;
}

.giveaway {
    font-family: 'Signika', sans-serif;
}

.giveaway-titles h3 {
    font-weight: 400 !important;
    font-size: calc(24px + (40 - 24) * ((100vw - 340px) / (1920 - 340)));
    line-height: calc(32px + (56 - 32) * ((100vw - 340px) / (1920 - 340)));
    margin-bottom: 20px
}

.giveaway-titles h3 span {
    color: var(--rojo);
    font-weight: 700;
}

.giveaway-list {
    font-size: calc(20px + (28 - 20) * ((100vw - 340px) / (1920 - 340)));
    line-height: calc(26px + (32 - 26) * ((100vw - 340px) / (1920 - 340)));
}

.giveaway-list_item {
    margin-bottom: 25px;
}

.giveaway-list_item a {
    color: var(--cafe);
}

.giveaway-list_item-number {
    display: flex;
    align-items: center;
    margin-right: calc(20px + (40 - 20) * ((100vw - 340px) / (1920 - 340)));
}

.giveaway-list_item-number span {
    display: flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: var(--amarillo);
    font-size: calc(20px + (28 - 20) * ((100vw - 340px) / (1920 - 340)));
    line-height: calc(26px + (32 - 26) * ((100vw - 340px) / (1920 - 340)));
    font-weight: 700;
}

.giveaway-list_item-text {
    display: flex;
    align-items: center;
}

.giveaway-form {
    border-radius: 40px;
    border: 3px solid var(--amarillo);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    padding: 20px 40px;
    font-family: 'Signika', sans-serif;
}

.giveaway-form label {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--negro-grisaceo);
    margin-bottom: 5px;
}

.giveaway-form input {
    border: none;
    border-radius: 20px;
    background-color: var(--gris-claro);
    width: 100%;
    height: 60px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.giveaway-form input[type=submit] {
    background-color: var(--amarillo);
    padding: 12px 28px;
    height: 52px;
    font-family: 'Roboto', sans-serif;
    color: var(--cafe);
    font-size: 20px;
    font-weight: 900;
    line-height: 28px;
}

.giveaway-file {
    width: 0.1px !important;
    height: 0.1px !important;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.giveaway-form_box-file label {
    width: 100%;
    height: 104px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gris-dark)
}

.giveaway-file + label {
    max-width: 100%;
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: 2px dashed var(--gris-dark);
    border-radius: 20px;
    margin-bottom: 20px;
}

.giveaway-file + label svg {
    margin-right: 20px;
}

/*elige bien landing*/
.w-full{
  width: 100%;
}