/* styles.css */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fdf8f3;
  color: #4a3b2e;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff3e6;
  position: sticky;
  top: 0;
  padding:10px 60px;
  max-height: 95px;
}

.logo img {
  height: 80px;
  padding: 0;
  margin: 0;
}

.nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-right: 20px;
}

.nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #4a3b2e;
  font-weight: 700;

}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
      background-color: rgba(255, 243, 230, 0.8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: 
     linear-gradient(rgba(255, 243, 230, 0.6),
    rgba(255, 243, 230, 0.2)),
  url('img/img-principal.png');
  min-height: 100vh;
  background-size: 100% auto;
  background-position: center;
  margin-top: -100px;
}

.hero-text {
  justify-content: center;
  text-align: center; 
}

.hero-text h2 {
  font-size: 3.5rem;

  text-shadow: 2px 2px 4px rgba(255, 243, 230, 0.8);

}

.hero-img {
  flex: 1;
  max-width: 100%;
  border-radius: 10px;
}
.hero-content img {

  width: 650px;
  height: auto;
}
.porque{
 background-color: #fdf8f3;
  background-image: radial-gradient(circle at top left, #fffaf4 0%, #fdf8f3 100%);
  padding: 3rem 2rem;
  text-align: center;
  scroll-margin-top: 100px;
}
.porque h3,.variedades h3 {
  font-family: 'Cormorant Garamond', sans-serif;
  color: #4a3b2e;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.btn {
  font-size: 1.8rem;
  background-color: #c48a3a;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h4 {
 font-size: 1.3rem;

}

.porque .card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

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

.variedades{
  text-align: center;
    background-image: url('img/fondo-elegirnos.png');
    padding: 3rem 2rem;
}


.variedades .grid{
  flex: 1;
}

.especial, .testimonios {
  text-align: center;
  padding: 2rem;
}

.footer {
  background-color: #fff3e6;
  text-align: center;
  padding: 1rem;
}

.desarrolladores a {
  color:#000;   
  text-decoration: none;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff3e6;
    position: absolute;
    width: 200px;
    top: 70px;
    right: 0px;
    padding: 1rem;
    border-radius: 10px;
    margin-right: 0px;
    margin-top: 45px;
  }
  .menu-toggle {
    display: block;
  }
  .hero{
    min-height: 100%;
    margin-top: 0;
    padding: 2rem 1rem;
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero img{
    width:350px;
   
  }
}


