@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--primary-color: #99121b;
	--background-color: #ffffff;
	--dark-color: hsl(0, 0%, 0%);
	--d: 700ms;
	--e: cubic-bezier(0.19, 1, 0.22, 1);
	--font-sans: "Rubik", sans-serif;
	--font-serif: "Cardo", serif;
}

html {
	font-size: 70.5%;
	font-family: 'Poppins', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* ********************************** */
/*             imagen box bagraud     */
/* ********************************** */

.container-navbar .menu .active a{
	background-color: var(--background-color);
	color: var(--primary-color);
	padding: 1rem 3rem;
	border-radius: 2rem;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 4;
	
	
}
  
.modal {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
	
	
}
.p-modal{
	color: var(--background-color);
	font-size: 2rem;
}
  
.modal-header {
    display: flex;
    flex-direction: column;
	align-items: center;
	
	
}
  /* contenido de backgroud*/
  
.modal-content .p-modal {
    margin-top: 20px;
	font-size: 1.2rem;
	color: black;

}

  
.open-modal-btn {
background-color: transparent;
border: none;
font-size: 2rem;
color:	red;
justify-items: center;
}
.open-modal-btn:hover{
	color: var(--background-color);
	
}

.newbutton {
	background-color: transparent;
	border: none;
	font-size: 2rem;
	color:	white;
	justify-items: center;
}

.open-modal-btn:focus ~ .modal-overlay{
    opacity: 1;
    visibility: visible;
}
.open-modal-btn:focus ~ .modal-overlay .modal{
    opacity: 1;
    transform: translatex(0);
	
}



.attribute{
    position: absolute;
    bottom: 10px;
	
}




/* ********************************** */
/*             UTILIDADES             */
/* ********************************** */

.container {
	max-width: 90rem;
	margin: 0 auto;
}

.heading-1 {
	text-align: center;
	font-weight: 600;
	margin: 2 auto;
	font-size: 3rem;
	color: var(--primary-color);
}



.slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	background-size: cover;
	
}

.slider .content-banner {
	background-image: linear-gradient(90deg, #00000088, #00000000);
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	z-index: 1;
	
}

.slider .content-banner .text-container {
	margin-left: 8rem;
	position: absolute;
}

.slider .content-banner p {
	font-family: 'charm';
	text-transform: uppercase;
	font-style: italic;

	font-weight: 600;
	background-clip: text;
	font-size: 9rem;
	margin-bottom: -1.5rem;
	color: var(--primary-color);
	
}

.slider .content-banner h2{
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 2rem;
	color: var(--background-color);
	font-weight: 1000;
	
	
}

.slider .content-banner a {
	align-items: center;
	text-decoration: none;
	border: none;
	background-color: var(--primary-color);
	color: #ffffff;
	text-transform: uppercase;
	padding: 1rem 5rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	font-family: inherit;
	cursor: pointer;
	font-weight: 600;
	
	
}
.slider .content-banner a:hover{
	background-color: var(--background-color);
	color: var(--primary-color);
	
}

.slider ul {
	display: flex;
	animation: cambio 20s infinite alternate linear;
	width: 400%;
	
}

.slider li {
	width: 100%;
	list-style: none;
}

.slider img {
	
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: contrast(140%);
}

@keyframes cambio {
	0% { margin-left: 0; }
	20% { margin-left: 0; }
	25% { margin-left: -100%; }
	45% { margin-left: -100%; }
	50% { margin-left: -200%; }
	70% { margin-left: -200%; }
	75% { margin-left: -300%; }
	100% { margin-left: -300%; }
}


/* ********************************** */
/*               HEADER               */
/* ********************************** */
.container-hero {
	
	background-color: var(--background-color);
}

.hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
}

.customer-support {
	display: flex;
	margin: 8px;
	align-items: center;
	gap: 2rem;
}

.customer-support i {
	font-size: 3.3rem;
	color: var(--primary-color);
}

.content-customer-support {
	
	flex-direction: column;
}

.container-logo {
	
	display: flex;
	justify-content: center;
	
	
}
.container-logo img{
	width: 30%;
	height: 100%;

}


.container-logo i {

	font-size: 2rem;
	color: var(--primary-color);
}

.container-logo h1 a {
	text-decoration: none;
	color: #000;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: -1px;
}

.container-user {
	display: flex;
	gap: 1rem;
	cursor: pointer;
}

.container-user .fa-user {
	font-size: 3rem;
	color: var(--primary-color);
	padding-right: 2.5rem;
	border-right: 1px solid #e2e2e2;
}
.container-user .fa-user:hover {
	font-size: 3rem;
	color: #000;
	padding-right: 2.5rem;
	border-right: 1px solid #e2e2e2;
}

.container-user .fa-basket-shopping {
	font-size: 3rem;
	color: var(--primary-color);
	padding-left: 1rem;
}

.content-shopping-cart {
	display: flex;
	flex-direction: column;
}




/* ********************************** */
/* ************* NAVBAR ************* */
/* ********************************** */



.container-navbar {
	background-color: var(--primary-color);
	background-image: linear-gradient(90deg,#AB0E1D, #dd4f2c, #FAB630);
}
.container-navbar a	{
	text-decoration: none;

}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.navbar .fa-bars {
	display: none;
}

.menu {
	display: flex;
	gap: 2rem;
	padding:1rem ;
}

.menu li {
	list-style: none;
}

.menu a {
	text-decoration: none;
	font-size: 1.3rem;
	color: var(--background-color);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}

.menu a::after {
	content: '';
	width: 1.5rem;
	height: 1px;
	background-color: #fff;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%, 50%);
	opacity: 0;
	transition: all 0.3s ease;
}

.menu a:hover::after {
	opacity: 1;
}



/* ---------------------------------- */

.menu-vertical{
	
	display: none;
	position: absolute;
	z-index: 2;
	background-color:#dd4f2c ;
	align-items: center;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.623); 

}
.menu-vertical li{
	margin-top: 1rem ;
}
.menu-vertical a{

padding: 0.5rem 3rem;

}
.li-productos:hover   .menu-vertical{
	
	display: block;
	

}
.menu-vertical li:hover{
	
	background-color: var(--background-color);
	color: var(--primary-color);
	
	
}
/* ---------------------------------- */



.menu .li-productos .menu-vertical a:hover {
	color: var(--primary-color);
}

.search-form {
	position: relative;
	display: flex;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 2rem;
	background-color: #fff;
	height: 4.4rem;
	overflow: hidden;
}

.search-form input {
	outline: none;
	font-family: inherit;
	border: none;
	width: 25rem;
	font-size: 1.4rem;
	padding: 0 2rem;
	color: #777;
	cursor: pointer;
}

.search-form input::-webkit-search-cancel-button {
	appearance: none;
}

.search-form .btn-search {
	border: none;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 1rem;
}

.btn-search i {
	font-size: 2rem;
	color: #fff;
}

/* ********************************** */
/*               BANNER               */
/* ********************************** */






/* ********************************** */
/*            MAIN CONTENT            */
/* ********************************** */
.main-content {
	background-color: var(--background-color);
}

/* ********************************** */
/*              FEATURES              */
/* ********************************** */
.container-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	padding: 3rem 0;
}

.card-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;

	background-color: #ffffff;
	border-radius: 1rem;
	padding: 1.5rem 0;
}

.card-feature i{
	font-size: 2.7rem;
	color: var(--primary-color);
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-content span {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--primary-color);
}

.feature-content p {
	color: #777;
	font-weight: 500;
}

/* ********************************** */
/*             CATEGORIES             */
/* ********************************** */

.top-categories {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.container-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	
	
	
}




/*-----------------------------------------------------*/
/*-----------------------------------------------------*/

.card-category {
	height: 20rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 25% 10%;
	gap: 2rem;
	
}






.category-moca {
	
	content: "";
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 2rem;
	width: 100%;
	text-align: center;
	color: black;
	background-color: rgba(231, 231, 231, 0.055);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
		0 2px 2px rgba(0, 0, 0, 0.1),
		0 4px 4px rgba(0, 0, 0, 0.1),
		0 8px 8px rgba(0, 0, 0, 0.1),
		0 16px 16px rgba(0, 0, 0, 0.1);
	background-position: center;
	background-size: cover;
}
.category-moca:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110%;
	background-size: cover;
	background-position: 0 0;
	transition: transform calc(var(--d) * 1.5) var(--e);
	pointer-events: none;
}

.category-moca:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
	pointer-events: none;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
	transform: translateY(-50%);
	transition: transform calc(var(--d) * 2) var(--e);
}

.contenido {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
}

.contenido .open-modal-btn,
.titleplaca {
    z-index: 1;
}

.contenido>*:not(.test) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
}

  .category-moca:nth-child(1):before {
	background-image: url(img/sistema1.png);
  }
  .category-moca:nth-child(2):before {
	background-image: url(img/sistema2.png);
  }
  .category-moca:nth-child(3):before {
	background-image: url(img/placa3.png);
  }
  .category-moca:nth-child(4):before {
	background-image: url(img/placa4.png);
  }
  .category-moca:nth-child(5):before {
	background-image: url(img/placa5.png);
  }
  .category-moca:nth-child(6):before {
	background-image: url(img/placa4.png);
  }


.category-moca:hover:before,.category-moca:focus-within:before{
	transform: translateY(-4%);
  }
.category-moca:after {
    transform: translateY(0);
}

.category-moca:hover:after,
.category-moca:focus-within::after {
    transform: translateY(-50%);
}

.category-moca:hover .contenido > *:not(.test),
.category-moca:focus-within .contenido > *:not(.test) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
}

.category-moca:focus-within::before,
.category-moca:focus-within:after,
.category-moca:focus-within .contenido,
.category-moca:focus-within .contenido > *:not(.test) {
    transition-duration:0s;
}

  
/*-----------------------------------------------------*/

.category-capuchino {
	background-image: linear-gradient(#00000086, #00000028),
	url('img/placa2.png');
	background-position: 50%;
	background-size: contain;
	background-repeat: no-repeat;
}

.category-expreso {
	background-image: linear-gradient(#00000086, #00000028),
	url('img/placa.png');
	background-position: 50%;
	background-size: contain;
	background-repeat: no-repeat;
}

.card-category p {
	font-size: 2.5rem;
	color: #ffffff;
	text-transform: capitalize;
	position: relative;
}

.card-category p::after {
	content: '';
	width: 2.5rem;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translate(-50%, 50%);
}

.card-category span {
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}

.card-category span:hover {
	color: var(--primary-color);
}

/* ********************************** */
/*            TOP PRODUCTS            */
/* ********************************** */
.top-products {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.container-options {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.container-options span {
	color: #777;
	background-color: #fff;
	padding: 0.7rem 3rem;
	font-size: 1.4rem;
	text-transform: capitalize;
	border-radius: 2rem;
	cursor: pointer;
}

.container-options span:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.container-options span.active {
	background-color: var(--primary-color);
	color: #fff;
}

/* Products */
.container-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: 3rem;
}

.card-product {
	background-color: #fff;
	padding: 2rem 3rem;
	border-radius: 0.5rem;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.container-img {
	position: relative;
}

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

.container-img .discount {
	position: absolute;
	left: 0;
	background-color: var(--primary-color);
	color: #fff;
	padding: 2px 1.2rem;
	border-radius: 1rem;
	font-size: 1.2rem;
}

.card-product:hover .discount {
	background-color: #000;
}

.button-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;

	position: absolute;
	top: 0;
	right: -3rem;
	z-index: -1;
	transition: all 0.4s ease;
}

.button-group span {
	border: 1px solid var(--primary-color);
	padding: 0.8rem;

	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;
}

.button-group span:hover {
	background-color: var(--primary-color);
}

.button-group span i {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.button-group span:hover i {
	color: #fff;
}

.card-product:hover .button-group {
	z-index: 0;
	right: -1rem;
}

.content-card-product {
	display: grid;
	justify-items: center;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(4, min-content);
	row-gap: 1rem;
}

.stars {
	grid-row: 1/2;
	grid-column: 1/-1;
}

.stars i {
	font-size: 1.3rem;
	color: var(--primary-color);
}

.content-card-product h3 {
	grid-row: 2/3;
	grid-column: 1/-1;

	font-weight: 400;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	cursor: pointer;
}

.content-card-product h3:hover {
	color: var(--primary-color);
}

.add-cart {
	justify-self: start;
	border: 2px solid var(--primary-color);
	padding: 1rem;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;

	display: flex;
	align-items: center;
	justify-content: center;
}

.add-cart:hover {
	background-color: var(--primary-color);
}

.add-cart i {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.add-cart:hover i {
	color: #fff;
}

.content-card-product .price {
	justify-self: end;
	align-self: center;

	font-size: 1.7rem;
	font-weight: 600;
}

.content-card-product .price span {
	font-size: 1.5rem;
	font-weight: 400;
	text-decoration: line-through;
	color: #777;
	margin-left: 0.5rem;
}

/* ********************************** */
/*               GALLERY              */
/* ********************************** */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 30rem);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

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

.gallery-img-3 {
	grid-column: 2/4;
	grid-row: 1/3;
}

/* ********************************** */
/*              SPECIALS              */
/* ********************************** */
.specials {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

/* ********************************** */
/*                BLOGS               */
/* ********************************** */
.blogs {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.container-blogs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.card-blog {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.card-blog .container-img {
	border-radius: 2rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.button-group-blog {
	position: absolute;
	bottom: 1.5rem;
	right: -2.5rem;

	display: flex;
	gap: 0.7rem;
	z-index: -1;
	transition: all 0.3s ease;
}

.card-blog:hover .button-group-blog {
	z-index: 0;
	right: 1.5rem;
}

.button-group-blog span {
	background-color: #fff;
	padding: 1rem;
	border-radius: 50%;
	transition: all 0.4s ease;

	display: flex;
	align-items: center;
	justify-content: center;
}

.button-group-blog span i {
	font-size: 1.3rem;
}

.button-group-blog span:hover {
	background-color: var(--primary-color);
}

.button-group-blog span:hover i {
	color: #fff;
}

.content-blog h3 {
	font-size: 1.8rem;
	margin-bottom: 1.7rem;
	color: var(--dark-color);
	font-weight: 500;
}

.content-blog h3:hover {
	color: var(--primary-color);
	cursor: pointer;
}

.content-blog p {
	margin-top: 1rem;
	font-size: 1.4rem;
	color: #777;
}

.content-blog span {
	color: var(--primary-color);
	font-size: 1.3rem;
}

.btn-read-more {
	padding: 1rem 3rem;
	background-color: var(--primary-color);
	color: #fff;
	text-transform: uppercase;
	font-size: 1.4rem;
	border-radius: 2rem;
	margin: 3rem 0 5rem;
	display: inline-block;
	cursor: pointer;
}

.btn-read-more:hover {
	background-color: var(--dark-color);
}

/* ********************************** */
/*               FOOTER               */
/* ********************************** */

.footer {
	background-color: var(--primary-color);
	justify-content: center;
}

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

.menu-footer {
	display: grid;
	grid-template-columns: repeat(2, 1fr) 30rem;
	gap: 3rem;
	justify-items: center;
}

.title-footer {
	font-weight: 600;
	font-size: 1.6rem;
	text-transform: uppercase;
}


.information,
.my-account,
.newsletter {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}



.contact-info ul,
.information ul,
.my-account ul 
{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info ul li,
.information ul li,
.my-account ul li 
{
	list-style: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 300;
}

.information ul li a,
.my-account ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 300;
}

.information ul li a:hover,
.my-account ul li a:hover {
	color: var(--dark-color);
}

.social-icons {
	display: flex;
	gap: 1.5rem;
}

.social-icons span {
	border-radius: 50%;
	width: 3rem;
	height: 3rem;

	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icons span i {
	color: #fff;
	font-size: 1.2rem;
}

.content p {
	font-size: 1.4rem;
	color: #fff;
	font-weight: 300;
}
.content a{
	text-decoration: none;
	border: none;
	background-color: #000;
	color: #ffffff;
	text-transform: uppercase;
	padding: 1rem 3rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	font-family: inherit;
	cursor: pointer;
	font-weight: 600;
}
.content  a:hover{
	color: var(--primary-color);
	background-color: var(--background-color);
	transition: 100ms;
}

.content input {
	outline: none;
	background: none;
	border: none;
	border-bottom: 2px solid #d2b495;
	cursor: pointer;
	padding: 0.5rem 0 1.2rem;
	color: var(--dark-color);
	display: block;
	margin-bottom: 3rem;
	margin-top: 2rem;
	width: 100%;
	font-family: inherit;
}

.content input::-webkit-input-placeholder {
	color: #eee;
}





.content button:hover {
	background-color: var(--background-color);
	color: var(--primary-color);
}

.copyright {
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;

	border-top: 1px solid #d2b495;
}

.copyright p {
	padding: 5rem;
	font-weight: 400;
	font-size: 1.2rem;
	color: var(--background-color);
}
.container-chico button {
	display: none;
}
.copyright img{
	height: 100%;
	width: 22rem;
	
	
}



@media  (max-width: 980px){
	.slider .content-banner .text-container {
		margin-left: 1rem;
		position: absolute;
	}
	.esqueleto{
		display: grid;
		
	}
	.esqueletodiv1 img{
		height: 100rem;
		width: 50rem;
	}
	.container-logo {

	 	width: 1000px;
	 	height: 100%;
		margin-left: 3rem;
		display: flex;
		justify-content: left;
		
		
	}
	.slider .content-banner a {
		padding: 1rem 3rem;
		
	}
	.customer-support {
		display: none;
	}


	

		
		

}
	

/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 820px) {

	.menu-footer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 80rem;
		grid-template-columns: repeat(2, 1fr) 20rem;
		gap: 3rem;
		
	}

	.newsletter {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 50%;
		

	}
	html {
		font-size: 55%;
	}

	.hero {
		padding: 2rem;
	}

	.customer-support {
		display: none;
	}

	.content-shopping-cart {
		display: none;
	}
	.container-logo {

		width: 1500px;
		height: 100%;
	   margin-left: -1rem;
	   display: flex;
	   justify-content: left;
	   
	   
   }
	.navbar {
		padding: 1rem 2rem;
	}
/***** este es la barra icono*/  
	.navbar .fa-bars {
		display: block;
		color: #ffffff;
		font-size: 3rem;

	}

/********************************/

 .container-chico button{
	display: block;
	
 }
	.menu {
		
		display: none; 
		position: absolute; 
		background-color: var(--primary-color);
		min-width: 160px; 
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.623); 
		z-index: 2;
		
	}
	.menu a{
		color: #ffffff; 
		padding: 12px 16px; 
		text-decoration: none; 
		display: block; 
		
		
	}
	.menu a:hover {
		color: var(--primary-color);
		background-color: var(--background-color);
		
	}

	.container-chico:hover .menu{
		display: block;
		
	}

    .dropdown-btn {
		display: block;
		background-color: transparent; 
		color: var(--primary-color); 
		padding: 10px; 
		width: 4rem;
		border: none; 
		
		
	  }
	  .dropdown-btn i{
		color:  var(--primary-color);
		display: inline-block;
		background-color: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		border-radius: 50%;
	  }

	  .dropdown-btn:hover .menu{
		display: block;
		cursor: pointer;

	  }
	

	  

	  
	


	.slider .content-banner p{
		
		font-size: 3.3rem; 
		margin-bottom: -1rem;
		text-align: left;
	  }
	.slider .content-banner h2 {
	  font-size: 1.3rem; 
	  margin-bottom: 2rem;
	  text-align: left;
	}
	
	.slider .content-banner a {
	  text-align:left;}

	.slider .content-banner .text-container {
		margin-left: 2rem; 
		text-align:left;}

	.container-features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}
	.slider .content-banner{
		z-index: 1;
	}



	.card-feature {
		padding: 2rem;
	}

	.heading-1 {
		font-size: 2.4rem;
	}

	.card-category {
		height: 12rem;
	}

	.card-category p {
		font-size: 2rem;
		text-align: center;
		line-height: 1;
	}

	.card-category span {
		font-size: 1.4rem;
	}

	.container-options {
		align-items: center;
	}

	.container-options span {
		text-align: center;
		padding: 1rem 2rem;
	}

	.container-products {
		grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
	}

	.gallery {
		grid-template-rows: repeat(2, 15rem);
	}

	.container-blogs {
		overflow: hidden;
		grid-template-columns: 1fr 1fr;

		height: 52rem;
	}

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

	.copyright {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
}

/* ********************************** */
/*       MEDIA QUERIES -- 468px       */
/* ********************************** */
@media (max-width: 468px) {
	
	html {
		font-size: 42.5%;
	}

	.slider .content-banner p{
		
		font-size: 3.3rem; 
		margin-bottom: -1rem;
		text-align: left;
	  }
	.slider .content-banner h2 {
	  font-size: 1.3rem; 
	  margin-bottom: 0.6rem;
	  text-align: left;
	}
	.slider .content-banner a {
		display: inline-block;
		background: var(--primary-color);
		color: #ffffff;
		padding: 1rem 3rem;
		border-radius: 4px;
		text-decoration: none;
		font-weight: bold;
		font-size: 1rem;
		text-align:left;
		
	}
	


	.slider .content-banner .text-container {
		
		margin-left: 2rem; 
		text-align:left;}

	.container-features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}
	.slider .content-banner{
		z-index: 1;
		
	}

	.slider .text-container{
		margin: 2rem;
		margin-top: -25rem;
		
	}
	

	

	.content-banner {
		max-width: 50rem;
		padding: 22rem 0;
	}

	.heading-1 {
		font-size: 2.8rem;
	}

	.card-feature {
		flex-direction: column;
		border-radius: 2rem;
	}

	.feature-content {
		align-items: center;
	}

	.feature-content p {
		font-size: 1.4rem;
		text-align: center;
	}

	.feature-content span {
		font-size: 1.6rem;
		text-align: center;
	}

	.container-options span {
		font-size: 1.8rem;
		padding: 1rem 1.5rem;
		font-weight: 500;
	}

	.container-products {
		grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
		gap: 1rem;
	}

	.container-img .discount {
		font-size: 2rem;
	}

	.content-card-product h3 {
		font-size: 2.2rem;
	}

	.gallery {
		grid-template-rows: repeat(2, 20rem);
	}

	.blogs {
		padding: 2rem;
	}

	.container-blogs {
		grid-template-columns: 1fr;
		height: 75rem;
	}

	.content-blog h3 {
		font-size: 2.4rem;
	}

	.content-blog span {
		font-size: 1.8rem;
	}

	.content-blog p {
		font-size: 2.2rem;
	}

	.btn-read-more{
		font-size: 1.8rem;
	
	}

	

	.contact-info {
		align-items: center;
	}

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

	.content p{
		font-size: 1.6rem;
	}
	
	.newsletter {
		max-width: 30rem;

	}
}



