
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}


.logo {
  font-weight: bold;
  text-align: start;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  gap: 10px
}
.logo-icono {
  height: 25px; 
  width: auto;
  vertical-align: middle;
}


.menu a {
  margin: 0 15px;
  font-size: 15px;
  color: #333;
}

.iconos span {
  margin-left: 15px;
  font-size: 18px;
}


.hero {
  display: flex;
  justify-self: center;
  margin: 50px ;
  gap: 100px;
  align-items:start ;
  padding: 50px;
  background-color: #f4f3ef;
  border-radius: 50px;
  width: 600px;
  height: auto;
}

.hero-texto {
  max-width: 350px;
}

.hero-texto h1 {
  font-size: 40px;
  font-weight: bold;
  
  
}

.hero-texto p {
  font-size: 15px;
  margin-top: 10px;
  color: #555;
  
  
}

.botones {
  margin-top: 50px;
 
}

.btn-negro,
.btn-blanco {
  padding: 15px 20px;
  font-size: 15px;
  margin-right: 10px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

.btn-negro {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-blanco {
  background-color: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}

.hero-imagen img {
  
  width: 210px;
  height: 350px;
  border-radius: 16px;
  
}


.categorias {
  padding: 40px 60px;
  text-align: start;
}

.lista-categorias {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.categoria {
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 16px;
  width: 150px;
}

.categoria span {
  font-size: 30px;
  
  
}
.categoria p{
   margin-block: 10px;
   font-size: 15px;
}

.productos {
  padding: 40px 60px;
  margin: 30px;
}

.lista-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 10px;
  margin: 10px;

}

.producto {
  text-align: center;
  border-radius: 16px;
  width: 150px;
  height: auto;

  
}

.producto img {
  width: 150px;
  height: 250px;
  border-radius: 8px;
  
}

.producto h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  text-align: start;
}

.producto p {
  margin-bottom: 10px;
  color: #555;
   text-align: start;
}

.precio{
  display: flex;
  gap: 50px;
}
.producto button {
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  cursor: pointer;
   text-align: end;
}


.newsletter {
  background-color: #f4f3ef;
  padding: 40px 60px;
  text-align: center;
  margin: 20px 180px; 
  border-radius: 20px;
}

.newsletter h2 {
  font-size: 1.5em;
}

.newsletter p {
  margin: 10px 0 20px;
  color: #555;
}

.newsletter input {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ccc;
  width: 250px;
  max-width: 80%;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background-color: #1a1a1a;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}


footer {
  padding: 30px 60px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  text-align: center;
}

.inicio {
  text-align: start;
}

.fin {
  text-align: end;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.2em;
}

.footer-enlaces a {
  margin: 0 5px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.footer-iconos a {
  margin-left: 10px;
  color: #333;
  font-size: 18px;

}


.footer-iconos img.icono-red {
  width: 22px;
  height: 22px;
  margin-left: 15px;
  
}




