 :root {
    --primary-color: #f57253;
    --secondary-color: #f5ab53;
    --accent-color: #f58f54;
    --background-color: #f5e5bc;
    --text-color: #f55653;
    --font-family: 'Georgia', serif;
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  header {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  }
  header .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    font-size: 1.7rem;
    margin: 0;
    letter-spacing: 1.5px;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  nav a:hover,
  nav a:focus {
    color: var(--accent-color);
    outline: none;
  }

  main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .hero {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 6px 15px rgba(140,86,75,0.25);
    margin-bottom: 3rem;
  }
  .hero h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
  }
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color:white;
  }

  section {
    margin-bottom: 3rem;
  }
  section h3 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.3rem;
    max-width: fit-content;
  }

  /* Gallery */

  .gallery-filters {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .gallery-filters button {
    background: var(--primary-color);
    color: white;
    border: none;
    margin: 0 0.4rem 0.8rem 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(140,86,75,0.4);
  }
  .gallery-filters button:hover,
  .gallery-filters button.active {
    background: var(--accent-color);
    outline: none;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  .gallery-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px #f5c053;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-item:hover,
  .gallery-item:focus {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px ;
    outline: none;
  }
  .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .gallery-item .desc {
    padding: 1rem;
    flex-grow: 1;
  }
  .gallery-item .desc h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
  }
  .gallery-item .desc p {
    margin: 0;
    color: #5e4b47;
  }

  /* About section */
  #about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }

  /* Contact form */

  form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(140,86,75,0.25);
  }
  form label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  form input[type="text"],
  form input[type="email"],
  form textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    margin-bottom: 1.3rem;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
  }
  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
  }
  form textarea {
    min-height: 100px;
  }
  form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(140,86,75,0.5);
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
  }
  form button:hover,
  form button:focus {
    background: var(--accent-color);
    outline: none;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 1.2rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: var(--background-color);
    border-top: 1px solid var(--secondary-color);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .hero h2 {
      font-size: 1.9rem;
    }
    header h1 {
      font-size: 1.4rem;
    }
    nav a {
      margin-left: 1rem;
      font-size: 0.95rem;
    }
  }

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  padding: 2rem;
  background-color: #f9f9f9;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* <-- 2 colunas fixas */
  gap: 20px;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 250px;
}

.box h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.box .price {
  color: #444;
  font-weight: bold;
  font-size: 1rem;
}

.section {
  margin-top: 5%;
}

section,id{
  margin-top: 5%;
}

 .cart-icon {
      position: fixed;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      z-index: 1000;
    }
    .cart-modal {
      position: fixed;
      top: 60px;
      right: 20px;
      background: white;
      border: 1px solid #ccc;
      padding: 20px;
      z-index: 999;
      display: none;
      width: 300px;
      max-height: 400px;
      overflow-y: auto;
    }
    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }