/* === ESTILOS GERAIS === */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

header {
  background-color: #111;
  color: #fff;
  padding: 20px;
}

header .logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  margin-right: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* === SEÇÃO DE PRODUTOS === */
.galeria-produtos {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-produtos h2 {
  font-size: 1.8rem;
  text-align: center;
  color: #222;
  margin-bottom: 30px;
}

/* === GRID DE PRODUTOS === */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* === CARD DO PRODUTO === */
.produto-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* === IMAGEM DO PRODUTO === */
.produto-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === TÍTULO E DESCRIÇÃO === */
.produto-card h3 {
  font-size: 1rem;
  color: #0078d4;
  margin: 10px 0 5px;
}

.produto-card p {
  font-size: 0.95rem;
  color: #444;
}

/* === VÍDEO DE PERFUME === */
.video-perfume {
  width: 100%;
  height: auto;
  max-height: 240px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* === RESPONSIVIDADE EXTRA === */
@media (max-width: 600px) {
  .galeria-produtos h2 {
    font-size: 1.5rem;
  }

  .produto-card h3 {
    font-size: 0.95rem;
  }

  .produto-card p {
    font-size: 0.9rem;
  }
}

.rodape {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}