@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400&display=swap');

:root{
  --black:#090909;
  --black-soft:#11110f;
  --cream:#f3eee2;
  --card:#faf7ef;
  --ink:#171613;
  --muted:#716c63;
  --light-muted:#aaa59d;
  --gold:#c39a4a;
  --gold-soft:#d5b46f;
  --line-dark:rgba(255,255,255,.08);
  --line:rgba(23,22,19,.12);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--cream);
  font-family:"Helvetica Neue","Segoe UI",Arial,sans-serif;
  font-weight:300;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p{margin-top:0}

.topbar{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  height:68px;
  padding:0 clamp(18px,4vw,54px);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  background:rgba(9,9,9,.96);
  border-bottom:1px solid var(--line-dark);
}
.mini-brand{justify-self:start}
.mini-brand img{
  width:46px;
  height:46px;
  object-fit:contain;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:11px;
  font-weight:400;
  letter-spacing:.03em;
  color:#aaa59d;
}
.desktop-nav a:hover{color:#eee8dc}

.hero{
  max-width:var(--max);
  min-height:680px;
  margin:0 auto;
  padding:118px 28px 68px;
  display:grid;
  grid-template-columns:1.14fr .86fr;
  gap:74px;
  align-items:center;
}
.hero-copy{max-width:650px}
.hero-signature{
  display:block;
  margin-bottom:12px;
  color:#d7d0c4;
  font-size:11px;
  font-weight:400;
  letter-spacing:.16em;
}
.hero h1{
  max-width:650px;
  margin:0 0 24px;
  font-size:clamp(46px,5vw,70px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:200;
}
.hero-text{
  margin:0 0 26px;
  color:#9c978f;
  font-size:13px;
  font-weight:300;
}
.actions{display:flex;gap:10px;flex-wrap:wrap}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:8px;
  font-size:11px;
  font-weight:500;
}
.button.primary{
  background:var(--gold);
  color:#111;
}
.button.primary:hover{background:var(--gold-soft)}

.hero-mark{
  display:flex;
  justify-content:center;
}
.mark-frame{
  width:min(365px,100%);
  aspect-ratio:1/1.08;
  display:grid;
  place-items:center;
  padding:42px;
  background:#0b0b0a;
  border:1px solid rgba(195,154,74,.18);
  border-radius:24px;
}
.mark-frame img{
  width:100%;
  max-width:300px;
}

.quick-contact{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px 58px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.contact-card{
  position:relative;
  min-height:84px;
  padding:18px 20px 18px 28px;
  border:1px solid var(--line-dark);
  background:#0d0d0c;
  border-radius:12px;
  overflow:hidden;
}
.contact-card::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  width:3px;
  height:32px;
  border-radius:999px;
  transform:translateY(-50%);
}
.whatsapp-card::before{
  background:#25d366;
}
.instagram-card::before{
  background:linear-gradient(180deg,#f58529 0%,#dd2a7b 50%,#8134af 100%);
}
.contact-label{
  display:block;
  margin-bottom:5px;
  color:#8f8a82;
  font-size:9px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.contact-value{
  display:block;
  color:#e5ded2;
  font-size:14px;
  font-weight:300;
}
.contact-card:hover{border-color:rgba(195,154,74,.32)}

.catalog{
  background:var(--cream);
  color:var(--ink);
  padding:84px max(22px,calc((100vw - var(--max))/2 + 28px));
}
.section-title{
  max-width:720px;
  margin-bottom:42px;
}
.section-title h2{
  margin:0 0 12px;
  font-size:clamp(38px,4vw,48px);
  line-height:1;
  letter-spacing:-.035em;
  font-weight:250;
}
.section-intro{
  margin:0;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
}

.category-list{
  border-top:1px solid var(--line);
}
.category{
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  gap:28px;
  align-items:start;
  padding:34px 0;
  border-bottom:1px solid var(--line);
}
.category-copy{
  position:sticky;
  top:92px;
  padding-top:3px;
}
.category h3{
  margin:0;
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.025em;
  font-weight:300;
  white-space:normal;
}
.category p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:11px;
}
.category-link{
  display:inline-block;
  margin-top:12px;
  color:#765a2b;
  font-size:10px;
  font-weight:500;
}

.product-grid,
.product-grid.compact,
.product-grid.product-grid-square{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  min-width:0;
}
.product-card{
  min-width:0;
  overflow:hidden;
  background:var(--card);
  border:1px solid rgba(23,22,19,.09);
  border-radius:10px;
}
.product-card:hover{border-color:rgba(118,90,43,.24)}
.product-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  background:#e7dfd0;
}
.product-grid-square .product-card img{
  aspect-ratio:1/1;
  object-fit:contain;
  background:#fff;
}
.product-card span,
.product-card small{
  display:block;
  padding-left:10px;
  padding-right:10px;
}
.product-card span{
  padding-top:9px;
  color:#1b1916;
  font-size:13px;
  line-height:1.25;
  font-weight:400;
}
.product-card small{
  min-height:29px;
  padding-top:3px;
  padding-bottom:9px;
  color:#79736a;
  font-size:9px;
  line-height:1.35;
  font-weight:300;
}

.subcategory-block{
  grid-column:2;
  width:100%;
  min-width:0;
  margin-top:24px;
}
.subcategory-block:first-of-type{margin-top:0}
.subcategory-title{
  margin:0 0 10px;
  color:#665f54;
  font-size:11px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.info{
  background:#0c0c0b;
  border-top:1px solid var(--line-dark);
  padding:82px max(22px,calc((100vw - var(--max))/2 + 28px));
}
.info-head{
  max-width:720px;
  margin-bottom:40px;
}
.kicker{
  display:block;
  margin-bottom:10px;
  color:var(--gold);
  font-size:9px;
  font-weight:500;
  letter-spacing:.15em;
}
.info-head h2{
  margin:0;
  color:#eee8de;
  font-size:clamp(36px,4vw,46px);
  line-height:1.05;
  letter-spacing:-.035em;
  font-weight:200;
}
.hours-card{
  max-width:760px;
  border-top:1px solid rgba(255,255,255,.11);
}
.hours-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.hours-row strong{
  color:#ece6dc;
  font-size:14px;
  font-weight:300;
}
.hours-row span{
  align-self:center;
  color:#b0aaa1;
  font-size:11px;
  font-weight:300;
}
.hours-row.closed span{color:#777168}

.details-grid{
  max-width:760px;
  margin-top:28px;
}
.details-grid article{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.detail-label{
  color:var(--gold);
  font-size:8px;
  font-weight:500;
  letter-spacing:.14em;
}
.details-grid p{
  margin:10px 0 9px;
  color:#c8c1b7;
  font-size:12px;
  line-height:1.6;
}
.details-grid a{
  color:#d5b46f;
  font-size:10px;
  font-weight:400;
}

footer{
  padding:24px clamp(20px,5vw,52px);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  border-top:1px solid var(--line-dark);
  color:#77736c;
  font-size:9px;
  font-weight:300;
}
.footer-logo{
  width:48px;
  height:48px;
  object-fit:contain;
}
.footer-mid{display:flex;flex-direction:column}
.footer-right{
  display:flex;
  flex-direction:column;
  text-align:right;
}

.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:40;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  font-size:9px;
  font-weight:600;
}

.category[id]{scroll-margin-top:82px}

@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:96px;
    gap:34px;
  }
  .hero-mark{order:-1}
  .mark-frame{
    width:min(300px,72vw);
    padding:32px;
    border-radius:20px;
  }
  .hero-copy{text-align:center;margin:auto}
  .actions{justify-content:center}
  .quick-contact{padding-bottom:44px}
  .category{
    grid-template-columns:135px minmax(0,1fr);
    gap:20px;
  }
  .category-copy{position:static}
  .subcategory-block{grid-column:2}
}

@media(max-width:640px){
  .topbar{
    height:62px;
    padding:0 15px;
    grid-template-columns:auto 1fr;
  }
  .mini-brand img{width:42px;height:42px}
  .desktop-nav{justify-self:end;gap:18px;font-size:10px}
  .hero{
    padding:86px 18px 48px;
  }
  .hero h1{
    font-size:42px;
    line-height:1.04;
  }
  .hero-text{font-size:12px}
  .quick-contact{
    padding:0 18px 44px;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .contact-card{
    min-height:76px;
    padding:14px 14px 14px 24px;
  }
  .contact-card::before{
    left:12px;
    height:28px;
  }
  .contact-value{font-size:12px}
  .catalog{padding:62px 18px}
  .section-title{margin-bottom:30px}
  .section-title h2{font-size:36px}
  .category{
    display:block;
    padding:28px 0;
  }
  .category-copy{
    margin-bottom:16px;
  }
  .category h3{font-size:24px}
  .product-grid,
  .product-grid.compact,
  .product-grid.product-grid-square{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .subcategory-block{
    grid-column:auto;
    margin-top:22px;
  }
  .subcategory-title{font-size:10px}
  .product-card span{
    padding:8px 8px 0;
    font-size:12px;
  }
  .product-card small{
    padding:3px 8px 8px;
    font-size:8.5px;
  }
  .info{padding:62px 18px}
  .info-head{margin-bottom:30px}
  .info-head h2{font-size:34px}
  .hours-row{padding:14px 0}
  .hours-row strong{font-size:13px}
  .hours-row span{font-size:10px}
  footer{
    grid-template-columns:auto 1fr;
    padding:20px 18px;
  }
  .footer-right{
    grid-column:1/-1;
    text-align:left;
    padding-top:5px;
  }
}

@media(max-width:380px){
  .hero h1{font-size:38px}
  .quick-contact{grid-template-columns:1fr}
}

/* =========================================================
   PURO LUXO · TIPOGRAFIA CLEAN
   Ajuste somente tipografico. Layout, cores e imagens intactos.
   ========================================================= */

body{
  font-family:"Jost","Segoe UI Light","Helvetica Neue",Arial,sans-serif;
  font-weight:300;
  letter-spacing:.005em;
}

.desktop-nav{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:.015em;
}

.hero-signature{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:.20em;
}

.hero h1{
  font-family:"Jost","Segoe UI Light","Helvetica Neue",Arial,sans-serif;
  max-width:680px;
  font-size:clamp(44px,4.6vw,62px);
  line-height:1.08;
  letter-spacing:-.022em;
  font-weight:300;
}

.hero-text{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:12.5px;
  font-weight:300;
  letter-spacing:.005em;
}

.button{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:10.5px;
  font-weight:500;
  letter-spacing:.01em;
}

.contact-label{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-weight:400;
  letter-spacing:.14em;
}

.contact-value{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:13px;
  font-weight:300;
}

.section-title h2{
  font-family:"Jost","Segoe UI Light","Helvetica Neue",Arial,sans-serif;
  font-size:clamp(32px,3.5vw,42px);
  line-height:1.08;
  letter-spacing:-.018em;
  font-weight:300;
}

.section-intro{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:12px;
  font-weight:300;
  letter-spacing:.003em;
}

.category h3{
  font-family:"Jost","Segoe UI Light","Helvetica Neue",Arial,sans-serif;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.012em;
  font-weight:300;
}

.category p,
.category-link{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
}

.category p{
  font-size:10.5px;
  font-weight:300;
}

.category-link{
  font-size:10px;
  font-weight:400;
  letter-spacing:.01em;
}

.product-card span{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:12.5px;
  line-height:1.28;
  font-weight:400;
  letter-spacing:0;
}

.product-card small{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:9px;
  line-height:1.4;
  font-weight:300;
}

.subcategory-title{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:.13em;
}

.kicker,
.detail-label{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-weight:400;
}

.info-head h2{
  font-family:"Jost","Segoe UI Light","Helvetica Neue",Arial,sans-serif;
  font-size:clamp(30px,3.4vw,40px);
  line-height:1.1;
  letter-spacing:-.018em;
  font-weight:300;
}

.hours-row strong{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-size:13px;
  font-weight:300;
}

.hours-row span,
.details-grid p,
.details-grid a,
footer{
  font-family:"Jost","Segoe UI",Arial,sans-serif;
  font-weight:300;
}

@media(max-width:640px){
  .hero h1{
    font-size:38px;
    line-height:1.08;
  }
  .section-title h2{
    font-size:31px;
  }
  .category h3{
    font-size:20px;
  }
  .info-head h2{
    font-size:30px;
  }
  .product-card span{
    font-size:11.5px;
  }
}

@media(max-width:380px){
  .hero h1{font-size:35px}
}

/* =========================================================
   PURO LUXO · TIPOGRAFIA ULTRAFINA
   Ajuste final: menos peso, menos tamanho, mais respiro.
   Não altera estrutura, cores, imagens ou organização.
   ========================================================= */
body{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-weight:300;
  letter-spacing:.002em;
}

.desktop-nav{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:10.5px;
  font-weight:300;
  letter-spacing:.055em;
}

.hero-signature{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:9.5px;
  font-weight:300;
  letter-spacing:.20em;
}

.hero h1{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  max-width:630px;
  font-size:clamp(42px,4.55vw,62px);
  line-height:1.06;
  letter-spacing:-.028em;
  font-weight:200;
}

.hero-text{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:11.5px;
  font-weight:300;
  letter-spacing:.005em;
}

.button{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:.01em;
}

.contact-label{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:8.5px;
  font-weight:300;
  letter-spacing:.16em;
}

.contact-value{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:12px;
  font-weight:300;
}

.section-title h2{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:clamp(30px,3.2vw,39px);
  line-height:1.1;
  letter-spacing:-.018em;
  font-weight:200;
}

.section-intro{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:11px;
  font-weight:300;
}

.category h3{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:20px;
  line-height:1.18;
  letter-spacing:-.008em;
  font-weight:200;
}

.category p,
.category-link,
.product-card span,
.product-card small,
.subcategory-title,
.kicker,
.detail-label,
.hours-row strong,
.hours-row span,
.details-grid p,
.details-grid a,
footer{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
}

.category p{
  font-size:10px;
  font-weight:300;
}
.category-link{
  font-size:9.5px;
  font-weight:300;
}
.product-card span{
  font-size:11.5px;
  line-height:1.32;
  font-weight:300;
}
.product-card small{
  font-size:8.5px;
  line-height:1.45;
  font-weight:300;
}
.subcategory-title{
  font-size:9.5px;
  font-weight:300;
  letter-spacing:.14em;
}

.info-head h2{
  font-family:"Jost","Segoe UI Variable Text","Segoe UI",Arial,sans-serif;
  font-size:clamp(28px,3vw,37px);
  line-height:1.12;
  letter-spacing:-.015em;
  font-weight:200;
}

.hours-row strong{
  font-size:12px;
  font-weight:300;
}
.hours-row span,
.details-grid p,
.details-grid a,
footer{
  font-weight:300;
}

@media(max-width:640px){
  .hero h1{
    font-size:35px;
    line-height:1.1;
  }
  .section-title h2{font-size:28px}
  .category h3{font-size:18px}
  .info-head h2{font-size:27px}
  .product-card span{font-size:10.8px}
}

@media(max-width:380px){
  .hero h1{font-size:33px}
}
