/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.8rem;
}

/* Estilos de la marquesina */
.marquee-container {
    width: 100%; /* o el ancho que desees */
    margin: 0 auto;		
    overflow: hidden;
    background-color: #F9B56B;
    border: 1px solid #ccc;
    position: relative;
	padding: 0.7rem;
	font-size: 1.0rem;
}

.marquee {
    display: flex;
    width: 200%;
    animation: marquee 20s linear infinite;
}

.marquee span {
    flex: 0 0 50%;
    white-space: nowrap;
}


header {
    width: 100%; /* o el ancho que desees */ 
    margin: 0 auto;	
    color: #000;
    padding: 1rem 0;
	padding-top: 40px;
	text-align: center;
	background-color: #FFEAD6;
    padding: 1rem;
}

header hr {
	border: none; /* Elimina el borde predeterminado */
	height: 1px; /* Altura de la línea */
	background-color: #dFcAb6; /* Color de la línea */
	padding: 0;
	margin: 0;	
}

.flex-container {
	display: flex;
	justify-content: center;
}
.flex-item {
	margin: 0;
	padding: 10px;
}
		
.logo {
	font-family: "Bad Script", cursive;
	font-weight: 400;
	font-style: normal;	
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
	text-align: center;	
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Efecto hover */
.nav-links a:hover {
    color: #D12600; /* Cambia a un color destacado */
	/* background-color: #b2C3EE; */
    /* text-decoration: underline; */
	/* font-weight: bold; */
}

/* Estilos para la clase active */
.nav-links a.active {
    color: #000; /* Cambia el color del texto */
    /* background-color: rgb(215,235,245);  Cambia el color de fondo */
    font-weight: bold; /* Aplica negrita */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
	padding-top: 18px;
	-webkit-tap-highlight-color: #FFf5e1;
}

.hamburger span {
    background-color: #000;
    border-radius: 2px;
    height: 2px;
    width: 25px;
    margin: 4px 0;
}

/* Keyframes for the marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Estilos de inicio */
.inicio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.2rem;
	background-color: #FFEAD6;
}

.image-container {
	text-align: center; /* Centrar horizontalmente el contenido dentro del contenedor */
}
.responsive-image {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

/* Estilos de los productos */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.2rem;
	background-color: #FFEAD6;
	

    margin: 0 auto;
    max-width: 1133px;	
	
	
}

.product {
    /*border: 1px solid #ccc;*/
    padding: 0.1rem;
    text-align: center;
    width: 185px;
    transition: transform 0.2s;
	background-color: #FFffff;
	overflow: hidden; /* Oculta cualquier parte de la imagen que se salga del contenedor */
	position: relative;
	border-radius: 4px; /* Redondea los bordes */
}

.product img {
	width: 100%;
	height: 190px; /* Puedes ajustar la altura según necesites */
	background-color: #ffffff; /* Color de fondo para los bordes vacíos */
	transition: transform 0.3s ease; /* Transición suave */
	border-top-left-radius: 4px;
	border-top-right-radius: 4px; 
}

.product img:hover {
	/*transform: scale(1.03);  Agranda la imagen al 120% */
	transform: scale(1.03); /* Agranda la imagen al pasar el mouse */
}

.product h2 {
    margin: 0.5rem 0;
}

.product button {
	padding: 5px 10px;
	background-color: #FFEAD6; /* Color de fondo */
	color: #000000; /* Color del texto */
	border: none; /* Sin borde */
	border-radius: 5px; /* Radio del borde */
	cursor: pointer; /* Cursor de puntero al pasar sobre el botón */
	/* font-weight: bold; */
}

.product button:hover {
	background-color: #F9B56B; /* Color de fondo al pasar sobre el botón */
}

/* Estilos de contacto */
.contacto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.2rem;
	background-color: #FFEAD6;
}

/* Estilos del pie de página */
footer {
    background: #F9B56B;
    color: #000000;
    text-align: center;
    padding: 1rem 0;
    //position: fixed;
    width: 100%;
    bottom: 0;
}

/* Mostrar el menú cuando se activa la clase show */
.nav-links.show {
	display: flex;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .marquee-container {
		padding: 0.7rem;
		font-size: 1.0rem;
    }
    .marquee {
        animation: marquee 5s linear infinite; /* Speed up animation on smaller screens */
		width: 250%;
    }
	
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #FFEAD6;
    }
    .nav-links li {
		background-color: #FFf5Df;
		display: flex; /* Usar flexbox en el elemento li */
		justify-content: center; /* Centrar horizontalmente */
		align-items: center; /* Alinear verticalmente al centro */
		height: 30px; /* Altura del elemento li */
		border: 0px solid #ccc; /* Añadir un borde para visualización */
		margin-bottom: 2px; /* Espaciado entre los elementos li */
		margin-left: 0px;
		margin-right: 0px;
    }
    .hamburger {
        display: flex;
    }	
	
	header {
		padding-bottom: 5px;
	}

}

.titulo_producto {
	text-transform: uppercase;
	font-size: 1em;
	margin-bottom: 20px;
	text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact p,
.footer-social p {
    margin: 5px 0;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-social a:hover {
    text-decoration: underline;
}

