html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: #ffffff;
  color: #333;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: #fff;
  border-bottom: 5px solid #f58025;
}
.logo-container img {
  height: 60px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #205ec9;
  font-weight: bold;
}
.hero {
  background: url('origen-de-la-naranja.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.4);
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.hero-text {
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: 3rem;
}
.btn {
  padding: 10px 20px;
  background: #f58025;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
main {
  padding: 40px 20px;
}
section {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}
.productos .producto {
  margin: 10px 0;
}
.contacto form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacto input, .contacto textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contacto button {
  background: #205ec9;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
footer {
  background: #f4f4f4;
  text-align: center;
  padding: 20px;
}

.proceso .pasos {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.proceso .pasos div {
  flex: 1 1 45%;
  background: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
}
.calidad {
  background: #fffaf0;
  padding: 20px;
  border-left: 5px solid #f58025;
}




.producto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}



.producto-card {
  text-align: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  padding: 10px;
}


.producto-card img {
  max-width: 100%;
  border-radius: 6px;
  height: 100px;
  object-fit: cover;
}

.producto-card p {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}


.producto-card {
  text-align: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  padding: 10px;
}

