
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 2px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;  
  gap: 10px;            
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #1e2b18;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  margin-right: 30px;
}

nav a:hover {
  color: #4e6b3f;
}

nav a.active {
  border-bottom: 3px solid #4e6b3f;
  padding-bottom: 3px;              
  color: #4e6b3f;                   
}
.banner-tours {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner-tours img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.banner-tours h2 {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: white;
  font-size: 2.8rem;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 6px;
}

.contenedor-tours {
  background: #88a466;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 50px 70px;
  justify-items: center;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 340px;
}

.tour-card:hover {
  transform: scale(1.03);
}

.tour-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tour-card h3 {
  margin: 15px 10px 5px;
  color: #2f3e1d;
  font-size: 1.2rem;
}

.tour-card .precio {
  color: #4e6b3f;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.tour-card button {
  background-color: #4e6b3f;
  color: white;
  border: none;
  padding: 10px 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.tour-card button:hover {
  background-color: #2e4023;
}

footer {
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

footer p {
  font-size: 14px;
  color: #333;
}

footer .redes {
  display: flex;
  gap: 25px;
  margin-left: 200px;
}

footer i {
  font-size: 1.5rem;
}

footer i:hover {
  color: #4e6b3f;
}

