* {
  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;
}
/* SECCIÓN SERVICIOS */


 h3 {
  text-align: center;
  font-size: 2.5em;
  color: #fcfcfc;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px #000000;
}

/* Tarjetas de servicios */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
 background: linear-gradient(135deg, #02070080, #9aca9969);
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.322);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #e4e4e4;
  margin-bottom: 10px;
  font-size: 1.3em;
  text-shadow: 2px 2px 8px black;
}

.card p {
    color: #e4e4e4;
  font-size: 0.95em;
  text-align: justify;
  margin-bottom: 15px;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Etiqueta */
.card .tag {
   background: linear-gradient(135deg, #020700fb, #9aca99);
  color: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85em;
  align-self: flex-start;
  font-weight: bold;
}