* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #3c2f2f;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,.5)),
              url(multitienda/bosqueee.webp) no-repeat center center/cover;
  background-attachment: fixed;
}

header {
  height: auto;
  padding: 20px 0 80px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(44, 36, 30, 0.6);
  padding: 15px 30px;
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
  color: #f2e6d8;
  text-shadow: 1px 1px 3px #000;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  font-size: 15px;
  color: #f7f2ec;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.menu li a:hover {
  background-color: #e6d3b3;
  color: #2f1e1e;
}
#porque-conmigo {
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  max-width: 900px;
  margin: 60px auto;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#porque-conmigo h3 {
  text-align: center;
  color: #f2e6d8;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px #000;
}

.razones p {
  color: #f7f1eb;
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.razones p strong {
  color: #cde8c2;
}