/* Estilo general */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;    
    background-image: url('./../cion/título\(13\).webp');
    background-size: cover; /* Asegura que la imagen de fondo cubra toda la pantalla */
    background-position: center; /* Alinea la imagen al centro */
    position: relative; /* Establece el contenedor principal como relativo para posicionar el overlay */
    
   
}

body::before {
    content: ''; /* Es necesario para crear el pseudo-elemento */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    z-index: -1; /* Asegura que el overlay esté por encima del fondo */
    pointer-events: none; /* Asegura que el overlay no interfiera con la interacción con otros elementos */
}

/*********************************
3. Header
*********************************/
.header
{
	position: absolute;
	left: 0;
	width: 100%;
	height: 120px;
	background: #ffffff00;
	z-index: 100;
	padding-left: 0px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header_inner
{
	width: 100%;
	height: 100%;
}

/*********************************
3.1 Header - Logo
*********************************/ 
.logo{
	display: flex;
	left: 0px;
	align-items: center;
}
.logo a
{
	font-family: 'tenor', serif;
	font-size: 90px;
	color: #ffffff;

}

/*********************************
3.2 Header - Main Navigation
*********************************/

.main_nav
{
	
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
   

	
	
}
.main_nav ul {
	
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
	
}


.main_nav ul li:last-child
{
	margin-right: 15px;
}

/* Estilo especial para el logo (centrado y más grande) */
.main_nav ul li.logo-container {
    margin: 0 25px; /* Más espacio a los lados del logo */
}

.main_nav ul li a
{
	font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: all 200ms ease;
	padding: 21px 0px;
	display: block;
	text-decoration: none;
	position: relative;
	margin: 0 20px; /* Espacio entre los enlaces */
}
.main_nav ul li a:hover
{
	color: #ccb8ad;
}

.main_nav li {
  
    position: relative; /* Necesario para posicionar el menú desplegable */

	display: inline-block;
	margin-right: 15px;
	vertical-align: middle; /* Alinea verticalmente */
	margin: 0 80px; /* Añade 20px de margen a los lados izquierdo y derecho */

	
}

/* Estilos para el menú desplegable */
.dropdown-menu1 {
    /* Oculta el menú por defecto */
    position: absolute !important;
    top: 100%;
    left: -11px;
    background-color: rgb(224 217 201) !important;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
    z-index: 1000;
    border-radius: 4px !important;
    padding: 10px 0;
	display: none ; /* Oculta el menú por defecto */
	margin: 0;
	
	
	
	
}

.dropdown-menu1 li {
    margin: 0;
    width: 100%;
	color: #212529;
	
}

 .dropdown .dropdown-menu1 li a {
    color: #806b5f;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
	padding: 21px 0px;
	left: 0px;
    display: block;
    text-decoration: none;
    position: relative;
    margin: 0px;
	
}

.dropdown-menu1 a:hover {
    background-color: #f5f5f5;
}

/* Mostrar menú desplegable al pasar el cursor */
.dropdown:hover .dropdown-menu1 {
    display: block;
}

/* Puedes agregar una flecha indicadora si lo deseas */
.dropdown > a:after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

.logo1 img {
	font-size: 84px !important; /* Tamaño aumentado (usa !important si es necesario) */
    font-weight: 700;
    color: #ffffff !important;
    text-transform: none !important; /* Remueve uppercase si lo tenía */
    letter-spacing: normal !important;
	max-height: 109px; /* Ajusta este valor según tus necesidades */
	width: auto;
	margin-top: 30px;
	

}

.logomenu_mm img
{   
	max-height: 150px; /* Ajusta este valor según tus necesidades */
	width: auto;
	padding: 0px;
	margin-right: -40px;
}





/*********************************
3.3 Header - Search
*********************************/

.search
{
	display: inline-block;
	width: 400px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
.search_input
{
	width: 100%;
	height: 43px;
	background: #f9f5f560;
	border: 2px solid #f9f5f5;
	outline: none;
	padding-left: 20px;
	border-radius: 50px;
}
.search_button
{
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	width: 19px;
	height: 19px;
	background: transparent;
	border: none;
	outline: none;
}
.search_button:focus
{
	outline: none !important;
}
.search_button img
{
	max-width: 100%;
}

.logo img{
	max-height: 140px;
	width: auto;
	padding: 0px;
  }

/*********************************
3.4 Header - Shopping
*********************************/

.shopping
{
	display: flex;
	margin-left: 12px;
	padding-right: 62px;	
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	transform: translateY(-2px);
	gap: 10px;
	
}

.cart_num_container,
.star_num_container
{
	position: absolute;
	top: 13px;
	left: -5px;
	width: 15px;
	height: 15px;
	background: #745e52;
	border-radius: 50%;
}
.cart_num_inner,
.star_num_inner
{
	width: 100%;
	height: 100%;
}
.cart_num,
.star_num
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 9px;
	font-weight: 600;
	color: #ffffff;
}
.star img
{
	width: 20px;
	height: 20px;
}

.header_content {
    display: flex;
    justify-content: flex-end; /* Alinea los elementos a la derecha */
    align-items: center; /* Centra verticalmente los elementos */
    gap: 20px; /* Espacio entre los elementos */

}

/* Puedes ajustar el tamaño de los iconos y el avatar */
.carrt-icon, .avatar-container {
    display: flex;
    align-items: center;
}

.avatar-container {
    position: relative;
    top: 3px;
    
}
.avatar-dropdown {
    position: relative;
    display: inline-block;
}

.avatar-img {
    width: 20px;
    height: 23px;
   
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-img:hover {
    transform: scale(1.1);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
	top: 40px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}




/*=================================
3.4 Header - BOLSA DE COMPRAS 
===================================/
/* Icono de bolsa de compras */
/* Estilos para el carrito - Versión integrada */
.carrt-icon {
    position: relative ; /* Cambiado de fixed a relative */ 
    cursor: pointer;
   
    z-index: 100;
	
	width: 30px;
}

.carrt-icon .count {
    position: absolute;
    top: 13px;    
    background: #937c6f;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.carrt-sidebar {
    position: fixed;
    top: 0px;
    right: -500px;
    width: 100%;
    max-width: 400px !important;
    height: 100dvh;
    background: white;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
}

.carrt-sidebar.active {
    right: 0px;
}

/* Header del carrito */
.carrt-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrt-header h2 {
    font-size: 1.3rem;
    margin: 0;
    color: #333;
}

.close-carrt {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
}

/* Contenido del carrito */
.carrt-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Elementos del carrito */
.cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 12px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cart-item-details p {
    color: #080808;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.item-price {
    font-weight: bold;
    color: #333;
    font-size: 0.95rem;
}

.item-actions {
    display: flex;
    align-items: center;
	margin-left: 35px;
    margin-top: 24px;
	flex-wrap: wrap;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.quantity-btn {
    background: #f1f1f1;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 35px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    padding: 3px;
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
}

/* Resumen del carrito */
.carrt-summary {
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.total {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
}

.checkout-btn, .continue-btn {
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 8px;
    transition: all 0.2s;
}

.checkout-btn {
    background: #333;
    color: white;
}

.checkout-btn:hover {
    background: #444;
}

.continue-btn {
    background: #e9ecef;
    color: #333;
    border: 1px solid #ddd;
}

.continue-btn:hover {
    background: #dee2e6;
}

/* Responsive */
@media (max-width: 500px) {
    
}



/*********************************
5. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: #FFFFFF;
	z-index: 101;
	padding-right: 60px;
	padding-top: 87px;
	padding-left: 50px;
    transition: all 0.3s ease;
}
.menu.active
{
	right: 0;
}
.menu_close_container
{
	position: absolute;
	top: 30px;
	right: 60px;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}
.menu_close
{
	width: 100%;
	height: 100%;
	transform-style: preserve-3D;
}
.menu_close div
{
	width: 100%;
	height: 2px;
	background: #232323;
	top: 8px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close div:last-of-type
{
	-webkit-transform: rotate(90deg) translateX(-2px);
	-moz-transform: rotate(90deg) translateX(-2px);
	-ms-transform: rotate(90deg) translateX(-2px);
	-o-transform: rotate(90deg) translateX(-2px);
	transform: rotate(90deg) translateX(-2px);
	transform-origin: center;
}
.menu_close:hover div
{
	background: #937c6f;
}
.menu .logo
{
	margin-bottom: 60px;
}
.menu_nav ul{
    list-style: none;
}
.menu_nav ul li
{
	margin-bottom: 11px;
}
.menu_nav ul li a
{
	font-size: 12px;
	text-transform: uppercase;
	color: #2f2f2f;
	font-weight: 600;
	letter-spacing: 0.2em;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_nav ul li a:hover
{
	color: #937c6f;
}
.menu .search
{
	width: 100%;
	margin-bottom: 67px;
}


/*********************************
3.5 Header - Burger
*********************************/

/* Oculta el menú hamburguesa por defecto */
.burger_container {
    display: none;
}





/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}



/*********************************
4. Home
*********************************/

.home
{	position: relative;
	width: 100%;
	height: 64vh;
	background: #FFFFFF;
}

/*********************************
4.1 Home Slider
*********************************/
.home-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.158) 0%, rgba(0, 0, 0, 0.11) 50%, rgba(0, 0, 0, 0.11) 100%);
	z-index: 3;
  }
  
  .home_slider_content {
	position: relative; /* Asegura que el contenido esté sobre el overlay */
	z-index: 2;
  }

.home_slider_container
{
	width: 100%;
	height: 64vh;
	position: relative; /* Necesario para que el overlay se posicione correctamente */
}
.home_slider_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.home_slider_content
{
	position: absolute;
	top: 56.3%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}
.home_slider_content_inner
{
	background: #937c6f;
}
.home_slider_title
{
	font-family: 'Lucida', serif;
	font-size: 72px;
	color: #FFFFFF;
	height: 99px;
	line-height: 99px;
	padding-left: 31px;
	padding-right: 19px;
	white-space: nowrap;
}
.home_slider_subtitle
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -37px;
	height: 37px;
	background: #2f2f2f;
	color: #FFFFFF;
	padding-left: 34px;
	padding-right: 34px;
	line-height: 37px;
	font-family: 'Lucida', serif;
	font-size: 18px;
	white-space: nowrap;
}
.home_slider_nav {
    position: absolute;
    bottom: 318px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.home_slider_prev,
.home_slider_next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_slider_prev:hover,
.home_slider_next:hover {
    background: rgba(255,255,255,0.4);
}

.home_slider_prev img,
.home_slider_next img {
    width: 15px;
    height: 15px;
}


.home_slider_dots_container
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.home_slider_dots
{
	display: inline-block;
	position: absolute;
	top: -54px;
	left: 0;
}
.home_slider_dots ul
{
	display: inline-block;
}
.home_slider_dots ul li
{
	display: inline-block;
	position: relative;
	font-family: 'Lucida', serif;
	font-size: 18px;
	color: #FFFFFF;
	margin-right: 7px;
	cursor: pointer;
}
.home_slider_dots ul li:last-child
{
	margin-right: 0;
}
.home_slider_custom_dot div
{
	display: inline-block;
	width: 0px;
	height: 1px;
	background: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-left: 4px;
	margin-right: -4px;
}
.home_slider_custom_dot.active div
{
	width: 100px;
}
.home_slider .owl-dots
{
	display: none !important;
}

/*=================================
4.2 Home - About
===================================*/

.containe32{
  
    width: 100%;
    height: 30vh;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #937c6f;
    background-color: #ffffffea;
    
}
.about-content h1{
    font-family: 'Lucida', serif;
    font-size: 60px;
    text-transform: uppercase;
    color: #2f2f2f;
    margin-top: -4px;
}

.about-content h2 {
    font-size: 14px;
    font-weight: 600;
    color: #937c6f;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    align-items: center;
    text-align: center;
}

.about-content .about-text {
    font-size: 27px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}



/* Sección de contenedores */
.container1 {
   
    width: 100%;
    margin: 0 auto;
    background-color: #ffffffea;
}
/* Estilo general */
.full-width {
    width: 100%;
   
   
    
}
/* Container for the service cards */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 170px;
    justify-content: flex-start; /* Espacio entre las tarjetas */
    padding-left: 35px;
    padding-right: 35px;
}

/* Cada tarjeta individual */
.service-card {
    display: flex;
    align-items: center;
    background-color: #fff;
   
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 44%;
    height: 40vh;
   
    transition: transform 0.3s ease-in-out;
    flex-direction: row; /* Establecer la dirección por defecto (imagen izquierda, texto derecha) */
}

/* Efecto hover */
.service-card:hover {
    transform: translateY(-5px);
}
.service-image{
    width: 100%; /* Ocupa el 50% del ancho de la tarjeta */
   
}

/* Imagen dentro de la tarjeta */
.service-image img {
    width: 100%; /* Tamaño fijo para las imágenes */
    height: 50%;
    border-radius: 10%;
    margin-right: 20px; /* Espacio entre la imagen y el texto */
}
.service-content{
    width: 50%; /* Ocupa el 50% del ancho restante */
    text-align: left; /* Alinea el texto a la izquierda */
    padding: 20px; /* Espacio interno para el contenido */
}

/* Contenido de la tarjeta */
.service-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.service-content p {
    font-size: 20px;
    color: #666;
    margin-top: 8px;
}



/* Para que las tarjetas impares estén alineadas a la izquierda y las pares a la derecha */
.service-card:nth-child(odd) {
    justify-content: flex-start; /* Alinea las tarjetas impares (índices 1, 3, 5...) a la izquierda */
    border-radius: 34px 34px 100px 0px;
}
/* Para intercalar las tarjetas (texto izquierda, imagen derecha) */
.service-card:nth-child(even) {
    flex-direction: row-reverse; /* Cambia la dirección en las tarjetas pares (texto izquierda, imagen derecha) */
   
    text-align: right; /* Alinea el texto a la derecha */
    justify-content: flex-end; /* Alinea las tarjetas pares (índices 2, 4, 6...) a la derecha */
    border-radius: 100px 34px 0px 34px;
    margin-top:130px
}







/*********************************
5. Footer
*********************************/  


.footer
{
	padding-top: 80px;
    background-color: #ffffffea;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer_logo a img
{
	font-family: 'Lucida', serif;
	font-size: 84px !important; /* Tamaño aumentado (usa !important si es necesario) */
	font-weight: 700;
	color: #ffffff !important;
	text-transform: none !important; /* Remueve uppercase si lo tenía */
	letter-spacing: normal !important;
	max-height: 200px; /* Ajusta este valor según tus necesidades */
	width: auto;
	margin-top: 30px;
}
.footer_nav
{
	margin-top: 14px;
}
.footer_nav ul li
{
	display: inline-block;
	margin-right: 53px;
}
.footer_nav ul li:last-child
{
	margin-right: 0;
}
.footer_nav ul li a
{
	font-size: 12px;
	text-transform: uppercase;
	color: #232323;
	font-weight: 600;
	letter-spacing: 0.2em;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
    text-decoration: none;
}
.footer_nav ul li a:hover
{
	color: #937c6f;
}
.footer_social
{
	margin-top: 51px;
}
.footer_social ul li
{
	display: inline-block;
	margin-right: 36px;
}
.footer_social ul li:last-child
{
	margin-right: 0;
}
.footer_social ul li a i
{
	font-size: 24px;
	color: #937c6f; 
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_social ul li a i:hover
{
	color: #e0e3e4;
}
.copyright
{
	margin-top: 56px;
	padding-bottom: 13px;
	font-family: 'Lucida', serif;
	font-size: 12px;
	color: #232323;
}

.modaldelivery{
    display: none;   
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: -17px;
    left: 0;
    z-index: 1000;
   
}

.formulario{   
    
    width: 600px;
    height: 800px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    overflow-y: scroll;
   
    padding: 20px;
}
.titleform{
   
    margin-bottom: 30px;
    
}

.icon_close{
    position: relative;
    font-size: 30px;
    cursor: pointer;
}

.icon_close:hover{
    color: #937c6f;
}

.deliverybolsa{
    display: none;   
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: -17px;
    left: 0;
    z-index: 1000;

}


/* CSS Document */

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

[Table of Contents]

1. 1600px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 767px
11. 539px
12. 479px
13. 400px

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

/************
1. 1800px
************/

@media only screen and (max-width: 1800px)
{
	.search
	{
		width: 200px;
	}
}

/************
1. 1600px
************/

@media only screen and (max-width: 1600px)
{
	.main_nav
	{
		padding-left:0px;
	}
	.main_nav li{
	    margin: 0 30px;
	}

}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px)
{
    
    
    .service-cards {
  
    gap: 130px;
  

}
    
    
	.service-card 
	{
   
    width: 45%;
    height: 40vh;
    }
    .service-content 
    {
    width: 60%;
    }
    
    .service-content h3
    {
   
    font-size: 19px;
    
    }
    
     .service-content p
    {
   
    font-size: 18px;
    
    }





}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px)
{
	.main_nav
	{
		padding-left: 60px;
	}
	.main_nav ul li
	{
		margin-right: 34px;
	}
	.header_search
	{
		display: none;
	}

}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px)
{
   .header {
		height: 110px;
	}

	.logo1 a {
		font-size: 65px;
	}
	.logo1 img {
		max-height: 100px;
		margin-top: 2px;
	}

	.main_nav ul {
		flex-wrap: wrap;
		justify-content: center;
		
		margin-top: 37px;
	}

	.main_nav li {
		margin: 10px;
	}

	.main_nav ul li a {
		font-size: 12px;
		margin: 0 11px;
	}

	.main_nav ul li.logo-container {
		margin: 0px;
	}
	.sidebar_right
	{
		width: 960px;
	}
	
   
    
    .service-content h3
    {
   
    font-size: 20px;
    
    }

	
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px)
{
    .header {
		height: 110px;
	}

	.logo1 a {
		font-size: 65px;
	}
	.logo1 img {
		max-height: 100px;
		margin-top: 2px;
	}

	.main_nav ul {
		flex-wrap: wrap;
		justify-content: center;
	
		margin-top: 37px;
	}

	.main_nav li {
		margin: 10px;
	}

	.main_nav ul li a {
		font-size: 12px;
		margin: 0 11px;
	}

	.main_nav ul li.logo-container {
		margin: 0px;
	}
	.sidebar_right
	{
		width: 960px;
	}
	
	
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px)
{
    
    
    .header {
		height: 110px;
	}

	.logo1 a {
		font-size: 65px;
	}
	.logo1 img {
		max-height: 100px;
		margin-top: 2px;
	}

	.main_nav ul {
		flex-wrap: wrap;
		justify-content: center;
	
		margin-top: 37px;
	}

	.main_nav li {
		margin: 10px;
	}

	.main_nav ul li a {
		font-size: 12px;
		margin: 0 11px;
	}

	.main_nav ul li.logo-container {
		margin: 0px;
	}
	.sidebar_right
	{
		width: 960px;
	}
	
    
    .service-card{
        width: 100%;
        height: 40vh;
    }
    
    .service-content h3
    {
   
    font-size: 20px;
    text-align: center;
    
    }

	
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px)
{
    .header {
		height: 100px; /* Reduce la altura del header */
		
	}

	.logo a {
		font-size: 60px; /* Reducir el tamaño del logo */
	}

	.main_nav ul {
		
		flex-direction: column;
	}

	.main_nav ul li {
		margin: 0 20px; /* Reducir el espacio entre los elementos del menú */
	}

	.main_nav ul li a {
		font-size: 16px; /* Aumentar el tamaño de la fuente para que sea más legible */
		padding: 15px 0;
	}

	.main_nav ul li.logo-container {
		margin: 10px 0; /* Espacio adicional para separar el logo */
	}

	.main_nav ul li:last-child {
		margin-right: 0; /* Sin margen al final */
	}



    .main {
        padding: 1rem 0;
    }
    
     /* Menú desplegable en pantallas pequeñas */
    .dropdown-menu1 {
        position: relative; /* Cambiar de absoluto a relativo para que se alinee dentro del contenedor */
        top: 0;
        left: 0;
        min-width: 100%; /* El menú se expandirá para ocupar el ancho completo */
        box-shadow: none; /* Eliminar la sombra en pantallas pequeñas */
        display: none; /* Asegurar que el menú esté oculto por defecto */
    }
    .dropdown, .inicio, .nosotros, .contacto {
		display: none !important;
	}

    .dropdown:hover .dropdown-menu1 {
        display: none; /* Mostrar el menú al hacer clic, no al pasar el cursor */
    }

    .dropdown > a:after {
        content: " ▼"; /* Mantener la flecha indicadora */
        font-size: 12px; /* Aumentar el tamaño de la flecha */
    }

    .dropdown-menu1 li a {
        padding: 15px 0px; /* Reducir el espacio de los elementos */
        font-size: 14px; /* Tamaño de fuente más pequeño para móviles */
    }
    
      .shopping {
        gap: 8px;
        padding-right: 69px;
        margin-left: 8px;
        transform: translateY(-1px);
    }

    .header_content {
        flex-direction: row;
        justify-content: flex-end;
        
        gap: 15px;
    }

    .avatar-img {
        width: 20px;
        height: 22px;
    }

    .star img {
        width: 18px;
        height: 18px;
    }

    .dropdown-content {
        min-width: 140px;
    }
    
    .burger_container {
        
        display: block;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 10px;
        width: 22px;
        height: 16px;
        cursor: pointer;
        margin-top: 18px;
    }
    
    .burger_container div {
        width: 100%;
        height: 2px;
        background: #ffffff;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        pointer-events: none;
        top: -6px;
    }
    
    .burger_container:hover div {
        background: #937c6f;
    }
    


 

  .logo-container {
    order: -1; /* Mostrar el logo arriba */
  }

  .service-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    width: 100%;
    margin: 10px 0;
    margin-top: 127px;
    
  }
  
  .service-content{
      font-size:17px;
  }

  .about-content {
    padding: 20px;
    text-align: center;
  }
	
}
	


/************
6. 991px
************/

@media only screen and (max-width: 991px)
{
	
	.shopping
	{
		padding-right: 91px;
	}

	.footer_nav ul li
	{
		margin-right: 30px;
	}
}

/************
7. 959px
************/

@media only screen and (max-width: 959px)
{
	
}

/************
8. 880px
************/

@media only screen and (max-width: 880px)
{
	
}

/************
9. 768px
************/

@media only screen and (max-width: 768px)
{

.header {
		height: 100px; /* Reduce la altura del header */
		
	}

	.logo a {
		font-size: 60px; /* Reducir el tamaño del logo */
	}

	.main_nav ul {
		
		flex-direction: column;
	}

	.main_nav ul li {
		margin: 0 20px; /* Reducir el espacio entre los elementos del menú */
	}

	.main_nav ul li a {
		font-size: 16px; /* Aumentar el tamaño de la fuente para que sea más legible */
		padding: 15px 0;
	}

	.main_nav ul li.logo-container {
		margin: 10px 0; /* Espacio adicional para separar el logo */
	}

	.main_nav ul li:last-child {
		margin-right: 0; /* Sin margen al final */
	}



    .main {
        padding: 1rem 0;
    }
    
     /* Menú desplegable en pantallas pequeñas */
    .dropdown-menu1 {
        position: relative; /* Cambiar de absoluto a relativo para que se alinee dentro del contenedor */
        top: 0;
        left: 0;
        min-width: 100%; /* El menú se expandirá para ocupar el ancho completo */
        box-shadow: none; /* Eliminar la sombra en pantallas pequeñas */
        display: none; /* Asegurar que el menú esté oculto por defecto */
    }
    .dropdown, .inicio, .nosotros, .contacto {
		display: none !important;
	}

    .dropdown:hover .dropdown-menu1 {
        display: none; /* Mostrar el menú al hacer clic, no al pasar el cursor */
    }

    .dropdown > a:after {
        content: " ▼"; /* Mantener la flecha indicadora */
        font-size: 12px; /* Aumentar el tamaño de la flecha */
    }

    .dropdown-menu1 li a {
        padding: 15px 0px; /* Reducir el espacio de los elementos */
        font-size: 14px; /* Tamaño de fuente más pequeño para móviles */
    }
    
      .shopping {
        gap: 8px;
        padding-right: 69px;
        margin-left: 8px;
        transform: translateY(-1px);
    }

    .header_content {
        flex-direction: row;
        justify-content: flex-end;
        
        gap: 15px;
    }

    .avatar-img {
        width: 20px;
        height: 22px;
    }

    .star img {
        width: 18px;
        height: 18px;
    }

    .dropdown-content {
        min-width: 140px;
    }
    
    .burger_container {
        
        display: block;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 10px;
        width: 22px;
        height: 16px;
        cursor: pointer;
        margin-top: 18px;
    }
    
    .burger_container div {
        width: 100%;
        height: 2px;
        background: #ffffff;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        pointer-events: none;
        top: -6px;
    }
    
    .burger_container:hover div {
        background: #937c6f;
    }
    
    
  .service-card {
    width: 100%;
    margin: 10px 0;
  }

  

  .about-content h1 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 18px;
  }
  
  	.footer_logo a img {
		max-height: 150px;
		font-size: 60px; /* Logo más pequeño en pantallas pequeñas */
		margin-top: 20px;
	}
		.footer_social
    {
    	padding-right: 43px ;
    }

	.footer_nav ul {
		padding-left: 0;
		text-align: center;
	}

	.footer_nav ul li {
		display: inline-block;
		margin-right: 20px;
	}

	.footer_nav ul li a {
		font-size: 14px; /* Aumenta el tamaño de la fuente en pantallas pequeñas */
	}

	.footer_social ul li {
		display: inline-block;
		margin-right: 20px;
	}

	.footer_social ul li a i {
		font-size: 20px;
	}

	.copyright {
		font-size: 14px;
		text-align: center;
	}

  


	
}

/************
10. 767px
************/

@media only screen and (max-width: 767px)
{
    
     .home_slider_nav {
        bottom: 20px;
    }
    
    .home_slider_prev,
    .home_slider_next {
        width: 35px;
        height: 35px;
    }
    
    .home_slider_prev img,
    .home_slider_next img {
        width: 12px;
        height: 12px;
    }
    
    .service-content p {
        font-size: 17px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }

	
}

/************
11. 575px
************/

@media only screen and (max-width: 575px)
{
	p{font-size: 13px;}

	.header
	{
		height: 70px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.logo a
	{
		font-size: 24px;
	}
	.logo1 img {
		max-height: 100px; /* Reducir el tamaño del logo en pantallas pequeñas */
		width: auto;
		margin-top: 45px; /* Ajustar el margen superior */
	}
	.shopping
	{
		padding-right: 47px;
		margin-left: 0;
	}
	
	.menu
	{
		width: 100%;
		left: -100%;
		padding-right: 15px;
		padding-left: 15px;
		padding-top: 21px;
	}
	.menu .search
	{
		margin-bottom: 50px;
	}
	.menu .search_input
	{
		height: 36px;
	}
	.menu_close_container
	{
		right: 15px;
	}
	.menu .logo
	{
		margin-bottom: 35px;
		margin-right: auto;
	}
	.menu.active
	{
		left: 0;
	}
	
	.footer_logo a
	{
		font-size: 48px;
	}
	.footer_nav ul li
	{
		display: block;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.footer_nav ul li:last-child
	{
		margin-bottom: 0;
	}
	.footer_social ul li
	{
		margin-right: 29px;
	}
	.footer_social ul li a i
	{
		font-size: 20px;
	}

}

/************
11. 539px
************/

@media only screen and (max-width: 539px)
{
	.carrt-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .carrt-item {
        flex-direction: column;
    }
    
    .carrt-item img {
        width: 100%;
        height: auto;
        max-height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
     .service-card {
    width: 100%;
    margin: 10px 0;
  }
  
   .service-content p {
        font-size: 16px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
        .service-cards {
        gap: 0px;
    }



}

/************
12. 480px
************/

@media only screen and (max-width: 480px)
{
    
    .header {
		height: 60px; /* Reducir aún más la altura */
	}

	.logo a {
		font-size: 45px; /* Logo más pequeño en pantallas pequeñas */
	}


	.main_nav ul li {
		margin: 0 10px; /* Alineación más estrecha para móviles muy pequeños */
	}

	.main_nav ul li a {
		font-size: 14px; /* Fuente aún más pequeña */
		padding: 10px 0;
	}

	.main_nav ul li.logo-container {
		margin: 5px 0; /* Espacio más pequeño entre el logo y los links */
	}

	.main_nav ul li:last-child {
		margin-right: 0;
	}

	
	.logo1 img {
		max-height: 100px; /* Reducir el tamaño del logo en pantallas pequeñas */
		width: auto;
		margin-top: 45px; /* Ajustar el margen superior */
	}
	
	 /* Menú desplegable en pantallas muy pequeñas */
    .dropdown-menu1 {
        min-width: 100%; /* Asegurar que el menú ocupe todo el ancho */
		display: none;
    }
	.dropdown, .inicio, .nosotros, .contacto {
		display: none !important;
	}
	

    .dropdown > a:after {
        font-size: 14px; /* Aumentar el tamaño de la flecha en pantallas más pequeñas */
    }

    .dropdown-menu1 li a {
        padding: 10px 0px; /* Menos padding para que ocupe menos espacio */
        font-size: 13px; /* Fuente aún más pequeña para pantallas pequeñas */
    }

	.logo1 img {
		max-height: 80px; /* Reducir el tamaño del logo en pantallas pequeñas */
		width: auto;
		margin-top: 36px; /* Ajustar el margen superior */
	}
	
	
	.shopping {
        gap: 5px;
        padding-right: 55px;
        margin-left: 0px;
        transform: translateY(0); /* neutraliza el empuje */
    }

    .header_content {
        
        align-items: flex-end;
        gap: 10px;
        margin-top: 0px;
    }

    .avatar-img {
        width: 18px;
        height: 20px;
    }

    .star img {
        width: 16px;
        height: 16px;
    }

    .cart_num_container,
    .star_num_container {
        width: 12px;
        height: 12px;
        top: 10px;
        left: -4px;
    }

    .cart_num,
    .star_num {
        font-size: 8px;
    }

    .dropdown-content {
        right: -20px;
        min-width: 130px;
    }
    
    
    .full-width {
    padding: 0px;
   
    }


  .about-content h1 {
    font-size: 22px;
  }

  .about-content h2 {
    font-size: 18px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .service-card{
    margin-top: 55px !important;
    gap: 20px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 13px;
  }
  
  	.footer_logo a img {
		max-height: 160px;
		font-size: 35px;
	}

	.footer_nav ul li {
		display: block;
		margin: 10px 0;

	
	}

	.footer_nav ul li a {
		font-size: 12px;
	}
	.footer_social
    {
    	padding-right: 43px ;
    }

	.footer_social ul li {
		display: inline-block;
		margin-right: 15px;
	}

	.footer_social ul li a i {
		font-size: 18px;
	}

	.copyright {
		font-size: 10px;
		text-align: center;
	}
	
}

/************
13. 479px
************/

@media only screen and (max-width: 479px)
{
	.service-content {
    width: 100%;
  }

  .about-content h2 {
    font-size: 18px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .service-card{
    margin-top: 55px !important;
    gap: 0px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/************
14. 400px
************/

@media only screen and (max-width: 400px)
{
    
    
    
    
  .about-content h1 {
    font-size: 22px;
  }
  
  .service-content {
    width: 100%;
  }

  .about-content h2 {
    font-size: 18px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .service-card{
    margin-top: 55px !important;
    gap: 0px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 13px;
  }
  
}
	



