:root{
  --black:#0d1117;
  --black-2:#111927;
  --white:#ffffff;
  --offwhite:#f5f2eb;
  --soft:#fbfaf7;
  --text:#1d222b;
  --muted:#6e7683;
  --muted-light:#c5cad3;
  --gold:#b99a63;
  --gold-light:#d6ba82;
  --border:#e5ded1;
  --border-dark:rgba(255,255,255,.1);
  --radius:22px;
  --radius-sm:14px;
  --shadow:0 24px 70px rgba(0,0,0,.14);
  --shadow-soft:0 14px 40px rgba(0,0,0,.08);
  --container:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',system-ui,sans-serif;
  background:var(--offwhite);
  color:var(--text);
  line-height:1.75;
  font-size:16px;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(100% - 40px, var(--container));
  margin-inline:auto;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(13,17,23,.96);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(16px);
}

.nav{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
  width:230px;
  height:66px;
  padding:10px 16px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.brand-logo-box img{
  width:100%;
  height:auto;
}

.back-link{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--gold);
  color:#111;
  font-size:.94rem;
  font-weight:800;
  transition:.25s ease;
}

.back-link:hover{
  background:var(--gold-light);
  transform:translateY(-2px);
}

/* HERO */

.privacy-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(185,154,99,.16), transparent 30%),
    linear-gradient(135deg, #0d1117 0%, #111927 60%, #10151d 100%);
  padding:86px 0 92px;
}

.privacy-hero::after{
  content:"";
  position:absolute;
  left:-180px;
  bottom:-260px;
  width:620px;
  height:620px;
  border-radius:50%;
  background:rgba(185,154,99,.08);
  filter:blur(40px);
}

.eyebrow{
  display:inline-flex;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(185,154,99,.12);
  color:var(--gold-light);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:24px;
}

.privacy-hero h1{
  max-width:820px;
  color:#fff;
  font-size:4rem;
  line-height:1.04;
  letter-spacing:-.075em;
  font-weight:800;
  margin-bottom:20px;
}

.privacy-hero p{
  max-width:720px;
  color:var(--muted-light);
  font-size:1.08rem;
  line-height:1.85;
  margin-bottom:18px;
}

.privacy-hero small{
  display:inline-flex;
  color:rgba(197,202,211,.82);
  font-weight:600;
}

/* CONTEÚDO */

.privacy-content{
  padding:76px 0 96px;
}

.content-grid{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:34px;
  align-items:start;
}

.summary-card{
  position:sticky;
  top:130px;
  padding:30px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}

.summary-card strong{
  display:block;
  font-size:1.08rem;
  font-weight:800;
  letter-spacing:-.03em;
  margin-bottom:4px;
}

.summary-card span{
  display:block;
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
  margin-bottom:22px;
}

.summary-card p{
  color:var(--muted);
  font-size:.94rem;
  line-height:1.75;
  margin-bottom:20px;
}

.summary-card a{
  color:#8d6b33;
  font-weight:800;
  word-break:break-word;
}

.policy-card{
  padding:46px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}

.policy-card section + section{
  margin-top:34px;
}

.policy-card h2{
  font-size:1.28rem;
  line-height:1.25;
  letter-spacing:-.035em;
  font-weight:800;
  margin-bottom:10px;
  color:var(--text);
}

.policy-card p{
  color:#3c424c;
  margin:10px 0;
}

.policy-card a{
  color:#8d6b33;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

.policy-card ul{
  margin:14px 0 0 20px;
  display:grid;
  gap:10px;
}

.policy-card li{
  color:#3c424c;
  padding-left:4px;
}

.policy-card strong{
  color:var(--text);
}

.policy-footer{
  margin-top:42px;
  padding-top:24px;
  border-top:1px solid var(--border);
}

.policy-footer p{
  color:var(--muted);
  font-size:.92rem;
}

/* RESPONSIVO */

@media(max-width:980px){
  .content-grid{
    grid-template-columns:1fr;
  }

  .summary-card{
    position:static;
  }

  .privacy-hero h1{
    font-size:3rem;
  }
}

@media(max-width:760px){
  .container{
    width:min(100% - 28px, var(--container));
  }

  .nav{
    min-height:88px;
  }

  .brand-logo-box{
    width:178px;
    height:54px;
    padding:8px 12px;
  }

  .back-link{
    min-height:44px;
    padding:0 16px;
    font-size:.86rem;
  }

  .privacy-hero{
    padding:68px 0 74px;
  }

  .privacy-hero h1{
    font-size:2.45rem;
  }

  .privacy-hero p{
    font-size:1rem;
  }

  .privacy-content{
    padding:54px 0 72px;
  }

  .policy-card{
    padding:30px 24px;
  }
}

@media(max-width:460px){
  .nav{
    justify-content:center;
  }

  .back-link{
    display:none;
  }

  .brand-logo-box{
    width:170px;
    height:52px;
  }

  .privacy-hero h1{
    font-size:2.18rem;
  }
}