:root{
  --cream:#f7f4ef;
  --cream2:#eee8df;
  --ink:#2b2d29;
  --muted:#6f6a62;
  --gold:#ae8d57;
  --gold2:#bd9b61;
  --line:#ded6ca;
  --white:#fffaf4;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:var(--cream);
  color:var(--ink);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.topbar{
  height:132px;
  padding:28px 5vw;
  display:grid;
  grid-template-columns:340px 1fr 280px;
  gap:32px;
  align-items:center;
  background:rgba(247,244,239,.96);
  border-bottom:1px solid rgba(222,214,202,.55);
  position:relative;
  z-index:5;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--gold);
}
.logo-icon{
  width:76px;
  height:76px;
  flex:0 0 76px;
}
.logo strong{
  display:block;
  font-family: Georgia, "Times New Roman", serif;
  font-size:56px;
  font-weight:500;
  line-height:.86;
  letter-spacing:-.06em;
  color:var(--ink);
}
.logo small{
  display:block;
  margin-top:12px;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
}

.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:38px;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.08em;
  color:#34342f;
}
.nav a{transition:.2s}
.nav a:hover{color:var(--gold)}

.btn{
  height:58px;
  padding:0 30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:white;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:14px;
  font-weight:700;
  box-shadow:0 18px 40px rgba(122,96,53,.18);
  transition:.25s ease;
}
.btn:hover{transform:translateY(-2px)}
.nav-btn{justify-self:end;text-align:center}
.btn span{font-size:30px;line-height:1;font-weight:300}
.light{background:var(--white);color:var(--ink)}

.hero{
  min-height:calc(100vh - 132px);
  display:grid;
  grid-template-columns:41% 59%;
  background:var(--cream);
  overflow:hidden;
}
.hero-copy{
  padding:7.5vh 5vw 6vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2;
  box-shadow:45px 0 60px rgba(247,244,239,.95);
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:13px;
  font-weight:700;
  margin-bottom:22px;
}
.eyebrow span{
  display:inline-block;
  width:28px;
  height:1px;
  background:var(--gold);
}
.eyebrow.center{
  justify-content:center;
}
h1,h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  color:var(--ink);
  letter-spacing:-.055em;
}
h1{
  font-size:clamp(58px,7vw,106px);
  line-height:.92;
  max-width:620px;
  margin-bottom:28px;
}
h2{
  font-size:clamp(38px,4.6vw,72px);
  line-height:1.02;
  margin-bottom:18px;
}
.lead{
  color:#55514b;
  font-size:20px;
  line-height:1.55;
  max-width:560px;
}
.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin:46px 0 36px;
  max-width:610px;
}
.features div{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}
.feature-icon{
  width:34px;
  height:34px;
  border:1px solid #b9b2a7;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  color:#8b857c;
  font-size:18px;
}
.hero-btn{
  width:max-content;
  min-width:390px;
}
.micro{
  margin-top:24px;
  color:#5c574f;
  font-size:15px;
}
.hero-image{
  position:relative;
  min-height:100%;
}
.hero-image::before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:26%;
  background:linear-gradient(90deg,var(--cream),rgba(247,244,239,0));
  z-index:1;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.intro{
  text-align:center;
  padding:72px 24px 84px;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,var(--cream),#fbf8f3);
}
.intro p:not(.eyebrow){
  max-width:680px;
  margin:0 auto;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.how,.before-after{
  padding:100px 5vw;
}
.section-head{
  max-width:780px;
  margin-bottom:42px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.cards article{
  background:rgba(255,255,255,.52);
  border:1px solid var(--line);
  border-radius:22px;
  padding:34px;
  min-height:250px;
}
.cards small{
  color:var(--gold);
  letter-spacing:.2em;
  font-weight:800;
}
.cards h3{
  margin:60px 0 14px;
  font-size:24px;
}
.cards p{
  color:var(--muted);
  line-height:1.65;
}

.before-after{
  background:var(--cream2);
}
.ba-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.ba-grid figure{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:#ddd;
  min-height:430px;
}
.ba-grid img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
}
.ba-grid span{
  position:absolute;
  left:22px;
  top:22px;
  background:rgba(255,250,244,.84);
  backdrop-filter:blur(10px);
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  color:var(--ink);
}

.final{
  background:#252822;
  color:var(--white);
  text-align:center;
  padding:120px 24px;
}
.final h2{
  color:var(--white);
  max-width:880px;
  margin:0 auto 22px;
}
.final p:not(.eyebrow){
  max-width:720px;
  margin:0 auto 34px;
  color:rgba(255,250,244,.72);
  font-size:19px;
  line-height:1.7;
}
footer{
  background:#252822;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,250,244,.55);
  text-align:center;
  padding:26px;
  font-size:14px;
}

@media(max-width:1120px){
  .topbar{
    grid-template-columns:1fr auto;
    height:auto;
  }
  .nav{display:none}
  .hero{
    grid-template-columns:1fr;
  }
  .hero-copy{
    box-shadow:none;
    padding:64px 6vw 44px;
  }
  .hero-image{
    min-height:58vh;
  }
  .hero-image::before{
    display:none;
  }
}

@media(max-width:720px){
  .topbar{
    padding:20px;
    grid-template-columns:1fr;
  }
  .nav-btn{display:none}
  .logo-icon{width:58px;height:58px;flex-basis:58px}
  .logo strong{font-size:44px}
  .logo small{font-size:10px;letter-spacing:3px}
  .hero-copy{padding:48px 22px 34px}
  h1{font-size:58px}
  .lead{font-size:17px}
  .features{
    grid-template-columns:1fr 1fr;
  }
  .hero-btn{
    width:100%;
    min-width:0;
  }
  .cards,.ba-grid{grid-template-columns:1fr}
  .how,.before-after{padding:76px 22px}
}


/* Logo fix v3 */
.logo{
  display:block;
  width:260px;
  max-width:100%;
}
.logo img{
  width:100%;
  height:auto;
  display:block;
}
@media(max-width:720px){
  .logo{
    width:210px;
  }
}


/* Ajustes v4 */
.topbar{
  height:112px;
  padding-top:22px;
  padding-bottom:18px;
}
.logo{
  width:245px;
  transform:translateY(-5px);
}
.logo img{
  display:block;
  width:100%;
  height:auto;
}

.features{
  margin:46px 0 10px;
  max-width:650px;
  align-items:start;
}
.features div{
  font-size:15px;
  line-height:1.45;
}
.feature-icon{
  width:38px;
  height:38px;
  margin-bottom:12px;
}
.hero-copy{
  padding-top:5.8vh;
}
.hero{
  min-height:calc(100vh - 112px);
}

/* Intro mais forte */
.intro{
  padding:92px 5vw 96px;
}
.intro h2{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}
.intro p:not(.eyebrow){
  max-width:860px;
  font-size:20px;
}
.intro-highlights{
  margin:46px auto 0;
  max-width:1120px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.intro-highlights div{
  text-align:left;
  background:rgba(255,255,255,.52);
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
}
.intro-highlights strong{
  display:block;
  font-size:20px;
  margin-bottom:10px;
  color:var(--ink);
}
.intro-highlights span{
  display:block;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}

/* Final em paleta Madu */
.contact-final{
  background:
    radial-gradient(circle at 0% 100%, rgba(174,141,87,.28), transparent 30%),
    linear-gradient(135deg,#272921 0%, #11130f 100%);
  color:var(--white);
  text-align:left;
  padding:105px 5vw;
}
.contact-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:74px;
  align-items:center;
}
.contact-copy h2{
  color:var(--white);
  max-width:560px;
  font-size:clamp(44px,5vw,76px);
}
.contact-copy p:not(.eyebrow){
  color:rgba(255,250,244,.75);
  max-width:590px;
  margin:0 0 42px;
  font-size:19px;
  line-height:1.65;
}
.contact-meta{
  border-top:1px solid rgba(255,255,255,.13);
  padding-top:28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  max-width:560px;
}
.contact-meta small,
.contact-cards small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:rgba(255,250,244,.52);
  font-size:11px;
  font-weight:800;
  margin-bottom:8px;
}
.contact-meta strong{
  color:var(--white);
  font-size:16px;
}
.contact-cards{
  display:grid;
  gap:18px;
}
.contact-cards a{
  min-height:112px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  border-radius:10px;
  padding:26px 30px;
  display:grid;
  grid-template-columns:54px 1fr 42px;
  align-items:center;
  gap:18px;
  transition:.25s ease;
}
.contact-cards a:hover{
  transform:translateY(-2px);
  border-color:rgba(174,141,87,.65);
  background:rgba(255,255,255,.055);
}
.contact-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(174,141,87,.20);
  color:var(--gold2);
  font-size:24px;
}
.contact-cards strong{
  color:var(--white);
  font-size:21px;
}
.contact-cards b{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.78);
  font-weight:400;
}
footer{
  background:#11130f;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,250,244,.62);
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:28px 5vw;
}
footer strong{
  font-family:Georgia,serif;
  color:white;
  font-size:22px;
  font-weight:500;
}
footer a{
  color:rgba(255,250,244,.8);
}

@media(max-width:1120px){
  .topbar{
    height:auto;
  }
  .logo{
    transform:none;
  }
  .contact-wrap{
    grid-template-columns:1fr;
  }
}
@media(max-width:720px){
  .logo{
    width:205px;
  }
  .intro-highlights,
  .contact-meta{
    grid-template-columns:1fr;
  }
  .contact-final{
    padding:82px 22px;
  }
  .contact-cards a{
    grid-template-columns:46px 1fr;
  }
  .contact-cards b{
    display:none;
  }
  footer{
    flex-direction:column;
  }
}
