/* ===================================================================
   QHORE PRIME — Estilo premium (verde-escuro + dourado + tons claros)
   =================================================================== */

:root{
  /* Verdes */
  --green-900:#23290f;
  --green-800:#2c3415;
  --green-700:#3a4520;
  --green-600:#48542a;

  /* Dourados */
  --gold-100:#f3e3b6;
  --gold-300:#e3c884;
  --gold-500:#c9a14e;
  --gold-600:#b88a36;
  --gold-700:#9c7a2e;
  --gold-grad:linear-gradient(135deg,#f0dca6 0%,#caa24f 45%,#94702a 100%);

  /* Claros */
  --cream:#f7f1e6;
  --cream-2:#fbf7ef;
  --beige:#efe6d6;
  --nude:#f0e2d8;
  --rose:#f3dfe0;

  /* Texto */
  --ink:#2b2a22;
  --ink-soft:#5b5848;
  --on-dark:#f3ecdc;
  --on-dark-soft:#cdc6b2;

  --radius:22px;
  --radius-sm:14px;
  --shadow:0 18px 50px -22px rgba(35,41,15,.45);
  --shadow-soft:0 10px 30px -18px rgba(35,41,15,.4);
  --maxw:1180px;

  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Jost','Montserrat',system-ui,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  font-size:18px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--maxw),92%);margin-inline:auto}
em{font-style:italic}

/* ---------- Tipografia base ---------- */
.section-title{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(2.1rem,4.5vw,3.4rem);
  line-height:1.12;
  letter-spacing:.5px;
  color:var(--green-800);
}
.section-title em{color:var(--gold-600);font-weight:600}
.section-title.light{color:var(--on-dark)}
.section-title.light em{
  background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.eyebrow{
  display:inline-block;
  font-size:.82rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold-700);
  font-weight:500;
  margin-bottom:1rem;
}
.eyebrow-light{color:var(--gold-300)}
.section-lead{color:var(--ink-soft);max-width:48ch;font-weight:300}
.section-lead.light{color:var(--on-dark-soft)}
.section-head{text-align:center;margin-inline:auto;max-width:760px;margin-bottom:3.2rem}
.section-head .section-lead{margin-inline:auto}

/* ---------- Botões ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--sans);font-weight:500;font-size:1rem;letter-spacing:.04em;
  padding:.95rem 2rem;border-radius:999px;cursor:pointer;border:1.5px solid transparent;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s,background .35s,color .35s;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--gold-grad);color:#3a2c08;
  box-shadow:0 12px 26px -12px rgba(156,122,46,.7);
  border-color:rgba(255,255,255,.25);
}
.btn-primary:hover{box-shadow:0 18px 34px -12px rgba(156,122,46,.85)}
.btn-ghost{background:transparent;color:var(--on-dark);border-color:rgba(243,236,220,.5)}
.btn-ghost:hover{background:rgba(243,236,220,.1);border-color:var(--gold-300)}
.btn-outline{background:transparent;color:var(--green-800);border-color:var(--gold-500)}
.btn-outline:hover{background:var(--green-800);color:var(--on-dark);border-color:var(--green-800)}
.btn-block{width:100%}
.btn-lg{padding:1.1rem 2.6rem;font-size:1.05rem}
/* CTA rosé (igual à referência) */
.btn-rose{
  background:linear-gradient(135deg,#cf8f9d 0%,#b06d7e 60%,#9c5e70 100%);color:#fff;
  border-color:rgba(255,255,255,.22);box-shadow:0 14px 30px -14px rgba(156,94,112,.8);
  text-transform:uppercase;letter-spacing:.12em;font-size:.92rem;
}
.btn-rose:hover{box-shadow:0 20px 38px -14px rgba(156,94,112,.9)}
.btn-arrow{font-style:normal;transition:transform .3s}
.btn:hover .btn-arrow{transform:translateX(5px)}

/* =================== HEADER =================== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:.9rem 0;
  background:rgba(35,41,15,.18);
  backdrop-filter:blur(4px);
  transition:background .4s,box-shadow .4s,padding .4s;
}
.site-header::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold-500) 18%,var(--gold-100) 50%,var(--gold-500) 82%,transparent);
  opacity:.9;
}
.site-header.scrolled{
  background:var(--green-900);
  box-shadow:0 6px 30px -12px rgba(0,0,0,.5);
  padding:.55rem 0;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.brand{display:flex;align-items:center;gap:.6rem}
/* Logo completa transparente no header */
.brand-logo{display:block;height:64px;width:auto;object-fit:contain;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.3))}
.brand-mark{display:grid;place-items:center;filter:drop-shadow(0 2px 5px rgba(0,0,0,.3))}
.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-name{
  font-family:var(--serif);font-weight:600;font-size:1.7rem;letter-spacing:.16em;
  background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.brand-sub{font-size:.62rem;letter-spacing:.55em;color:var(--gold-300);padding-left:.2em}

.nav{display:flex;align-items:center;gap:.4rem}
.nav-link{
  position:relative;color:var(--on-dark);font-size:.95rem;letter-spacing:.05em;
  padding:.55rem .95rem;border-radius:999px;transition:color .3s;
}
.nav-link::after{
  content:"";position:absolute;left:50%;bottom:.35rem;width:0;height:1.5px;
  background:var(--gold-grad);transition:width .35s,left .35s;
}
.nav-link:hover{color:var(--gold-300)}
.nav-link:hover::after,.nav-link.active::after{width:55%;left:22.5%}
.nav-cta{
  border:1.4px solid var(--gold-500);color:var(--gold-300);margin-left:.5rem;
}
.nav-cta::after{display:none}
.nav-cta:hover{background:var(--gold-grad);color:#3a2c08;border-color:transparent}

.nav{flex:1;justify-content:center}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:26px;height:2px;background:var(--gold-300);transition:.3s;border-radius:2px}

/* Ações à direita: Entrar + carrinho */
.header-actions{display:flex;align-items:center;gap:.3rem}
.header-action{
  display:inline-flex;align-items:center;gap:.45rem;color:var(--on-dark);
  padding:.5rem .8rem;border-radius:999px;font-size:.9rem;letter-spacing:.04em;
  transition:color .3s,background .3s;
}
.header-action svg{width:21px;height:21px;flex:none;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.header-action:hover{color:var(--gold-300);background:rgba(243,236,220,.08)}
.header-cart{padding:.5rem .65rem}

/* =================== HERO =================== */
.hero{
  position:relative;padding:148px 0 0;
  background:
    radial-gradient(120% 90% at 80% 0%, var(--rose) 0%, rgba(243,223,224,0) 55%),
    linear-gradient(180deg,var(--cream-2) 0%,var(--beige) 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;grid-template-columns:1fr 1.02fr;gap:3.2rem;align-items:center;
  padding-bottom:3rem;
}
/* foto à esquerda, conteúdo (logo + headline) centralizado à direita — fiel à referência */
.hero-visual{order:-1}
.hero-copy{display:flex;flex-direction:column;align-items:center;text-align:center}
.hero-copy .eyebrow{justify-content:center}
.hero-logo{position:relative;display:flex;justify-content:center;align-items:center;gap:1rem;margin:.4rem auto 1.1rem}
.hero-logo::before{
  content:"";position:absolute;left:50%;top:48%;transform:translate(-50%,-50%);
  width:min(560px,108%);height:340px;z-index:-1;pointer-events:none;
  background:
    radial-gradient(closest-side,rgba(243,223,224,.85),rgba(243,223,224,.35) 52%,transparent 74%),
    radial-gradient(closest-side,rgba(201,161,78,.18),transparent 70%);
}
.hero-logo svg{filter:drop-shadow(0 4px 10px rgba(148,112,42,.35))}

/* divisor dourado com losango central */
.gold-divider{display:flex;align-items:center;gap:.7rem;margin:0 auto 1.4rem;max-width:330px;width:100%}
.gold-divider span{height:1px;flex:1;background:linear-gradient(90deg,transparent,var(--gold-500))}
.gold-divider span:last-child{background:linear-gradient(90deg,var(--gold-500),transparent)}
.gold-divider i{width:8px;height:8px;rotate:45deg;background:var(--gold-grad);border-radius:1px}

/* eyebrow com fio dourado */
.eyebrow{display:inline-flex;align-items:center;gap:.7rem}
.eyebrow::before{content:"";width:26px;height:1.5px;background:var(--gold-grad)}
.hero-wordmark{display:flex;flex-direction:column;line-height:1}
.hw-name{
  font-family:var(--serif);font-weight:700;font-size:2.8rem;letter-spacing:.18em;
  background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.hw-sub{font-size:.8rem;letter-spacing:.5em;color:var(--gold-700);font-weight:500}

.hero-title{
  font-family:var(--serif);font-weight:600;
  font-size:clamp(2.9rem,6vw,5rem);line-height:1.04;color:var(--green-800);
  letter-spacing:.5px;
}
.hero-title em{
  background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-text{margin:1.4rem auto 2rem;max-width:50ch;color:var(--ink-soft);font-weight:300;font-size:1.08rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.social-proof{justify-content:center}
.hero-badges{
  display:flex;gap:1.6rem;flex-wrap:wrap;justify-content:center;list-style:none;margin-top:2.4rem;
  padding-top:1.6rem;border-top:1px solid rgba(156,122,46,.25);
}
.hero-badges li{
  position:relative;padding-left:1.4rem;font-size:.92rem;color:var(--green-700);letter-spacing:.03em;
}
.hero-badges li::before{
  content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;rotate:45deg;
  background:var(--gold-grad);border-radius:1px;
}

/* Selos do hero (ícone + texto) — fiel à referência */
.hero-seals{
  display:flex;justify-content:center;gap:2.2rem;flex-wrap:wrap;list-style:none;
  margin:1.9rem auto 2.1rem;
}
.hero-seals li{
  display:flex;align-items:center;gap:.7rem;text-align:left;line-height:1.18;
  font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;color:var(--green-700);font-weight:500;
}
.hero-seals svg{width:32px;height:32px;flex:none;fill:none;stroke:var(--gold-600);
  stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}

/* Visual do hero */
.hero-visual{position:relative;min-height:500px}
.hero-visual::before{
  content:"";position:absolute;left:-2.5%;top:-2.5%;width:105%;height:74%;z-index:0;pointer-events:none;
  border:1.5px solid rgba(201,161,78,.55);border-bottom:none;border-radius:260px 260px 0 0;
}
.hero-photo{
  position:relative;z-index:1;height:500px;border-radius:250px 250px 28px 28px;overflow:hidden;
  border:2px solid rgba(201,161,78,.55);
  background:linear-gradient(160deg,#d9c7b3,#b9a98f);
  box-shadow:var(--shadow);display:grid;place-items:center;
}
.hero-product{
  position:absolute;right:-12px;bottom:14px;width:188px;height:228px;border-radius:18px;z-index:2;
  background:radial-gradient(circle at 50% 40%,#ffffff,#efe6d5);border:1.5px solid rgba(201,161,78,.6);
  box-shadow:var(--shadow);display:grid;place-items:center;
}
.hero-seal{
  position:absolute;left:-18px;top:34px;width:118px;height:118px;border-radius:50%;
  border:1.5px solid var(--gold-500);background:rgba(247,241,230,.88);backdrop-filter:blur(2px);
  display:grid;place-items:center;text-align:center;
  font-size:.72rem;letter-spacing:.18em;color:var(--green-700);font-weight:500;
  box-shadow:var(--shadow-soft);z-index:3;
}
.hero-seal::after{content:"";position:absolute;inset:7px;border:1px dashed rgba(184,138,54,.5);border-radius:50%}
/* Barra de benefícios */
.benefit-bar{background:var(--green-900);color:var(--on-dark);padding:1.5rem 0;
  border-top:1px solid rgba(201,161,78,.28)}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.benefit{display:flex;align-items:center;gap:.85rem;font-size:.95rem;color:var(--on-dark-soft);
  letter-spacing:.02em;padding:.2rem 1.6rem;line-height:1.35}
.benefit + .benefit{border-left:1px solid rgba(201,161,78,.22)}
.b-ico{flex:none;width:30px;height:30px;fill:none;stroke:var(--gold-300);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}

/* =================== NOSSA HISTÓRIA =================== */
.story{padding:6rem 0;background:linear-gradient(180deg,var(--cream) 0%,var(--cream-2) 100%)}
.story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:3.5rem;align-items:center}
.story-photo{
  position:relative;height:520px;border-radius:var(--radius);overflow:hidden;
  background:linear-gradient(160deg,#c9bba2,#9c8e72);
  border:2px solid rgba(201,161,78,.45);box-shadow:var(--shadow);
  display:grid;place-items:center;
}
.story-photo-tag{
  position:absolute;left:18px;top:18px;font-size:.78rem;letter-spacing:.2em;
  color:#3a2c08;background:rgba(247,241,230,.85);padding:.5rem .9rem;border-radius:999px;
  border:1px solid var(--gold-500);
}
.ornament{width:120px;height:18px;margin:1rem 0 1.6rem;
  background:no-repeat center/contain
   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='18' viewBox='0 0 120 18'%3E%3Cg fill='none' stroke='%23b88a36' stroke-width='1.4'%3E%3Cpath d='M2 9h44M74 9h44'/%3E%3Cpath d='M60 3c4 3 4 9 0 12-4-3-4-9 0-12z'/%3E%3C/g%3E%3C/svg%3E");
}
.story-copy p{margin-bottom:1.2rem;color:var(--ink-soft);font-weight:300}
.story-highlight{
  font-family:var(--serif);font-size:1.45rem;font-style:italic;color:var(--green-700);
  line-height:1.4;border-left:3px solid var(--gold-500);padding-left:1.2rem;margin:1.6rem 0 2rem !important;
  font-weight:500;
}

/* =================== CATEGORIAS =================== */
.categories{position:relative;padding:5.5rem 0 6rem;
  background:linear-gradient(180deg,var(--cream) 0%,var(--nude) 100%);overflow:hidden}
.cat-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;align-items:stretch;
}
.cat-card{
  position:relative;border-radius:var(--radius);overflow:hidden;min-height:190px;
  display:flex;align-items:flex-end;padding:1.6rem 1.4rem;
  border:1px solid rgba(201,161,78,.28);box-shadow:var(--shadow-soft);
  background:linear-gradient(150deg,#f4d9dc 0%,#f8e7e6 52%,#fbf4ef 100%);
  transition:transform .4s,box-shadow .4s,border-color .4s;
}
.cat-card--green{background:linear-gradient(150deg,#dde6cd 0%,#eaf0e0 52%,#f6f4e7 100%)}
.cat-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--gold-500)}
.cat-card__text{position:relative;z-index:2;max-width:62%}
.cat-card h3{font-family:var(--serif);font-size:1.4rem;line-height:1.15;color:var(--green-800);
  font-weight:600;margin-bottom:1rem}
.cat-link{
  display:inline-flex;align-items:center;gap:.4rem;font-weight:600;letter-spacing:.12em;
  font-size:.74rem;text-transform:uppercase;color:var(--gold-700);
}
.cat-link i{transition:transform .3s;font-style:normal}
.cat-card:hover .cat-link i{transform:translateX(5px)}
.cat-card .cat-card__img{position:absolute;right:-4px;top:0;bottom:0;width:48%;z-index:1}
.cat-card__img .real-img{position:absolute;inset:0;width:100%;height:100%;
  object-fit:contain;object-position:bottom right;padding:.6rem .3rem .4rem}
.cat-card__img .ph-fallback{position:absolute;inset:0;z-index:1;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;color:rgba(43,42,34,.45);
  font-size:.66rem;padding:.5rem}

/* ícone da categoria (acabamento da referência) */
.cat-ico{display:block;margin-bottom:.7rem;color:var(--gold-600);line-height:0}
.cat-ico svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round}
/* card em destaque — estado "ativo" verde-escuro, como a categoria ativa da referência */
.cat-card--featured{
  background:linear-gradient(155deg,var(--green-800) 0%,var(--green-900) 100%);
  border-color:rgba(201,161,78,.5);
}
.cat-card--featured h3{color:var(--on-dark)}
.cat-card--featured .cat-ico{color:var(--gold-300)}
.cat-card--featured .cat-link{color:var(--gold-300)}
.cat-card--featured:hover{border-color:var(--gold-300)}
/* selo da categoria em destaque */
.cat-tag{
  position:absolute;top:14px;left:14px;z-index:3;
  font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;
  color:#3a2c08;background:var(--gold-grad);padding:.32rem .7rem;border-radius:999px;
  box-shadow:var(--shadow-soft);
}
.cat-actions{display:flex;justify-content:center;margin-top:2.8rem}

/* =================== PRODUTOS =================== */
.products{
  padding:6rem 0;
  background:linear-gradient(180deg,var(--cream-2) 0%,var(--beige) 100%);
}
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.prod-card{
  position:relative;background:var(--cream-2);border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(201,161,78,.4);box-shadow:var(--shadow);
  display:flex;flex-direction:column;transition:transform .4s,box-shadow .4s;
}
.prod-card:hover{transform:translateY(-8px)}
.prod-tag{
  position:absolute;top:16px;left:16px;z-index:2;
  background:var(--gold-grad);color:#3a2c08;font-size:.72rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;padding:.4rem .9rem;border-radius:999px;
  box-shadow:var(--shadow-soft);
}
.prod-img{
  height:280px;display:grid;place-items:center;
  background:transparent;
}
.prod-img-dark{background:transparent}
.prod-body{padding:1.8rem 1.7rem 2rem;display:flex;flex-direction:column;flex:1}
.prod-body h3{font-family:var(--serif);font-size:1.7rem;color:var(--green-800);font-weight:600;line-height:1.15}
.prod-plus{display:block;font-size:1rem;color:var(--gold-700);letter-spacing:.1em}
.prod-caps{
  align-self:flex-start;margin:.6rem 0 .9rem;font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-700);border:1px solid var(--gold-500);border-radius:999px;padding:.25rem .8rem;
}
.prod-body p{font-size:.95rem;color:var(--ink-soft);font-weight:300;margin-bottom:1.3rem}
.prod-price{margin-bottom:1.4rem;margin-top:auto}
.prod-price .from{display:block;font-size:.82rem;color:var(--ink-soft);text-decoration:line-through;opacity:.7}
.prod-price strong{font-family:var(--serif);font-size:2.3rem;color:var(--green-800);font-weight:700;display:block;line-height:1.1}
.prod-price .inst{font-size:.82rem;color:var(--ink-soft)}
.wpp-link{
  display:block;text-align:center;margin-top:.8rem;font-size:.9rem;color:var(--green-700);
  letter-spacing:.03em;border-bottom:1px solid transparent;width:max-content;margin-inline:auto;
}
.wpp-link:hover{color:var(--gold-700);border-color:var(--gold-500)}

/* =================== GARANTIA =================== */
.guarantee{padding:6rem 0;background:linear-gradient(180deg,var(--cream-2),var(--beige))}
.guarantee-inner{display:flex;align-items:center;gap:3rem;flex-wrap:wrap;justify-content:center;text-align:left}
.guarantee-copy{max-width:540px}
.guarantee-copy p{margin-top:1rem;color:var(--ink-soft);font-weight:300}
.seal-30{
  flex:none;width:150px;height:150px;border-radius:50%;display:grid;place-items:center;text-align:center;
  background:var(--gold-grad);color:#3a2c08;box-shadow:0 16px 40px -16px rgba(156,122,46,.8);
  border:3px solid rgba(255,255,255,.4);position:relative;
}
.seal-30::after{content:"";position:absolute;inset:8px;border:1.5px dashed rgba(58,44,8,.4);border-radius:50%}
.seal-num{font-family:var(--serif);font-size:3.2rem;font-weight:700;line-height:1}
.seal-lbl{font-size:.66rem;letter-spacing:.18em;font-weight:600;margin-top:.2rem}

/* =================== CONTATO =================== */
.contact{
  position:relative;padding:6.5rem 0;text-align:center;color:var(--on-dark);overflow:hidden;
  background:
    radial-gradient(70% 80% at 50% 120%, var(--green-700) 0%, transparent 60%),
    var(--green-900);
}
.contact-inner{max-width:760px;margin-inline:auto}
.contact .section-lead{margin:1.2rem auto 2.4rem}
.contact-actions{display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap}

/* =================== FOOTER =================== */
.site-footer{background:#1c2109;color:var(--on-dark-soft);padding-top:3.5rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;padding-bottom:2.5rem}
.footer-brand .brand-name{font-size:1.5rem;letter-spacing:.18em}
.brand-name.gold{background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.footer-tag{display:block;font-size:.72rem;letter-spacing:.32em;color:var(--gold-300);margin:.3rem 0 1rem}
.footer-brand p{font-size:.92rem;font-weight:300;max-width:36ch}
.footer-nav,.footer-contact{display:flex;flex-direction:column;gap:.55rem}
.footer-nav h4,.footer-contact h4{
  font-family:var(--serif);font-size:1.2rem;color:var(--gold-300);margin-bottom:.5rem;font-weight:600;letter-spacing:.04em;
}
.footer-nav a,.footer-contact a{font-size:.92rem;transition:color .3s}
.footer-nav a:hover,.footer-contact a:hover{color:var(--gold-300)}
.footer-contact p{font-size:.85rem;font-weight:300;margin-top:.3rem}
.footer-bottom{border-top:1px solid rgba(201,161,78,.2);padding:1.4rem 0;font-size:.8rem}
.footer-bottom .container{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;color:rgba(205,198,178,.7)}

/* =================== WHATSAPP FLUTUANTE =================== */
.wpp-float{
  position:fixed;right:22px;bottom:22px;z-index:90;width:58px;height:58px;border-radius:50%;
  background:#25d366;color:#fff;display:grid;place-items:center;
  box-shadow:0 12px 28px -8px rgba(37,211,102,.7);transition:transform .3s;
}
.wpp-float:hover{transform:scale(1.08)}

/* =================== ELEMENTOS BOTÂNICOS =================== */
.leaf{position:absolute;pointer-events:none;opacity:.5;z-index:0;background-repeat:no-repeat;background-size:contain}
.leaf-tl{top:90px;left:-40px;width:230px;height:230px;transform:rotate(15deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23b88a36' stroke-width='1.3' opacity='.8'%3E%3Cpath d='M20 180 Q60 60 170 30'/%3E%3Cpath d='M60 120 q-25 -5 -35 -28 q22 2 35 28zM85 95 q-22 -10 -28 -34 q20 6 28 34zM112 73 q-18 -16 -18 -40 q17 12 18 40zM140 56 q-12 -20 -6 -42 q12 16 6 42z'/%3E%3C/g%3E%3C/svg%3E");}
.leaf-br{bottom:120px;right:-50px;width:260px;height:260px;transform:rotate(200deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23789a4a' stroke-width='1.3' opacity='.7'%3E%3Cpath d='M20 180 Q60 60 170 30'/%3E%3Cpath d='M60 120 q-25 -5 -35 -28 q22 2 35 28zM85 95 q-22 -10 -28 -34 q20 6 28 34zM112 73 q-18 -16 -18 -40 q17 12 18 40zM140 56 q-12 -20 -6 -42 q12 16 6 42z'/%3E%3C/g%3E%3C/svg%3E");}
.leaf-soft-l{top:40px;left:-60px;width:200px;height:200px;opacity:.35;transform:rotate(-10deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23789a4a' stroke-width='1.2'%3E%3Cpath d='M30 170 Q70 70 165 40'/%3E%3Cpath d='M70 115 q-22 -6 -30 -26 q20 2 30 26zM96 90 q-18 -12 -22 -32 q18 8 22 32z'/%3E%3C/g%3E%3C/svg%3E");}
.leaf-tr{top:30px;right:-50px;width:220px;height:220px;opacity:.3;transform:rotate(120deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23e3c884' stroke-width='1.3'%3E%3Cpath d='M20 180 Q60 60 170 30'/%3E%3Cpath d='M60 120 q-25 -5 -35 -28 q22 2 35 28zM85 95 q-22 -10 -28 -34 q20 6 28 34zM112 73 q-18 -16 -18 -40 q17 12 18 40z'/%3E%3C/g%3E%3C/svg%3E");}

/* =================== ANIMAÇÕES =================== */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.8,.2,1)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* =================== RESPONSIVO =================== */
@media (max-width:980px){
  .hero-grid,.story-grid{grid-template-columns:1fr}
  .hero-visual{min-height:420px;margin-top:1.5rem;order:0}
  .hero-copy{order:-1}
  .story-photo{height:380px;order:-1}
  .benefit-grid{grid-template-columns:repeat(2,1fr);gap:.6rem 0}
  .benefit{padding:.5rem 1.1rem}
  .benefit + .benefit{border-left:none}
  .benefit:nth-child(even){border-left:1px solid rgba(201,161,78,.22)}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
/* Menu hambúrguer a partir de 900px (7 itens + CTA não cabem inline antes disso) */
@media (max-width:900px){
  /* O backdrop-filter do header cria um containing block que prendia o
     menu fixed à caixa do header (~70px) e cortava os links. Remover no
     mobile faz o .nav voltar a se posicionar em relação ao viewport. */
  .site-header{backdrop-filter:none;-webkit-backdrop-filter:none}

  /* Menu mobile como overlay full-screen */
  .nav{
    position:fixed;inset:0;width:100%;height:100dvh;z-index:99;
    flex-direction:column;align-items:stretch;justify-content:flex-start;gap:.1rem;
    padding:5.4rem 1.5rem 2rem;
    background:var(--green-900);transform:translateX(100%);transition:transform .35s ease;
    overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;
  }
  .nav.open{transform:none}
  .nav-link{
    width:100%;font-size:1.18rem;padding:1rem .4rem;
    border-bottom:1px solid rgba(201,161,78,.16);
  }
  .nav-link::after{display:none}
  .nav-cta{margin:1rem 0 0;width:100%;text-align:center;justify-content:center;border-bottom:none}
  /* marca e botão X precisam de position p/ o z-index valer e ficarem acima do overlay */
  .brand{position:relative;z-index:101}
  .brand-logo{height:58px}
  .nav-toggle{display:flex;position:relative;z-index:101}
  .nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.active span:nth-child(2){opacity:0}
  .nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

@media (max-width:760px){
  body{font-size:17px}
  .hero{padding-top:120px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .header-action span{display:none}
  .brand-logo{height:48px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom .container{flex-direction:column;text-align:center}
  .guarantee-inner{text-align:center;flex-direction:column}
  .story-highlight{font-size:1.25rem}
  /* ritmo de espaçamento consistente no mobile */
  .story,.categories,.products,.testimonials,.guarantee,.faq,.blog{padding-top:3.8rem;padding-bottom:3.8rem}
  .contact{padding:4rem 0}
  .section-head{margin-bottom:2.2rem}
  .cat-actions{margin-top:2rem}
}

/* Telefones: 1 coluna nos grids + correções de overflow do hero */
@media (max-width:640px){
  .cat-grid,.prod-grid,.test-grid,.blog-grid{grid-template-columns:1fr;gap:1.2rem}
  .eyebrow{letter-spacing:.14em;font-size:.64rem;flex-wrap:wrap;justify-content:center;max-width:100%}
  .eyebrow::before,.eyebrow.flourish::before,.eyebrow.flourish::after{width:20px}
  .hero-title{font-size:clamp(2.1rem,8.5vw,2.9rem)}
  .hero-text{font-size:1rem}
  .social-proof{justify-content:center}
  .social-proof .sp-text{flex-basis:100%;text-align:center;font-size:.9rem}
  .hero-seals{gap:1.1rem 1.6rem}
  .btn-rose{font-size:.82rem;letter-spacing:.08em}
  .hero-photo{height:440px}
  .hero-photo--person .real-img{padding:12px 8px 0}
}

/* =================== SISTEMA DE IMAGENS REAIS =================== */
.imgbox{position:relative}
.real-img{display:block}

/* imagens que preenchem o container (cover/contain) */
.hero-photo .real-img,
.hero-product .real-img,
.story-photo .real-img,
.cat-media .real-img,
.prod-img .real-img{
  position:absolute;inset:0;width:100%;height:100%;border-radius:inherit;z-index:1;
}
/* ambientes / pessoas -> cover */
.hero-photo .real-img,
.story-photo .real-img,
.cat-media .real-img{object-fit:cover}

/* Retrato sem fundo: mostra a figura inteira sobre o fundo dourado */
.story-photo--person .real-img{object-fit:contain;object-position:bottom center}
/* Sobre Nós: retrato emoldurado (cover) com o rosto bem enquadrado */
.story-photo .real-img{object-position:50% 14%}
/* mantém o rosto enquadrado dentro do arco do hero (ajustado p/ não cortar o topo da cabeça em telas largas/tablet) */
.hero-photo .real-img{object-position:50% 14%}
/* modelo recortada (PNG sem fundo): figura inteira, apoiada e centralizada no arco */
.hero-photo--person .real-img{object-fit:contain;object-position:bottom center;padding:16px 10px 0}
/* produtos / frascos -> contain (frasco inteiro) */
.hero-product .real-img,
.prod-img .real-img{object-fit:contain}
.prod-img .real-img{padding:20px}
.hero-product .real-img{padding:12px}

/* logo no hero (em fluxo, maior e destacada) */
.hero-logo{min-height:150px}
.hero-logo-img{height:clamp(150px,16vw,212px);width:auto;max-width:100%;
  filter:drop-shadow(0 10px 24px rgba(148,112,42,.34))}
.hero-logo-fallback{align-items:center;gap:1rem}

/* fallback elegante: oculto quando a imagem existe, visível só se faltar */
.ph-fallback{display:none}
.imgbox.no-img .real-img{display:none}
.imgbox.no-img .ph-fallback{display:flex}
.hero-photo .ph-fallback,
.hero-product .ph-fallback,
.story-photo .ph-fallback,
.cat-media .ph-fallback,
.prod-img .ph-fallback{
  position:absolute;inset:0;z-index:1;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;
  font-size:.78rem;letter-spacing:.05em;color:rgba(247,241,230,.85);padding:1rem;line-height:1.5;
}
.ph-fallback small{opacity:.7;font-size:.68rem}
.hero-photo .ph-fallback,.story-photo .ph-fallback,.cat-media .ph-fallback{color:rgba(43,42,34,.62)}
.prod-img .ph-fallback{color:rgba(43,42,34,.55)}
.prod-img-dark .ph-fallback{color:rgba(247,241,230,.7)}

/* --- Placeholder elegante para imagens ainda não enviadas --- */
.hero-product.no-img{display:none} /* esconde o mini-frasco do hero enquanto não há imagem */
.imgbox.no-img .ph-fallback small{display:none} /* oculta o nome técnico do arquivo */
.imgbox.no-img .ph-fallback::before{
  content:"";display:block;width:46px;height:54px;margin:0 auto .6rem;opacity:.5;
  background:center/contain no-repeat
   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 56'%3E%3Cg fill='none' stroke='%23b88a36' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 10v40'/%3E%3Cpath d='M24 20c-4 0-7-2.5-8-6 5 0 8 2.5 8 6zM24 20c4 0 7-2.5 8-6-5 0-8 2.5-8 6zM24 30c-4 0-7-2.5-8-6 5 0 8 2.5 8 6zM24 30c4 0 7-2.5 8-6-5 0-8 2.5-8 6zM24 40c-4 0-7-2.5-8-6 5 0 8 2.5 8 6zM24 40c4 0 7-2.5 8-6-5 0-8 2.5-8 6z'/%3E%3Ccircle cx='24' cy='8' r='1.6' fill='%23b88a36' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}
.prod-img.no-img .ph-fallback::after,
.cat-card__img.no-img .ph-fallback::after{
  content:"Em breve";display:block;margin-top:.1rem;
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;opacity:.7;
}

.cat-body .cat-link{margin-top:auto}

/* =================== FLOURISH DOURADO (títulos de seção) =================== */
.eyebrow.flourish{justify-content:center}
.eyebrow.flourish::before{width:46px;height:1.5px;background:linear-gradient(90deg,transparent,var(--gold-500))}
.eyebrow.flourish::after{content:"";width:46px;height:1.5px;background:linear-gradient(90deg,var(--gold-500),transparent)}

/* =================== CAIXA DE PARCELA + CADEADO (cards de produto) =================== */
.parcela{
  margin-top:.8rem;align-self:flex-start;display:inline-flex;flex-direction:column;align-items:center;
  border:1.5px solid var(--gold-500);border-radius:12px;padding:.5rem 1.25rem;
  background:rgba(201,161,78,.07);
}
.parcela strong{font-family:var(--serif);font-size:1.3rem;color:var(--green-800);font-weight:700;line-height:1.05}
.parcela small{font-size:.72rem;color:var(--ink-soft);letter-spacing:.05em}
.btn-ico{width:18px;height:18px;flex:none;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* =================== ESTRELAS / PROVA SOCIAL =================== */
.stars{display:inline-flex;gap:3px;line-height:0}
.star{width:18px;height:18px;fill:var(--gold-500);
  filter:drop-shadow(0 1px 1px rgba(148,112,42,.25))}
.social-proof{display:flex;align-items:center;gap:.7rem;flex-wrap:wrap;margin-top:1.6rem}
.social-proof .sp-text{font-size:.95rem;color:var(--ink-soft);letter-spacing:.01em}
.social-proof .sp-text strong{color:var(--green-700);font-weight:600}

/* =================== DEPOIMENTOS =================== */
.testimonials{position:relative;padding:6rem 0;overflow:hidden;
  background:linear-gradient(180deg,var(--beige) 0%,var(--cream-2) 100%)}
.test-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.8rem}
.test-card{
  position:relative;background:var(--cream-2);border:1px solid rgba(201,161,78,.35);
  border-radius:var(--radius);padding:2.2rem 2rem;box-shadow:var(--shadow-soft);
  display:flex;flex-direction:column;gap:1.1rem;
  transition:transform .4s,box-shadow .4s,border-color .4s;
}
.test-card::before{
  content:"\201C";position:absolute;top:.2rem;right:1.4rem;font-family:var(--serif);
  font-size:4.6rem;line-height:1;color:rgba(201,161,78,.22);
}
.test-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--gold-500)}
.test-card .star{width:17px;height:17px}
.test-quote{font-family:var(--serif);font-style:italic;font-size:1.22rem;line-height:1.5;color:var(--green-800)}
.test-author{display:flex;align-items:center;gap:.85rem;margin-top:auto}
.avatar{
  flex:none;width:50px;height:50px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--serif);font-weight:600;font-size:1.05rem;letter-spacing:.04em;color:#3a2c08;
  background:var(--gold-grad);box-shadow:0 0 0 3px var(--cream-2),0 0 0 4.5px var(--gold-500);
}
.test-name{display:flex;flex-direction:column;font-weight:600;color:var(--green-800);letter-spacing:.02em}
.test-name small{font-weight:400;font-size:.78rem;color:var(--ink-soft);letter-spacing:.04em;margin-top:1px}

/* =================== FAQ (accordion) =================== */
.faq{padding:6rem 0;background:var(--cream)}
.faq-list{max-width:780px;margin-inline:auto;display:flex;flex-direction:column;gap:1rem}
.faq-item{
  background:var(--cream-2);border:1px solid rgba(201,161,78,.3);border-radius:var(--radius-sm);
  overflow:hidden;transition:border-color .3s,box-shadow .3s;
}
.faq-item[open]{border-color:var(--gold-500);box-shadow:var(--shadow-soft)}
.faq-item summary{
  list-style:none;cursor:pointer;padding:1.3rem 1.6rem;display:flex;align-items:center;
  justify-content:space-between;gap:1rem;font-family:var(--serif);font-size:1.3rem;
  color:var(--green-800);font-weight:600;transition:color .3s;
}
.faq-item summary:hover{color:var(--gold-700)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-ico{position:relative;flex:none;width:20px;height:20px}
.faq-ico::before,.faq-ico::after{content:"";position:absolute;background:var(--gold-600);border-radius:2px;transition:transform .3s,opacity .3s}
.faq-ico::before{top:9px;left:0;width:20px;height:2px}
.faq-ico::after{top:0;left:9px;width:2px;height:20px}
.faq-item[open] .faq-ico::after{transform:rotate(90deg);opacity:0}
.faq-answer{overflow:hidden;transition:max-height .35s ease}
.faq-answer p{padding:0 1.6rem 1.4rem;color:var(--ink-soft);font-weight:300}

@media (max-width:760px){
  .faq-item summary{font-size:1.12rem;padding:1.1rem 1.2rem}
  .test-quote{font-size:1.15rem}
}

/* =================== BLOG (placeholder) =================== */
.blog{padding:6rem 0;background:linear-gradient(180deg,var(--cream-2) 0%,var(--cream) 100%)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.8rem}
.blog-card{
  background:var(--cream-2);border:1px solid rgba(201,161,78,.3);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-soft);display:flex;flex-direction:column;
  transition:transform .4s,box-shadow .4s,border-color .4s;
}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--gold-500)}
.blog-thumb{
  height:180px;display:grid;place-items:center;
  background:linear-gradient(150deg,#c9bba2,#9c8e72);
  color:rgba(247,241,230,.85);font-size:.74rem;letter-spacing:.2em;text-transform:uppercase;
}
.blog-body{padding:1.8rem 1.6rem 2rem;display:flex;flex-direction:column;flex:1}
.blog-tag{
  align-self:flex-start;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-700);border:1px solid var(--gold-500);border-radius:999px;padding:.25rem .8rem;margin-bottom:.9rem;
}
.blog-card h3{font-family:var(--serif);font-size:1.4rem;line-height:1.2;color:var(--green-800);font-weight:600;margin-bottom:.6rem}
.blog-card p{font-size:.95rem;color:var(--ink-soft);font-weight:300;margin-bottom:1.3rem}
.blog-link{
  margin-top:auto;display:inline-flex;align-items:center;gap:.4rem;font-weight:600;
  letter-spacing:.1em;font-size:.74rem;text-transform:uppercase;color:var(--gold-700);
}
.blog-link i{font-style:normal;transition:transform .3s}
.blog-card:hover .blog-link i{transform:translateX(5px)}
