/* Estilos principales para Gaia Vitalis */

:root {
  --verde-principal: #2e5d3b;
  --verde-claro: #a8cbb7;
  --crema: #f4f1ec;
  --oscuro: #333;
  --dorado: #bfa76f;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--crema);
  color: var(--oscuro);
}

header {
  background-color: var(--verde-principal);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

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

.seccion {
  padding: 60px 20px;
  text-align: center;
}

.inicio img, .nosotros img {
  max-width: 90%;
  border-radius: 15px;
  margin-top: 20px;
}

.tienda .productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.producto {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.producto h3 {
  color: var(--verde-principal);
}

.producto a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: var(--verde-claro);
  color: var(--oscuro);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.boton-contacto {
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--verde-principal);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 20px;
}

footer {
  background-color: var(--verde-principal);
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .producto {
    width: 90%;
  }
}
