* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: Arial, Helvetica, sans-serif;

  background: #f7f3ee;

  color: #2e2a27;

  line-height: 1.5;
}


/* HEADER */

header {
  background: #fffaf6;

  border-bottom: 1px solid #e9ded4;

  position: sticky;

  top: 0;

  z-index: 10;
}


.navbar {
  max-width: 1100px;

  margin: 0 auto;

  padding: 18px 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


.logo {
  font-family: Georgia, serif;

  font-size: 2rem;

  letter-spacing: 3px;

  font-weight: normal;
}


nav a {
  text-decoration: none;

  color: #2e2a27;

  margin-left: 22px;

  font-size: 0.95rem;
}


nav a:hover {
  color: #a66d55;
}



/* HERO */

.hero {
  max-width: 1100px;

  margin: 0 auto;

  padding: 80px 24px 55px;

  text-align: center;
}


.hero span {
  color: #a66d55;

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 0.8rem;
}


.hero h1 {
  font-family: Georgia, serif;

  font-weight: normal;

  font-size: clamp(2.5rem, 6vw, 5rem);

  margin: 12px 0 18px;
}


.hero p {
  max-width: 620px;

  margin: 0 auto;

  color: #6f655f;

  font-size: 1.05rem;
}



/* PRODUCTOS */

.products-section {
  max-width: 1100px;

  margin: 0 auto;

  padding: 25px 24px 80px;
}


.section-title {
  text-align: center;

  font-family: Georgia, serif;

  font-size: 2rem;

  margin-bottom: 35px;

  font-weight: normal;
}


.products {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}


.product-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(70, 49, 38, 0.08);

  transition: transform 0.25s ease,
              box-shadow 0.25s ease;
}


.product-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 16px 35px rgba(70, 49, 38, 0.13);
}


.product-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  display: block;
}


.product-info {
  padding: 20px;
}


.product-info h3 {
  font-family: Georgia, serif;

  font-size: 1.25rem;

  font-weight: normal;

  margin-bottom: 8px;
}


.product-info p {
  color: #746b66;

  font-size: 0.9rem;

  min-height: 67px;
}


.bottom-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 18px;
}


.price {
  font-size: 1.25rem;

  font-weight: bold;
}


button {
  border: none;

  background: #2e2a27;

  color: white;

  padding: 10px 15px;

  border-radius: 999px;

  cursor: pointer;

  transition: 0.2s;
}


button:hover {
  background: #a66d55;
}



/* SOBRE NOSOTRAS */

.about {
  background: #eae0d7;

  padding: 65px 24px;

  text-align: center;
}


.about div {
  max-width: 700px;

  margin: 0 auto;
}


.about h2 {
  font-family: Georgia, serif;

  font-size: 2rem;

  font-weight: normal;

  margin-bottom: 16px;
}


.about p {
  color: #655c56;
}



/* FOOTER */

footer {
  text-align: center;

  padding: 28px;

  background: #2e2a27;

  color: #eee6df;

  font-size: 0.9rem;
}



/* RESPONSIVE */

@media (max-width: 900px) {

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .navbar {
    flex-direction: column;

    gap: 12px;
  }


  nav a {
    margin: 0 8px;
  }


  .hero {
    padding-top: 55px;
  }


  .products {
    grid-template-columns: 1fr;
  }


  .product-card img {
    height: 320px;
  }

}
