/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f6f1;
  color: #3e2f2f;
  line-height: 1.6;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.top-bar {
  background-color: #d3b18a;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f2e4d5;
}

.navbar .logo {
  color: #5e4036;
  font-size: 24px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 150px;
}

.navbar ul li a {
  text-decoration: none;
  color: #5e4036;
  font-weight: bold;
}

.navbar input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  padding: 100px 30px;
  text-align: center;
  color: white;
  background-color: #a17c5b;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero button {
  background-color: #5e4036;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.categorias,
.productos,
.blogs {
  padding: 40px 30px;
  background-color: #fff;
}

.categorias h3,
.productos h3,
.blogs h3 {
  margin-bottom: 20px;
  color: #5e4036;
}

.categoria,
.filtros,
.lista-productos,
.blog-lista {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.item {
  background-color: #e4d1c0;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 200px;
  text-align: center;
  color: #3e2f2f;
}

.filtros button {
  padding: 10px 15px;
  border: none;
  background-color: #d3b18a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.producto {
  background-color: #fdf9f6;
  border: 1px solid #e4d1c0;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 200px;
}

.producto img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}

.producto span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}

.producto del {
  color: #999;
  margin-left: 5px;
}

.blog {
  background-color: #fdf9f6;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4d1c0;
  flex: 1 1 300px;
}

.blog img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog h4,
.blog p {
  padding: 10px;
}

.blog button {
  margin: 10px;
  padding: 8px 12px;
  border: none;
  background-color: #5e4036;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background-color: #5e4036;
  color: white;
  padding: 30px;
}

footer .info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .info div {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

footer input {
  padding: 5px;
  margin-right: 5px;
}

footer button {
  padding: 5px 10px;
  background-color: #d3b18a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #f9f6f1;
}

.boton-link {
  padding: 10px 15px;
  background-color: #d3b18a;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}




.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre imagen y texto */
}

.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.logo-text {
  color: #5e4036;
  font-size: 24px;
}





.copy {
  text-align: center;
  padding: 10px;
  font-size: 16px;
}

.copy .ig-link {
  margin-left: 10px;
  color: inherit;
  font-size: 20px;
  text-decoration: none;
}

.copy .ig-link:hover {
  color: #d3b18a; /* Cambia a un color bonito al pasar el mouse */
}
