body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: linear-gradient(to bottom, #f3e5ab, #e2c799);
    color: #4b2e2e;
}

header {
    background: linear-gradient(90deg, #6f4e37, #4b2e2e);
    padding: 25px;
    text-align: center;
    color: #f3e5ab;
    font-size: 2em;
    font-weight: bold;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

nav {
    background-color: #8b5e3c;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff8dc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffe4b5;
}

section {
    padding: 30px;
    max-width: 900px;
    margin: 30px auto;
    background-color: #fffaf0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(139, 94, 60, 0.3);
}

h2 {
    color: #6f4e37;
    border-bottom: 2px solid #d2b48c;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

footer {
    background-color: #4b2e2e;
    color: #f5f5dc;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}

.produto {
    width: 300px;
    margin: 20px auto;
    text-align: center;
  }
  
  .produto img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .mensagem-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-family: 'Georgia', serif;
  }
  
  .chamadas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .chamadas .box {
    background-color: #fff8f0;
    padding: 1.5rem;
    border-radius: 10px;
    width: 40%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .botao {
    display: inline-block;
    margin-top: 1rem;
    background-color: #6f4e37;
    color: #fff;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .botao:hover {
    background-color: #4b2e22;
  }
  