/* Import de fontes */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Layout geral */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #e9e2e2c5;
  color: #333;
  line-height: 1.6;
}

.logo { font-family: 'Cormorant Garamond',serif; font-size: 32px; 
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0bdb5; /* dourado sofisticado */ }

/* Barra promocional */
.promo-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 14px;
}

/* Header */
.main-header {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: bold;
}

/* Navegação */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #c0bdb5;
}

/* Ícones */
.icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.icons i {
  cursor: pointer;
  transition: color 0.3s ease;
}

.icons i:hover {
  color: #c0bdb5;
}

/* Botões */
.btn-default,
.btn-primary {
  display: inline-block;
  background: #c49a6c;
  color: #fff;
  padding: 12px 28px; /* tamanho consistente */
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.3s ease;
}

.btn-default:hover,
.btn-primary:hover {
  background: #a67c52;
}

/* Seções */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 30px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .icons {
    margin-top: 10px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
