:root {
  --verde: #2d6a4f;
  --verde-oscuro: #1b4332;
  --marron: #6f4e37;
  --dorado: #b38b59;
  --gris: #f4f4f4;
  --texto: #333333;
  --blanco: #ffffff;
  --header-height: 72px;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body { height:100%; }
body { display:flex; flex-direction:column; }
main { flex:1; }


body {
  font-family: "Poppins", sans-serif;
  color: var(--texto);
  background: #ffffff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

section {
  padding: 60px 8%;
}

h1, h2, h3 {
  color: var(--verde-oscuro);
  font-weight: 700;
}

ul { padding-left: 20px; }