@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;
}

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;
}
.overcart{
	display: none;
	position: fixed;
	z-index: 998;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #11111156;
}
.cart,
.overlay {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
}

.cart {
	right: -300px;
	max-width: 300px;
	background-color: var(--black);
	z-index: 999;
	transition: 0.25s var(--cubic-in);
	visibility: hidden;
}

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

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

.cart-header{
	display: flex;
	margin-top: 30px;
	justify-content: center;
	align-items: center;
	font-family: 'Bourbonst', sans-serif;
	font-size: 3.5rem;
	font-weight: 300;
	color: #1e9eaf;
}
.footer-cart{
	position: absolute;
	width: 100%;
	padding: 10px;
	bottom: 0;
}
.cart-list {
	height: 80vh;
  overflow: auto;
}

/* lista de productos en el carrito */
.li-cart {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-bottom: 1px solid #222;
  background: #111;
  user-select: none;
}

/* Fondo rojo con icono (a la derecha) */
.delete-bg {
  position: absolute;
  inset: 0;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  color: white;
  font-size: 2rem;
}

/* Contenido del producto */
.li-content {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px;
  height: 100%;
  width: 100%;
  background: #111;
  transition: transform 0.3s ease;
  will-change: transform;
}

.img-cart {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-cart {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  color: #ccc;
}
.info-cart h3 {
  font-size: 1.4rem;
}
.info-cart small {
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;  
  overflow: hidden;       
  text-overflow: ellipsis; 
}
.info-cart span {
  color: #1e9eaf;
}

/* Eliminación hacia la izquierda */
.li-cart.removing .li-content {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- 💫 Animación para mostrar que se puede deslizar --- */
@keyframes hintSwipe {
  0% { transform: translateX(0); }
  20% { transform: translateX(-25px); }
  40% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

.li-cart.hint .li-content {
  animation: hintSwipe 1.2s ease;
}






.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 p {
	white-space: pre-line;
}

.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: relative;
	height: 100vh;
	display: flex;
	justify-content: center;
	margin-inline: auto;
	align-items: center;

}

.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;
}

.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;
	right: 0;
	left: 0;
	top: -35rem;
	position: absolute;
	margin-inline: auto;
	z-index: 10;
	transition: all 2000ms ease;
	will-change: transform !important;


}

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;
	}

	.form-container {
		flex-direction: column;
	}

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

	form {
		width: 100%;
	}

	.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;
	}

	.detalle-producto-container {
		width: 91%;
		height: 75vh;
		flex-direction: column;
		padding: 0 1.5rem;
		overflow-y: scroll;
		gap: 1rem;
	}

	.flex-column-images-detalle-product {
		width: 20%;
	}

	.images-detalle-producto-container {
		flex-direction: column-reverse;
		gap: 1rem;
		margin-top: 31rem;
	}

	.flex-column-images-detalle-product {
		width: 100%;
		flex-direction: row;
		justify-content: end;
	}

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

	/**
         * INDEX
         */

	.hero-banner-index {
		height: 100vh;
	}

	.hero-banner-index .container h1 {
		font-size: 5rem;
		line-height: 5.3rem;

	}

	.btn-bottle-section-index {
		width: 100%;
		font-size: 4rem;
		padding: 0;
		text-align: center;
	}

	model-viewer {
		top: -45rem;
		transition: all 500ms ease;
	}

	.bottle-imgs-section-index article {
		flex-direction: column;
		gap: 3rem;
	}

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

	.icons-bottle-container {
		flex-direction: column;
		gap: 10rem;
	}

	.icon-bottle-container {
		width: 100%;
	}

	.first-flex-icons-bottle-container,
	.second-flex-icons-bottle-container {
		width: 47%;
	}

	.second-flex-icons-bottle-container {
		margin-left: auto;
	}

	.icon-bottle-container p {
		font-size: .8rem;
		line-height: 1.1rem;
		width: 100%;
		margin-top: 1rem;
	}

	.icon-bottle-container svg {
		margin-top: 0;
	}

	.icon-bottle-container h2 {
		font-size: 3rem;
	}

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

	.icon-bottle-container svg {
		width: 100%;
	}

	main {
		overflow: hidden;
	}



	/**
       * 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: 400px) and (max-width: 767px) {
	:root {
		--headline-lg: 8rem;
		--headline-md: 4.8rem;

	}

	.container {
		max-width: 390px;
		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: -25.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;
	}

	.form-container {
		flex-direction: column;
	}

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

	form {
		width: 100%;
	}

	.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;
	}

	.detalle-producto-container {
		width: 91%;
		height: 75vh;
		flex-direction: column;
		padding: 0 1.5rem;
	}

	.flex-column-images-detalle-product {
		width: 20%;
	}

	.detalle-producto-container {
		width: 91%;
		height: 75vh;
		flex-direction: column;
		padding: 0 1.5rem;
		overflow-y: scroll;
		gap: 1rem;
	}

	.flex-column-images-detalle-product {
		width: 20%;
	}

	.images-detalle-producto-container {
		flex-direction: column-reverse;
		gap: 1rem;
		margin-top: 23rem;
	}

	.flex-column-images-detalle-product {
		width: 100%;
		flex-direction: row;
		justify-content: end;
	}

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

	/**
           * INDEX
           */

	.hero-banner-index {
		height: 100vh;
	}

	.hero-banner-index .container h1 {
		font-size: 5rem;
		line-height: 5.3rem;

	}

	.btn-bottle-section-index {
		width: 100%;
		font-size: 4rem;
		padding: 0;
		text-align: center;
	}

	model-viewer {
		opacity: 1 !important;
		top: -45rem;
		transition: all 500ms ease;
	}

	model-viewer::part(ar-button) {
		display: none !important;
	}

	.bottle-imgs-section-index article {
		flex-direction: column;
		gap: 3rem;
	}

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

	.icons-bottle-container {
		flex-direction: column;
		gap: 15rem;
	}

	.icon-bottle-container {
		width: 100%;
	}

	.first-flex-icons-bottle-container,
	.second-flex-icons-bottle-container {
		width: 47%;
	}

	.second-flex-icons-bottle-container {
		margin-left: auto;
	}

	.icon-bottle-container p {
		font-size: .8rem;
		line-height: 1.1rem;
		width: 100%;
		margin-top: 1rem;
	}

	.icon-bottle-container svg {
		margin-top: 0;
	}

	.icon-bottle-container h2 {
		font-size: 3rem;
	}

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

	.icon-bottle-container svg {
		width: 100%;
	}

	main {
		overflow: hidden;
	}

	/**
         * 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: 1199px) {
	: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;
	}

	.logo-mobile {
		display: block;
	}

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

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

	.header .container {
		justify-content: space-between;
		padding-block: 1rem;
	}

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


	/**
       * TIENDA
       */

	.hero-banner {
		height: 50vh;
	}

	.hero-banner h1 {
		right: 60px;
		font-size: 5rem;
	}

	.flex-container-products {
		flex-direction: column;
	}

	.main-product-container {
		width: 65%;
		margin-inline: auto;
	}

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

	.others-products-container {
		width: 100%;
		justify-content: center;
	}

	.ver-producto-btn-other {
		bottom: 0;
		padding-block: 0.8rem;
	}

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

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

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

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

	.frase-section h3 {
		font-size: 1.6rem;
		line-height: 2rem;
	}

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

	.footer-mobile {
		display: none;
	}

	/**
       * INDEX
       */

	model-viewer {
		height: 150rem !important;
		top: -45rem;
	}

	.hero-banner-index .container h1 {
		font-size: 8rem;
		line-height: 8.3rem;

	}

	.btn-bottle-section-index {
		margin-top: 30rem;
	}

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

	.consejos-section {
		padding-bottom: 0;
	}

	model-viewer {
		top: -45rem;
		transition: all 500ms ease;
	}

	.bottle-imgs-section-index article {
		gap: 3rem;
	}

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

	.icons-bottle-container {
		flex-direction: column;
		gap: 10rem;
	}

	.icon-bottle-container {
		width: 100%;
	}

	.first-flex-icons-bottle-container,
	.second-flex-icons-bottle-container {
		width: 47%;
	}

	.second-flex-icons-bottle-container {
		margin-left: auto;
	}

	main {
		overflow: hidden;
	}

	.detalle-producto-container {
		gap: 3rem;
	}

	.text-detalle-producto-container h2 {
		font-size: 3rem;
	}

	/**
     * 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: 700px;
	}
}

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

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

	.footer-desktop {
		display: block;
	}

	.footer-mobile {
		display: none;
	}

	/**
     * 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-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: -5%;
		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);
	}

	/**
         * INDEX
         */

	.hero-banner-index .container h1 {
		font-size: 9rem;
		line-height: 9.3rem;

	}


	/**
       * FOOTER
       */

	.footer-desktop {
		display: block;
	}

	.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;
	}
}

@media (min-width: 1700px) {
	.hero-banner h1 {
		right: -15%;
	}
}