body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #5C4033;
    background-color: #F5F1EB;
}

header {
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin: 0;
    color: #5C4033;
}

header p {
    font-size: 1.3em;
    margin: 10px 0 20px;
    color: #5C4033;
}

.logo {
    max-width: 400px;
    width: 100%;
    margin: 20px auto;
}


.button {
    background-color: #C8AD7F;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto;
}

.productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.producto {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

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

footer {
    background-color: #5C4033;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: #C8AD7F;
    margin: 0 10px;
    text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.whatsapp-float i {
  line-height: 1;
  text-decoration: none;
  display: block;
}