body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background: #f7f7f7 !important;
  }
  
  header {
    background: #486d59;
    padding: 1em;
    text-align: center;
  }
  
  .logo {
    width: 450px;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  main {
    padding: 2em;
  }
  
  .productos .cards {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    background: white;
    padding: 1em;
    border-radius: 8px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 0 10px #ddd;
  }
  
  .reseñas .grid-reseñas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
  }
  
  .reseña {
    background: #fff;
    padding: 1em;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
  }
  
  .contacto form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: auto;
  }
  
  input, textarea {
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    padding: 0.8em;
    background-color: #3b3326;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  footer {
    text-align: center;
    padding: 1em;
    background-color:#486d59;
    margin-top: 2em;
    color: white;
  }
  
  /* Responsivo */
  @media (max-width: 600px) {
    nav ul {
      flex-direction: column;
    }
  
    .productos .cards {
      flex-direction: column;
      align-items: center;
    }
  }