
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6
  }

  a {
    text-decoration: none;
    color: inherit
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 2px solid rgba(191, 167, 111, 0.2)
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px
  }

  .logo {
    height: 60px;
    border-radius: 10px
  }

  .site-title {
    font-weight: 800;
    letter-spacing: 1px;
    color: #bfa76f;
    font-size: 1.3rem
  }

  nav {
    background: #faf9f8;
    border-bottom: 1px solid #eee
  }

  nav .nav-inner {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 10px 0;
    flex-wrap: wrap
  }

  nav a {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: #444;
    transition: .2s
  }

  nav a:hover {
    background: rgba(191, 167, 111, 0.12);
    color: #bfa76f;
    transform: translateY(-1px)
  }

  .hero {
    padding: 60px 20px;
    background: linear-gradient(#fff, #f6f3ee)
  }

  .hero-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center
  }

  .hero h1 {
    font-size: 2.2rem;
    color: #bfa76f;
    margin-bottom: 10px
  }

  .hero p {
    font-size: 1.05rem;
    color: #555
  }

  .btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 600
  }

  .btn-primary {
    background: #bfa76f;
    color: #fff
  }

  .section {
    padding: 40px 20px
  }

  .section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #bfa76f
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px
  }

  .card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06)
  }

  .card h3 {
    margin-bottom: 8px;
    color: #bfa76f
  }

  .card p {
    font-size: .95rem;
    color: #555
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
  }

  .team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px
  }

  .team-role {
    color: #bfa76f;
    font-weight: 600;
    margin-bottom: 4px
  }

  .accordion {
    max-width: 900px;
    margin: 0 auto
  }

  .acc-item {
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff
  }

  .acc-header {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600
  }

  .acc-header span {
    color: #bfa76f
  }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 16px
  }

  .acc-body-inner {
    padding: 10px 0 14px 0
  }

  .acc-item.open .acc-body {
    max-height: 800px
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: .95rem
  }

  .price-name {
    flex: 1
  }

  .price-value {
    white-space: nowrap;
    font-weight: 600
  }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    max-width: 900px;      /* largura controlada */
    margin: 0 auto;        /* centraliza */
    padding: 10px 0;
}

.thumb {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}


  
  h3 {
    font-family: Brush Script MT;
    font-size: 40px;
  }

  footer {
    border-top: 1px solid #eee;
    padding: 18px 0;
    margin-top: 30px;
    font-size: .9rem;
    color: #666
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
  }

  
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}
