* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  width: 100%;
}

header {
  background-color: #7d5a50 ;
  padding: 20px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

header h1 {
  color: #111111;
}

li {
  display: inline-block;
}

li a {
  color: white;
  font-size: 18px;
  font-weight: 440px;
  margin-right: 25px;
  text-decoration: none;
}

li a:hover {
  color: black;
  transform: scale(5);
}body {
    margin: 0;
    background-color: #F2F2F2;
}

.banner {
    position: relative;
    background-image: url('#');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.banner h1 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

section {
    padding: 40px 20px;
}

h2 {
    color: #7d5a50;
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.produto {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    width: 260px;
    padding: 20px;
    text-align: center;
}

.produto img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.produto:hover {
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.cores {
    margin: 10px 0;
}

.cor {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 3px;
    border: 1px solid #ccc;
}

.valor {
    font-weight: bold;
    color: #a9746e;
    font-size: 1.1em;
}
