body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #f8f5f2;
  color: #3b2e2a;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b0e0e;
  color: white;
  padding: 15px 40px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #e0b589;
}

.hero {
  background-image: url('https://images.unsplash.com/photo-1510626176961-4b37d0f0b540?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  background-color: rgba(0,0,0,0.4);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #b8926a;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a67850;
}

.vinhos {
  padding: 60px 20px;
  text-align: center;
}

.vinho-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.experiencia {
  background-color: #e7d7c9;
  padding: 50px 20px;
  text-align: center;
}

footer {
  background-color: #4b0e0e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
