@font-face {
  font-family: 'New Order';
  src: url('../fonts/fonnts.com-New_Order_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'New Order';
  src: url('../fonts/fonnts.com-New_Order_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'New Order';
  src: url('../fonts/fonnts.com-New_Order_Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'New Order';
  src: url('../fonts/fonnts.com-New_Order_Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'New Order';
  src: url('../fonts/fonnts.com-New_Order_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Bourbonst';
  src: url('../fonts/typeverything-bourbonst-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: #111111;
  --blue: #1e9eaf;
  --blue-original: #20869a;

  /**
   * tipografia
   */

  --ff-new-order: 'New Order', sans-serif;
  --ff-bourbonst: 'Bourbonst', sans-serif;
  --ff-figtree: "Figtree", sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


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

li {
  list-style: none;
}

a,
img,
time,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  opacity: 0;
  background-color: var(--black);
  font-size: 1.6rem;
  font-family: var(--ff-new-order);
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
  transition: all 500ms ease;
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}




.container {
  padding-inline: 16px;
  margin-inline: auto;
}

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  font-family: var(--ff-figtree);
  font-weight: 300;
  background-color: rgba(17, 17, 17, 0.6);
}

.header.active {
  position: fixed;
  background-color: rgba(17, 17, 17, 0.6);
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 2.5rem 3rem;
  font-weight: 400;
  font-size: 1.5rem;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

.navbar-list img {
  height: 4.7rem;
}

.bolsa {
  position: relative;
}

.bolsa img {
  width: 1.7rem;
}

.numero-bolsa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  background-color: var(--blue);
  padding: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  right: -50%;
}

.logo-mobile {
  display: none;
}

.link-active {
  background-color: var(--blue);
}

/*-----------------------------------*\
  #TIENDA
\*-----------------------------------*/

/* hero banner de la tienda */

.hero-banner {
  width: 100%;
  height: 100vh;
  background-image: url('../images/fotografias/fotoherotienda.png');
  background-size: cover;
}

.hero-banner .container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner h1 {
  position: absolute;
  bottom: 9.5%;
  right: 0;
  white-space: pre-line;
  text-align: end;
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 6rem;
  line-height: 6.5rem;
  font-weight: 400;
}

/* productos section de la tienda */

.flex-container-products {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 5rem;
}

.main-product-container {
  width: 45%;
}

.img-main-product-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-main-product-container:hover>.ver-producto-btn-main {
  bottom: 0;
}

.ver-producto-btn-main {
  position: absolute;
  color: var(--white);
  background-color: var(--blue);
  width: 100%;
  padding-block: 1rem;
  text-align: center;
  font-size: 2.2rem;
  bottom: -15%;
  transition: all 300ms ease-out;
}

.ver-producto-btn-main:hover {
  background-color: var(--blue-original);
}

.img-main-product-container img {
  width: 100%;
}

.nombre-main-product {
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 3.7rem;
  font-weight: 400;
}

.others-products-container {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5rem;
}

.other-product {
  width: 44%;
}

.img-other-product {
  position: relative;
  overflow: hidden;
}

.ver-producto-btn-other {
  position: absolute;
  bottom: -15%;
  color: var(--white);
  background-color: var(--blue);
  width: 100%;
  padding-block: .5rem;
  transition: all 500ms ease;
}

.ver-producto-btn-other:hover {
  background-color: var(--blue-original);
}

.img-other-product:hover>.ver-producto-btn-other {
  bottom: 0;
}

.img-other-product img {
  width: 100%;
}

.precio-main-product {
  color: var(--blue);
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.text-main-product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.text-other-product-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nombre-other-product {
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 2.3rem;
  font-weight: 400;
}

.precio-other-product {
  color: var(--blue);
  font-weight: 600;
  margin-top: .7rem;
}

/* frase section de la tienda */

.frase-section {
  background-image: url('../images/svg/destello.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18%;
}

.frase-section h3 {
  color: var(--white);
  font-weight: 400;
  white-space: pre-line;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

/* Consejos section de la tienda */

#cursor-imagen {
  position: fixed;
  top: 0;
  left: 0;
  width: 18rem;
  pointer-events: none;
  border: 1px solid var(--blue);
  z-index: 1;
  display: none;
  /* oculto por defecto */
}

.consejos-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 4.5rem;
}

.consejos-section h2 {
  font-size: 4.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.consejos-section a {
  background-color: var(--blue);
  padding: .5rem 5rem;
  font-size: 4.5rem;
  transition: all 500ms ease;
  position: relative;
  z-index: 2;
}

.consejos-section a:hover {
  background-color: var(--blue-original);
}

/* Formlario de contactio section en la tienda */

h2 {
  text-align: center;
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 5rem;
  font-weight: 400;
}

form label {
  color: var(--white);
  font-size: 1.7rem;
}

form input {
  border: 1px solid var(--blue);
  color: var(--white);
  padding: .5rem 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

form textarea {
  display: block;
  width: 100%;
  height: 9rem;
  margin-top: 1rem;
  background-color: var(--black);
  border-style: none;
  border: 1px solid var(--blue);
  color: var(--white);
  padding: .5rem 1rem;
  font-family: var(--ff-new-order);
}

textarea:focus {
  outline: none;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 3rem;
}

.icon-form-container {
  width: 50%;
}

form {
  width: 50%;
  position: relative;
}

#destello-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 18rem;
  pointer-events: none;
  z-index: 1;
  display: none;
}

/* detalle producto modal en la tienda */

@keyframes aparicionDetalleProducto {
  to {
    opacity: 1;
  }
}

@keyframes aparicionDetalleProductoBg {
  to {
    opacity: .7;
  }
}

@keyframes desaparicionDetalleProducto {
  to {
    opacity: 0;
  }
}

.detalle-producto-container {
  opacity: 0;
  position: fixed;
  width: 100rem;
  height: 47rem;
  top: 0;
  right: 0;
  bottom: -200%;
  left: 0;
  margin: auto;
  overflow: hidden;
  background-color: var(--black);
  border: 1px solid var(--blue);
  z-index: 10;
}

.bg-detalle-producto-modal {
  position: fixed;
  bottom: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  opacity: 0;
  z-index: 9;
}

.aparecer-detalle-producto {
  animation: aparicionDetalleProducto .6s ease-out forwards;
}

.desaparecer-detalle-producto {
  animation: desaparicionDetalleProducto .6s ease-out forwards;
}

.aparecer-bg-detalle-producto {
  animation: aparicionDetalleProductoBg .6s ease-out forwards;
}

.desaparecer-bg-detalle-producto {
  animation: desaparicionDetalleProducto .6s ease-out forwards;
}

.flex-column-images-detalle-product {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  direction: rtl;
  align-items: center;
  gap: 1rem;
  overflow-y: scroll;
}

.img-detalle-product-selected {
  opacity: 1 !important;
}

.flex-column-images-detalle-product img {
  width: 8rem;
  height: 11rem;
  cursor: pointer;
  opacity: .6;
  transition: all 600ms ease;
}

.main-image-detalle-producto-container img {
  width: 28rem;
  height: 100%;
  object-fit: cover;
}

.images-detalle-producto-container {
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}

.detalle-producto-container {
  padding: 6rem 10rem;
}

.main-image-detalle-producto-container {
  height: 100%;
  width: 28rem;
}

.detalle-producto-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

.text-detalle-producto-container h2 {
  text-align: start;
  font-size: 3.5rem;
}

.precio-detalle-producto {
  color: var(--blue);
  font-size: 2.1rem;
  font-weight: 600;
  margin-top: 2rem;
}

.descripcion-detalle-producto {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 2rem;
  white-space: pre-line;
  margin-top: 1.5rem;
}

.cantidad-detalle-producto-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cantidad-detalle-producto-container p:first-child {
  color: var(--white);
}

.botones-cantidad-detalle-producto-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 3rem;
}

.btn-detalle-producto {
  position: relative;
  display: flex;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  padding: 1.1rem .6rem;
  height: 2rem;
  color: var(--blue);
  border: 1px solid var(--blue);
  transition: all 100ms ease;
}

.btn-detalle-producto svg {
  position: absolute;
  width: 2rem;
}

.btn-detalle-producto:hover {
  background-color: var(--blue);
  color: var(--white);
}

.cantidad-detalle-producto {
  color: var(--blue);
  font-weight: 500;
  width: 4rem;
  text-align: center;
}

.agregar-bolsa-btn-detalle-producto-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-block: .5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 6rem;
  margin-bottom: 3rem;
  background-color: var(--blue);
  color: var(--white);
  transition: all 500ms ease;
}

.agregar-bolsa-btn-detalle-producto-container:hover {
  background-color: var(--blue-original);
}

.agregar-bolsa-btn-detalle-producto-container p {
  font-size: 1.8rem;
}

.agregar-bolsa-btn-detalle-producto-container img {
  width: 1.5rem;
  margin-bottom: .5rem;
}

.desc-product {
  display: none;
}

.btn-enviar-formulario {
  position: absolute;
  width: 50%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  margin-inline: auto;
  margin-top: 3rem;
  cursor: pointer;
  font-size: 2rem;
  padding: 0;
  background-color: var(--blue);
  transition: all 500ms ease;
}

.btn-enviar-formulario:hover {
  background-color: var(--blue-original);
}

/*-----------------------------------*\
  #RECETARIO
\*-----------------------------------*/

.recetas-section h1 {
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 6rem;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
}

.fotos-recetas-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.receta-container {
  width: 100%;
  height: 90rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 4rem;
}

.receta {
  position: relative;
  overflow: hidden;
  width: 15rem;
  border: 1px solid var(--blue);
}

.receta img {
  width: 100%;
}

.receta-1 {
  width: 12rem;
  height: 100%;
}

.receta-2 {
  width: 14rem;
  height: 100%;
}

.receta-3 {
  width: 13rem;
  height: 100%;
}

.receta-5 {
  width: 10rem;
  height: 100%;
}

.receta-6 {
  width: 14rem;
  height: 100%;
}

.receta-7 {
  width: 12rem;
  height: 100%;
}

.receta-8 {
  width: 13.5rem;
  height: 100%;
}

.receta:hover>.nombre-receta-foto {
  bottom: 0;
}

.nombre-receta-foto {
  width: 100%;
  position: absolute;
  font-size: 2rem;
  bottom: -40%;
  padding-top: 2rem;
  background: #1E9EAF;
  background: linear-gradient(360deg, rgba(30, 158, 175, 1) 0%, rgba(87, 199, 133, 0) 80%);
  color: var(--white);
  font-family: var(--ff-bourbonst);
  text-align: center;
  transition: all 500ms ease;
}

.detalle-receta {
  margin-top: 13rem;
  position: absolute;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8rem;
  opacity: 0;
  transition: all 600ms ease;
}

.img-detalle-receta {
  width: 35%;
  border: 1px solid var(--blue);
}

.text-detalle-receta-container {
  width: 50%;
  color: var(--white);
}

.text-detalle-receta-container h2 {
  color: var(--blue);
  text-align: left;
}

.desc-detalle-receta {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: 2rem;
}

.desc-detalle-receta span {
  color: var(--blue);
  font-family: var(--ff-bourbonst);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .2rem;
}

.accordion {
  color: var(--light-brown);
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-inline: auto;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--ff-figtree);
  font-weight: 500;
}

.accordion:first-of-type {
  margin-top: 2rem;
}

.accordion:last-of-type {
  margin-top: 1rem;
}

.accordion svg {
  width: 1.7rem;
  transition: all 300ms ease;
}


.active

/* , .accordion:hover */
  {
  border-bottom: none;
  font-weight: 500;
}

.panel {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  line-height: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--light-brown);
  border-bottom: solid var(--green) 0.5px;
  font-size: 1.4rem;
  text-align: justify;
  display: flex;
  gap: 5rem;
}

.panel span {
  color: var(--blue);
  font-family: var(--ff-bourbonst);
  font-size: 1.9rem;
}

.first-flex-panel span {
  color: var(--blue);
  font-family: var(--ff-bourbonst);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: .1rem;
}

.recipe-active {
  opacity: 1;
  right: 0;
  top: 0;
  z-index: 5;
}

.etiqueta-section {
  margin-top: -28rem;
  position: relative;
  z-index: 5;
}

.etiqueta-section h2 {
  white-space: pre-line;
  text-align: center;
  font-size: 4rem;
  line-height: 4rem;
}

.etiqueta-section h2 a {
  color: var(--blue);
  font-size: 5.5rem;
  display: inline;
}

.etiqueta-section h2 a:hover {
  text-decoration: underline;
}

.img-footer-section {
  width: 100%;
  margin-top: 10rem;
}

.img-footer-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #AGE FILTER
\*-----------------------------------*/

.filtro-edad-section {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-image: url('../images/fotografias/bg-filtro.webp');
  z-index: 401;
  background-position: center;
  background-size: contain;
  transition: all 500ms ease;
}

.cerrar-filtro {
  display: none;
}

.filtro-edad-section .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filtro-content-container p {
  color: var(--white);
  text-align: center;
  width: 60%;
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-family: var(--ff-figtree);
  margin-inline: auto;
  margin-top: 5rem;
}

.filtro-content-container p:last-of-type {
  margin-top: 2rem;
}

.filtro-content-container h2 {
  font-family: var(--ff-bourbonst);
  font-size: 4rem;
  letter-spacing: .5rem;
}

.filtro-logo {
  width: 10rem;
  margin-inline: auto;
}

.btns-filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.btns-filter-container button,
.btns-filter-container a {
  color: var(--white);
  background-color: var(--blue);
  width: 15rem;
  font-size: 2.5rem;
  transition: all 500ms ease;
  text-align: center;
}

.btns-filter-container button:hover,
.btns-filter-container a:hover {
  background-color: var(--blue-original);
  transform: scale(.9);
}

.filtro-content-container h6 {
  color: #ccc;
  text-align: center;
  margin-top: 3rem;
  font-size: .6rem;
  font-style: italic;
}

.agave-filter-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.agave-filter-container svg {
  width: 2rem;
  color: #ccc;
  margin-inline: auto;
}

/*-----------------------------------*\
  #INDEX
\*-----------------------------------*/

.hero-banner-index {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/assets_index/1x/hero.png');
  background-size: cover;
}

.bg-black-hero-index {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150vh;
  background: #111111;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.60) 0%, rgba(17, 17, 17, 1) 100%);
}

.hero-banner-index .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

.hero-banner-index .container h1 {
  color: var(--blue);
  white-space: pre-line;
  text-align: center;
  font-weight: 400;
  font-size: 6rem;
  line-height: 6.3rem;
  margin-top: 22%;
}

.hero-banner-index .container h1 span {
  color: var(--white);
  font-weight: 700;
}

.bottle-section-index {
  position: relative;
}

.icons-bottle-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.first-flex-icons-bottle-container,
.second-flex-icons-bottle-container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}


.second-flex-icons-bottle-container {
  margin-top: 7rem;
}

.icon-bottle-container {
  width: 35rem;
}

.icon-bottle-container h2 {
  font-size: 4rem;
  letter-spacing: .2rem;
}

.img-bottle-container {
  width: fit-content;
  margin-inline: auto;
}

.icon-bottle-container svg {
  width: 13rem;
  margin-top: 2rem;
}

.first-flex-icons-bottle-container .icon-bottle-container:last-of-type svg {
  width: 10rem;
}

.second-flex-icons-bottle-container .icon-bottle-container:last-of-type svg {
  width: 17rem;
}

.icon-bottle-container p {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 2rem;
  white-space: pre-line;
  text-align: center;
  margin-top: 3rem;
}

.icon-bottle-container p span {
  font-weight: 600;
}

.btn-bottle-section-index {
  width: fit-content;
  color: var(--white);
  font-family: var(--ff-bourbonst);
  font-size: 4.5rem;
  margin-inline: auto;
  margin-top: 20rem;
  margin-bottom: 11rem;
  background-color: var(--blue);
  padding: .5rem 10rem;
  transition: all 500ms ease;
}

.btn-bottle-section-index:hover {
  background-color: var(--blue-original);
}

.bottle-imgs-section-index {
  margin-bottom: 10rem;
}

.bottle-imgs-section-index article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.bottle-imgs-section-index img {
  width: 33.33%;
}

model-viewer {
  width: 38%;
  height: 130rem !important;
  right: 0;
  left: 0;
  top: -35rem;
  position: absolute;
  margin-inline: auto;
  z-index: 10;
  opacity: 0;
  transition: all 500ms ease;
}

model-viewer::part(default-progress-bar) {
  display: none;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.links-footer-container a {
  font-size: 1.5rem;
  transition: all 500ms ease;
  line-height: 2.2rem;
  width: fit-content;
  display: block;
}

.left-container-footer p {
  color: var(--blue);
  font-size: 1.5rem;
  margin-top: 3rem;
}

.links-footer-container a:hover {
  color: var(--blue);
}

.center-container-footer img {
  width: 5rem;
}

.center-container-footer h3 {
  font-family: var(--ff-bourbonst);
  font-size: 3.5rem;
  font-weight: 400;
}

.center-container-footer p {
  font-size: 1.4rem;
}

.center-container-footer {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rigth-container-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.social-icons-footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 1rem;
  margin-top: 1rem;
}

.rigth-container-footer h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.social-icons-footer-container img {
  width: 3.8rem;
}

.powered-footer-container {
  display: flex;
  align-items: center;
  margin-top: 3rem;
}

.powered-footer-container img {
  width: 5rem;
  margin-top: .3rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  color: var(--white);
  font-family: var(--ff-figtree);
}

.footer.section {
  padding-block: 6rem;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/

@media (min-width: 300px) and (max-width: 399px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .container {
    max-width: 370px;
    width: 100%;
    margin-inline: auto;
  }

  .header {
    padding-block: 1rem;
  }

  .header .btn {
    display: block;
  }

  .header .container {
    justify-content: space-between;
  }

  .navbar {
    background-color: var(--black);
  }

  .logo-mobile {
    display: block;
  }

  .logo-mobile img {
    width: 8rem;
  }

  .navbar-list .logo {
    display: none;
  }

  /* TIENDA */

  .hero-banner {
    height: 40vh;
  }

  .hero-banner h1 {
    bottom: -29.5%;
    text-align: center;
    font-size: 3.5rem;
    line-height: 3.5rem;
    left: 0;
    margin-inline: auto;
  }

  .flex-container-products {
    flex-direction: column;
    gap: 2rem;
  }

  .main-product-container {
    width: 100%;
  }

  .ver-producto-btn-main {
    bottom: 0;
  }

  .nombre-main-product {
    font-size: 3.3rem;
  }

  .precio-main-product {
    font-size: 2.3rem;
  }

  .others-products-container {
    width: 100%;
    row-gap: 4rem;
    column-gap: 0;
  }

  .other-product {
    width: 100%;
  }

  .ver-producto-btn-other {
    bottom: 0;
  }

  .text-other-product-container {
    justify-content: center;
    gap: 1rem;
  }

  .nombre-other-product {
    font-size: 3rem;
  }

  .precio-other-product {
    font-size: 2rem;
  }

  .frase-section {
    height: 24rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 60%;
  }

  .frase-section.section {
    padding-block: 0;
  }

  .frase-section h3 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .consejos-section .container {
    flex-direction: column;
    gap: 3rem;
  }

  .consejos-section h2 {
    line-height: 4.5rem;
  }

  .consejos-section a {
    width: 100%;
    text-align: center;
  }

  .form-section.section {
    padding-top: 0;
  }

  /* RECETARIO */
  .fotos-recetas-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
  }

  .fotos-recetas-container::-webkit-scrollbar {
    display: none;
  }

  .receta {
    flex: 0 0 auto;
    width: 15rem;
    border: 1px solid var(--blue);
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
  }

  .receta-1 {
    width: 14rem;
  }

  .receta-2 {
    width: 15rem;
  }

  .receta-3 {
    width: 14.5rem;
  }

  .receta-4 {
    width: 16rem;
  }

  .receta-5 {
    width: 12rem;
  }

  .receta-6 {
    width: 15rem;
  }

  .receta-7 {
    width: 14rem;
  }

  .receta-8 {
    width: 15rem;
  }

  .fotos-recetas-container {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .nombre-receta-foto {
    font-size: 1.6rem;
    bottom: 0;
  }

  .receta:hover>.nombre-receta-foto {
    bottom: 0;
  }


  .detalle-receta {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .img-detalle-receta {
    width: 80%;

  }

  .receta-container {
    transition: height 0.3s ease;
  }

  .text-detalle-receta-container {
    position: relative;
    width: 90%;
    margin-top: 5px;
  }

  .text-detalle-receta-container h2 {
    font-size: 5rem;
    line-height: 1.1;
    text-align: left;
  }

  .panel {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .etiqueta-section h2 {
    margin-top: 50px;
    font-size: 4rem;
  }

  .etiqueta-section h2 a {
    font-size: 4.5rem;
  }

  .img-footer-section img {
    height: 20rem;
  }

  /**
       * FOOTER
       */

  .footer-desktop {
    display: none;
  }

  .footer-mobile .container {
    flex-direction: column;
    gap: 4rem;
  }

  .links-footer-container a {
    text-align: center;
    width: 100%;
  }

  .powered-footer-container {
    margin-top: 6rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }
}

@media (min-width: 400px) and (max-width: 767px) {

  .header {
    padding-block: 1rem;
  }

  .header .btn {
    display: block;
  }

  .header .container {
    justify-content: space-between;
  }

  .navbar {
    background-color: var(--black);
  }

  .logo-mobile {
    display: block;
  }

  .logo-mobile img {
    width: 8rem;
  }

  .navbar-list .logo {
    display: none;
  }

  /* RECETARIO */
  .fotos-recetas-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
  }

  .fotos-recetas-container::-webkit-scrollbar {
    display: none;
  }

  .receta {
    flex: 0 0 auto;
    width: 15rem;
    border: 1px solid var(--blue);
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile .container {
    flex-direction: column;
    gap: 4rem;
  }

  .links-footer-container a {
    text-align: center;
    width: 100%;
  }

  .powered-footer-container {
    margin-top: 6rem;
  }

  .receta-1 {
    width: 14rem;
  }

  .receta-2 {
    width: 15rem;
  }

  .receta-3 {
    width: 14.5rem;
  }

  .receta-4 {
    width: 16rem;
  }

  .receta-5 {
    width: 12rem;
  }

  .receta-6 {
    width: 15rem;
  }

  .receta-7 {
    width: 14rem;
  }

  .receta-8 {
    width: 15rem;
  }

  .fotos-recetas-container {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .nombre-receta-foto {
    font-size: 1.6rem;
    bottom: 0;
  }

  .receta:hover>.nombre-receta-foto {
    bottom: 0;
  }

  .detalle-receta {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .img-detalle-receta {
    width: 60%;
  }

  .receta-container {
    transition: height 0.3s ease;
  }

  .text-detalle-receta-container {
    position: relative;
    width: 90%;
    margin-top: 5px;
  }

  .text-detalle-receta-container h2 {
    font-size: 5rem;
    line-height: 1.1;
    text-align: left;
  }

  .panel {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .etiqueta-section h2 {
    margin-top: 20px;
    font-size: 4rem;
  }

  .etiqueta-section h2 a {
    font-size: 4.5rem;
  }


  .img-footer-section img {
    height: 20rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn {
    display: block;
  }

  .header .container {
    gap: 40px;
  }



  /**
     * FOOTER
     */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 940px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {

  .header {
    padding-block: 1rem;
  }

  .header .btn {
    display: block;
  }

  .header .container {
    justify-content: space-between;
  }

  .navbar {
    background-color: var(--black);
  }

  .logo-mobile {
    display: block;
  }

  .logo-mobile img {
    width: 8rem;
  }

  .navbar-list .logo {
    display: none;
  }

  .fotos-recetas-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
  }

  .fotos-recetas-container::-webkit-scrollbar {
    display: none;
  }

  .receta {
    flex: 0 0 auto;
    width: 15rem;
    border: 1px solid var(--blue);
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
  }

  .receta-1 {
    width: 14rem;
  }

  .receta-2 {
    width: 15rem;
  }

  .receta-3 {
    width: 14.5rem;
  }

  .receta-4 {
    width: 16rem;
  }

  .receta-5 {
    width: 12rem;
  }

  .receta-6 {
    width: 15rem;
  }

  .receta-7 {
    width: 14rem;
  }

  .receta-8 {
    width: 15rem;
  }

  .fotos-recetas-container {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .nombre-receta-foto {
    font-size: 1.6rem;
    bottom: 0;
  }

  .receta:hover>.nombre-receta-foto {
    bottom: 0;
  }

  .receta-container {
    width: 95%;
    margin-inline: auto;
    height: 70rem;
    transition: height 0.3s ease;
  }

  .panel {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .footer-mobile {
    display: none;
  }

}

@media (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }

  .form-section .container {
    max-width: 1100px;
  }

  /**
     * HEADER
     */

  /* .header {
    padding-block: 24px;
  } */

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }



  .navbar-list {
    display: flex;
    align-items: center;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    text-transform: capitalize;
    transition: all 500ms ease;
  }

  .navbar-link:hover {
    background-color: var(--blue);
  }

  .bolsa {
    color: var(--white);
    position: absolute;
    right: 0;
  }


  /*
     * FOOTER
     */

  .footer {
    background-size: auto;
  }

  .footer-mobile {
    display: none;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }

  .form-section .container {
    max-width: 1100px;
  }

  /* TIENDA */

  .hero-banner h1 {
    right: -20%;
    font-size: 9rem;
    line-height: 9.5rem;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }



  .navbar-list {
    display: flex;
    align-items: center;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    padding-inline: 16px;
    text-transform: capitalize;
  }

  .bolsa {
    color: var(--white);
    position: absolute;
    right: 0;
  }

  .navbar-link {
    transition: all 500ms ease;
  }

  .navbar-link:hover {
    background-color: var(--blue);
  }


  /**
       * FOOTER
       */


  .footer-mobile {
    display: none;
  }

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }
}