@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

body{
	min-height: 100vh;
	box-sizing: border-box;
}

:root {
	--primary-color: #fcfcfc;
	--background-color: #000000;
	--second-color: #000000;
	--colorprincipal: #000000;
}

html {
	/* font-size: 62.5%; */
	font-family: 'Poppins', sans-serif;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Definir la animación de parpadeo */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Aplicar la animación al ícono de carrito */
.blinking-cart {
    animation: blink 1s infinite; /* Parpadea cada segundo */
}


.submenu {
    position: relative;
}

.submenu #carrito {
    display: none;
}

.submenu:hover #carrito {
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #ffffff;
    padding: 20px;
    min-width: 400px;
}
table{
	width: 100%;
}

li{
	list-style: none;
}

th {
	color: #ea8c21;
	font-size: 18px;
}

td{
	color:#000000;
	font-size: 15px;
}

.borrar {
	padding: 4px 4px;
	text-decoration: none;
	color: #000000;
	font-weight: 600;
	font-size: 25px;
}

.total {
	display: inline-block;
	background-color: #2f93a2;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.btn-1{
	display: inline-block;
	background-color: #ee3b27;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.btn-2{
		display: inline-block;
		background-color: #ff5500;
		color: #fff;
		padding: 10px 20px;
		border-radius: 5px;
		text-decoration: none;
		font-size: 14px;
		transition: background-color 0.3s ease;
}

.btn-2:hover {
		background-color: #f0bb1e;
		color: #000;
}

.imagenfrase{
	width: 100%;
	height: 100%;
	max-height:calc(100vh - 118px) ;
	object-fit: cover;
}
/* ********************************** */
/*            CARRUSEL                */
/* ********************************** */
.carousel-container {
    margin-top: 118px; /* Ajusta este valor según la altura de tu barra de navegación */
}

.carousel-item img {
    /* width: 100%; */
    /* height: auto; */
	height: calc(100vh - 125px);
    object-fit: cover;
	object-position: center;
	
}

/* ********************************** */
/*            WHATSAPP                */
/* ********************************** */
.whatsapp-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
  }
  
  .whatsapp-btn img {
	width: 65px; /* Ajusta el tamaño según sea necesario */
	height: auto;
	border-radius: 100%;
	box-shadow: 0px 0px 10px #fafbfa; /* Opcional: sombra para resaltar el botón */
  }


/* ********************************** */
/*             UTILIDADES             */
/* ********************************** */
.container {
	max-width: 120rem;
	margin: 0 auto;
}

.heading-1 {
	/* padding-bottom: 20px; */
	letter-spacing: 10px;
	word-spacing: 15px;
	text-align: center;
	font-weight: 500;
	font-size: 33px;
	color: var(--primary-color);
}

.nosotros{
	width: 100%;
	background: var(--primary-color);
	text-align:center;
	font-size: 1.5em;
	color: var(--second-color);
	/* padding-left: 15px; */
    /* padding-right: 15px; */
	/* line-height: 2; */
}

.nosotros p{
	text-align: justify;
	padding: 0px 30px;
}

/* ********************************** */
/*               HEADER               */
/* ********************************** */
.container-hero {
	background-color: var(--primary-color);
}

*
.hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5em 0;
}

.container-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.container-logo i {
	font-size: 3rem;
}

.container-logo h1 a {
	text-decoration: none;
	color: #000000;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: -1px;
	padding-left: 350px;
}

.container-user {
	cursor: pointer;
	margin-left: auto; /* Empuja este contenedor hacia la derecha */
	justify-content: flex-end;
  }
  
.container-user .fa-user {
	font-size: 3rem;
	color: var(--second-color);
	padding-right: 2.5rem;

}

.container-user .fa-cart-shopping{
	font-size: 3rem;
	color: var(--second-color);
	padding-left: 1rem;
}

.content-shopping-cart {
	display: flex;
	flex-direction: column;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.flash-cart {
    animation: flash 0.5s ease;
}

/* ************* NAVBAR ************* */
.container-navbar {
	background-color: var(--background-color);
	padding-top: 8px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.navbar .fa-bars {
	display: none;
	top: 100%;
}


/* ********************************** */
/*            MAIN CONTENT            */
/* ********************************** */
.main-content {
	background-color: var(--background-color);
}


/* ********************************** */
/*               PRODUCTS             */
/* ********************************** */

.container-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los productos en el contenedor */
    gap: 30px; /* Espacio entre los productos */
    width: 100%;
   
}

.card-product {
    flex: 1 1 calc(50% - 10px); 
    max-width: 300px; /* Tamaño máximo de cada tarjeta */
    /* margin: 20px 0; */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0.5rem;
    box-shadow: 0 0 2px rgba(228, 16, 16, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.content-card-product {
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1; 
}

.container-img {
    text-align: center;
}

.container-img img {
    max-width: 100%; /* Asegura un tamaño consistente para las imágenes */
    height: auto;
}

.stars {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: .5em; 
}

.content-card-product h3 {
    text-align: center;
    font-size: 1.2em;
}

.content-card-product h3:hover {
	color: #EFB94A;
}

.content-card-product .precio {

	font-size: 23px;
	font-weight: 600;
	letter-spacing: 2px;
}

.agregar-carrito {
    display: block;
    text-align: center;
    padding: 5px 0; /* Espaciado más pequeño para el botón */
	justify-content: center;
    margin-top: 10px;
    background-color: #FF5C00;
    color: white;
    border-radius: 5px;
    width: 80%;
    font-size: 1em;
    min-height: 40px; 
	margin: auto;
}


.container-products {
    justify-content: center; /* Mantiene los productos centrados */
}


/* ********************************** */
/*               GALLERY              */
/* ********************************** */
.imagenbanner{
	width: 100%;
	height: 100%;
	max-height:calc(100vh - 118px) ;
	object-fit: cover;
}

/* ********************************** */
/*            RESTAURANTES            */
/* ********************************** */
.vender-cerveza {
	background: linear-gradient(to bottom, #f5f5f5, #cccccc);
	color: #333; /* Color del texto */
	padding: 40px;
	text-align: center;
	border-radius: 10px; /* Bordes redondeados */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
}
  
.vender-cerveza-content {
	max-width: 600px;
	margin: 0 auto;
}
  
.vender-cerveza h2 {
	font-size: 25px;
	color: #333;
}

.vender-cerveza h1 {
	font-size: 33px;
	color: #333;
}
  
.vender-cerveza p {
	font-size: 18px;
	color: #666;
	margin-bottom: 20px;
}
  
.btn-contacto {
	display: inline-block;
	background-color: #ff5500;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 21px;
	transition: background-color 0.3s ease;
}
  
.btn-contacto:hover {
	background-color: #f0bb1e;
	color: #000;
}

.degradado {
	background: linear-gradient(to right, #ff5500, #000000);
	-webkit-background-clip: text;
	background-clip: text; /* Propiedad de fondo estándar */
	-webkit-text-fill-color: transparent;
}
  

/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 768px) {
	html {
		font-size: 55%;
	}

	.container.hero {
		flex-direction:flex; /* Apila los elementos verticalmente */
		align-items: center;
	}


	.titulo{
		color: #000;
	}

	.container-user {
		margin-left: 0;
		justify-content: center;
	}

	.user-info span,
	.login-link a {
		font-size: 1rem; /* Tamaño de fuente más pequeño para dispositivos móviles */
	}

	.header{
		background-color: var(--second-color);
		padding: 0px 0%;
		align-items: center;
		justify-content: space-between;
	}
	
	.navigation {
		margin-left: 5px; /* Ajusta el valor según tu preferencia de margen */
	}

	.container {
		max-width: 120rem;
		margin: 0 auto;
	}
	
	.heading-1 {
		padding-bottom: 8px;
		letter-spacing: 3px;
		word-spacing: 8px;
		text-align: center;
		font-size: 8px;
		color: var(--primary-color);
	}
	
	.nosotros{
		width: 100%;
		background: var(--primary-color);
		text-align:center;
		font-size: 1rem;
		color: var(--second-color);
		padding-left: 15px;
		padding-right: 15px;
		line-height: 2;
	}
	
	.nosotros p{
		text-align: justify;
		padding: 8px;
	}
	.carousel-item img {
		max-width: 90%;
		height: 450px;
	}

	.customer-support {
		display: none;
	}

	.content-shopping-cart {
		display: none;
	}

	.navbar {
		padding: 1rem 2rem;
	}

	.navbar .fa-bars {
		display: block;
		color: #fff;
		font-size: 3rem;
	}
	.header label{
		display: initial;
		padding: 20px;
		font-size: 10px;
		
	}
	.header{
		padding: 0px 0%;
	}
	
	.menu{
		padding-top: 8px;
		padding-bottom: 10px;
	  }

	.header .navigation{
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color:var(--background-color);
		display: none;
	
	  }
	  .header .navigation ul li{
		width: 80%;
	  }

	  .header .navigation ul li a{
		padding: 10px 50px 5px 100px;
		
	  }
	   .header .navigation ul a:hover{
		background-color: #fefefe;
		color: #000;
		
	  }

	  .header .navigation ul li ul{
		position: relative;
		width: 100%;
		left: 0;
	  }

	  .header .navigation ul li ul li{
		background-color: #fff;

	  }
	  .header .navigation ul li ul li a{
		
		color: #000000;
	  }

	  .header .navigation ul li ul li a:hover{

		color: #f4f4f4;
	  }

	  .header .navigation ul li ul li ul{
		position: relative;
		width: 100%;
		left: 0;
	  }

	  #toggle:checked ~ .navigation{
		display: block;

	  }
	  

	.content-banner {
		max-width: 50rem;
		margin: 0 auto;
		padding: 25rem 0;
	}

	.container-features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}

	.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(15rem, 1fr));
	}

	.gallery {
		grid-template-rows: repeat(2, 15rem);
	}

	.container-blogs {
		overflow: hidden;
		grid-template-columns: 1fr 1fr;
		height: 52rem;
	}

	.content-blog h2 {
		font-size: 18px;
		margin: 10px 0;
	}
	.content-blog p {
		font-size: 11px;
		
	}
	.content-blog span {
		font-size: 10px;
	}

	.copyright {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
	.carousel-item img {
		max-width: 768px;
		height: 300px;
	}
	.nosotros{
		width: 100%;
		background: var(--primary-color);
		text-align:center;
		font-size: 13px;
		color: var(--second-color);
		padding-left: 15px;
		padding-right: 15px;
		line-height: 2;
	}

	.whatsapp-btn {
		position: fixed;
		bottom: 15px;
		right: 15px;
		z-index: 999;
	  }
	  
	  .whatsapp-btn img {
		width: 50px; /* Ajusta el tamaño según sea necesario */
		height: auto;
		border-radius: 100%;
		box-shadow: 0px 0px 10px #fafbfa; /* Opcional: sombra para resaltar el botón */
	  }

	  .footer {
		padding-top: 250x;
		background-color: var(--primary-color);
	}
	
	

/*               PRODUCTS             */
/* ********************************** */
/* .top-products {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
	justify-content: center;
}


.container.top-products {
	justify-content: center;
    width: 100%; 
    margin: 0 auto; 
}

.card-product {
	width: calc(70% - 10px); 
	justify-content: center; 
	margin: 20px; 
	background-color: #ffffff;
	padding: 2rem 3rem;
	border-radius: 0.5rem;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(228, 16, 16, 0.1);
	max-width: 300px; 
    margin-bottom: 5px; 
}

.container-img {
	position: relative;
	justify-content: center;
}

.container-img img {
	justify-content: center;
	width: 100%;
}

.container-img .discount {
	position: absolute;
	left: 0;
	background-color: var(--second-color);
	color: #ffffff;
	padding: 2px 1.2rem;
	border-radius: 1rem;
	font-size: 1rem;
}

.card-product:hover .discount {
	background-color: #000000;
}

.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(--second-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(--second-color);
}

.button-group span i {
	font-size: 1rem;
	color: var(--second-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(3, min-content);
	row-gap: 1rem;
}

.stars {
	grid-row: 1/2;
	padding-top: 20px;
	grid-column: 1/-1;
}

.stars i {
	font-size: 13px;
	color: var(--second-color);
}

.content-card-product h3 {
	grid-row: 2/3;
	grid-column: 1/-1;
	font-weight: 400;
	letter-spacing: 3px;
	font-size: 15px;
	margin-bottom: 1rem;
	cursor: pointer;
}

.content-card-product h3:hover {
	color: #EFB94A;
}

.add-cart {
	justify-self: start;
	border: 3px solid var(--second-color);
	padding: 15px;
	border-radius: 40%;
	cursor: pointer;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-cart:hover {
	background-color: #000000;
}

.add-cart i {
	font-size: 20px;
	color: var(--second-color);
}

.add-cart:hover i {
	color: #ffffff;
}

.content-card-product .precio {

	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
	padding-left: 50px;
}
.btn-1{
	display: inline-block;
	background-color: #ee3b27;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.btn-2{
		display: inline-block;
		background-color: #ff5500;
		color: #fff;
		padding: 5px 10px;
		border-radius: 2px;
		text-decoration: none;
		font-size: 12px;
		transition: background-color 0.3s ease;
} */
	.navigation ul {
		flex-direction: column; /* Cambia la dirección del flex a columna para pantallas pequeñas */
	}

	#carouselExampleAutoplaying {
		margin-top: 120px; /* Ajusta este valor según la altura de tu barra de navegación */
	}
	
	.vender-cerveza {
        padding: 10px;
    }

    .vender-cerveza-content {
        max-width: 100%;
    }

    .vender-cerveza h1 {
        font-size: 19px;
    }

    .vender-cerveza h2 {
        font-size: 16px;
    }

    .vender-cerveza p {
        font-size: 14px;
    }

    .vender-cerveza .btn-contacto {
        padding: 8px 20px;
        font-size: 15px;
    }
	.menu-footer {
		display: flex;
		flex-direction: column;
		gap: 20px; /* Espacio entre los elementos internos */
	}

	.contact-info,
	.information {
		text-align: center;
	}

	.social-icons {
		display: flex;
		justify-content: center;
		gap: 10px; /* Espacio entre los íconos sociales */
	}

	.information ul {
		padding-left: 0;
	}

	.copyright {
		text-align: center;
		margin-top: 20px; /* Espacio superior */
	}
}



