:root{
  --bg: #f8f4ef;
  --card: rgba(255,255,255,0.78);
  --text: #3b2b24;
  --muted: #7c6558;
  --accent: #b86f4d;
  --accent-dark: #99573a;
  --olive: #7a8661;
  --border: rgba(122, 101, 88, 0.18);
  --shadow: 0 18px 45px rgba(78, 52, 39, 0.12);
  --radius: 22px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(248,244,239,0.96)),
    url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat fixed;
  min-height:100vh;
  padding: 24px 16px 40px;
}

.container{
  max-width: 780px;
  margin: 0 auto;
}

.card{
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero{
  padding: 34px 24px 26px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
  border-bottom: 1px solid var(--border);
}

.tag{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184,111,77,0.12);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-logo{
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 18px;
}

h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.subtitle{
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.section{
  padding: 28px 20px;
}

.section + .section{
  border-top: 1px solid var(--border);
}

.section-title{
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
  text-align:center;
}

.section-text{
  text-align:center;
  color: var(--muted);
  line-height:1.7;
  max-width: 650px;
  margin: 0 auto 24px;
}

.categories{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 14px;
  text-align:center;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(59,43,36,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.category:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(59,43,36,0.1);
}

.pix-box{
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.pix-highlight{
  background: linear-gradient(135deg, rgba(184,111,77,0.12), rgba(122,134,97,0.12));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  text-align:center;
  color: var(--text);
  font-weight: 600;
  line-height:1.7;
}

.pix-highlight strong{
  color: var(--accent-dark);
}

.qr-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 16px;
  background: rgba(255,255,255,0.88);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(59,43,36,0.08);
  max-width: 290px;
  margin: 0 auto;
}

#qrcode{
  width: 220px;
  min-height: 220px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.contact-box{
  margin-top: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  text-align:center;
}

.contact-label{
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.phone{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  word-break: break-word;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  justify-content:center;
}

button{
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: .95rem;
  font-weight: 700;
  cursor:pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

button:hover{
  transform: translateY(-2px);
}

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(184,111,77,0.28);
}

.btn-secondary{
  background: var(--olive);
  color: #fff;
  box-shadow: 0 10px 22px rgba(122,134,97,0.24);
}

.copy-status{
  text-align:center;
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent-dark);
  min-height: 22px;
}

.footer-note{
  margin-top: 20px;
  text-align:center;
  color: var(--muted);
  line-height:1.7;
  font-size: .95rem;
}

@media (min-width: 700px){
  .section{
    padding: 34px 34px;
  }

  .categories{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pix-box{
    grid-template-columns: 1fr 1fr;
  }
}
