body {
  margin: 0;
  padding: 0;
  background: #a67c52;
  font-family: sans-serif;
  color: #333;
}

header {
  background-color: #832c2cba;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
  font-family: "Ethnocentric";
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d63c2e;
  transform: scale(1.05);
}

.nav-link {
  font-weight: bold;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link.active {
  border-bottom: 2px solid #000000;
}


.titulo {
  font-family: "Ethnocentric";
  text-align: center;
  color: #f6eceb;
  margin: 40px 0;
  font-size: 2.5rem;
  text-shadow: 2px 2px 3px #7b241c;
}

.contenedor-cosechas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.cosecha {
  background: white;
  padding: 30px 20px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  width: 45%;
  min-width: 300px;
  text-align: justify;
  transition: 0.3s;
}

.cosecha:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.cosecha h2 {
  text-align: center;
  color: #7b241c;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cosecha img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.cosecha p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .cosecha {
    width: 90%;
  }
}

.atras
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.btnatras
{
  background-color: #8B4513;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 2px;

}

.btnatras:hover
{
  transform: translateY(-5px);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  background-color: #7b241c;
}