:root {
  --black: #0b0b0b;
  --yellow: #ffeb3b;
  --text: #2e2c2c;
  --bg: #fff;
  --gradient-start: #ffd86a;
  --gradient-end: #ff8b4d;
  --highlight-start: #ffde59;
  --highlight-end: #ff914d;
}

[hidden] { display: none !important; }

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.modal-open { overflow: hidden; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background: var(--black);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Compensa a altura do cabeçalho fixo */
.content { padding-top: 64px; }
.brand { text-decoration: none; color: #fff; display: inline-flex; flex-direction: column; }
.brand-top { font-size: 12px; letter-spacing: 1px; opacity: 0.9; }
.brand-main { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 28px; line-height: 1; }

.nav { display: none; gap: 20px; }
.nav-link { color: #fff; text-decoration: none; font-weight: 600; font-size: 17px; }
.nav-link:hover { text-decoration: underline; }

.hamburger {
  width: 24px; height: 24px; border: none; background: transparent; display: grid; place-items: center; cursor: pointer; padding: 3px;
}
.hamburger .bar { width: 12px; height: 2px; background: #fff; display: block; margin: 2px 0; transition: transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(2.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-2.5px) rotate(-45deg); }

.nav.open { display: flex; position: fixed; top: 64px; left: 0; right: 0; background: var(--black); padding: 12px 16px; flex-direction: column; z-index: 2000; }

/* Hero */
.hero { min-height: calc(100vh - 64px); display: grid; place-items: center; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); }
.hero-inner { text-align: center; }
.hero-logo { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 6px; }
.logo-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--black); color: #ffd86a; display: none; place-items: center; font-weight: 700; }
.hero-logo-img { width: 64px; height: auto; display: block; }
.hero-title { font-family: 'Baloo 2', cursive; font-size: 28px; color: var(--text); margin: 0; }

.hero-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center; }
.btn { display: inline-block; padding: 12px 22px; color: var(--text); background: var(--yellow); text-decoration: none; border-radius: 6px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); font-size: 20px; font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: 0.2px; }

.btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }

/* Footer */
.site-footer { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); }
.footer-inner { padding: 32px 16px; display: grid; gap: 28px; }
.footer-top { display: grid; gap: 20px; justify-items: center; text-align: center; }
.footer-block { max-width: 520px; }
.footer-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; margin: 0; color: var(--text); display: inline-block; background-image: linear-gradient(180deg, transparent 64%, var(--yellow) 64%); padding: 0 6px; }
.footer-desc { font-size: 14px; margin: 10px 0 0; color: var(--text); }
.footer-logo { width: 96px; height: 96px; display: block; margin: 14px auto 0; border-radius: 50%; object-fit: contain; background: #fff; border: 2px solid var(--black); box-shadow: 0 0 0 6px var(--yellow); }
.footer-sep { height: 1px; background: rgba(0,0,0,0.2); }
.footer-bottom { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; justify-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.footer-chip { display: inline-block; background: var(--yellow); color: var(--black); border: 1px solid var(--black); border-radius: 999px; padding: 8px 12px; font-weight: 700; text-decoration: none; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.footer-chip:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.footer-credit { font-size: 13px; color: var(--text); }
.footer-back { display: inline-block; background: var(--black); color: #fff; text-decoration: none; font-weight: 700; border-radius: 999px; padding: 8px 14px; }
.footer-back:hover { opacity: 0.9; }

@media (min-width: 768px) {
  .footer-inner { padding: 40px 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-title { font-size: 32px; }
  .footer-desc { font-size: 15px; }
  .footer-bottom { grid-template-columns: auto 1fr auto; justify-items: start; }
  .footer-credit { justify-self: center; }
  .footer-back { justify-self: end; }
}

/* Desktop */
@media (min-width: 768px) {
  .brand-main { font-size: 28px; }
  .hamburger { display: none; }
  .nav { display: flex; position: static; flex-direction: row; }
  .hero-title { font-size: 36px; }
  .hero-logo-img { width: 80px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .btn { font-size: 20px; }
}

/* Poster section */
.poster { background: #fff; padding: 40px 0; margin: 0; }
.poster-inner { display: grid; gap: 24px; align-items: center; justify-items: center; }
.poster-media { width: 100%; display: grid; place-items: center; margin-bottom: 1em; }
.poster-img { width: 100%; max-width: 520px; height: auto; border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); background: #f2f2f2; }
.poster-content { color: var(--text); max-width: 560px; margin: 0 auto; }
.poster-content { color: var(--text); max-width: 720px; margin: 0 auto; }
.poster-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; margin: 0 0 8px; color: var(--text); text-align: center; }
.poster-subtitle { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 17px; margin: 0 0 12px; color: var(--text); }
.poster-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.poster-list li { line-height: 1.55; font-size: 15px; color: var(--text); text-align: justify; text-justify: inter-word; }
.poster-list strong {
  font-weight: 900;
  background: linear-gradient(90deg, var(--highlight-start), var(--highlight-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.poster-list .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); margin-right: 8px; position: relative; top: -1px; }

@media (min-width: 768px) {
  .poster-inner { grid-template-columns: auto auto; align-items: center; justify-content: center; justify-items: center; }
  .poster-title { font-size: 40px; }
  .poster-list li { font-size: 16px; }
}

.store { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 60px 0 0; margin: 0; overflow: hidden; }
.store-inner { display: grid; gap: 20px; justify-items: center; text-align: center; padding-bottom: 40px; }
.store-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px; margin: 0; color: var(--text); }
.store-subtitle { font-size: 16px; margin: 0; color: var(--text); }
.store-media { width: 100%; display: grid; place-items: center; }
.store-img { width: 100%; max-width: 560px; height: auto; }
.store-actions { display: flex; gap: 12px; justify-content: center; }

@media (min-width: 768px) {
  .store-title { font-size: 42px; }
  .store-subtitle { font-size: 18px; }
}
.poster-inner { grid-template-areas: 'content' 'media'; }
.poster-content { grid-area: content; }
.poster-media { grid-area: media; }

@media (min-width: 768px) {
  .poster-inner { grid-template-areas: 'media content'; }
}

.features { background: #fff; padding: 40px 0; margin: 0; border-top: 1px solid #eaeaea; }
.features-inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.features-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; margin: 0; color: var(--text); }
.features-note { font-size: 14px; margin: 0; color: var(--text); }
.feature-list { width: 100%; max-width: 720px; display: grid; gap: 12px; }
.feature-item { display: block; text-decoration: none; color: var(--text); background: var(--yellow); border-radius: 6px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); padding: 14px 18px; border: 1px solid var(--black); }
.feature-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; line-height: 1.1; margin: 0; }
.feature-desc { font-size: 13px; margin: 6px 0 0; }
.feature-item:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }

@media (min-width: 768px) {
  .features-title { font-size: 40px; }
  .features-note { font-size: 15px; }
  .feature-title { font-size: 28px; }
  .feature-desc { font-size: 14px; }
}

.magazine {
  padding: 0 0 60px 0;
  background: #fff url('/public/img/fundo.png') center no-repeat;
  background-size: cover;
  margin: 0;
  overflow: hidden;
}
.magazine-inner { display: grid; gap: 24px; justify-items: center; text-align: center; padding-top: 40px; }
.mag-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; margin: 0; color: var(--black); }
.mag-note { font-size: 14px; margin: 0; color: var(--text); }
.mag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; justify-items: center; }
.mag-card { width: 160px; height: 160px; border-radius: 0; display: block; border: 1px solid var(--black); background-position: center; background-size: contain; background-repeat: no-repeat; }
.mag-carlo { background-image: url('/public/img/CarloAcutis.png'); }
.mag-teresinha { background-image: url('/public/img/SantaTeresinhadoMeninoJesus.png'); }
.mag-dulce { background-image: url('/public/img/SantaDulce.png'); }
.mag-frassati { background-image: url('/public/img/SaoFrassati.png'); }
.mag-sandra { background-image: url('/public/img/BeataSandraSabattini.png'); }
.mag-jpii { background-image: url('/public/img/SaoJoaoPauloII.png'); }
.mag-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); transition: transform .15s ease, box-shadow .15s ease; }

@media (min-width: 768px) {
  .mag-title { font-size: 34px; }
  .mag-note { font-size: 15px; }
  .mag-card { width: 200px; height: 200px; background-size: contain; }
}

@media (max-width: 767px) {
  .mag-card { width: 140px; height: 140px; background-size: contain; }
}

.team {
  padding: 60px 0;
  background: #fff url('/public/img/fundo.png') center no-repeat;
  background-size: cover;
  margin: 0;
  overflow: hidden;
}
.team-inner { display: grid; gap: 24px; justify-items: center; text-align: center; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; justify-items: center; }
.team-item { display: grid; gap: 8px; justify-items: center; }
.team-card { width: 160px; height: 160px; border-radius: 12px; display: block; border: 4px solid var(--highlight-end); background-position: center; background-size: cover; background-repeat: no-repeat; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.team-label { display: inline-block; background: var(--yellow); color: var(--black); border: 2px solid var(--highlight-end); border-radius: 6px; padding: 6px 10px; font-weight: 900; font-size: 14px; }
.team-label#teamDiretorLabel { cursor: pointer; }
.team-diretor { background-image: url('/public/img/diretorEspiritual.png'); }
.team-coordenacao { background-image: url('/public/img/coordenacaoGeral.png'); }

@media (min-width: 768px) {
  .team-card { width: 200px; height: 200px; }
}

.donate { background: #fff; padding: 40px 0; margin: 0; }
.donate-inner { display: grid; place-items: center; }
.donate-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px; margin: 0; color: var(--text); }

.sponsors { background: #fff; padding: 20px 0 60px; margin: 0; }
.sponsors-inner { display: grid; gap: 20px; justify-items: center; text-align: center; }
.sponsors-donate { display: grid; gap: 12px; justify-items: center; }
.sponsors-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px; margin: 0; color: var(--text); }
.sponsors-note { font-size: 15px; margin: 0; color: var(--text); }
.sponsors-marquee { width: 100%; max-width: 900px; overflow: hidden; position: relative; }
.sponsors-track { display: flex; align-items: center; gap: 24px; will-change: transform; animation: sponsors-scroll 24s linear infinite; }
.sponsor { flex: 0 0 auto; display: grid; place-items: center; }
.sponsor-img { width: 120px; height: 120px; object-fit: contain; border-radius: 0; background: transparent; border: none; box-shadow: none; }
/* Interação manual do carrossel */
.sponsors-marquee { touch-action: pan-x; cursor: grab; overscroll-behavior-x: contain; }
.sponsors-marquee.dragging { cursor: grabbing; }
.sponsors-track { user-select: none; }
.sponsor-img { pointer-events: none; -webkit-user-drag: none; user-select: none; }

@keyframes sponsors-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .donate-title { font-size: 56px; }
  .sponsor-img { width: 140px; height: 140px; }
}

.inscricao { background: #fff; padding: 40px 0; margin: 0; }
.inscricao-inner { display: grid; gap: 24px; justify-items: center; }
.insc-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; margin: 0; color: var(--text); }
.insc-note { font-size: 14px; margin: 0; color: var(--text); }
.code-gate { display: grid; gap: 12px; justify-items: center; text-align: center; background: #fff; border: 1px solid var(--black); border-radius: 8px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.insc-input { width: 100%; max-width: 360px; padding: 12px 14px; border: 1px solid var(--black); border-radius: 6px; font-size: 16px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.insc-input:focus { outline: none; transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.insc-error { color: #c62828; font-weight: 900; }
.form-wrapper { width: 100%; max-width: 840px; }
.form-card { background: #fff; border: 1px solid var(--black); border-radius: 8px; padding: 20px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; margin: 16px 0 8px; }
.form-title span { background-image: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: grid; gap: 6px; }
.form-field span { font-size: 14px; font-weight: 900; color: var(--text); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--black); border-radius: 6px; font-size: 14px; background: #fff; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--black); box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.form-col { grid-column: 1 / -1; }
.form-actions { display: flex; justify-content: flex-end; margin-top: 16px; }

@media (min-width: 768px) {
  .insc-title { font-size: 36px; }
  .form-title { font-size: 28px; }
}
.payment { background: #fff; padding: 40px 0; margin: 0; }
.payment-inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.payment-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; margin: 0; color: var(--text); }
.payment-note { font-size: 16px; margin: 0; color: var(--text); }
.payment-status { font-size: 15px; font-weight: 700; }
.payment-qr { width: 240px; height: 240px; object-fit: contain; border: 1px solid var(--black); border-radius: 8px; }
.payment-code { max-width: 860px; display: grid; gap: 6px; }
.pix-code { display: block; padding: 10px 12px; border: 1px solid var(--black); border-radius: 6px; background: #fff; font-size: 12px; word-break: break-all; }
.code-label { font-weight: 700; font-size: 14px; }
.payment-help { font-size: 13px; }
.payment-link { display: inline-block; margin-top: 6px; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 6px; padding: 10px 14px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.payment-link:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.payment-copy { display: inline-block; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 6px; padding: 8px 12px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.payment-copy:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.payment-box { width: 100%; max-width: 640px; background: #c8e6c9; border: 1px solid var(--black); border-radius: 8px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.payment-box-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; margin: 0; color: #1b5e20; }
.payment-box-text { margin: 6px 0 0; font-size: 14px; color: #1b5e20; }
.status-box { display: grid; gap: 8px; justify-items: center; margin-top: 10px; text-align: center; background: #fff; border: 1px solid var(--black); border-radius: 8px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.status-row { display: grid; grid-template-columns: 1fr; gap: 8px; width: 100%; max-width: 480px; }
.shop { background: #fff; padding: 40px 0; margin: 0; }
.shop-inner { display: grid; gap: 24px; justify-items: center; text-align: center; }
.shop-hero { width: 100%; max-width: 560px; display: grid; gap: 8px; justify-items: center; }
.shop-hero-top { width: 100%; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); border-radius: 22px; height: 110px; padding: 8px 12px 12px; position: relative; display: grid; grid-template-rows: auto 1fr; align-items: center; justify-items: center; }
.shop-hero-title { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--text); text-transform: uppercase; }
.shop-oval { width: auto; height: auto; border: none; border-radius: 0; background: transparent; transform: none; display: grid; place-items: center; margin-top: -6px; }
.shop-oval-img { width: 180px; height: auto; display: block; }
.shop-bag { font-size: 20px; }
.shop-hero-note { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; }
.shop-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; margin: 0; color: var(--text); }
.shop-product { width: 100%; max-width: 520px; display: grid; gap: 10px; justify-items: center; }
.shop-product-media { width: 100%; display: grid; place-items: center;}
.shop-product-img { width: 100%; max-width: 380px; height: auto; border-radius: 16px ; }
.shop-thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.thumb-btn { display: inline-block; background: var(--yellow); color: var(--black); border: 1px solid var(--black); border-radius: 999px; padding: 6px 10px; font-weight: 900; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.thumb-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.shop-product-desc { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; }
.shop-product-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; margin: 0; color: #2e7d32; }
.btn-buy { display: inline-block; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 999px; padding: 12px 22px; font-size: 18px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.btn-buy:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }

/* Botão remover e voltar loja */
.shop-topbar { width: 100%; display: flex; justify-content: space-between; }
.shop-back { display: inline-block; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 999px; padding: 8px 12px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.shop-back:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.shop-hist { display: inline-block; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 999px; padding: 8px 12px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.shop-hist:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
/* Ícone no botão histórico */
.shop-hist::before { content: "🧾"; display: inline-block; margin-right: 8px; }
.shop-product-actions-item { width: 100%; display: flex; justify-content: center; margin-top: 10px; }
.btn-remove { display: inline-block; background: #c62828; color: #fff; text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 999px; padding: 8px 12px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.btn-remove:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }

/* Modal histórico */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.35); }
.modal-backdrop { z-index: 3000; }
.modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 3001; }
.modal-inner { width: calc(100% - 32px); max-width: 640px; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); color: var(--black); border: 1px solid var(--black); border-radius: 8px; box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.12); }
.modal-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; margin: 0; }
.modal-close { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--black); background: var(--yellow); color: var(--black); font-weight: 900; }
.modal-content { padding: 12px 16px; display: grid; gap: 12px; }

.about-card { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); border-radius: 8px; padding: 20px; display: grid; gap: 12px; justify-items: center; color: var(--black); }
.about-logo { display: grid; place-items: center; }
.about-logo-img { width: 120px; height: 120px; border-radius: 50%; object-fit: contain; background: transparent; border: none; box-shadow: none; }
.about-text { max-width: 520px; font-size: 14px; line-height: 1.6; text-align: justify; }
.hist-item { display: grid; gap: 6px; padding: 8px; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; }
.hist-row { display: flex; align-items: center; justify-content: space-between; font-weight: 700; }
.hist-items { font-size: 13px; display: grid; gap: 6px; }
.hist-item-line { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.hist-item-img { width: 44px; height: 44px; object-fit: cover; border: 1px solid var(--black); border-radius: 6px; background: #fff; }
.hist-item-text { line-height: 1.35; }
.hist-total { font-weight: 900; }

/* Separador entre itens da loja */
.shop-product + .shop-product { position: relative; margin-top: 16px; padding-top: 16px; }
.shop-product + .shop-product::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(0,0,0,0.12); }

/* Quantidade no carrinho */
.qty { display: inline-flex; align-items: center; gap: 6px; }
.qty-btn { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--black); border-radius: 999px; background: var(--yellow); color: var(--black); font-weight: 900; }
.qty-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }

.cart-controls { display: grid; grid-template-columns: auto auto; gap: 8px; align-items: center; }
.cart-control { display: grid; grid-template-columns: auto auto; align-items: center; gap: 6px; justify-items: start; }
.cart-control label { font-size: 12px; }
.cart-select { width: 64px; padding: 4px 6px; font-size: 12px; text-transform: uppercase; }
.qty-input { width: 44px; padding: 4px 6px; font-size: 12px; }
.cart-control .qty { gap: 4px; }

/* Destaque para o título do carrinho */
.shop-hero-title.cart-highlight { font-size: 18px; font-weight: 900; letter-spacing: 1px; color: var(--black); text-shadow: 0 1px 0 rgba(0,0,0,0.2); }

/* Bio modal */
.bio-layout { display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: start; }
.bio-images { display: grid; gap: 8px; }
.bio-img { width: 100px; height: 100px; object-fit: cover; border: 1px solid var(--black); border-radius: 6px; background: #fff; }
.bio-content { display: grid; gap: 8px; }
.bio-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; margin: 0; color: var(--text); display: inline-block; background-image: linear-gradient(180deg, transparent 64%, var(--yellow) 64%); padding: 0 6px; }
.bio-text { font-size: 14px; line-height: 1.6; text-align: justify; }

@media (min-width: 768px) {
  .shop-title { font-size: 32px; }
  .shop-oval { width: 200px; height: 80px; }
}

.cart-fab { position: fixed; right: 16px; bottom: 16px; display: grid; grid-template-rows: auto auto; justify-items: center; gap: 6px; z-index: 1000; }
.cart-fab-btn { width: 54px; height: 54px; display: grid; place-items: center; background: var(--yellow); color: var(--black); text-decoration: none; border: 1px solid var(--black); border-radius: 50%; box-shadow: 0 2px 0 rgba(0,0,0,0.4); font-size: 24px; }
.cart-fab-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.4); }
.cart-fab-label { font-size: 12px; font-weight: 700; color: var(--black); }

.auth { background: #fff; padding: 40px 0; margin: 0; }
.auth-inner { display: grid; gap: 16px; justify-items: start; text-align: left; }
.auth-register { display: none; }
.auth-toggle { margin-top: 24px; }
.bio-card { display: grid; gap: 12px; }
.bio-media { width: 100%; display: grid; place-items: center; }
.bio-photo { width: 140px; height: 140px; object-fit: cover; border: none; border-radius: 50%; background: #fff; }
.bio-page { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 40px 0; margin: 0; }
.bio-page-inner { display: grid; place-items: center; text-align: center; }
.bio-page-top { width: 100%; max-width: 680px; display: flex; justify-content: flex-start; margin-bottom: 12px; }
.bio-page-back { display: inline-block; background: var(--yellow); color: var(--black); text-decoration: none; font-weight: 900; border: 1px solid var(--black); border-radius: 999px; padding: 8px 12px; box-shadow: 0 2px 0 rgba(0,0,0,0.4); }
.bio-page-card { width: 100%; max-width: 680px; background: transparent; color: var(--black); border: 1px solid var(--black); border-radius: 8px; box-shadow: none; padding: 16px; display: grid; gap: 12px; }
.bio-page-media { display: grid; place-items: center; }
.bio-page-photo { width: 160px; height: 160px; object-fit: cover; border: none; border-radius: 50%; }
.bio-page-body { display: grid; gap: 8px; }
.bio-page-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; margin: 0; color: var(--black); }
.bio-page-title span { background-image: linear-gradient(180deg, transparent 64%, var(--yellow) 64%); padding: 0 6px; }
.bio-page-subtitle { font-size: 14px; font-weight: 700; color: var(--black); }
.bio-page-text { text-align: justify; display: grid; gap: 10px; font-size: 14px; color: var(--black); }

.coord { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 20px 0 60px; margin: 0; }
.coord-inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.coord-title { display: inline-block; background: var(--yellow); color: var(--black); border: 1px solid var(--black); border-radius: 999px; padding: 6px 12px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; }
.coord-grid { width: 100%; max-width: 760px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; justify-items: center; }
.coord-item { display: grid; gap: 8px; justify-items: center; }
.coord-photo { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; border: none; }
.coord-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px; color: var(--black); }
.coord-role { font-size: 13px; color: var(--black); }
.bio-body { display: grid; gap: 8px; }

.agenda { position: relative; background: #fff url('/public/img/fundo.png') center no-repeat; background-size: cover; padding: 40px 0 60px; margin: 0; overflow: hidden; }
.agenda::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(0deg, rgba(255,139,77,0.85), rgba(255,139,77,0)); }
.agenda-inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.agenda-top { width: 100%; max-width: 720px; display: flex; justify-content: flex-start; }
.agenda-head { display: grid; justify-items: center; gap: 6px; }
.agenda-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px; margin: 0; background: linear-gradient(90deg, var(--highlight-start), var(--highlight-end)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.agenda-badge { display: inline-block; background: var(--black); color: var(--yellow); font-weight: 900; border-radius: 6px; padding: 6px 10px; letter-spacing: 0.5px; }
.agenda-list { width: 100%; max-width: 720px; display: grid; gap: 14px; }
.agenda-item { display: grid; gap: 6px; background: #fff; border: 2px solid var(--highlight-end); border-radius: 22px; padding: 12px 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.agenda-date { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: var(--black); }
.agenda-desc { font-size: 14px; font-weight: 700; color: var(--highlight-end); }

@media (min-width: 768px) {
  .agenda-title { font-size: 40px; }
  .agenda-date { font-size: 20px; }
}
