/* =====================================================
   BLOCO 1 — BASE + MENU RESPONSIVO + HERO JURÍDICO
===================================================== */

:root{
  --black:#050505;
  --soft:#08080d;
  --gold:#caa85f;
  --gold2:#f5d27a;
  --purple:#7c3aed;
  --purple2:#9333ea;
  --text:#ffffff;
  --muted:rgba(255,255,255,.68);
  --low:rgba(255,255,255,.48);
  --line:rgba(255,255,255,.10);
  --max:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  background:var(--black);
  color:var(--text);
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--max),calc(100% - 44px));
  margin:0 auto;
}

.law-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:36px;
  padding:0 16px;
  border:1px solid rgba(202,168,95,.28);
  border-radius:999px;
  background:rgba(202,168,95,.10);
  color:var(--gold2);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  opacity:.16;
  mask-image:radial-gradient(circle at 50% 36%,black,transparent 78%);
}

/* HEADER */

.law-header{
  position:fixed;
  top:16px;
  left:0;
  width:100%;
  z-index:999;
}

.law-nav{
  position:relative;
  width:min(var(--max),calc(100% - 32px));
  min-height:76px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(22px);
  box-shadow:0 22px 80px rgba(0,0,0,.46);
}

.law-brand{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  gap:14px;
}

.law-brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  filter:
    drop-shadow(0 0 22px rgba(202,168,95,.42))
    drop-shadow(0 0 26px rgba(124,58,237,.24));
}

.law-brand-text{
  display:grid;
  gap:3px;
  line-height:1;
}

.law-brand-text strong{
  font-size:1rem;
  letter-spacing:-.02em;
}

.law-brand-text span{
  color:var(--gold2);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.law-nav-links{
  display:flex;
  align-items:center;
  gap:4px;
}

.law-nav-links a{
  padding:12px 14px;
  border-radius:13px;
  color:rgba(255,255,255,.72);
  font-size:.86rem;
  font-weight:800;
  transition:.28s ease;
}

.law-nav-links a:hover{
  color:#fff;
  background:rgba(202,168,95,.10);
}

.law-nav-cta{
  min-height:48px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-size:.86rem;
  font-weight:900;
  box-shadow:0 20px 54px rgba(202,168,95,.24);
  transition:.28s ease;
  white-space:nowrap;
}

.law-nav-cta:hover{
  transform:translateY(-2px);
}

/* MENU HAMBÚRGUER */

.menu-toggle{
  display:none;
  width:50px;
  height:50px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:15px;
  background:rgba(255,255,255,.045);
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  position:relative;
  z-index:6;
}

.menu-toggle span{
  width:25px;
  height:3px;
  border-radius:999px;
  background:#fff;
  transition:.3s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

/* HERO */

.law-hero-section{
  position:relative;
  min-height:100vh;
  padding:155px 0 90px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 12%,rgba(202,168,95,.16),transparent 30rem),
    radial-gradient(circle at 84% 18%,rgba(124,58,237,.18),transparent 32rem),
    radial-gradient(circle at 70% 82%,rgba(202,168,95,.08),transparent 28rem),
    linear-gradient(180deg,#050505,#08080d 55%,#050505);
}

.law-hero-glow{
  position:absolute;
  width:760px;
  height:760px;
  right:-260px;
  top:30px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.26),rgba(124,58,237,.18),transparent 70%);
  filter:blur(40px);
  pointer-events:none;
}

.law-hero-container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .98fr;
  gap:62px;
  align-items:center;
}

.law-hero-content h1{
  margin:22px 0 24px;
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:.92;
  letter-spacing:-.08em;
}

.law-hero-content h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 8%,#f5d27a 46%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-hero-content p{
  max-width:650px;
  margin-bottom:34px;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.82;
}

.law-hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.law-btn-primary,
.law-btn-secondary{
  min-height:54px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-weight:900;
  transition:.28s ease;
}

.law-btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  box-shadow:0 22px 58px rgba(202,168,95,.24);
}

.law-btn-secondary{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(14px);
}

.law-btn-primary:hover,
.law-btn-secondary:hover{
  transform:translateY(-3px);
}

.law-proof-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.law-proof-card{
  padding:18px;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:13px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(16px);
}

.law-proof-card i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-proof-card strong{
  display:block;
  margin-bottom:7px;
}

.law-proof-card span{
  color:var(--low);
  font-size:.78rem;
  line-height:1.48;
}

/* HERO VISUAL */

.law-hero-visual{
  position:relative;
  min-height:680px;
}

.law-mockup{
  position:absolute;
  inset:30px 0 46px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.18);
  border-radius:38px;
  background:
    radial-gradient(circle at 30% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 88% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:
    0 42px 130px rgba(0,0,0,.52),
    0 0 90px rgba(202,168,95,.10);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-mockup::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
  z-index:3;
}

.law-mockup-top{
  height:62px;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.20);
}

.law-mockup-dots{
  display:flex;
  gap:8px;
}

.law-mockup-dots span{
  width:10px;
  height:10px;
  border-radius:999px;
}

.law-mockup-dots span:nth-child(1){background:#ff5f57;}
.law-mockup-dots span:nth-child(2){background:#febc2e;}
.law-mockup-dots span:nth-child(3){background:#28c840;}

.law-mockup-top small{
  color:rgba(255,255,255,.52);
  font-weight:900;
}

.law-mockup-banner{
  position:relative;
  min-height:300px;
  margin:24px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 35% 22%,rgba(202,168,95,.28),transparent 20rem),
    linear-gradient(135deg,#16110a,#08080d 72%);
}

.law-banner-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.88)),
    radial-gradient(circle at 80% 20%,rgba(124,58,237,.18),transparent 24rem);
}

.law-banner-content{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
}

.law-banner-content small{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(202,168,95,.14);
  border:1px solid rgba(202,168,95,.26);
  color:var(--gold2);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.law-banner-content strong{
  display:block;
  max-width:460px;
  font-size:2.25rem;
  line-height:1;
  letter-spacing:-.06em;
}

.law-mockup-cards{
  position:relative;
  z-index:2;
  padding:0 24px 24px;
  display:grid;
  gap:12px;
}

.law-mini-card{
  padding:16px;
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.085);
  border-radius:20px;
  background:rgba(0,0,0,.34);
  backdrop-filter:blur(16px);
}

.law-mini-card i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-mini-card strong{
  display:block;
  margin-bottom:5px;
}

.law-mini-card span{
  color:rgba(255,255,255,.54);
  font-size:.8rem;
}

.law-floating-card{
  position:absolute;
  z-index:5;
  max-width:270px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  animation:lawFloatCard 5.5s ease-in-out infinite;
}

.law-floating-card i{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-floating-card strong{
  display:block;
  margin-bottom:4px;
  font-size:.92rem;
}

.law-floating-card span{
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  line-height:1.4;
}

.law-float-left{
  left:-22px;
  top:145px;
}

.law-float-right{
  right:-18px;
  bottom:125px;
  animation-delay:-1.7s;
}

/* ANIMAÇÕES */

@keyframes lawPanelFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

@keyframes lawFloatCard{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}

/* RESPONSIVO */

@media(max-width:1080px){

  .law-nav{
    min-height:auto;
    padding:14px;
  }

  .law-nav-links{
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    width:100%;
    padding:18px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;
    background:rgba(5,5,5,.96);
    backdrop-filter:blur(22px);
    box-shadow:0 24px 80px rgba(0,0,0,.50);
    opacity:0;
    visibility:hidden;
    transform:translateY(-16px);
    transition:.3s ease;
  }

  .law-nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .law-nav-links a{
    width:100%;
    padding:15px;
  }

  .menu-toggle{
    display:flex;
  }

  .law-nav-cta{
    min-height:46px;
    padding:0 14px;
    font-size:.82rem;
  }

  .law-hero-container{
    grid-template-columns:1fr;
  }

  .law-hero-visual{
    min-height:640px;
  }
}

@media(max-width:760px){

  .law-nav-cta{
    display:none;
  }

}

@media(max-width:680px){

  .law-header{
    top:10px;
  }

  .law-nav{
    width:calc(100% - 20px);
  }

  .law-brand img{
    width:50px;
    height:50px;
  }

  .law-brand-text span{
    display:none;
  }

  .container{
    width:min(100% - 30px,var(--max));
  }

  .law-hero-section{
    padding:130px 0 70px;
  }

  .law-hero-content h1{
    font-size:clamp(2.75rem,14vw,4.25rem);
  }

  .law-hero-buttons{
    flex-direction:column;
  }

  .law-btn-primary,
  .law-btn-secondary{
    width:100%;
  }

  .law-proof-grid{
    grid-template-columns:1fr;
  }

  .law-hero-visual{
    min-height:610px;
  }

  .law-mockup{
    inset:18px 0;
    border-radius:30px;
  }

  .law-mockup::before{
    display:none;
  }

  .law-mockup-banner{
    min-height:245px;
    margin:18px;
  }

  .law-banner-content{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .law-banner-content strong{
    font-size:1.65rem;
  }

  .law-mini-card{
    grid-template-columns:42px 1fr;
  }

  .law-mini-card i{
    width:42px;
    height:42px;
  }

  .law-floating-card{
    display:none;
  }
}


/* =====================================================
   BLOCO 2 — ESTRUTURA IDEAL DO SITE JURÍDICO
===================================================== */

.law-structure-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 18%,rgba(202,168,95,.13),transparent 30rem),
    radial-gradient(circle at 84% 70%,rgba(124,58,237,.13),transparent 30rem),
    linear-gradient(180deg,#050505,#08080d 50%,#050505);
}

.law-structure-glow{
  position:absolute;
  width:700px;
  height:700px;
  left:-260px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.20),rgba(124,58,237,.14),transparent 70%);
  filter:blur(42px);
  pointer-events:none;
}

.law-structure-container{
  position:relative;
  z-index:2;
}

.law-structure-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-structure-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-structure-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-structure-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-structure-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}

/* CONTEÚDO */

.law-structure-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-structure-content > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-structure-content h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-structure-content p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-structure-list{
  display:grid;
  gap:14px;
}

.law-structure-card{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(255,255,255,.045);
  transition:.3s ease;
}

.law-structure-card:hover{
  transform:translateY(-5px);
  border-color:rgba(202,168,95,.30);
  box-shadow:0 24px 80px rgba(202,168,95,.09);
}

.law-structure-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 0 26px rgba(202,168,95,.22);
}

.law-structure-card strong{
  display:block;
  margin-bottom:7px;
}

.law-structure-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

/* VISUAL */

.law-structure-visual{
  position:relative;
  min-height:760px;
}

.law-website-mockup{
  position:relative;
  min-height:760px;
  padding:34px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:
    0 40px 120px rgba(0,0,0,.46),
    0 0 90px rgba(202,168,95,.10);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-website-mockup::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
}

.law-site-header{
  position:relative;
  z-index:2;
  padding:18px;
  margin-bottom:18px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(0,0,0,.34);
}

.law-site-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
}

.law-site-shield{
  width:42px;
  height:42px;
  border-radius:14px;
  background:
    radial-gradient(circle at 50% 20%,rgba(245,210,122,.7),transparent 46%),
    linear-gradient(135deg,var(--gold),#6f5220);
  box-shadow:0 0 26px rgba(202,168,95,.26);
}

.law-site-menu{
  display:flex;
  gap:10px;
}

.law-site-menu span{
  width:58px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}

.law-site-hero{
  position:relative;
  z-index:2;
  min-height:330px;
  margin-bottom:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  border-radius:28px;
  background:
    radial-gradient(circle at 35% 24%,rgba(202,168,95,.28),transparent 20rem),
    linear-gradient(135deg,#171109,#08080d 76%);
}

.law-site-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.88)),
    radial-gradient(circle at 85% 20%,rgba(124,58,237,.18),transparent 24rem);
}

.law-site-content{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
}

.law-site-content small{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(202,168,95,.14);
  border:1px solid rgba(202,168,95,.26);
  color:var(--gold2);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.law-site-content strong{
  display:block;
  max-width:520px;
  margin-bottom:18px;
  font-size:2.3rem;
  line-height:1;
  letter-spacing:-.06em;
}

.law-site-content button{
  min-height:46px;
  padding:0 16px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
  cursor:pointer;
}

.law-site-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:12px;
}

.law-site-box{
  min-height:120px;
  padding:18px;
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(0,0,0,.34);
  backdrop-filter:blur(16px);
}

.law-site-box.large{
  grid-row:span 2;
  min-height:252px;
  align-content:center;
}

.law-site-box i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-site-box strong{
  display:block;
  margin-bottom:7px;
}

.law-site-box span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
  line-height:1.55;
}

/* FLOATS */

.law-structure-float{
  position:absolute;
  z-index:5;
  max-width:270px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  animation:lawFloatCard 5.5s ease-in-out infinite;
}

.law-structure-float i{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-structure-float strong{
  display:block;
  margin-bottom:4px;
  font-size:.92rem;
}

.law-structure-float span{
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  line-height:1.4;
}

.float-law-left{
  left:-22px;
  top:145px;
}

.float-law-right{
  right:-18px;
  bottom:125px;
  animation-delay:-1.7s;
}

/* RESPONSIVO */

@media(max-width:1080px){
  .law-structure-layout{
    grid-template-columns:1fr;
  }

  .law-structure-visual,
  .law-website-mockup{
    min-height:auto;
  }
}

@media(max-width:680px){
  .law-structure-section{
    padding:90px 0;
  }

  .law-structure-header{
    text-align:left;
    margin-bottom:44px;
  }

  .law-structure-content,
  .law-website-mockup{
    padding:28px;
    border-radius:30px;
  }

  .law-website-mockup::before{
    display:none;
  }

  .law-structure-card,
  .law-site-box{
    grid-template-columns:1fr;
  }

  .law-site-header{
    align-items:flex-start;
  }

  .law-site-menu{
    display:none;
  }

  .law-site-hero{
    min-height:270px;
  }

  .law-site-content{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .law-site-content strong{
    font-size:1.65rem;
  }

  .law-site-grid{
    grid-template-columns:1fr;
  }

  .law-site-box.large{
    grid-row:auto;
    min-height:140px;
  }

  .law-structure-float{
    display:none;
  }
}



/* =====================================================
   BLOCO 3 — PSICOLOGIA VISUAL JURÍDICA
===================================================== */

.law-colors-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 84% 14%,rgba(202,168,95,.14),transparent 30rem),
    radial-gradient(circle at 16% 80%,rgba(124,58,237,.13),transparent 30rem),
    #050505;
}

.law-colors-glow{
  position:absolute;
  width:700px;
  height:700px;
  right:-260px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.13),transparent 70%);
  filter:blur(42px);
}

.law-colors-container{
  position:relative;
  z-index:2;
}

.law-colors-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-colors-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-colors-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-colors-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-colors-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:stretch;
}

.law-colors-list{
  display:grid;
  gap:14px;
}

.law-color-card{
  min-height:138px;
  padding:22px;
  display:grid;
  grid-template-columns:74px 1fr;
  gap:18px;
  align-items:center;
  border:1px solid rgba(255,255,255,.085);
  border-radius:26px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
  transition:.3s ease;
}

.law-color-card:hover{
  transform:translateX(8px);
  border-color:rgba(202,168,95,.30);
  box-shadow:0 24px 80px rgba(202,168,95,.09);
}

.law-color-preview{
  width:74px;
  height:74px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
}

.law-gold{
  background:linear-gradient(135deg,#caa85f,#f5d27a);
  box-shadow:0 0 34px rgba(202,168,95,.28);
}

.law-black{
  background:linear-gradient(135deg,#050505,#17110a);
  box-shadow:0 0 34px rgba(0,0,0,.45);
}

.law-white{
  background:linear-gradient(135deg,#fff,#d9d9d9);
  box-shadow:0 0 34px rgba(255,255,255,.18);
}

.law-wine{
  background:linear-gradient(135deg,#4c0519,#1e1b4b);
  box-shadow:0 0 34px rgba(76,5,25,.28);
}

.law-color-card strong{
  display:block;
  margin-bottom:8px;
  font-size:1.08rem;
}

.law-color-card span{
  color:rgba(255,255,255,.58);
  font-size:.9rem;
  line-height:1.62;
}

.law-colors-visual{
  position:relative;
  min-height:680px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 40% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 80% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
}

.law-colors-visual::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
}

.law-palette-mockup{
  position:relative;
  z-index:2;
  width:min(100%,430px);
  min-height:590px;
  padding:22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:38px;
  background:rgba(0,0,0,.56);
  backdrop-filter:blur(18px);
  box-shadow:0 34px 110px rgba(0,0,0,.45);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-palette-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.law-palette-top strong{
  display:block;
  margin-bottom:6px;
}

.law-palette-top span{
  color:rgba(255,255,255,.5);
  font-size:.78rem;
}

.law-palette-top i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-palette-banner{
  position:relative;
  min-height:230px;
  overflow:hidden;
  border-radius:28px;
  background:
    radial-gradient(circle at 40% 26%,rgba(245,210,122,.55),transparent 22%),
    radial-gradient(circle at 80% 15%,rgba(124,58,237,.32),transparent 36%),
    linear-gradient(135deg,#17110a,#08080d);
  margin-bottom:16px;
}

.law-palette-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 10%,rgba(0,0,0,.84));
}

.law-palette-content{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
}

.law-palette-content small{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(202,168,95,.16);
  border:1px solid rgba(202,168,95,.25);
  color:var(--gold2);
  font-size:.7rem;
  font-weight:900;
}

.law-palette-content strong{
  display:block;
  margin-bottom:7px;
  font-size:1.45rem;
  letter-spacing:-.04em;
}

.law-palette-content span{
  color:rgba(255,255,255,.62);
  font-size:.82rem;
  line-height:1.5;
}

.law-palette-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:16px;
}

.law-palette-item{
  min-height:86px;
  padding:12px;
  display:grid;
  place-items:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}

.law-palette-item span{
  width:28px;
  height:28px;
  border-radius:50%;
}

.palette-gold{
  background:#caa85f;
  box-shadow:0 0 24px rgba(202,168,95,.42);
}

.palette-black{
  background:#050505;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 24px rgba(0,0,0,.6);
}

.palette-clean{
  background:#fff;
  box-shadow:0 0 24px rgba(255,255,255,.32);
}

.law-palette-item strong{
  font-size:.78rem;
}

.law-palette-note{
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(255,255,255,.045);
}

.law-palette-note strong{
  display:block;
  margin-bottom:6px;
}

.law-palette-note span{
  color:rgba(255,255,255,.5);
  font-size:.76rem;
}

.law-palette-note button{
  height:42px;
  padding:0 14px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
}

/* =====================================================
   BLOCO 4 — CASES E TRANSFORMAÇÕES
===================================================== */

.law-cases-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 15%,rgba(202,168,95,.13),transparent 30rem),
    radial-gradient(circle at 85% 72%,rgba(124,58,237,.14),transparent 30rem),
    linear-gradient(180deg,#050505,#08080d 50%,#050505);
}

.law-cases-glow{
  position:absolute;
  width:700px;
  height:700px;
  left:-260px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.14),transparent 70%);
  filter:blur(42px);
}

.law-cases-container{
  position:relative;
  z-index:2;
}

.law-cases-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-cases-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-cases-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-cases-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-case-main{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
  margin-bottom:22px;
}

.law-case-visual{
  position:relative;
  min-height:760px;
}

.law-case-browser{
  position:relative;
  min-height:760px;
  padding:34px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-case-browser::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
}

.law-browser-top{
  position:relative;
  z-index:2;
  height:58px;
  padding:0 18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:rgba(0,0,0,.34);
}

.law-browser-dots{
  display:flex;
  gap:8px;
}

.law-browser-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
}

.law-browser-dots span:nth-child(1){background:#ff5f57;}
.law-browser-dots span:nth-child(2){background:#febc2e;}
.law-browser-dots span:nth-child(3){background:#28c840;}

.law-browser-top small{
  color:rgba(255,255,255,.52);
  font-weight:900;
}

.law-case-banner{
  position:relative;
  z-index:2;
  min-height:330px;
  margin-bottom:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  border-radius:28px;
  background:
    radial-gradient(circle at 35% 24%,rgba(202,168,95,.30),transparent 20rem),
    linear-gradient(135deg,#171109,#08080d 76%);
}

.law-case-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.88)),
    radial-gradient(circle at 85% 20%,rgba(124,58,237,.18),transparent 24rem);
}

.law-case-content{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
}

.law-case-content small{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(202,168,95,.14);
  border:1px solid rgba(202,168,95,.26);
  color:var(--gold2);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.law-case-content strong{
  display:block;
  max-width:520px;
  margin-bottom:18px;
  font-size:2.3rem;
  line-height:1;
  letter-spacing:-.06em;
}

.law-case-content button{
  min-height:46px;
  padding:0 16px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
  cursor:pointer;
}

.law-case-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:12px;
}

.law-case-box{
  min-height:120px;
  padding:18px;
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(0,0,0,.34);
  backdrop-filter:blur(16px);
}

.law-case-box.large{
  grid-row:span 2;
  min-height:252px;
  align-content:center;
}

.law-case-box i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-case-box strong{
  display:block;
  margin-bottom:7px;
}

.law-case-box span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
  line-height:1.55;
}

.law-case-float{
  position:absolute;
  z-index:5;
  max-width:270px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  animation:lawFloatCard 5.5s ease-in-out infinite;
}

.law-case-float i{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.case-float-left{
  left:-22px;
  top:145px;
}

.case-float-right{
  right:-18px;
  bottom:125px;
  animation-delay:-1.7s;
}

.law-case-text{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-case-text > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-case-text h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-case-text p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.law-before-card,
.law-after-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.085);
}

.law-before-card{
  border-color:rgba(239,68,68,.20);
}

.law-after-card{
  border-color:rgba(34,197,94,.22);
}

.law-before-top,
.law-after-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}

.law-before-top i,
.law-after-top i{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:13px;
}

.law-before-top i{
  background:rgba(239,68,68,.14);
  color:#fca5a5;
}

.law-after-top i{
  background:rgba(34,197,94,.14);
  color:#bbf7d0;
}

.law-before-card ul,
.law-after-card ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.law-before-card li,
.law-after-card li{
  color:rgba(255,255,255,.58);
  font-size:.86rem;
  line-height:1.45;
}

.law-cases-bottom{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.law-result-card{
  padding:22px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:24px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-result-card i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.law-result-card strong{
  display:block;
  margin-bottom:7px;
}

.law-result-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

/* RESPONSIVO BLOCOS 3 E 4 */

@media(max-width:1080px){
  .law-colors-layout,
  .law-case-main{
    grid-template-columns:1fr;
  }

  .law-case-visual,
  .law-case-browser{
    min-height:auto;
  }

  .law-cases-bottom{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){
  .law-colors-section,
  .law-cases-section{
    padding:90px 0;
  }

  .law-colors-header,
  .law-cases-header{
    text-align:left;
    margin-bottom:44px;
  }

  .law-color-card,
  .law-result-card{
    grid-template-columns:1fr;
  }

  .law-colors-visual,
  .law-case-browser,
  .law-case-text{
    padding:28px;
    border-radius:30px;
  }

  .law-colors-visual::before,
  .law-case-browser::before{
    display:none;
  }

  .law-palette-mockup{
    width:100%;
    min-height:auto;
  }

  .law-palette-row,
  .law-before-after{
    grid-template-columns:1fr;
  }

  .law-palette-note{
    flex-direction:column;
    align-items:flex-start;
  }

  .law-palette-note button{
    width:100%;
  }

  .law-case-banner{
    min-height:270px;
  }

  .law-case-content{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .law-case-content strong{
    font-size:1.65rem;
  }

  .law-case-grid{
    grid-template-columns:1fr;
  }

  .law-case-box,
  .law-case-box.large{
    grid-template-columns:1fr;
    grid-row:auto;
    min-height:130px;
  }

  .law-case-float{
    display:none;
  }
}

/* =====================================================
   BLOCO 5 — JORNADA DO CLIENTE JURÍDICO
===================================================== */

.law-journey-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 18%,rgba(202,168,95,.13),transparent 30rem),
    radial-gradient(circle at 85% 76%,rgba(124,58,237,.14),transparent 30rem),
    linear-gradient(180deg,#050505,#08080d 50%,#050505);
}

.law-journey-glow{
  position:absolute;
  width:720px;
  height:720px;
  left:-280px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.14),transparent 70%);
  filter:blur(42px);
}

.law-journey-container{
  position:relative;
  z-index:2;
}

.law-journey-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-journey-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-journey-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-journey-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-journey-flow{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:22px;
}

.law-journey-step{
  position:relative;
  min-height:270px;
  padding:26px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:30px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 16rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
  box-shadow:0 28px 90px rgba(0,0,0,.34);
  transition:.3s ease;
}

.law-journey-step:hover{
  transform:translateY(-8px);
  border-color:rgba(202,168,95,.3);
  box-shadow:0 34px 100px rgba(202,168,95,.09);
}

.law-journey-number{
  width:52px;
  height:52px;
  margin-bottom:18px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
}

.law-journey-icon{
  width:58px;
  height:58px;
  margin-bottom:18px;
  display:grid;
  place-items:center;
  border-radius:19px;
  border:1px solid rgba(202,168,95,.28);
  background:rgba(202,168,95,.10);
  color:var(--gold2);
  font-size:1.25rem;
}

.law-journey-content strong{
  display:block;
  margin-bottom:10px;
  font-size:1.05rem;
}

.law-journey-content span{
  color:rgba(255,255,255,.58);
  font-size:.9rem;
  line-height:1.65;
}

.law-journey-line{
  display:none;
}

.law-journey-bottom{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}

.law-journey-text{
  padding:38px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-journey-text > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-journey-text h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-journey-text p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-journey-points{
  display:grid;
  gap:14px;
}

.law-journey-card{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(255,255,255,.045);
}

.law-journey-card i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-journey-card strong{
  display:block;
  margin-bottom:7px;
}

.law-journey-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

.law-journey-visual{
  position:relative;
}

.law-decision-card{
  min-height:100%;
  padding:38px;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
}

.law-decision-top{
  margin-bottom:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.law-decision-top strong{
  display:block;
  margin-bottom:7px;
  font-size:1.15rem;
}

.law-decision-top span{
  color:rgba(255,255,255,.55);
  font-size:.88rem;
}

.law-decision-top i{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:19px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-decision-list{
  display:grid;
  gap:20px;
  margin-bottom:28px;
}

.law-decision-item span{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.72);
  font-size:.9rem;
  font-weight:800;
}

.decision-bar{
  height:12px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

.decision-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  box-shadow:0 0 26px rgba(202,168,95,.28);
}

.fill-1{width:92%;}
.fill-2{width:86%;}
.fill-3{width:94%;}
.fill-4{width:89%;}

.law-decision-note{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(34,197,94,.20);
  border-radius:22px;
  background:rgba(34,197,94,.08);
}

.law-decision-note i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:rgba(34,197,94,.14);
  color:#bbf7d0;
}

.law-decision-note strong{
  display:block;
  margin-bottom:7px;
}

.law-decision-note span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

/* =====================================================
   BLOCO 6 — MARKETING JURÍDICO
===================================================== */

.law-marketing-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 14%,rgba(202,168,95,.14),transparent 30rem),
    radial-gradient(circle at 14% 82%,rgba(124,58,237,.15),transparent 30rem),
    #050505;
}

.law-marketing-glow{
  position:absolute;
  width:720px;
  height:720px;
  right:-270px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.15),transparent 70%);
  filter:blur(42px);
}

.law-marketing-container{
  position:relative;
  z-index:2;
}

.law-marketing-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-marketing-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-marketing-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-marketing-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-marketing-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.law-marketing-visual{
  position:relative;
  min-height:760px;
}

.law-marketing-phone{
  position:relative;
  min-height:760px;
  padding:34px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
}

.law-marketing-phone-top{
  padding:18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(0,0,0,.34);
}

.law-marketing-phone-top strong{
  display:block;
  margin-bottom:7px;
}

.law-marketing-phone-top span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
}

.law-marketing-phone-top i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-content-preview{
  position:relative;
  min-height:360px;
  margin-bottom:18px;
  overflow:hidden;
  border-radius:28px;
  background:
    radial-gradient(circle at 40% 26%,rgba(202,168,95,.40),transparent 22%),
    radial-gradient(circle at 82% 12%,rgba(124,58,237,.25),transparent 36%),
    linear-gradient(135deg,#17110a,#08080d);
}

.law-content-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.88));
}

.law-content-icon{
  position:absolute;
  left:50%;
  top:45%;
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#08080d;
  transform:translate(-50%,-50%);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.law-content-caption{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
}

.law-content-caption small{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(202,168,95,.16);
  border:1px solid rgba(202,168,95,.26);
  color:var(--gold2);
  font-size:.7rem;
  font-weight:900;
}

.law-content-caption strong{
  display:block;
  margin-bottom:8px;
  font-size:1.55rem;
  line-height:1.1;
}

.law-content-caption span{
  color:rgba(255,255,255,.62);
  font-size:.86rem;
  line-height:1.5;
}

.law-marketing-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:18px;
}

.law-marketing-metrics div{
  min-height:86px;
  padding:14px;
  display:grid;
  place-items:center;
  text-align:center;
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}

.law-marketing-metrics strong{
  display:block;
  color:var(--gold2);
  font-size:1.2rem;
}

.law-marketing-metrics span{
  color:rgba(255,255,255,.52);
  font-size:.78rem;
}

.law-marketing-result{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(34,197,94,.22);
  border-radius:22px;
  background:rgba(34,197,94,.08);
}

.law-marketing-result strong{
  display:block;
  margin-bottom:7px;
}

.law-marketing-result span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
}

.law-marketing-result button{
  height:42px;
  padding:0 16px;
  border:0;
  border-radius:13px;
  background:#fff;
  color:#08080d;
  font-weight:900;
}

.law-marketing-float{
  position:absolute;
  z-index:5;
  max-width:270px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  animation:lawFloatCard 5.5s ease-in-out infinite;
}

.law-marketing-float i{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-marketing-float strong{
  display:block;
  margin-bottom:4px;
}

.law-marketing-float span{
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  line-height:1.4;
}

.law-marketing-float-one{
  left:-22px;
  top:145px;
}

.law-marketing-float-two{
  right:-20px;
  bottom:170px;
  animation-delay:-1.7s;
}

.law-marketing-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-marketing-content > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-marketing-content h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-marketing-content p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-marketing-list{
  display:grid;
  gap:14px;
  margin-bottom:30px;
}

.law-marketing-card{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(255,255,255,.045);
  transition:.3s ease;
}

.law-marketing-card:hover{
  transform:translateY(-5px);
  border-color:rgba(202,168,95,.30);
}

.law-marketing-card-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-marketing-card strong{
  display:block;
  margin-bottom:7px;
}

.law-marketing-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

.law-marketing-link{
  width:max-content;
  min-height:52px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
  box-shadow:0 22px 58px rgba(202,168,95,.24);
  transition:.28s ease;
}

.law-marketing-link:hover{
  transform:translateY(-3px);
}

/* RESPONSIVO BLOCOS 5 E 6 */

@media(max-width:1080px){
  .law-journey-flow{
    grid-template-columns:repeat(2,1fr);
  }

  .law-journey-bottom,
  .law-marketing-layout{
    grid-template-columns:1fr;
  }

  .law-marketing-visual,
  .law-marketing-phone{
    min-height:auto;
  }
}

@media(max-width:680px){
  .law-journey-section,
  .law-marketing-section{
    padding:90px 0;
  }

  .law-journey-header,
  .law-marketing-header{
    text-align:left;
    margin-bottom:44px;
  }

  .law-journey-flow{
    grid-template-columns:1fr;
  }

  .law-journey-step,
  .law-journey-text,
  .law-decision-card,
  .law-marketing-phone,
  .law-marketing-content{
    padding:28px;
    border-radius:30px;
  }

  .law-journey-card,
  .law-decision-note,
  .law-marketing-card{
    grid-template-columns:1fr;
  }

  .law-marketing-metrics{
    grid-template-columns:1fr;
  }

  .law-content-preview{
    min-height:300px;
  }

  .law-marketing-result{
    flex-direction:column;
    align-items:flex-start;
  }

  .law-marketing-result button,
  .law-marketing-link{
    width:100%;
    justify-content:center;
  }

  .law-marketing-float{
    display:none;
  }
}


/* =====================================================
   BLOCO 7 — AGENDAMENTO E TRIAGEM ESTRATÉGICA
===================================================== */

.law-schedule-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 18%,rgba(202,168,95,.13),transparent 30rem),
    radial-gradient(circle at 86% 74%,rgba(124,58,237,.14),transparent 30rem),
    linear-gradient(180deg,#050505,#08080d 50%,#050505);
}

.law-schedule-glow{
  position:absolute;
  width:720px;
  height:720px;
  left:-280px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.14),transparent 70%);
  filter:blur(42px);
}

.law-schedule-container{
  position:relative;
  z-index:2;
}

.law-schedule-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-schedule-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-schedule-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-schedule-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-schedule-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}

.law-schedule-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-schedule-content > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-schedule-content h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-schedule-content p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-schedule-list{
  display:grid;
  gap:14px;
}

.law-schedule-card{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(255,255,255,.045);
  transition:.3s ease;
}

.law-schedule-card:hover{
  transform:translateY(-5px);
  border-color:rgba(202,168,95,.3);
}

.law-schedule-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  box-shadow:0 0 26px rgba(202,168,95,.22);
}

.law-schedule-card strong{
  display:block;
  margin-bottom:7px;
}

.law-schedule-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

.law-schedule-visual{
  position:relative;
  min-height:760px;
}

.law-booking-mockup{
  position:relative;
  min-height:760px;
  padding:34px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-booking-mockup::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
}

.law-booking-top{
  position:relative;
  z-index:2;
  padding:18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(0,0,0,.34);
}

.law-booking-top strong{
  display:block;
  margin-bottom:7px;
}

.law-booking-top span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
}

.law-booking-top i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-form-preview{
  position:relative;
  z-index:2;
  display:grid;
  gap:16px;
  margin-bottom:18px;
}

.law-form-preview label{
  display:grid;
  gap:10px;
  color:rgba(255,255,255,.72);
  font-size:.88rem;
  font-weight:800;
}

.law-input-line,
.law-select-line,
.law-textarea-line{
  width:100%;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(0,0,0,.35);
}

.law-input-line{
  height:52px;
}

.law-select-line{
  min-height:52px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.law-select-line span{
  color:rgba(255,255,255,.58);
  font-size:.84rem;
}

.law-select-line i{
  color:var(--gold2);
}

.law-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.law-options span{
  min-height:50px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(0,0,0,.35);
  color:rgba(255,255,255,.6);
  font-size:.84rem;
}

.law-options span.active{
  color:#08080d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  font-weight:900;
}

.law-textarea-line{
  height:118px;
}

.law-booking-confirm{
  position:relative;
  z-index:2;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(34,197,94,.22);
  border-radius:22px;
  background:rgba(34,197,94,.08);
}

.law-booking-confirm strong{
  display:block;
  margin-bottom:7px;
}

.law-booking-confirm span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
}

.law-booking-confirm button{
  height:44px;
  padding:0 18px;
  border:0;
  border-radius:14px;
  background:#fff;
  color:#08080d;
  font-weight:900;
  cursor:pointer;
}

.law-schedule-float{
  position:absolute;
  z-index:5;
  max-width:270px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  animation:lawFloatCard 5.5s ease-in-out infinite;
}

.law-schedule-float i{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-schedule-float strong{
  display:block;
  margin-bottom:4px;
}

.law-schedule-float span{
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  line-height:1.4;
}

.schedule-float-one{
  left:-22px;
  top:145px;
}

.schedule-float-two{
  right:-20px;
  bottom:170px;
  animation-delay:-1.7s;
}

/* =====================================================
   BLOCO 8 — PROJETOS JURÍDICOS
===================================================== */

.law-project-showcase-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 14%,rgba(202,168,95,.14),transparent 30rem),
    radial-gradient(circle at 15% 82%,rgba(124,58,237,.16),transparent 30rem),
    #050505;
}

.law-project-showcase-glow{
  position:absolute;
  width:720px;
  height:720px;
  right:-270px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.15),transparent 70%);
  filter:blur(42px);
}

.law-project-showcase-container{
  position:relative;
  z-index:2;
}

.law-project-showcase-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-project-showcase-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-project-showcase-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-project-showcase-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-showcase-list{
  display:grid;
  gap:22px;
}

.law-showcase-card{
  position:relative;
  min-height:360px;
  padding:28px;
  display:grid;
  grid-template-columns:330px 1fr auto;
  gap:28px;
  align-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  border-radius:34px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 20rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
  transition:.35s ease;
}

.law-showcase-card:hover{
  transform:translateY(-8px);
  border-color:rgba(202,168,95,.32);
  box-shadow:0 34px 110px rgba(202,168,95,.08);
}

.law-showcase-image{
  height:260px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  border-radius:26px;
  background:#08080d;
}

.law-showcase-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(1.08);
  transition:.5s ease;
}

.law-showcase-card:hover .law-showcase-image img{
  transform:scale(1.06);
}

.law-showcase-content small{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(202,168,95,.12);
  border:1px solid rgba(202,168,95,.24);
  color:var(--gold2);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.law-showcase-content h3{
  margin-bottom:14px;
  font-size:clamp(1.8rem,3vw,3.1rem);
  line-height:1;
  letter-spacing:-.06em;
}

.law-showcase-content p{
  max-width:620px;
  margin-bottom:22px;
  color:var(--muted);
  line-height:1.75;
}

.law-showcase-tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.law-showcase-tags span{
  min-height:34px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.72);
  font-size:.78rem;
  font-weight:800;
}

.law-showcase-tags i{
  color:var(--gold2);
}

.law-showcase-button{
  width:128px;
  height:128px;
  padding:18px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:30px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  font-weight:900;
  line-height:1.2;
  box-shadow:0 24px 70px rgba(202,168,95,.18);
  transition:.3s ease;
}

.law-showcase-button i{
  display:block;
  margin-top:8px;
}

.law-showcase-button:hover{
  transform:translateX(5px) scale(1.03);
}

/* RESPONSIVO BLOCOS 7 E 8 */

@media(max-width:1080px){
  .law-schedule-layout{
    grid-template-columns:1fr;
  }

  .law-schedule-visual,
  .law-booking-mockup{
    min-height:auto;
  }

  .law-showcase-card{
    grid-template-columns:280px 1fr;
  }

  .law-showcase-button{
    grid-column:1 / -1;
    width:100%;
    height:auto;
    min-height:58px;
    display:flex;
    justify-content:center;
    gap:10px;
    border-radius:16px;
  }
}

@media(max-width:680px){
  .law-schedule-section,
  .law-project-showcase-section{
    padding:90px 0;
  }

  .law-schedule-header,
  .law-project-showcase-header{
    text-align:left;
    margin-bottom:44px;
  }

  .law-schedule-content,
  .law-booking-mockup,
  .law-showcase-card{
    padding:28px;
    border-radius:30px;
  }

  .law-booking-mockup::before{
    display:none;
  }

  .law-schedule-card{
    grid-template-columns:1fr;
  }

  .law-booking-confirm{
    flex-direction:column;
    align-items:flex-start;
  }

  .law-booking-confirm button{
    width:100%;
  }

  .law-options{
    grid-template-columns:1fr;
  }

  .law-schedule-float{
    display:none;
  }

  .law-showcase-card{
    grid-template-columns:1fr;
  }

  .law-showcase-image{
    height:220px;
  }

  .law-showcase-button{
    width:100%;
  }
}



/* =====================================================
   BLOCO 9 — SISTEMA JURÍDICO E AUTOMAÇÕES
===================================================== */

.law-system-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 18%,rgba(202,168,95,.13),transparent 30rem),
    radial-gradient(circle at 86% 76%,rgba(124,58,237,.15),transparent 30rem),
    linear-gradient(180deg,#050505,#08080d 50%,#050505);
}

.law-system-glow{
  position:absolute;
  width:720px;
  height:720px;
  left:-280px;
  top:80px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.18),rgba(124,58,237,.14),transparent 70%);
  filter:blur(42px);
}

.law-system-container{
  position:relative;
  z-index:2;
}

.law-system-header{
  max-width:920px;
  margin:0 auto 64px;
  text-align:center;
}

.law-system-header h2{
  margin:22px 0;
  font-size:clamp(2.45rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.law-system-header h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 10%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-system-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

.law-system-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}

.law-system-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.12),transparent 18rem),
    rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.law-system-content > span{
  display:block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-system-content h3{
  margin-bottom:18px;
  font-size:clamp(2.1rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.065em;
}

.law-system-content p{
  margin-bottom:30px;
  color:var(--muted);
  line-height:1.85;
}

.law-system-list{
  display:grid;
  gap:14px;
}

.law-system-card{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.085);
  border-radius:22px;
  background:rgba(255,255,255,.045);
  transition:.3s ease;
}

.law-system-card:hover{
  transform:translateY(-5px);
  border-color:rgba(202,168,95,.3);
}

.law-system-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  box-shadow:0 0 26px rgba(202,168,95,.22);
}

.law-system-card strong{
  display:block;
  margin-bottom:7px;
}

.law-system-card span{
  color:rgba(255,255,255,.56);
  font-size:.88rem;
  line-height:1.6;
}

.law-system-visual{
  position:relative;
  min-height:760px;
}

.law-dashboard-mockup{
  position:relative;
  min-height:760px;
  padding:34px;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.22);
  border-radius:36px;
  background:
    radial-gradient(circle at 35% 0%,rgba(202,168,95,.18),transparent 24rem),
    radial-gradient(circle at 85% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:0 40px 120px rgba(0,0,0,.46);
  animation:lawPanelFloat 6s ease-in-out infinite;
}

.law-dashboard-mockup::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  pointer-events:none;
}

.law-dashboard-top{
  position:relative;
  z-index:2;
  padding:18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(0,0,0,.34);
}

.law-dashboard-top strong{
  display:block;
  margin-bottom:7px;
}

.law-dashboard-top span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
}

.law-dashboard-top i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-dashboard-stats{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}

.law-dashboard-stats div{
  padding:18px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:20px;
  background:rgba(0,0,0,.36);
}

.law-dashboard-stats span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  font-weight:800;
}

.law-dashboard-stats strong{
  color:var(--gold2);
  font-size:1.45rem;
}

.law-dashboard-table{
  position:relative;
  z-index:2;
  display:grid;
  gap:12px;
  margin-bottom:22px;
}

.law-table-row{
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:20px;
  background:rgba(255,255,255,.04);
}

.law-table-row.active{
  border-color:rgba(202,168,95,.3);
  background:rgba(202,168,95,.10);
}

.law-table-row strong{
  display:block;
  margin-bottom:6px;
}

.law-table-row span{
  color:rgba(255,255,255,.52);
  font-size:.82rem;
}

.law-table-row small{
  min-height:34px;
  padding:0 12px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--gold2);
  font-weight:900;
  white-space:nowrap;
}

.law-dashboard-chart{
  position:relative;
  z-index:2;
  height:200px;
  padding:18px;
  display:flex;
  align-items:end;
  gap:12px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:24px;
  background:rgba(0,0,0,.36);
}

.law-chart-bar{
  flex:1;
  border-radius:999px 999px 10px 10px;
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  box-shadow:0 0 24px rgba(202,168,95,.22);
}

.bar-a{height:40%;}
.bar-b{height:62%;}
.bar-c{height:48%;}
.bar-d{height:86%;}
.bar-e{height:70%;}

/* =====================================================
   BLOCO 10 — CTA FINAL
===================================================== */

.law-final-section{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 0%,rgba(202,168,95,.16),transparent 30rem),
    radial-gradient(circle at 80% 30%,rgba(124,58,237,.16),transparent 32rem),
    linear-gradient(180deg,#050505,#07070b 55%,#050505);
}

.law-final-glow{
  position:absolute;
  width:760px;
  height:760px;
  left:50%;
  top:-280px;
  transform:translateX(-50%);
  border-radius:999px;
  background:radial-gradient(circle,rgba(202,168,95,.22),rgba(147,51,234,.16),transparent 70%);
  filter:blur(40px);
}

.law-final-container{
  position:relative;
  z-index:2;
}

.law-final-card{
  position:relative;
  min-height:760px;
  padding:80px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border:1px solid rgba(202,168,95,.24);
  border-radius:40px;
  background:
    radial-gradient(circle at 30% 0%,rgba(202,168,95,.20),transparent 25rem),
    radial-gradient(circle at 90% 100%,rgba(124,58,237,.16),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
  backdrop-filter:blur(22px);
  box-shadow:
    0 40px 120px rgba(0,0,0,.46),
    0 0 90px rgba(202,168,95,.10);
}

.law-final-card::before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:30px;
  pointer-events:none;
  z-index:3;
}

.law-final-bg{
  position:absolute;
  inset:0;
  opacity:.18;
}

.law-final-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.85) contrast(1.1);
}

.law-final-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.94),rgba(0,0,0,.74),rgba(0,0,0,.45)),
    radial-gradient(circle at 72% 30%,rgba(202,168,95,.20),transparent 28rem);
}

.law-final-content{
  position:relative;
  z-index:4;
  max-width:920px;
}

.law-final-badge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 16px;
  margin-bottom:22px;
  border:1px solid rgba(202,168,95,.28);
  border-radius:999px;
  background:rgba(202,168,95,.10);
  color:var(--gold2);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.law-final-content h2{
  margin-bottom:24px;
  font-size:clamp(2.7rem,5.4vw,5.8rem);
  line-height:.92;
  letter-spacing:-.08em;
}

.law-final-content h2 span{
  display:block;
  color:transparent;
  background:linear-gradient(135deg,#fff 8%,#f5d27a 45%,#caa85f 72%,#9333ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.law-final-content p{
  max-width:760px;
  margin-bottom:34px;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.85;
}

.law-final-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:34px;
}

.law-final-point{
  padding:18px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(18px);
}

.law-final-point i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-final-point strong{
  display:block;
  margin-bottom:7px;
}

.law-final-point span{
  color:rgba(255,255,255,.56);
  font-size:.84rem;
  line-height:1.55;
}

.law-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.law-final-primary,
.law-final-secondary{
  min-height:56px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  font-weight:900;
  transition:.28s ease;
}

.law-final-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
  box-shadow:0 22px 58px rgba(202,168,95,.24);
}

.law-final-secondary{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(14px);
  color:#fff;
}

.law-final-primary:hover,
.law-final-secondary:hover{
  transform:translateY(-3px);
}

/* RESPONSIVO BLOCOS 9 E 10 */

@media(max-width:1080px){
  .law-system-layout{
    grid-template-columns:1fr;
  }

  .law-system-visual,
  .law-dashboard-mockup{
    min-height:auto;
  }

  .law-final-card{
    padding:56px;
  }

  .law-final-points{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){
  .law-system-section,
  .law-final-section{
    padding:90px 0;
  }

  .law-system-header{
    text-align:left;
    margin-bottom:44px;
  }

  .law-system-content,
  .law-dashboard-mockup,
  .law-final-card{
    padding:28px;
    border-radius:30px;
  }

  .law-dashboard-mockup::before,
  .law-final-card::before{
    display:none;
  }

  .law-system-card,
  .law-final-point{
    grid-template-columns:1fr;
  }

  .law-dashboard-stats{
    grid-template-columns:1fr;
  }

  .law-table-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .law-dashboard-chart{
    height:160px;
  }

  .law-final-card{
    min-height:auto;
  }

  .law-final-overlay{
    background:
      linear-gradient(180deg,rgba(0,0,0,.92),rgba(0,0,0,.82)),
      radial-gradient(circle at 50% 20%,rgba(202,168,95,.18),transparent 26rem);
  }

  .law-final-actions{
    flex-direction:column;
  }

  .law-final-primary,
  .law-final-secondary{
    width:100%;
  }
}


/* =====================================================
   BLOCO 11 — FOOTER FINAL
===================================================== */

.law-footer{
  position:relative;
  padding:70px 0 34px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 0%,rgba(202,168,95,.10),transparent 28rem),
    radial-gradient(circle at 80% 100%,rgba(124,58,237,.10),transparent 30rem),
    #050505;
  border-top:1px solid rgba(255,255,255,.08);
}

.law-footer-container{
  position:relative;
  z-index:2;
}

.law-footer-top{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:42px;
  align-items:center;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.law-footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
  max-width:520px;
}

.law-footer-brand img{
  width:72px;
  height:72px;
  object-fit:contain;
  filter:
    drop-shadow(0 0 22px rgba(202,168,95,.36))
    drop-shadow(0 0 26px rgba(124,58,237,.22));
}

.law-footer-brand p{
  color:rgba(255,255,255,.58);
  font-size:.92rem;
  line-height:1.7;
}

.law-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.law-footer-links a{
  color:rgba(255,255,255,.62);
  font-size:.88rem;
  font-weight:800;
  transition:.28s ease;
}

.law-footer-links a:hover{
  color:var(--gold2);
}

.law-footer-social{
  display:flex;
  gap:10px;
}

.law-footer-social a{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  color:var(--gold2);
  transition:.28s ease;
}

.law-footer-social a:hover{
  transform:translateY(-4px);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#08080d;
}

.law-footer-bottom{
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.law-footer-bottom span{
  color:rgba(255,255,255,.45);
  font-size:.82rem;
}

.law-footer-bottom-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.law-footer-bottom-links a{
  color:rgba(255,255,255,.48);
  font-size:.82rem;
  font-weight:700;
  transition:.28s ease;
}

.law-footer-bottom-links a:hover{
  color:var(--gold2);
}

/* RESPONSIVO BLOCO 11 */

@media(max-width:1080px){
  .law-footer-top{
    grid-template-columns:1fr;
    align-items:flex-start;
  }
}

@media(max-width:680px){
  .law-footer{
    padding:54px 0 28px;
  }

  .law-footer-brand{
    flex-direction:column;
    align-items:flex-start;
  }

  .law-footer-brand img{
    width:62px;
    height:62px;
  }

  .law-footer-links{
    flex-direction:column;
  }

  .law-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}