body {
  font-family: 'Arial', sans-serif;
  background: #fff9f4;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #ff9800;
  padding: 20px;
  color: white;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.frutas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.fruta {
  background: #ffcc80;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 1.2em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s;
}

.fruta:hover {
  background: #ffb74d;
  transform: scale(1.1);
}

#splash {
  margin-top: 30px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, form textarea {
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

form button {
  background: #ff9800;
  color: white;
  border: none;
  padding: 40px;
  border-radius: 10px;
  cursor: pointer;
}

footer {
  background: #ff9800;
  color: white;
  text-align: center;
  padding: 15px;
}

.fruta-imagen {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.fruta-imagen img {
  width: 300px; /* ajusta el tamaño que prefieras */
  height: auto;
  border-radius: 0; /* sin bordes redondeados */
  display: block;
}

.fruta-imagen:hover {
  transform: scale(1.05);
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff9f4;
  z-index: 9999;
  overflow-y: auto;
  display: none;
  padding: 40px 20px;
}

.modal.show {
  display: block;
}

.modal-contenido {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#cerrar-modal {
  position: absolute;
  top: 40px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
}

#contenido-fruta h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.seccion-fruta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.seccion-fruta img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.seccion-texto {
    flex: 1;
    min-width: 900px;
    /* corregido */
}

.seccion-fruta:nth-child(even) {
  flex-direction: row-reverse;
}

.logo {
    width: 30px;
    /* Ajustá según el tamaño deseado */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}
.logo-titulo {
  display: flex;
  align-items: center;
}
