:root{
  --bg: #07070a;
  --bg2: #0d0d12;
  --card: rgba(255,255,255,.04);
  --card2: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.90);
  --muted: rgba(255,255,255,.65);
  --muted2: rgba(255,255,255,.45);
  --gold: #d6b15e;
  --gold2: #b9933b;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1000px 600px at 20% 10%, rgba(214,177,94,.18), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(214,177,94,.10), transparent 50%),
              var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1180px, 92vw);
  margin:0 auto;
}

.sep{ opacity:.5; }

/* Topbar */
.topbar{
  background: rgba(0,0,0,.45);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 0;
  color: var(--muted);
  gap: 14px;
}
.topbar__left, .topbar__right{
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
}
.topbar__link{ color: var(--muted); }
.topbar__link:hover{ color: var(--text); }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,7,10,.65);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand{
  display:flex; align-items:center; gap: 12px;
}
.brand__mark{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(214,177,94,.25), rgba(214,177,94,.05));
  border: 1px solid rgba(214,177,94,.25);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.brand__text strong{
  display:block;
  letter-spacing: .2px;
}
.brand__text small{
  display:block;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  gap: 22px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
}
.nav a:hover{ color: var(--text); }

.nav__cta{
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(214,177,94,.25);
  background: rgba(214,177,94,.10);
  color: var(--text) !important;
}

/* Mobile menu */
.nav__toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px; width: 18px;
  background: rgba(255,255,255,.85);
  margin: 4px auto;
  border-radius: 20px;
}

/* Hero */
.hero{
  position:relative;
  padding: 70px 0 40px;
}
.hero__bg{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 30% 10%, rgba(214,177,94,.18), transparent 55%),
              radial-gradient(900px 520px at 70% 0%, rgba(214,177,94,.10), transparent 55%);
  pointer-events:none;
  opacity: .9;
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 32px;
  align-items:start;
}

.badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214,177,94,.10);
  border: 1px solid rgba(214,177,94,.20);
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .7px;
}

.hero h1{
  margin: 14px 0 12px;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.05;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 56ch;
}

.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: .2s ease;
}
.btn--primary{
  background: linear-gradient(145deg, var(--gold), var(--gold2));
  color: #14100a;
  box-shadow: 0 16px 30px rgba(214,177,94,.14);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover{ border-color: rgba(214,177,94,.25); }
.btn--block{ width:100%; }

.hero__trust{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust__item{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.trust__item strong{
  display:block;
  font-size: 15px;
}
.trust__item span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.hero__card{
  border-radius: var(--radius2);
  border: 1px solid rgba(214,177,94,.20);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 22px;
}
.hero__card h3{ margin:0 0 8px; }
.hero__card p{ margin:0 0 16px; color: var(--muted); }

/* Forms */
.form{
  display:grid;
  gap: 12px;
}
label{
  display:grid;
  gap: 7px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 700;
}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(214,177,94,.40);
  box-shadow: 0 0 0 4px rgba(214,177,94,.10);
}
.form__note{
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

/* Sections */
.section{
  padding: 70px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__header{
  margin-bottom: 26px;
  max-width: 66ch;
}
.section__header h2{
  margin:0 0 10px;
  font-size: 30px;
}
.section__header p{ margin:0; color: var(--muted); line-height: 1.7; }

.grid{
  display:grid;
  gap: 16px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 20px;
  min-height: 220px;
  transition:.2s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,177,94,.20);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 12px; color: var(--muted); line-height: 1.65; }

.card--highlight{
  border-color: rgba(214,177,94,.26);
  background: linear-gradient(180deg, rgba(214,177,94,.12), rgba(255,255,255,.03));
}

.list{
  margin: 0 0 14px;
  padding: 0 0 0 16px;
  color: rgba(255,255,255,.82);
}
.list li{ margin: 6px 0; }

.link{
  color: rgba(214,177,94,.95);
  font-weight: 800;
}
.link:hover{ text-decoration: underline; }

/* Two columns */
.two-col{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.two-col--reverse{
  grid-template-columns: .95fr 1.05fr;
}

.text{ color: var(--muted); line-height: 1.75; }

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.stat{
  padding: 14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.stat strong{ display:block; font-size: 18px; }
.stat span{ display:block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.mini-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 12px; }

.portrait__frame{
  border-radius: 32px;
  border: 1px solid rgba(214,177,94,.22);
  padding: 14px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.portrait__placeholder{
  border-radius: 24px;
  height: 360px;
  display:grid;
  place-items:center;
  border: 1px dashed rgba(214,177,94,.35);
  background: radial-gradient(600px 240px at 50% 10%, rgba(214,177,94,.18), rgba(0,0,0,.20));
  color: rgba(255,255,255,.75);
  letter-spacing: .5px;
  font-weight: 900;
}
.caption{ color: var(--muted2); font-size: 12px; line-height: 1.6; }

/* Features */
.feature{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 20px;
}
.feature__icon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(214,177,94,.12);
  border: 1px solid rgba(214,177,94,.22);
  margin-bottom: 10px;
  font-weight: 900;
}

/* Quotes */
.quote{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 20px;
}
.quote p{ margin:0 0 12px; color: rgba(255,255,255,.85); line-height:1.7; }
.quote strong{ color: var(--muted); font-size: 13px; }

/* FAQ */
.faq{
  display:grid;
  gap: 12px;
  max-width: 900px;
}
details{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 14px 16px;
}
summary{
  cursor:pointer;
  font-weight: 900;
}
details p{ color: var(--muted); margin: 10px 0 0; line-height: 1.7; }

/* CTA */
.cta{
  padding: 56px 0;
  border-top: 1px solid rgba(214,177,94,.16);
  border-bottom: 1px solid rgba(214,177,94,.16);
  background: radial-gradient(900px 320px at 40% 10%, rgba(214,177,94,.18), transparent 60%);
}
.cta__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 20px;
  flex-wrap:wrap;
}
.cta h2{ margin:0 0 6px; font-size: 28px; }
.cta p{ margin:0; color: var(--muted); line-height: 1.7; max-width: 58ch; }
.cta__actions{ display:flex; gap: 12px; flex-wrap:wrap; }

/* Contact */
.contact__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.contact__item{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}
.contact__item strong{ display:block; }
.contact__item span{ display:block; color: var(--muted); margin-top: 3px; }

/* Footer */
.footer{
  padding: 55px 0 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.30);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer h4{ margin:0 0 10px; }
.footer p{ margin: 10px 0 0; color: var(--muted); line-height: 1.7; }
.footer__list{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap: 8px;
  color: var(--muted);
}
.footer__list a:hover{ color: var(--text); }

.footer__bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footer__muted{ opacity:.9; }

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--gold), var(--gold2));
  color: #15110b;
  display:grid;
  place-items:center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  z-index: 99;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .two-col, .two-col--reverse{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .hero__trust{ grid-template-columns: 1fr; }

  .nav__toggle{ display:block; }
  .nav{
    position: fixed;
    right: 16px;
    top: 90px;
    display:none;
    flex-direction:column;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(10,10,14,.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    width: min(300px, 88vw);
  }
  body.nav-open .nav{ display:flex; }
  .nav a{ width: 100%; padding: 10px 12px; border-radius: 14px; }
  .nav a:hover{ background: rgba(255,255,255,.03); }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto; transition:none !important; }
}

.lr-muted {
  font-size: 12.5px;
  color: #555;
}

.lr-brand {
  color: #b28a2e;
  font-weight: 900;
}

.lr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 10px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;

  background: linear-gradient(180deg, #ffffff, #f9f6ef);
  border: 1px solid rgba(214, 179, 111, 0.5);
  color: #6b4e11;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lr-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe7b0, #b28a2e);
  box-shadow: 0 0 0 3px rgba(178, 138, 46, 0.15);
}


.lr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 12px;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;

  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}

.lr-btn:hover {
  transform: translateY(-1px);
}

.lr-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #b28a2e, #7a5b18);
  box-shadow: 0 14px 35px rgba(178, 138, 46, 0.28);
}

.lr-btn--primary:hover {
  box-shadow: 0 18px 40px rgba(178, 138, 46, 0.35);
}

.lr-btn--ghost {
  color: #111;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.15);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.lr-btn--ghost:hover {
  border-color: rgba(178, 138, 46, 0.5);
}


  .lr-muted {
    font-size: 12px;
  }
}
	

/* ===== LexRoyal Demo Header (upgrade texto SEO/conversão) ===== */

/* Melhor hierarquia do texto */
.lr-muted{
  line-height: 1.5;
  max-width: 78ch;
}

/* Destaque das palavras importantes */
.lr-muted b{
  color: #111;
  font-weight: 900;
  padding: 1px 6px;
}
.contact-map{
  padding: 80px 0;
  background: #fff;
}

.contact-map__container{
  width: min(1150px, 92%);
  margin: 0 auto;
}

.contact-map__head{
  text-align: center;
  margin-bottom: 30px;
}

.contact-map__head h2{
  font-size: clamp(26px, 3vw, 38px);
  margin: 0 0 8px;
  color: #0c1b2a; /* azul marinho */
  letter-spacing: -0.02em;
}

.contact-map__head p{
  margin: 0 auto;
  max-width: 720px;
  color: #4b5563;
  line-height: 1.6;
}

.contact-map__grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 26px;
}

.contact-map__info{
  border: 1px solid rgba(12,27,42,.10);
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(212,175,55,.08), transparent 60%);
  box-shadow: 0 18px 35px rgba(12,27,42,.06);
}

.contact-map__info h3{
  margin: 0 0 14px;
  color: #0c1b2a;
  font-size: 20px;
}

.contact-map__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-map__list li{
  color: #334155;
  line-height: 1.55;
  font-size: 15px;
}

.contact-map__list strong{
  color: #0c1b2a;
}

.contact-map__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-map__note{
  margin-top: 14px;
  color: #6b7280;
  font-size: 13px;
}

.contact-map__map{
  border: 1px solid rgba(12,27,42,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(12,27,42,.06);
  background: #fff;
  min-height: 340px;
}

.contact-map__map iframe{
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* Responsivo */
@media (max-width: 900px){
  .contact-map__grid{
    grid-template-columns: 1fr;
  }

  .contact-map{
    padding: 60px 0;
  }

  .contact-map__map iframe{
    min-height: 300px;
  }
}

.lr-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4e29f, #d4af37);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}

.lr-brand{
  background: linear-gradient(90deg, #0c1b2a, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.lr-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 13px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.lr-btn--primary{
  color: #0c1b2a;
  background: linear-gradient(180deg, #f4e29f, #d4af37);
  box-shadow:
    0 18px 45px rgba(212,175,55,.22),
    inset 0 0 0 1px rgba(12,27,42,.15);
}

.lr-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 22px 55px rgba(212,175,55,.26),
    inset 0 0 0 1px rgba(12,27,42,.20);
}

.lr-btn--ghost{
  color: #0c1b2a;
  background: rgba(255,255,255,.65);
  border-color: rgba(12,27,42,.18);
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
  backdrop-filter: blur(10px);
}

.lr-btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.90);
}

.lr-brand{
  background: linear-gradient(90deg, #0c1b2a, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.lr-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 12px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  text-decoration: none;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;

  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.lr-btn--primary{
  color: #0c1b2a;
  background: linear-gradient(180deg, #f4e29f, #d4af37);
  box-shadow: 0 14px 30px rgba(212,175,55,.18), inset 0 0 0 1px rgba(12,27,42,.12);
}

.lr-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(212,175,55,.23), inset 0 0 0 1px rgba(12,27,42,.18);
}

.lr-btn--ghost{
  color: #0c1b2a;
  background: rgba(255,255,255,.75);
  border-color: rgba(12,27,42,.16);
  box-shadow: 0 12px 25px rgba(0,0,0,.05);
  backdrop-filter: blur(10px);
}

.lr-btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
}

/* ================================
   LEXROYAL DEMO TOP — PADRÃO (V1)
   - compacto
   - gruda no topo (sticky)
   - tamanho igual em todos os temas
=================================== */
