:root{
--bg:#0b0b0b;
--choco:#22140C;
--taupe:#7B6451;
--ivory:#FFFFEF;
--gold:#B7954E;
--gold2:#D3BE84;
--text:#fff;
--muted:rgba(255,255,255,.75);
--border:rgba(255,255,255,.12);
--shadow:0 20px 60px rgba(0,0,0,.55);
}

html,body{
margin:0;
height:100%;
font-family:Poppins;
background:var(--bg);
color:var(--text);
}

a{ color:inherit; text-decoration:none; }

.h1,.h2{ font-family:"Times New Roman", Times, serif; letter-spacing:.4px; }
.h1{ font-size:40px; line-height:1.05; margin:0 0 10px; }
.h2{ font-size:28px; line-height:1.1; margin:0 0 8px; }
.p{ margin:0; color:var(--muted); font-size:16px; line-height:1.55; }
.gold{ background:linear-gradient(135deg,var(--gold),var(--gold2)); -webkit-background-clip:text; background-clip:text; color:transparent; }

.app{
height:100dvh;
display:flex;
flex-direction:column;
}

.topbar{
padding:12px;
display:flex;
align-items:center;
border-bottom:1px solid rgba(255,255,255,.1);
justify-content:space-between;
background:radial-gradient(1200px 300px at 50% -50%, rgba(183,149,78,.35), transparent 65%);
}

.topbar-left{ display:flex; align-items:center; gap:10px; }
.topbar-right{ display:flex; gap:10px; align-items:center; }
.brandlink{ display:inline-flex; }

.logo{
width:42px;
height:42px;
border-radius:50%;
margin-right:10px;
}

.title{ font-weight:700; letter-spacing:1.6px; font-size:14px; }
.subtitle{ color:rgba(255,255,255,.7); font-size:12px; }

.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}

.chat{
flex:1;
overflow:auto;
padding:12px;
display:flex;
flex-direction:column;
gap:10px;
}

.bubble{
padding:10px 14px;
border-radius:14px;
max-width:85%;
}

.bot{
background:var(--choco);
}

.user{
background:linear-gradient(135deg,var(--gold),var(--gold2));
color:#000;
align-self:flex-end;
}

.bottombar{
display:flex;
gap:10px;
padding:10px;
border-top:1px solid rgba(255,255,255,.1);
background:rgba(0,0,0,.15);
}

input{
flex:1;
padding:12px;
border-radius:10px;
border:none;
font-size:16px;
background:rgba(255,255,255,.92);
}

button{
padding:12px 16px;
border:none;
border-radius:10px;
background:linear-gradient(135deg,var(--gold),var(--gold2));
cursor:pointer;
}

button:disabled{ opacity:.7; cursor:not-allowed; }

/* HOME */
.home{ flex:1; overflow:auto; }

.hero{
  padding:34px 14px 12px;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(211,190,132,.28), transparent 60%),
    radial-gradient(900px 380px at 10% 20%, rgba(183,149,78,.18), transparent 55%);
}

.hero-card{
  max-width:980px;
  margin:0 auto;
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(34,20,12,.92), rgba(0,0,0,.35));
  box-shadow:var(--shadow);
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#000;
}

.btn.ghost{
  background:transparent;
  color:var(--ivory);
  border:1px solid var(--border);
}

.micro{ margin-top:12px; color:rgba(255,255,255,.65); font-size:12px; display:flex; gap:8px; align-items:center; }
.dot{ width:6px; height:6px; border-radius:999px; background:linear-gradient(135deg,var(--gold),var(--gold2)); display:inline-block; }

.grid{
  max-width:980px;
  margin:14px auto 0;
  padding:0 14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background:rgba(255,255,255,.03);
}

.kicker{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#000;
  font-weight:700;
  margin-bottom:10px;
}

.callout{ padding:18px 14px 26px; }
.callout-inner{
  max-width:980px;
  margin:0 auto;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(183,149,78,.16), rgba(34,20,12,.85));
}

/* OBRIGADO */
.thanks{ flex:1; display:flex; align-items:center; justify-content:center; padding:22px 14px; }
.thanks-card{
  max-width:820px;
  width:100%;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  background:linear-gradient(180deg, rgba(34,20,12,.92), rgba(0,0,0,.35));
  box-shadow:var(--shadow);
}
.badge{
  width:44px; height:44px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#000;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  margin-bottom:12px;
}

/* FOOTER */
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-top:1px solid var(--border);
  color:rgba(255,255,255,.7);
  font-size:12px;
}
.footer-links{ display:flex; gap:12px; }

/* Responsivo */
@media (max-width: 860px){
  .grid{ grid-template-columns:1fr; }
  .h1{ font-size:34px; }
}


/* Obrigado - redes sociais */
.social { margin-top: 18px; }
.social-title{
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 10px;
}


.hidden{display:none !important;}

/* LGPD consent bar */
.consentbar{gap:12px; align-items:center;}
.consent{display:flex; align-items:flex-start; gap:10px; color: rgba(255,255,255,.85); font-size:13px; line-height:1.2; flex:1;}
.consent input{margin-top:2px;}
.consent a{color:#D3BE84; text-decoration:underline;}
.btn-finish{min-width:120px;}
.legal-links{padding:10px 16px 18px; text-align:center; font-size:12px; color: rgba(255,255,255,.6);}
.legal-links a{color:#D3BE84; text-decoration:underline;}
/* Legal page */
.legal{padding:22px 16px;}
.legal-card{max-width:900px; margin:0 auto; background: rgba(0,0,0,.30); border:1px solid rgba(255,255,255,.08); border-radius:18px; padding:20px;}
.h2{font-size:16px; margin:16px 0 8px; color:#D3BE84;}
.list{margin:0 0 10px 18px; color: rgba(255,255,255,.85);}
.list li{margin:6px 0;}
