.titulo-tours {
  text-align: center;
  font-size: 2.4rem;
  margin: 60px 0 40px;
  color: #2c3e50;
  font-weight: 800;
  text-transform: uppercase;
}

.tours-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.tour-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card h2 {
  font-size: 1.2rem;
  margin: 15px 15px 5px;
  color: #333;
}

.tour-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 15px;
}

.tour-card p strong {
  color: #ff6a00;
}

.tour-card a {
  display: block;
  margin: 15px;
  margin-top: auto;
  background: #f68468;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tour-card a:hover {
  background-color: #e65c00;
}
