:root {
  --navy: #14233B;
  --navy-deep: #0B172A;
  --gold: #C9A227;
  --gold-light: #D9B95B;
  --white: #FFFFFF;
  --soft: #F7F8FA;
  --ink: #18202B;
  --muted: #687386;
  --line: #E4E8EE;
  --shadow: 0 18px 45px rgba(11, 23, 42, .09);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy-deep)
}

p {
  line-height: 1.72
}

.custom-container {
  max-width: 1200px
}

.section {
  padding: 96px 0
}

.section-white {
  background: #fff
}

.section-soft {
  background: var(--soft)
}

.min-vh-85 {
  min-height: 85vh
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor
}

.eyebrow-light {
  color: #f3d87d
}

.eyebrow-gold {
  color: var(--gold-light)
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  margin-bottom: 18px
}

.section-heading p {
  font-size: 1.07rem;
  color: var(--muted);
  margin-bottom: 0
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: .25s ease;
}

.site-header .navbar {
  padding: 18px 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  transition: .25s ease
}

.site-header.scrolled .navbar {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(11, 23, 42, .08)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep)
}

.brand:hover {
  color: var(--navy-deep)
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 162, 39, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 162, 39, .25);
  border-radius: 50%
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05
}

.brand-copy strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem
}

.brand-copy small {
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #70798a;
  margin-top: 4px
}

.nav-link {
  font-size: .92rem;
  font-weight: 600;
  color: #334056 !important;
  padding: .65rem .7rem !important
}

.nav-link:hover {
  color: var(--gold) !important
}

.btn {
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: .82rem 1.35rem;
  transition: .2s ease
}

.btn-lg {
  padding: 1rem 1.45rem;
  font-size: 1rem
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: white;
  box-shadow: 0 10px 28px rgba(201, 162, 39, .22)
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e1c56c, #b89018);
  border-color: #b89018;
  color: #0b172a;
  transform: translateY(-1px)
}

.btn-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
  transform: translateY(-1px)
}

.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: #fff
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff
}

.hero-section {
  position: relative;
  min-height: 750px;
  background-image: url('/wp-content/themes/adv/assets/banner-desktop.png');
  background-size: cover;
  background-position: center 42%;
  padding-top: 4px;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 23, 42, .97) 0%, rgba(11, 23, 42, .90) 40%, rgba(11, 23, 42, .55) 68%, rgba(11, 23, 42, .28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-section h1 {
  color: #fff;
  font-size: clamp(2.65rem, 5.3vw, 3rem);
  line-height: 1.01;
  margin-bottom: 24px;
  letter-spacing: -.02em
}

.hero-section h1 span {
  color: #efd472
}

.hero-lead {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, .84);
  max-width: 720px;
  margin-bottom: 24px
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 30px;
  color: #fff;
  font-size: .94rem;
  font-weight: 600
}

.hero-points i {
  color: var(--gold-light);
  margin-right: 7px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px
}

.hero-note {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  margin: 0
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(11, 23, 42, .05)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}

.trust-grid>div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 24px 26px;
  border-right: 1px solid var(--line)
}

.trust-grid>div:last-child {
  border-right: 0
}

.trust-grid i {
  font-size: 1.35rem;
  color: var(--gold)
}

.trust-grid span {
  display: flex;
  flex-direction: column
}

.trust-grid strong {
  font-size: .96rem;
  color: var(--navy-deep)
}

.trust-grid small {
  color: var(--muted);
  font-size: .78rem;
  margin-top: 3px
}

.info-card,
.service-card,
.type-card,
.national-card,
.mini-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: .25s ease;
}

.info-card:hover,
.service-card:hover,
.type-card:hover,
.national-card:hover,
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, .4)
}

.info-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 162, 39, .10);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px
}

.info-card h3,
.service-card h3,
.type-card h3,
.mini-card h3,
.national-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--navy-deep)
}

.info-card p,
.service-card p,
.type-card p,
.mini-card p,
.national-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem
}

.center-cta {
  text-align: center;
  margin-top: 42px
}

.warning-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden
}

.warning-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 162, 39, .15);
  border-radius: 50%;
  right: -160px;
  top: -180px
}

.warning-section h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 22px
}

.warning-section p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem
}

.warning-section blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.32rem;
  color: #fff;
  margin: 24px 0 28px
}

.editorial-image {
  min-height: 500px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 55px rgba(11, 23, 42, .18);
  position: relative;
  overflow: hidden
}

.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 23, 42, .14))
}

.image-docs {
  background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=86')
}

.existem-bens{
  border-radius: 10px;
}

.image-family {
  background-image: url('https://images.unsplash.com/photo-1609220136736-443140cffec6?auto=format&fit=crop&w=1400&q=86');
  background-position: center 40%
}

.image-office {
  background-image: url('https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1400&q=86')
}

.service-card {
  padding: 26px;
  position: relative;
  overflow: hidden
}

.service-card>span {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 700;
  opacity: .85;
  margin-bottom: 12px
}

.patrimonio-section h2,
.filhos-section h2,
#sobre h2 {
  font-size: clamp(2.05rem, 4vw, 2.80rem);
  margin-bottom: 18px
}

.patrimonio-section p,
.filhos-section p,
#sobre p {
  color: var(--muted);
  font-size: 1.03rem
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 24px 0
}

.asset-grid span {
  font-size: .93rem;
  color: #3b4657
}

.asset-grid i {
  color: var(--gold);
  margin-right: 7px
}

.highlight-box {
  padding: 18px 20px;
  background: #fff8dd;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 20px 0 24px
}

.mini-card i,
.type-card i,
.national-card i {
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 14px
}

.type-card {
  text-align: left
}

.type-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff8dd;
  display: grid;
  place-items: center
}

.steps-section {
  background: linear-gradient(135deg, var(--navy-deep), #162c4e)
}

.steps-section h2{
  color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(217, 185, 91, .28)
}

.step-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 24px 20px;
  color: #fff;
  backdrop-filter: blur(4px)
}

.step-card span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111827;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px rgba(201, 162, 39, .08)
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35
}

.step-card p {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  margin: 0
}

.national-section {
  background: #fff;
  position: relative;
  overflow: hidden
}

.map-bg {
  position: absolute;
  inset: auto 0 0 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(20, 35, 59, .025);
  line-height: .8;
  pointer-events: none
}

.national-card {
  text-align: center;
  padding: 30px
}

.form-section {
  background: var(--soft)
}

.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px;
  box-shadow: var(--shadow)
}

.form-intro h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 12px
}

.form-intro p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 34px
}

.progress-wrap {
  margin: 12px 0 34px
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 8px
}

.progress {
  height: 8px;
  background: #edf0f4;
  border-radius: 99px
}

.progress-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .25s ease
}

.form-step {
  display: none
}

.form-step.active {
  display: block;
  animation: fadeStep .25s ease
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.form-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.option-grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.option-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: auto
}

.option-card {
  position: relative;
  cursor: pointer
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.option-card span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 17px 18px;
  background: #fff;
  font-weight: 700;
  font-size: .93rem;
  color: #334056;
  transition: .2s ease;
  min-height: 100%;
  box-shadow: 0 5px 18px rgba(11, 23, 42, .03)
}

.option-card:hover span {
  border-color: rgba(201, 162, 39, .55);
  background: #fffdf7
}

.option-card input:checked+span {
  border-color: var(--gold);
  background: #fff8dd;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, .10);
  color: var(--navy-deep)
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 11px;
  border: 1px solid #dce1e8;
  padding: .75rem .9rem
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(201, 162, 39, .12)
}

.form-label {
  font-size: .86rem;
  font-weight: 800;
  color: #3a4555
}

.form-privacy {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 0
}

.form-privacy i {
  color: var(--gold);
  margin-right: 6px
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px
}

.form-error {
  min-height: 24px;
  color: #a22626;
  font-size: .86rem;
  text-align: center;
  margin-top: 14px
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px
}

.pillars span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff8dd;
  color: var(--navy-deep);
  font-size: .84rem;
  font-weight: 800;
  border: 1px solid rgba(201, 162, 39, .25)
}

.conflict-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, #14233b, #0b172a);
  color: #fff
}

.conflict-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 10px
}

.conflict-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .72)
}

.faq-section {
  background: #fff
}

.faq-accordion {
  max-width: 900px;
  margin: auto
}

.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden
}

.accordion-button {
  font-weight: 800;
  color: var(--navy-deep);
  padding: 20px 22px;
  background: #fff
}

.accordion-button:not(.collapsed) {
  color: var(--navy-deep);
  background: #fff8dd;
  box-shadow: none
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent
}

.accordion-button::after {
  filter: none
}

.accordion-body {
  color: var(--muted);
  line-height: 1.7;
  padding: 20px 22px
}

.final-cta {
  position: relative;
  padding: 110px 0;
  background-image: url('/wp-content/themes/adv/assets/banner-cta-final.png');
  background-size: cover;
  background-position: center;
  color: #fff
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 42, .89);
  z-index: -1
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  margin-bottom: 18px
}

.final-cta p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .78);
  max-width: 820px;
  margin: 0 auto 28px
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .62)
}

.site-footer {
  background: #08111f;
  color: rgba(255, 255, 255, .72);
  padding: 54px 0 26px
}

.brand-footer {
  color: #fff
}

.brand-footer:hover {
  color: #fff
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, .55)
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.footer-top p {
  margin: 14px 0 0;
  font-size: .9rem
}

.footer-contact {
  display: flex;
  flex-direction: column;
  text-align: right
}

.footer-contact span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .45)
}

.footer-contact a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 4px
}

.footer-legal {
  padding: 24px 0 12px
}

.footer-legal p {
  font-size: .78rem;
  line-height: 1.55;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .48)
}

.footer-bottom {
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
  padding-top: 10px
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  z-index: 900;
  box-shadow: 0 14px 32px rgba(34, 197, 94, .35);
  animation: floatIn .55s ease both
}

.floating-wa:hover {
  color: #fff;
  transform: translateY(-2px)
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(.75)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.mobile-cta {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: .5s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media (max-width: 1199.98px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .steps-grid::before {
    display: none
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 76px 0
  }

  .site-header .navbar {
    padding: 11px 0
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow)
  }

  .hero-section {
    min-height: auto;
    background-position: 62% center;
    padding: 132px 0 80px
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 23, 42, .97), rgba(11, 23, 42, .88) 60%, rgba(11, 23, 42, .68))
  }

  .min-vh-85 {
    min-height: auto
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .trust-grid>div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 8px
  }

  .trust-grid>div:last-child {
    border-bottom: 0
  }

  .editorial-image {
    min-height: 420px
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 72px
  }

  .section {
    padding: 64px 0
  }

  .custom-container {
    padding-left: 18px;
    padding-right: 18px
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 1rem
  }

  .brand-copy strong {
    font-size: 1rem
  }

  .brand-copy small {
    font-size: .6rem
  }

  .hero-section {
    padding: 118px 0 64px;
    background-position: 67% center
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 23, 42, .97), rgba(11, 23, 42, .92) 75%, rgba(11, 23, 42, .82))
  }

  .hero-section h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem)
  }

  .hero-lead {
    font-size: 1rem
  }

  .hero-points {
    display: grid;
    gap: 9px
  }

  .hero-actions {
    display: grid
  }

  .hero-actions .btn {
    width: 100%
  }

  .section-heading {
    margin-bottom: 36px
  }

  .trust-grid>div {
    padding-left: 0;
    padding-right: 0
  }

  .asset-grid {
    grid-template-columns: 1fr
  }

  .editorial-image {
    min-height: 340px;
    border-radius: 18px
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .form-shell {
    padding: 28px 18px;
    border-radius: 18px
  }

  .option-grid,
  .option-grid-3,
  .option-grid-2 {
    grid-template-columns: 1fr
  }

  .form-actions {
    flex-wrap: wrap
  }

  .form-actions .btn {
    flex: 1 1 45%;
    min-height: 50px
  }

  #submitBtn {
    flex-basis: 100%
  }

  .footer-top {
    flex-direction: column
  }

  .footer-contact {
    text-align: left
  }

  .floating-wa {
    display: none
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1100;
    display: block;
    transform: translateY(120%);
    opacity: 0;
    transition: .28s ease;
    pointer-events: none
  }

  .mobile-cta.show {
    transform: none;
    opacity: 1;
    pointer-events: auto
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #22c55e;
    color: #fff;
    padding: 15px 18px;
    border-radius: 13px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(11, 23, 42, .22)
  }
}

@media (max-width: 430px) {
  .hero-section h1 {
    font-size: 2.55rem
  }

  .section-heading h2,
  .patrimonio-section h2,
  .filhos-section h2,
  #sobre h2 {
    font-size: 2.15rem
  }

  .warning-section h2,
  .conflict-cta h2 {
    font-size: 2.25rem
  }

  .btn-lg {
    font-size: .94rem
  }

  .info-card,
  .service-card,
  .type-card,
  .national-card,
  .mini-card {
    padding: 23px
  }
}

.logo-section{
  height: 800px;
  background-color: #050505;
  align-items: center;
}

.logo-section img{
  align-items: center;
  justify-content: center;
}

/* ==================================================
   FILHOS
================================================== */

.filhos-section {
  position: relative;
  overflow: hidden;
}

.filhos-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.05);
  top: -220px;
  right: -180px;
  pointer-events: none;
}

.filhos-section .container {
  position: relative;
  z-index: 2;
}

.filhos-section h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.filhos-intro {
  max-width: 820px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: #5c6674;
}


/* Cards */

.filhos-card {
  position: relative;
  padding: 36px 30px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(20, 35, 59, 0.09);
  border-radius: 18px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.filhos-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 20px 50px rgba(20, 35, 59, 0.08);
}


/* Ícone */

.filhos-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;

  background: rgba(201, 162, 39, 0.10);
  color: #c9a227;

  font-size: 22px;
}

.filhos-card h3 {
  margin-bottom: 12px;
  color: #14233b;
  font-size: 22px;
}

.filhos-card p {
  margin: 0;
  color: #657080;
  line-height: 1.7;
}


/* Mobile */

@media (max-width: 767.98px) {

  .filhos-section {
    text-align: left;
  }

  .filhos-section .text-center {
    text-align: left !important;
  }

  .filhos-intro {
    margin-top: 16px;
  }

  .filhos-card {
    padding: 28px 24px;
  }

  .filhos-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }
}

/* ==================================================
   SOBRE / LPT ADVOCACIA
================================================== */

#sobre {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 92% 50%,
      rgba(201, 162, 39, 0.08) 0%,
      rgba(201, 162, 39, 0.03) 25%,
      transparent 55%
    ),
    #ffffff;
}

/* detalhe decorativo */
#sobre::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -280px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

#sobre::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -195px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(20, 35, 59, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

#sobre .container {
  position: relative;
  z-index: 2;
}


/* ==================================================
   TEXTO
================================================== */

#sobre .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

#sobre .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a227;
}

#sobre h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #14233b;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

#sobre p {
  max-width: 610px;
  margin-bottom: 16px;
  color: #657080;
  font-size: 17px;
  line-height: 1.8;
}


/* ==================================================
   PILARES
================================================== */

#sobre .pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

#sobre .pillars span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 17px 10px 38px;

  color: #14233b;
  background: #f7f8fa;

  border: 1px solid rgba(20, 35, 59, 0.08);
  border-radius: 100px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* check dourado */
#sobre .pillars span::before {
  content: "✓";
  position: absolute;
  left: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 16px;
  height: 16px;

  color: #c9a227;
  font-size: 12px;
  font-weight: 800;
}

#sobre .pillars span:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(201, 162, 39, 0.35);
}


/* ==================================================
   ÁREA DO LOGO
================================================== */

#sobre .logo-sxection {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 510px;
}


/* painel principal */

#sobre .logo-sxection::before {
  content: "";
  position: absolute;

  width: min(100%, 520px);
  aspect-ratio: 1 / 1;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(201, 162, 39, 0.12),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      #172941 0%,
      #0b172a 100%
    );

  box-shadow:
    0 35px 70px rgba(11, 23, 42, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  z-index: 0;
}


/* borda dourada interna */

#sobre .logo-sxection::after {
  content: "";
  position: absolute;

  width: calc(min(100%, 520px) - 34px);
  aspect-ratio: 1 / 1;

  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 24px;

  z-index: 1;
  pointer-events: none;
}


/* logo */

#sobre .logo-sxection img {
  position: relative;
  z-index: 2;

  width: min(68%, 350px);
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 20px rgba(201, 162, 39, 0.08));

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

#sobre .logo-sxection:hover img {
  transform: scale(1.025);

  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 24px rgba(201, 162, 39, 0.13));
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {

  #sobre {
    padding: 85px 0;
  }

  #sobre .logo-sxection {
    min-height: auto;
    margin-top: 20px;
    padding: 70px 40px;
  }

  #sobre .logo-sxection::before {
    width: min(100%, 500px);
  }

  #sobre .logo-sxection::after {
    width: calc(min(100%, 500px) - 30px);
  }

  #sobre .logo-sxection img {
    width: min(65%, 320px);
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767.98px) {

  #sobre {
    padding: 70px 0;
  }

  #sobre h2 {
    font-size: 35px;
    line-height: 1.12;
  }

  #sobre p {
    font-size: 16px;
    line-height: 1.75;
  }

  #sobre .pillars {
    gap: 8px;
    margin-top: 24px;
  }

  #sobre .pillars span {
    padding: 9px 14px 9px 34px;
    font-size: 12px;
  }

  #sobre .logo-sxection {
    margin-top: 12px;
    padding: 55px 25px;
  }

  #sobre .logo-sxection::before {
    width: 100%;
    border-radius: 24px;
  }

  #sobre .logo-sxection::after {
    width: calc(100% - 24px);
    border-radius: 18px;
  }

  #sobre .logo-sxection img {
    width: 72%;
    max-width: 280px;
  }
}

.cta-final {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(11, 23, 42, .95),
      rgba(11, 23, 42, .88)
    ),
    url("/wp-content/themes/adv/assets/banner-cta-final.png") center/cover no-repeat;
  color: #fff;
}

.logo-footer{
  width: 150px;
}
@media(max-width: 550px){
      .hero-section h1 {
        font-size: 32px;
    }

    .hero-section{
      background-position: 88% center;
      padding-top: 60px;
    }

    .hero-overlay{
      background: linear-gradient(90deg, rgba(11, 23, 42, .97) 0%, rgba(11, 23, 42, .90) 40%, rgba(11, 23, 42, .55) 68%, rgba(11, 23, 42, .28) 100%);
    }

    #sobre .logo-sxection{
      margin-top: 20px;
    }

    #sobre .logo-sxection::before{
      height: 0px;
      border: none;
      background: none;
      box-shadow: none;
      width: 0px;
    }

        #sobre .logo-sxection::after {
        width: 0px;
        border-radius: 0px;
        box-shadow: none;
        background: none;
    }

    .final-cta {

    background-position: 96% center;
    color: #fff;
}
}

@media(max-width: 380px){
.hero-section h1 {
        font-size: 28px;
    }

    .section-heading h2, .patrimonio-section h2, .filhos-section h2, #sobre h2 {
        font-size: 28px;
    }
} 


@media(max-width: 340px){
.hero-section h1 {
        font-size: 25px;
    }

    .section-heading h2, .patrimonio-section h2, .filhos-section h2, #sobre h2 {
        font-size: 25px;
    }
} 

/* ==================================================
   DEPOIMENTOS
================================================== */

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #f7f8fa;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.05);
}

.testimonials-heading {
  max-width: 820px;
  margin: 0 auto 55px;
}

.testimonials-heading h2 {
  max-width: 720px;
  margin: 12px auto 18px;
  color: #14233b;
}

.testimonials-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #657080;
  font-size: 17px;
  line-height: 1.7;
}


/* slider */

.testimonials-swiper {
  overflow: hidden;
  padding: 8px 4px 30px;
}


/* card */

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  height: 100%;
  padding: 34px 30px;

  background: #ffffff;

  border: 1px solid rgba(20, 35, 59, 0.08);
  border-radius: 20px;

  box-shadow: 0 12px 35px rgba(20, 35, 59, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 22px 50px rgba(20, 35, 59, 0.09);
}


/* estrelas */

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;

  color: #c9a227;
  font-size: 14px;
}


/* texto */

.testimonial-text {
  flex: 1;

  margin: 0 0 30px;

  color: #3f4a58;
  font-size: 16px;
  line-height: 1.75;
}


/* autor */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;

  padding-top: 22px;
  border-top: 1px solid rgba(20, 35, 59, 0.07);
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #14233b;
  color: #d9b95b;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.testimonial-author h3 {
  margin: 0 0 3px;

  color: #14233b;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-author span {
  color: #87909b;
  font-size: 12px;
}


/* controles */

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  margin-top: 38px;
}

.testimonial-prev,
.testimonial-next {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  padding: 0;

  background: #ffffff;
  color: #14233b;

  border: 1px solid rgba(20, 35, 59, 0.12);
  border-radius: 50%;

  transition: all 0.25s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #14233b;
  color: #d9b95b;
  border-color: #14233b;
}


/* bullets */

.testimonial-pagination {
  position: static !important;
  width: auto !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;

  background: rgba(20, 35, 59, 0.25);
  opacity: 1;

  transition: all 0.25s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 24px;

  border-radius: 20px;

  background: #c9a227;
}


/* mobile */

@media (max-width: 767.98px) {

  .testimonials-section {
    padding: 75px 0;
  }

  .testimonials-heading {
    margin-bottom: 35px;
    text-align: left !important;
  }

  .testimonials-heading h2,
  .testimonials-heading p {
    margin-left: 0;
  }

  .testimonial-card {
    min-height: 315px;
    padding: 28px 24px;
  }

  .testimonials-controls {
    margin-top: 28px;
  }

}


/*===========================================
  FAIXA DESENVOLVIDO POR
===========================================*/

.faixa-desenvolvido {
  padding: 18px 0;
  background: white;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;

}

.desenvolvido-por {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 14px;
  color: black;
  font-size: 13px;
  font-weight: 800;
}

.desenvolvido-por:hover {
  color: #ffd34e;
}

.desenvolvido-por img {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 32px;
}

body::-webkit-scrollbar-track {
  background: black;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #fff2a6, var(--gold), #ff9f00);
  border-radius: 20px;
  border: 3px solid #FBF1EB;
}

body {
  cursor: url(https://lp.clinicalotus.es/wp-content/themes/lotus/img/cursor.png), pointer;
}