:root{
  --bg: #0b0b0b;
  --bg2:#121212;
  --card:#141414;
  --soft:#f7f1e6;     /* bege claro */
  --soft2:#efe3cf;    /* bege quente */
  --text:#f5f3ef;
  --muted: rgba(245,243,239,.72);
  --muted2: rgba(245,243,239,.55);

  --gold:#d6b46a;
  --gold2:#b9964a;
  --brown:#3a2a1f;
  --line: rgba(214,180,106,.28);

  --radius: 18px;
  --shadow: 0 12px 34px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(214,180,106,.13), transparent 55%),
              radial-gradient(900px 500px at 80% 15%, rgba(214,180,106,.09), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,11,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(214,180,106,.14);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(214,180,106,.35);
  background: linear-gradient(180deg, rgba(214,180,106,.18), rgba(0,0,0,.0));
  color: var(--gold);
  font-weight:700;
  letter-spacing:.5px;
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__text small{color:var(--muted2); font-weight:500; margin-top:4px}

.menu{display:flex; gap:18px; align-items:center}
.menu a{color:var(--muted); font-weight:600; font-size:14px}
.menu a:hover{color:var(--text)}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(214,180,106,.30);
  background: rgba(214,180,106,.08);
  color: var(--text);
}

.menu-btn{
  display:none;
  width:46px; height:42px;
  border-radius:14px;
  border:1px solid rgba(214,180,106,.25);
  background: rgba(214,180,106,.06);
  cursor:pointer;
}
.menu-btn span{display:block; height:2px; width:18px; margin:5px auto; background: rgba(245,243,239,.85); border-radius:4px}

.hero{position:relative; padding:64px 0 44px}
.hero__grid{display:grid; grid-template-columns: 1.25fr .9fr; gap:28px; align-items:stretch}
.kicker{
  color: var(--gold);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 12px;
}
h1{
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:0 0 14px;
}
.lead{
  color: var(--muted);
  font-size:17px;
  line-height:1.65;
  margin:0 0 18px;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.trust{
  margin-top:18px;
  display:flex; flex-direction:column; gap:10px;
}
.trust__item{display:flex; gap:10px; align-items:center; color:var(--muted2); font-weight:600}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(214,180,106,.55);
}

.hero__card{height:100%}
.hero__fade{
  position:absolute; left:0; right:0; bottom:-1px; height:42px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events:none;
}

.section{padding:64px 0}
.section--dark{
  background: linear-gradient(180deg, rgba(214,180,106,.07), transparent 45%),
              radial-gradient(1100px 520px at 70% 0%, rgba(214,180,106,.10), transparent 60%),
              var(--bg2);
  border-top: 1px solid rgba(214,180,106,.12);
  border-bottom: 1px solid rgba(214,180,106,.12);
}
.section--soft{
  background: radial-gradient(900px 420px at 25% 0%, rgba(58,42,31,.18), transparent 65%),
              linear-gradient(180deg, rgba(247,241,230,.06), rgba(11,11,11,0));
  border-top: 1px solid rgba(214,180,106,.10);
  border-bottom: 1px solid rgba(214,180,106,.10);
}
.section__head{margin-bottom:22px}
.section__head h2{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin:0 0 8px;
}
.muted{color:var(--muted)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.grid{display:grid; gap:18px}
.grid--2{grid-template-columns: 1fr 1fr}
.grid--3{grid-template-columns: repeat(3, 1fr)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(214,180,106,.14);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card--soft{
  background: linear-gradient(180deg, rgba(247,241,230,.08), rgba(255,255,255,.01));
}
.card--dark{
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.12));
  border: 1px solid rgba(214,180,106,.18);
}
.card--glow{
  position:relative;
  overflow:hidden;
}
.card--glow:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(420px 140px at 30% 0%, rgba(214,180,106,.20), transparent 65%);
  pointer-events:none;
}
.card--quote{
  display:flex; flex-direction:column; justify-content:center;
  background: radial-gradient(700px 240px at 30% 10%, rgba(214,180,106,.14), transparent 70%),
              linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.08));
}
.quote{
  font-family:"Playfair Display", serif;
  font-size: 22px;
  line-height:1.35;
  margin:0 0 10px;
  color: rgba(245,243,239,.95);
}

h2,h3{margin:0 0 10px}
h3{font-size:18px}
.lead2{font-size:18px; line-height:1.6; margin:0 0 10px}
.tiny{font-size:12.5px; line-height:1.5}
.inline-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.check{
  display:inline-grid; place-items:center;
  width:22px; height:22px; border-radius:8px;
  background: rgba(214,180,106,.12);
  border: 1px solid rgba(214,180,106,.22);
  color: var(--gold);
  margin-right:10px;
  font-weight:900;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .14s ease, filter .14s ease, background .14s ease, border-color .14s ease;
}
.btn:active{transform: translateY(1px)}
.btn--full{width:100%}

.btn--primary{
  background: linear-gradient(180deg, rgba(214,180,106,.92), rgba(185,150,74,.92));
  color:#14110c;
  border-color: rgba(214,180,106,.40);
}
.btn--primary:hover{filter: brightness(1.03)}

.btn--ghost{
  background: rgba(255,255,255,.02);
  border-color: rgba(214,180,106,.26);
  color: var(--text);
}
.btn--ghost:hover{background: rgba(214,180,106,.06)}

.link{
  display:inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-top: 6px;
}
.link:hover{color: rgba(214,180,106,.88)}

.quicklinks{display:flex; flex-direction:column; gap:10px; margin-top:14px}
.ql{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(214,180,106,.16);
  background: rgba(0,0,0,.18);
  color: rgba(245,243,239,.92);
  font-weight:700;
}
.ql:hover{border-color: rgba(214,180,106,.30); background: rgba(214,180,106,.06)}

.mini-cta{margin-top:16px}
.banner{
  margin-top: 18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(214,180,106,.18);
  background: linear-gradient(180deg, rgba(214,180,106,.10), rgba(0,0,0,.10));
}
.banner h3{margin:0 0 4px}
.sep{opacity:.55; margin:0 8px}

.footer{padding-top:24px}

.wa-float{
  position:fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(214,180,106,.12);
  border:1px solid rgba(214,180,106,.35);
  box-shadow: 0 18px 34px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  z-index: 90;
}
.wa-float:hover{background: rgba(214,180,106,.18)}
.wa-float__icon{
  width:28px; height:28px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(214,180,106,.22);
  color: var(--gold);
  font-weight:900;
}
.wa-float__text{font-weight:900}

@media (max-width: 960px){
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
}

@media (max-width: 860px){
  .menu-btn{display:block}
  .menu{
    position:absolute;
    right:20px;
    top:64px;
    width: min(320px, calc(100% - 40px));
    background: rgba(11,11,11,.92);
    border:1px solid rgba(214,180,106,.18);
    border-radius: 18px;
    padding: 10px;
    display:none;
    flex-direction:column;
    gap:6px;
    box-shadow: var(--shadow);
  }
  .menu a{padding:10px 10px; border-radius:12px}
  .menu a:hover{background: rgba(214,180,106,.06)}
  .menu.is-open{display:flex}
}
