* {
  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: 100vh;
  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;
}

/* HERO / Titular */
.titular h1 {
  font-size: 2.8em;
  margin-top: 120px;
  text-shadow: 2px 2px 5px #000000;
}



/* BOTÓN */
.btn {
  background: linear-gradient(135deg, #134d0267, #b39d83);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #a7744f;
  transform: scale(1.05);
}
.titular {
  text-align: center;
  padding: 40px 20px;
}

.titular p {
  font-size: 1.2em;
  font-weight: 600;
  color: #f2e6d8;
  text-shadow: 1px 1px 2px #000;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 15px;
  line-height: 1.6;
}

.titular .btn {
  background: linear-gradient(135deg, #134d0267, #b39d83);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.89);
  transition: all 0.3s ease;
}

.titular .btn:hover {
  background: #a7744f;
  transform: scale(1.05);
}
  