body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
}

/* Logo a la izquierda */
.logo {
  flex: 0 0 auto;
}

/* Menú centrado */
.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
}


.menu {
  position: absolute;
  right: 20px;
}



.logo {
  color: #b59fc8;
}

.menu a {
  margin-left: 15px;
  text-decoration: none;
  color: #555;
}

.categorias {
  text-align: center;
  margin: 20px 0;
}

.categorias button {
  border: none;
  background: #eee;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}

.categorias .active {
  background: #b59fc8;
  color: #fff;
}

.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.producto {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.producto img {
  width: 100%;
  border-radius: 10px;
}

.precio {
  display: block;
  margin: 10px 0;
  font-weight: bold;
}

.btn-wsp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}
.banner {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
}

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

.banner-texto {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 400px;
}

.banner-texto h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-texto p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-banner {
  background: #b59fc8;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.footer {
  background: #f2edf7;
  padding: 40px 20px 20px;
  margin-top: 40px;
}

.footer-contenido {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: #7d5ba6;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}


.header {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* IZQUIERDA */
.header-left {
  flex: 1;
}

.logo {
  color: #00a3e0;
  font-size: 32px;
  font-weight: bold;
}

/* CENTRO */
.header-center {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

.menu-item {
  cursor: pointer;
}

.menu-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.menu-item small {
  display: block;
  font-size: 12px;
  color: #777;
}

/* DERECHA */
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-right input {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.icon {
  font-size: 18px;
  cursor: pointer;
}


.footer iframe {
  max-width: 100%;
}