﻿:root{
  --paper:#FAF6F0;
  --paper-2:#F3E9DD;
  --paper-3:#EFE3D4;
  --ink:#2A2126;
  --ink-soft:#5C5054;
  --terracotta:#CF6E12;
  --terracotta-deep:#B25C0C;
  --wine:#953265;
  --wine-deep:#5E1F40;
  --wine-darker:#42152E;
  --stone:#9C9E9F;
  --line:rgba(42,33,38,.12);
  --line-light:rgba(255,255,255,.16);
  --accent:var(--terracotta);
  --accent-deep:var(--wine);
  --shadow-sm:0 2px 10px rgba(42,33,38,.06);
  --shadow-md:0 18px 50px -22px rgba(94,31,64,.35);
  --shadow-lg:0 40px 90px -40px rgba(42,33,38,.45);
  --font-display:"Urbanist",system-ui,-apple-system,sans-serif;
  --font-title:"Urbanist",system-ui,-apple-system,sans-serif;
  --font-body:"Poppins",system-ui,-apple-system,sans-serif;
  --maxw:1200px;
  --r:18px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  line-height:1.65;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
::selection{background:var(--wine);color:#fff}

/* ---------- Layout helpers ---------- */
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;width:100%}
.section{padding:clamp(52px,6.5vw,86px) 0;position:relative}
.section--tight{padding-top:clamp(60px,7vw,96px)}

.eyebrow{
  font-family:var(--font-body);
  font-weight:500;
  font-size:.74rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--terracotta-deep);
  display:inline-flex;
  align-items:center;
  gap:.7em;
}
.eyebrow--center{justify-content:center}
.eyebrow--light{color:#E9B98C}

.title{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.1;
  font-size:clamp(1.9rem,3.4vw,2.85rem);
  color:var(--ink);
}
.title--light{color:#fff}
.lede{
  color:var(--ink-soft);
  font-size:1.05rem;
  max-width:60ch;
}
.section-head{margin-bottom:clamp(30px,4vw,46px)}
.section-head--center{text-align:center;display:flex;flex-direction:column;align-items:center;gap:16px}
.section-head--center .lede{margin-inline:auto;text-align:center}

.grad-text{
  color:var(--wine);
}

/* ---------- Buttons ---------- */
.btn{
  font-family:var(--font-body);
  font-weight:500;
  font-size:.92rem;
  letter-spacing:.02em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  height:45px;
  padding:0 28px;
  border-radius:100px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
  white-space:nowrap;
  line-height:1;
}
.btn svg{width:17px;height:17px}
.btn--primary{
  background:var(--wine);
  color:#fff;
  box-shadow:none;
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:none}
.btn--ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn--ghost:hover{border-color:var(--terracotta);color:var(--terracotta-deep);transform:translateY(-2px)}
.btn--light{
  background:#fff;color:var(--wine-deep);
}
.btn--light:hover{transform:translateY(-2px);box-shadow:none}
.btn--lg{height:45px;padding:0 34px;font-size:1rem}

:focus-visible{outline:3px solid var(--terracotta);outline-offset:3px;border-radius:6px}

/* ---------- Nav ---------- */
.nav{
  position:static;z-index:100;
  transition:none;
  background:#fff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
  padding:18px 0;
}
.nav.scrolled{
  background:#fff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
  padding:18px 0;
}
.nav__inner{display:flex;align-items:center;justify-content:flex-start;gap:24px}
.nav__logo{display:flex;align-items:center;gap:12px}
.nav__logo img{height:46px;width:auto;transition:height .3s ease}
.nav.scrolled .nav__logo img{height:46px}
.nav__logo-fallback{
  font-family:var(--font-display);
  font-size:1.35rem;
  letter-spacing:.04em;
  color:var(--ink);
}
.nav__links{display:flex;align-items:center;gap:34px;margin-left:auto}
.nav__links a{
  font-size:.9rem;font-weight:400;color:var(--ink-soft);
  position:relative;transition:color .2s ease;
}
.nav__links a::after{
  content:"";position:absolute;left:0;bottom:-6px;height:2px;width:0;
  background:var(--terracotta);transition:width .25s ease;
}
.nav__links a:hover{color:var(--ink)}
.nav__links a:hover::after{width:100%}
.nav__cta{display:flex;align-items:center;gap:16px}
.nav__panel{display:none}
.nav__links a{white-space:nowrap}
.nav__links{gap:30px}
.nav .nav__cta .btn--primary{height:45px;padding:0 24px;font-size:.86rem}
.nav .nav__cta .btn--primary i,
.nav__panel .btn i{font-size:1rem}
.nav__toggle{
  display:none;background:none;border:none;cursor:pointer;
  width:42px;height:42px;border-radius:10px;padding:9px;
}
.nav__toggle span{display:block;height:2px;background:var(--ink);border-radius:2px;transition:transform .3s ease,opacity .2s ease}
.nav__toggle span+span{margin-top:5px}
.nav.open .nav__toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav.open .nav__toggle span:nth-child(2){opacity:0}
.nav.open .nav__toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Diamond lattice bg ---------- */
.lattice{
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M22 2 L42 22 L22 42 L2 22 Z' fill='none' stroke='%23953265' stroke-width='1' stroke-opacity='0.13'/%3E%3C/svg%3E");
  opacity:.5;
  pointer-events:none;
  z-index:0;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding-top:50px;
  padding-bottom:clamp(86px,9vw,128px);
  overflow:hidden;
  background:#F3E9DD;
  background:linear-gradient(90deg,rgba(243,233,221,1) 0%,rgba(255,255,255,1) 100%);
}
.hero::after{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  bottom:-62px;
  height:126px;
  background:#fff;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  z-index:1;
}
.hero__glow{
  position:absolute;z-index:0;border-radius:50%;
  filter:blur(70px);opacity:.5;pointer-events:none;
}
.hero__glow{display:none}
.hero__glow--1{width:520px;height:520px;top:-120px;right:-80px}
.hero__glow--2{width:460px;height:460px;bottom:-160px;left:-120px}
.hero__inner{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:clamp(32px,5vw,64px);
  min-width:0;
}
.hero__copy{
  text-align:left;
  max-width:680px;
  min-width:0;
}
.hero__media{
  justify-self:end;
  width:min(560px,100%);
  max-width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero__media img{
  width:100%;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:none;
}
.hero__h1{
  font-family:var(--font-display);
  font-weight:700;
  font-size:48px;
  line-height:1.1;
  letter-spacing:-.01em;
  margin:20px 0 0;
}
.hero__sub{
  font-family:var(--font-title);
  font-weight:500;
  font-size:18px;
  color:var(--wine);
  margin-top:18px;
  letter-spacing:.005em;
}
.hero__text{margin-top:20px;color:var(--ink-soft);font-size:1.05rem;max-width:66ch}
.hero__text + .hero__text{margin-top:14px}
.hero__actions{margin-top:34px;display:flex;flex-wrap:wrap;gap:16px;align-items:center;justify-content:flex-start}

/* ---------- Services ---------- */
.services{background:#fff;position:relative}
.services .container{position:relative;z-index:2}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.svc{
  background:#fff;
  border:1px solid rgba(42,33,38,.06);
  border-radius:14px;
  padding:30px 28px;
  position:relative;
  min-height:250px;
  box-shadow:0 18px 52px -38px rgba(42,33,38,.42);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
  overflow:hidden;
}
.svc::after{
  content:"";position:absolute;left:28px;right:28px;bottom:0;height:3px;
  background:var(--terracotta);transform:scaleX(.28);transform-origin:left;transition:transform .35s ease;
}
.svc:hover{transform:translateY(-5px);box-shadow:0 26px 62px -36px rgba(42,33,38,.5);border-color:rgba(151,50,101,.13)}
.svc:hover::after{transform:scaleX(1)}
.svc__icon{
  width:48px;height:48px;border-radius:50%;
  background:var(--paper);
  border:1px solid rgba(207,110,18,.18);
  display:flex;align-items:center;justify-content:center;margin-bottom:24px;
  color:var(--wine);
  transition:background .3s ease,color .3s ease;
}
.svc:hover .svc__icon{background:var(--wine);border-color:var(--wine);color:#fff}
.svc__icon svg{width:23px;height:23px}
.svc__title{font-family:var(--font-title);font-weight:800;font-size:1.12rem;margin-bottom:12px;letter-spacing:0;line-height:1.25}
.svc__text{font-size:.9rem;color:var(--ink-soft);line-height:1.6}
.svc__text p+p{
  margin-top:10px;
}

/* ---------- Sobre ---------- */
.sobre{
  background:#F7F4EC;
  color:var(--ink);position:relative;overflow:hidden;
  padding-top:clamp(88px,8vw,116px);
}
.sobre::before{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  top:-62px;
  height:126px;
  background:#ffffff;
  border-radius:0 0 50% 50% / 0 0 100% 100%;
  z-index:1;
}
.sobre .container{position:relative;z-index:2}
.sobre__grid{display:grid;grid-template-columns:.86fr 1.14fr;gap:clamp(42px,6vw,78px);align-items:center}
.sobre__photo{position:relative}
.sobre__photo .frame{
  position:relative;
  border-radius:18px;overflow:hidden;
  box-shadow:0 26px 70px -42px rgba(42,33,38,.45);
  aspect-ratio:4/5;
  min-height:500px;
}
.sobre__photo .frame > img:not(.sobre__seal){width:100%;height:100%;object-fit:cover;object-position:center top;filter:none}
.sobre__seal{
  position:absolute;
  right:5px;
  bottom:7px;
  width:min(132px,40%);
  height:auto;
  z-index:2;
}
.sobre__copy{
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
.sobre__name{font-family:var(--font-title);font-weight:800;font-size:clamp(2rem,3.2vw,2.55rem);margin:14px 0 8px;letter-spacing:0}
.sobre__role{font-family:var(--font-body);font-size:.92rem;color:var(--wine);letter-spacing:.02em;margin-bottom:20px}
.sobre__text p{color:var(--ink-soft);font-size:.98rem;margin-bottom:14px;max-width:58ch;line-height:1.7}
.sobre__btn{margin-top:12px}
.sobre__creds{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.cred{
  font-size:.8rem;font-weight:400;letter-spacing:.02em;
  padding:9px 16px;border-radius:100px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.05);
  color:#fff;
}

/* ---------- Processo ---------- */
.processo{background:#fff}
.processo__grid{display:grid;grid-template-columns:1.14fr .86fr;gap:clamp(42px,6vw,78px);align-items:center}
.processo__media{position:relative;order:2}
.processo__copy{order:1}
.processo__imgwrap{
  border-radius:18px;overflow:hidden;
  box-shadow:0 26px 70px -42px rgba(42,33,38,.45);
  background:#F7F4EC;
  border:1px solid rgba(42,33,38,.06);
  aspect-ratio:4/5;
  min-height:500px;
}
.processo__imgwrap img{width:100%;height:100%;display:block;object-fit:cover}
.processo__copy .eyebrow{margin-bottom:18px}
.processo__copy .title{margin:0 0 20px;font-size:clamp(2rem,3.2vw,2.55rem);letter-spacing:0}
.processo__text{
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
}
.processo__text p{color:var(--ink-soft);font-size:.98rem;line-height:1.7;margin-bottom:14px;max-width:58ch}
.processo__text p:last-child{margin-bottom:0}
.processo__copy .btn{margin-top:26px}

/* ---------- Depoimentos ---------- */
.section-divider{background:#fff;padding:0}
.section-divider hr{border:0;border-top:1px solid rgba(42,33,38,.12)}
.depo{background:#fff;position:relative;overflow:hidden}
.depo .container{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:clamp(42px,7vw,92px);
}
.depo .section-head{
  margin:0;
  align-items:flex-start;
  text-align:left;
}
.depo .section-head .eyebrow{justify-content:flex-start}
.depo .section-head .lede{margin:0;text-align:left;max-width:42ch}
.depo-nav{display:flex;align-items:center;gap:10px}
.depo-slider{position:relative;margin:0;width:100%;min-width:0}
.depo-stage{position:relative}
.depo-viewport{overflow-x:hidden;overflow-y:visible;padding:0}
.depo-track{display:flex;gap:24px;align-items:flex-start;transition:transform .55s cubic-bezier(.2,.7,.2,1);will-change:transform}
.depo-card{flex:0 0 100%}
.depo-arrow{
  width:32px;height:32px;border-radius:50%;flex:none;
  border:1px solid rgba(42,33,38,.1);background:#fff;color:rgba(42,33,38,.5);
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px -18px rgba(42,33,38,.45);
  transition:background .25s ease,color .25s ease,border-color .25s ease,transform .25s ease;
}
.depo-arrow svg{width:15px;height:15px}
.depo-arrow:hover{background:var(--wine);color:#fff;border-color:var(--wine);transform:translateY(-2px)}
.depo-dots{display:none}
.depo-dot{
  width:10px;height:10px;border-radius:50%;padding:0;border:1px solid rgba(151,50,101,.25);cursor:pointer;
  background:#fff;transition:width .3s ease,background .3s ease,border-color .3s ease;
}
.depo-dot.active{width:34px;border-radius:999px;background:var(--wine);border-color:var(--wine)}
.depo-card{
  background:#fff;border-radius:14px;padding:34px 34px 82px;
  border:1px solid rgba(42,33,38,.06);
  position:relative;
  box-shadow:0 24px 60px -34px rgba(42,33,38,.38);
  display:flex;flex-direction:column;
  height:330px;
  overflow:hidden;
  transition:height .35s ease,box-shadow .25s ease;
}
.depo-card::after{
  display:none;
}
.depo-card__quote{
  font-family:var(--font-title);font-size:1.5rem;line-height:1;
  color:var(--ink);opacity:1;height:auto;margin-bottom:12px;font-weight:800;
}
.depo-card__tag{
  display:none;
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;
  color:var(--wine);background:rgba(151,50,101,.08);
  padding:8px 14px;border-radius:100px;margin-bottom:22px;
}
.depo-card:hover,
.depo-card:focus-within{
  box-shadow:0 26px 62px -34px rgba(42,33,38,.42);
}
.depo-card.depo-card--active{
  height:auto;
  min-height:330px;
  overflow:visible;
}
.depo-card__text{
  color:var(--ink);
  font-size:.95rem;
  line-height:1.62;
  font-weight:300;
  flex:1;
  max-width:58ch;
  max-height:126px;
  overflow:hidden;
  transition:max-height .35s ease;
}
.depo-card.depo-card--active .depo-card__text{
  max-height:900px;
  overflow:visible;
}
.depo-card__text p+p{margin-top:10px}
.depo-card__person{
  display:flex;align-items:center;margin-top:20px;padding-top:0;
  border-top:none;
}
.depo-card__name{font-family:var(--font-title);font-weight:700;font-size:.9rem;line-height:1.2;color:var(--ink)}
.depo-card__role{font-size:.72rem;color:var(--ink-soft);margin-top:2px}

/* ---------- CTA final ---------- */
.cta{
  background-color:var(--wine-deep);
  background-image:url("../img/background.jpg");
  background-size:cover;
  background-position:center;
  background-blend-mode:multiply;
  color:#fff;text-align:center;position:relative;overflow:hidden;
  padding-top:clamp(70px,7vw,96px);
}
.cta::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(94,31,64,.56);
  pointer-events:none;
  z-index:1;
}
.cta .container{position:relative;z-index:2;max-width:820px}
.cta__h{font-family:var(--font-display);font-weight:700;font-size:42px;line-height:1.12;margin:20px 0 0}
.cta__text{margin:22px auto 0;color:rgba(255,255,255,.88);font-size:1.1rem;max-width:60ch}
.cta__actions{margin-top:36px;display:flex;justify-content:center;flex-wrap:wrap;gap:16px}

/* ---------- Footer ---------- */
.footer{background:#120e11;color:rgba(255,255,255,.68);padding:76px 0 32px;position:relative;text-align:center;overflow:hidden}
.footer::before{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  top:-46px;
  height:92px;
  background:#371125;
  border-radius:0 0 50% 50% / 0 0 100% 100%;
}
.footer .container{display:flex;flex-direction:column;align-items:center;gap:24px;position:relative;z-index:2}
.footer__brand{display:flex;flex-direction:column;align-items:center;gap:14px}
.footer__logo{height:58px;width:auto;filter:brightness(0) invert(1);opacity:.94}
.footer__wordmark{font-family:var(--font-display);font-size:1.6rem;color:#fff;letter-spacing:.03em}
.footer__brand p{font-size:.95rem;line-height:1.5}
.footer__links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer__links a{
  width:42px;height:42px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;border:1px solid rgba(255,255,255,.18);
  transition:color .2s ease,border-color .2s ease,background .2s ease,transform .2s ease;
}
.footer__links a:hover{color:#E9B98C;border-color:rgba(233,185,140,.55);background:rgba(255,255,255,.06);transform:translateY(-2px)}
.footer__links i{font-size:1.08rem}
.footer__dev{padding-top:8px;border-top:1px solid rgba(255,255,255,.1);width:min(320px,100%);display:flex;justify-content:center}
.footer__dev a{display:inline-flex;align-items:center;justify-content:center}
.footer__dev img{height:26px;width:auto;opacity:.86}
.footer__copy{font-size:.82rem;color:rgba(255,255,255,.58)}

/* ---------- Reveal anim ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.08s}
.reveal[data-d="2"]{transition-delay:.16s}
.reveal[data-d="3"]{transition-delay:.24s}
.reveal[data-d="4"]{transition-delay:.32s}
.reveal[data-d="5"]{transition-delay:.4s}

/* ---------- Responsive ---------- */
@media(max-width:980px){
  .nav__inner{justify-content:center}
  .nav__links,.nav__cta,.nav__toggle,.nav__panel{display:none!important}
  .nav__logo{justify-content:center}
  .nav.open{background:#fff;backdrop-filter:none;box-shadow:none}
  .nav.open .nav__panel{display:none!important}

  .hero__inner{grid-template-columns:1fr;text-align:center;gap:38px}
  .hero::after{left:0;right:0}
  .hero__copy{max-width:760px;margin:0 auto;text-align:center}
  .hero__actions{justify-content:center}
  .hero__media{justify-self:center;width:min(460px,100%)}
  .sobre__grid{grid-template-columns:1fr;gap:60px}
  .sobre__photo{max-width:380px}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .proc-grid{grid-template-columns:repeat(2,1fr);gap:32px 18px}
  .proc-grid::before{display:none}
  .processo__grid{grid-template-columns:1fr;gap:44px}
  .processo__media,.processo__copy{order:initial}
  .processo__media{max-width:460px;margin:0 auto}
  .depo .container{grid-template-columns:1fr;gap:34px}
  .depo .section-head{align-items:center;text-align:center}
  .depo .section-head .eyebrow{justify-content:center}
  .depo .section-head .lede{margin-inline:auto;text-align:center}
  .depo-nav{justify-content:center}
}
@media(max-width:600px){
  .container{padding:0 18px}
  .hero{padding-top:48px;padding-bottom:78px}
  .hero::after{left:0;right:0;bottom:-46px;height:90px}
  .hero__h1{font-size:38px}
  .hero__media{width:min(340px,100%)}
  .hero__actions{width:100%}
  .hero__actions .btn{
    width:100%;
    max-width:320px;
    white-space:normal;
    text-align:center;
    line-height:1.2;
  }
  .svc-grid{grid-template-columns:1fr}
  .svc{min-height:0}
  .sobre__photo .frame,
  .processo__imgwrap{min-height:380px}
  .depo-viewport{padding:14px 0}
  .depo-card{flex-basis:100%;height:360px;padding:30px 24px 78px}
  .depo-card.depo-card--active{height:auto;min-height:360px}
  .depo-card::after{width:54px;height:54px;right:22px;top:24px}
  .depo-card__quote{font-size:1.35rem}
  .depo-card__text{font-size:.9rem;line-height:1.6}
  .depo-track{gap:16px}
  .depo-arrow{width:42px;height:42px}
  .footer__links{gap:10px}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important}
}
/* ---------- WhatsApp flutuante ---------- */
.wa-float{
  position:fixed;right:22px;bottom:22px;z-index:200;
  width:60px;height:60px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 28px -6px rgba(37,211,102,.55);
  transition:transform .25s ease,box-shadow .25s ease;
}
.wa-float svg{width:33px;height:33px}
.wa-float:hover{transform:scale(1.08);box-shadow:0 16px 34px -6px rgba(37,211,102,.65)}
.wa-float::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:#25D366;z-index:-1;animation:waPulse 2.2s ease-out infinite;
}
@keyframes waPulse{0%{transform:scale(1);opacity:.55}70%{transform:scale(1.7);opacity:0}100%{opacity:0}}
@media(max-width:600px){.wa-float{width:54px;height:54px;right:16px;bottom:16px}.wa-float svg{width:29px;height:29px}}
@media(prefers-reduced-motion:reduce){.wa-float::before{animation:none}}

/* ---------- Cabeçalho do Blog ---------- */
.blog-hero{
  position:relative;
  overflow:hidden;
  text-align:center;
  background:linear-gradient(90deg,rgba(243,233,221,1) 0%,rgba(255,255,255,1) 100%);
  padding:clamp(54px,7vw,92px) 0 clamp(48px,6vw,76px);
}
.blog-hero .container{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;gap:16px}
.blog-hero .title{font-size:clamp(2rem,3.6vw,2.85rem)}
.blog-hero .lede{margin:0 auto;text-align:center;max-width:60ch}

/* ---------- Páginas e Blog (templates internos) ---------- */
.page-main{background:#fff;min-height:60vh}
.page-main .section-head{margin-bottom:clamp(28px,4vw,44px)}
.page-content{max-width:760px;margin:0 auto;color:var(--ink-soft);font-size:1.02rem;line-height:1.75}
.page-content h2,.page-content h3,.page-content h4{font-family:var(--font-title);color:var(--ink);margin:1.6em 0 .5em;line-height:1.2}
.page-content h2{font-size:1.7rem}
.page-content h3{font-size:1.35rem}
.page-content p{margin-bottom:1.1em}
.page-content a{color:var(--wine);text-decoration:underline}
.page-content ul,.page-content ol{margin:0 0 1.1em 1.4em}
.page-content li{margin-bottom:.4em}
.page-content blockquote{border-left:3px solid var(--terracotta);padding:6px 0 6px 22px;margin:1.4em 0;color:var(--ink);font-style:italic}
.page-content img{border-radius:12px;margin:1.2em 0}
.page-thumb{max-width:900px;margin:0 auto clamp(24px,4vw,40px)}
.page-thumb img{width:100%;height:auto;border-radius:18px;box-shadow:var(--shadow-md)}

.post-list{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
@media(max-width:980px){.post-list{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.post-list{grid-template-columns:1fr}}
.post-card{background:#fff;border:1px solid rgba(42,33,38,.08);border-radius:14px;overflow:hidden;box-shadow:0 18px 52px -38px rgba(42,33,38,.42);display:flex;flex-direction:column;transition:transform .3s ease,box-shadow .3s ease}
.post-card:hover{transform:translateY(-5px);box-shadow:0 26px 62px -36px rgba(42,33,38,.5)}
.post-card__thumb img{width:100%;height:200px;object-fit:cover}
.post-card__body{padding:24px 24px 28px;display:flex;flex-direction:column;gap:10px;flex:1}
.post-card__title{font-family:var(--font-title);font-weight:700;font-size:1.18rem;line-height:1.25}
.post-card__title a{color:var(--ink)}
.post-card__title a:hover{color:var(--wine)}
.post-card__excerpt{font-size:.92rem;color:var(--ink-soft);flex:1}
.post-card .btn{align-self:flex-start;margin-top:6px}

.post-meta{max-width:760px;margin:32px auto 0;font-size:.85rem;color:var(--ink-soft);display:flex;gap:14px;flex-wrap:wrap}
.post-meta a{color:var(--wine)}
.post-nav{max-width:760px;margin:40px auto 0;display:flex;justify-content:space-between;gap:20px;font-size:.9rem}
.post-nav a{color:var(--wine)}
.pagination,.nav-links{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-top:40px}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 12px;border-radius:100px;border:1px solid var(--line);color:var(--ink);font-size:.9rem}
.pagination .page-numbers.current{background:var(--wine);color:#fff;border-color:var(--wine)}
.pagination a.page-numbers:hover{border-color:var(--terracotta);color:var(--terracotta-deep)}

/* Comentários */
.comments-area{max-width:760px;margin:48px auto 0}
.comments-title{font-family:var(--font-title);font-size:1.4rem;margin-bottom:20px}
.comment-list{list-style:none;margin:0 0 30px;padding:0}
.comment-list .comment{margin-bottom:22px;padding-bottom:22px;border-bottom:1px solid var(--line)}
.comment-list .children{list-style:none;margin:18px 0 0 28px}
.comment-respond{margin-top:30px}
.comment-form input[type=text],.comment-form input[type=email],.comment-form input[type=url],.comment-form textarea{width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:10px;font-family:var(--font-body);margin-top:6px}
.comment-form .form-submit .submit{background:var(--wine);color:#fff;border:0;height:45px;padding:0 28px;border-radius:100px;cursor:pointer;font-family:var(--font-body);font-weight:500}

/* Widgets do rodapé */
.footer__widgets{display:flex;flex-wrap:wrap;gap:32px;justify-content:center;width:100%;max-width:900px}
.footer-widget{color:rgba(255,255,255,.7);font-size:.9rem;text-align:left}
.footer-widget__title{font-family:var(--font-title);color:#fff;font-size:1rem;margin-bottom:12px}
.footer-widget a{color:rgba(255,255,255,.7)}
.footer-widget a:hover{color:#E9B98C}
.footer-widget ul{list-style:none}
.footer-widget li{margin-bottom:8px}
.footer__address{font-size:.9rem;opacity:.85}
