
:root{
  --bg:#f7f5f0;
  --paper:#ffffff;
  --ink:#0f1115;
  --muted:#696d76;
  --gold:#d8ad46;
  --gold-2:#f2d886;
  --line:#e9e5dc;
  --shadow:0 14px 40px rgba(15,17,21,.08);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:var(--bg);color:var(--ink)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input{font:inherit}
.topbar{
  position:sticky;top:0;z-index:20;height:72px;padding:0 clamp(18px,4vw,64px);
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(247,245,240,.92);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)
}
.brand{display:inline-flex;align-items:center;gap:9px;font-weight:900;letter-spacing:-.03em}
.brand-mark{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:var(--ink);color:var(--gold-2)}
.brand-text{font-size:18px}.brand-text b{color:var(--gold)}
.desktop-nav{display:flex;gap:28px;font-weight:700;font-size:14px}
.desktop-nav a:hover{color:#9d771c}
.menu-btn{display:none;border:0;background:transparent;font-size:28px}
.mobile-menu{display:none;position:fixed;top:72px;left:0;right:0;z-index:19;background:var(--paper);padding:18px;border-bottom:1px solid var(--line)}
.mobile-menu.open{display:grid;gap:16px}
main{max-width:1280px;margin:auto;padding:0 24px}
.hero{
  min-height:620px;display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center;
  padding:72px 0 48px
}
.eyebrow{font-size:12px;font-weight:900;letter-spacing:.16em;color:#8c6b1b}
.hero h1{font-size:clamp(44px,7vw,84px);line-height:.96;letter-spacing:-.06em;margin:14px 0 22px}
.hero h1 span{color:var(--gold)}
.hero p{font-size:clamp(18px,2vw,23px);line-height:1.5;color:var(--muted);max-width:640px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:0 20px;border-radius:999px;font-weight:900}
.btn.primary{background:var(--ink);color:var(--gold-2)}
.btn.secondary{background:var(--paper);border:1px solid var(--line)}
.hero-art{position:relative;height:460px;border-radius:40px;background:linear-gradient(145deg,#11131a,#2a2d36);overflow:hidden;box-shadow:var(--shadow)}
.orb{position:absolute;border-radius:50%;background:radial-gradient(circle at 30% 30%,#ffe8a6,#c58f1c)}
.o1{width:180px;height:180px;right:-30px;top:-30px;opacity:.9}
.o2{width:86px;height:86px;left:30px;bottom:38px;opacity:.75}
.o3{width:36px;height:36px;left:54%;top:12%;opacity:.9}
.showcase-card{position:absolute;display:grid;place-items:center;background:linear-gradient(145deg,#fff,#eee4cf);color:#14161b;font-weight:1000;box-shadow:0 24px 50px rgba(0,0,0,.28)}
.showcase-card span{filter:drop-shadow(0 10px 16px rgba(0,0,0,.12))}
.card-a{width:210px;height:230px;border-radius:42px;left:12%;top:22%;transform:rotate(-8deg);font-size:64px}
.card-b{width:180px;height:180px;border-radius:50%;right:12%;bottom:12%;transform:rotate(9deg);font-size:56px;color:#9b741d}
.card-c{width:125px;height:125px;border-radius:30px;right:8%;top:12%;transform:rotate(14deg);font-size:54px}
.section{padding:72px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:28px}
.section h2,.custom-section h2{font-size:clamp(34px,5vw,56px);letter-spacing:-.045em;margin:8px 0}
.category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.category-card{background:var(--paper);border:1px solid var(--line);border-radius:22px;padding:24px;min-height:140px;display:flex;flex-direction:column;justify-content:space-between;box-shadow:0 8px 28px rgba(0,0,0,.04);transition:.2s}
.category-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.category-icon{font-size:30px}.category-card b{font-size:19px}
.products-head{align-items:center}
.search{width:min(360px,100%);height:48px;border:1px solid var(--line);border-radius:999px;background:var(--paper);padding:0 18px;outline:none}
.search:focus{border-color:#bf9440}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-card{background:var(--paper);border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,.04);cursor:pointer;transition:.2s}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.product-image{aspect-ratio:1/1;background:linear-gradient(145deg,#f0ece3,#e4dccd);display:grid;place-items:center;overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:contain;padding:10px}
.product-placeholder{font-weight:1000;font-size:44px;color:#9f7b24}
.product-body{padding:18px}
.product-category{font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:#9a761e;font-weight:900}
.product-title{font-size:18px;font-weight:900;margin:8px 0 16px}
.product-price{font-size:22px;font-weight:1000}
.empty{padding:40px 0;text-align:center;color:var(--muted)}
.custom-section{margin:72px 0;background:linear-gradient(135deg,#f0d889,#d4a83f);border-radius:34px;padding:42px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.custom-section p{color:#4f421e;max-width:680px}
footer{max-width:1280px;margin:0 auto;padding:38px 24px 54px;border-top:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:28px;color:var(--muted)}
.footer-brand p{max-width:420px}.footer-links{display:flex;gap:18px;flex-wrap:wrap}.footer-copy{grid-column:1/-1;font-size:13px}
.whatsapp-float{position:fixed;right:20px;bottom:20px;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:#1fbf62;color:white;font-size:28px;font-weight:900;box-shadow:0 12px 30px rgba(0,0,0,.18);z-index:15}
dialog{border:0;border-radius:28px;width:min(980px,92vw);padding:0;box-shadow:0 30px 90px rgba(0,0,0,.28)}
dialog::backdrop{background:rgba(9,10,13,.66);backdrop-filter:blur(5px)}
.modal-close{position:absolute;right:16px;top:12px;width:42px;height:42px;border:0;border-radius:50%;background:#111;color:#fff;font-size:28px;z-index:2}
.modal-grid{display:grid;grid-template-columns:1fr 1fr}
.gallery-main{aspect-ratio:1/1;background:#eee8dc;display:grid;place-items:center;overflow:hidden}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:flex;gap:8px;padding:12px;background:#faf8f4;overflow:auto}
.thumb{width:70px;height:70px;border-radius:12px;overflow:hidden;border:2px solid transparent;flex:0 0 auto;background:#e9e3d7;cursor:pointer}
.thumb.active{border-color:var(--gold)}
.thumb img{width:100%;height:100%;object-fit:cover}
.modal-info{padding:54px 34px 34px}
.modal-category{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:#9a761e;font-weight:900}
.modal-info h3{font-size:36px;line-height:1.05;letter-spacing:-.04em;margin:12px 0}
.modal-price{font-size:32px;font-weight:1000;margin:18px 0}
.modal-info p{color:var(--muted);line-height:1.6}
@media (max-width:900px){
  .desktop-nav{display:none}.menu-btn{display:block}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:52px}
  .hero-art{height:380px}
  .category-grid,.product-grid{grid-template-columns:repeat(2,1fr)}
  .custom-section{flex-direction:column;align-items:flex-start}
  .modal-grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  main{padding:0 14px}
  .topbar{padding:0 14px}
  .hero{gap:30px;padding-top:36px}
  .hero h1{font-size:48px}
  .hero-art{height:320px}
  .card-a{width:150px;height:168px;font-size:48px}
  .card-b{width:132px;height:132px;font-size:40px}
  .card-c{width:92px;height:92px;font-size:38px}
  .section{padding:54px 0}
  .section-head.products-head{display:block}
  .search{margin-top:14px}
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .category-card{padding:18px;min-height:118px}
  .product-body{padding:14px}.product-title{font-size:15px}.product-price{font-size:19px}
  .custom-section{padding:28px 22px;margin:54px 0}
  footer{grid-template-columns:1fr}
  .footer-copy{grid-column:auto}
  .modal-info{padding:28px 20px 24px}
  .modal-info h3{font-size:28px}
}




/* HERO 13 reconstruído de verdade em HTML/CSS */
.hero-live{
  position:relative;
  overflow:hidden;
  max-width:760px;
  margin:22px auto 10px;
  padding:34px 28px 0;
  border:1px solid var(--line);
  border-radius:34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(216,173,70,.14), transparent 28%),
    linear-gradient(180deg,#fffdf8 0%,#fbf8f0 100%);
  box-shadow:var(--shadow);
  min-height:760px;
}
.hero-live-copy{position:relative;z-index:4;max-width:500px}
.hero-live h1{
  margin:0 0 16px;
  color:#9b741e;
  font-size:clamp(38px,7vw,64px);
  line-height:1.02;
  letter-spacing:-.035em;
  font-weight:950;
}
.hero-live p{
  max-width:500px;
  margin:0 0 22px;
  font-size:18px;
  line-height:1.5;
  color:#555b64;
}
.hero-live .hero-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
}
.hero-live .btn{min-height:50px}
.whatsapp-btn{
  background:#fff;
  color:#101217;
  border:1px solid #e4e0d8;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}
.whatsapp-btn span{color:#1fc766;margin-left:8px}
.hero-live-art{
  position:relative;
  height:430px;
  margin-top:-8px;
  z-index:2;
}
.lettering{
  position:absolute;
  left:2%;
  top:86px;
  z-index:3;
  color:#b68a2f;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:900;
  font-style:italic;
  font-size:58px;
  line-height:.74;
  transform:rotate(-3deg);
  text-shadow:0 4px 0 rgba(124,86,17,.18);
}
.lettering span{font-size:64px}
.hero-jesus{
  position:absolute;
  right:-7px;
  top:4px;
  width:48%;
  max-width:250px;
  z-index:3;
  filter:drop-shadow(0 18px 18px rgba(0,0,0,.12));
}
.hero-decor{
  position:absolute;
  left:-10px;
  right:-10px;
  bottom:-10px;
  width:calc(100% + 20px);
  max-height:310px;
  object-fit:contain;
  object-position:center bottom;
  z-index:2;
}
@media (max-width:560px){
  .hero-live{
    margin:0 auto 8px;
    border-radius:0 0 30px 30px;
    border-left:0;border-right:0;border-top:0;
    min-height:720px;
    padding:30px 24px 0;
  }
  .hero-live h1{font-size:38px;line-height:1.03}
  .hero-live p{font-size:16px}
  .hero-live-art{height:400px;margin-top:-2px}
  .lettering{top:100px;font-size:47px;left:0}
  .lettering span{font-size:52px}
  .hero-jesus{width:50%;right:-10px;top:8px}
  .hero-decor{width:112%;left:-6%;bottom:-8px}
}

/* Correção visual v4 */
.lettering{display:none!important}
.hero-jesus{right:2%;top:14px;width:42%;max-width:225px}
.hero-decor{width:108%;left:-4%;bottom:-4px;max-height:315px}
@media (max-width:560px){
  .hero-jesus{right:1%;top:18px;width:45%}
  .hero-decor{width:108%;left:-4%;bottom:-4px}
}

.modal-cash-note{font-size:14px;font-weight:800;color:#8c6b1b;margin-top:-10px;margin-bottom:16px}

/* catálogo sem cortar produtos */
.product-image{
  aspect-ratio:1/1;
  background:#f7f5f0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:contain !important;
  object-position:center center;
  padding:10px;
}
.gallery-main{
  background:#f7f5f0;
}
.gallery-main img{
  width:100%;
  height:100%;
  object-fit:contain !important;
  object-position:center center;
  padding:12px;
}

.cash-price{font-size:13px;font-weight:800;color:#8c6b1b;margin-top:4px}

/* preços já visíveis no catálogo */
.payment-lines{margin-top:6px;display:grid;gap:2px}
.card-price{font-size:12px;color:#5d6169;font-weight:700}
.pix-price{font-size:14px;color:#8c6b1b;font-weight:900}

/* oferta logo na página inicial */
.home-offer{
  max-width:760px;
  margin:18px auto 12px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:130px 1fr;
  gap:18px;
  align-items:center;
}
.home-offer-image{
  background:#f7f5f0;
  border-radius:22px;
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.home-offer-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
}
.offer-kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  color:#9b741e;
}
.home-offer h2{
  margin:6px 0 10px;
  font-size:24px;
  line-height:1.05;
}
.offer-prices{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.offer-prices div{
  display:flex;
  flex-direction:column;
}
.offer-prices strong{
  font-size:25px;
  line-height:1;
}
.offer-prices span{
  font-size:12px;
  color:#666;
  margin-top:4px;
}
.offer-prices .pix strong{color:#8c6b1b}
@media(max-width:560px){
  .home-offer{
    margin:14px 16px 8px;
    grid-template-columns:108px 1fr;
    padding:14px;
    gap:14px;
  }
  .home-offer h2{font-size:20px}
  .offer-prices{gap:10px}
  .offer-prices strong{font-size:22px}
}
