:root {
  --navy: #001827;
  --navy-deep: #03111c;
  --navy-soft: #062338;
  --gold: #c58a2b;
  --gold-light: #e0ac4d;
  --gold-dark: #8a5b18;
  --ivory: #f7f4ef;
  --white: #ffffff;
  --text: #1a1a1a;
  --line: #d5ba86;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.svg-library {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 0%, rgba(20, 60, 82, 0.3), transparent 35%),
    var(--navy-deep);
  border-bottom: 1px solid rgba(197, 138, 43, 0.36);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 285px;
}

.brand img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.main-navigation > a:not(.header-contact) {
  padding-block: 12px;
  transition: color 0.2s ease;
}

.main-navigation > a:not(.header-contact):hover,
.main-navigation > a:not(.header-contact):focus-visible {
  color: var(--gold-light);
}

.header-contact {
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  background: linear-gradient(100deg, #805215, #d8a446 52%, #815315);
  box-shadow: inset 0 0 8px rgba(255, 231, 168, 0.25);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  margin-block: 5px;
  display: block;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-deep);
  background-image: url("assets/hero-legal-scene.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 18, 31, 0.99) 0%, rgba(0, 21, 35, 0.94) 35%, rgba(0, 19, 31, 0.42) 63%, rgba(0, 10, 18, 0.13) 100%),
    linear-gradient(0deg, rgba(0, 12, 21, 0.34), transparent 42%);
}

.hero-inner {
  padding-block: 62px 58px;
}

.hero-copy {
  width: min(570px, 49%);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.hero h1 strong {
  display: block;
  color: var(--gold-light);
  font-weight: 700;
}

.hero-copy > p {
  max-width: 500px;
  margin: 22px 0 26px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 46px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.button-gold {
  color: var(--white);
  border-color: #e5b75d;
  background: linear-gradient(100deg, #895816, #dfa943 50%, #8b5a17);
  box-shadow: inset 0 0 10px rgba(255, 233, 177, 0.28), 0 3px 8px rgba(0, 0, 0, 0.2);
}

.button-outline {
  color: var(--white);
  border-color: var(--gold-light);
  background: rgba(0, 24, 39, 0.78);
}

.differentials {
  color: var(--white);
  background:
    radial-gradient(circle at center top, rgba(15, 57, 82, 0.25), transparent 40%),
    var(--navy);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid rgba(197, 138, 43, 0.4);
}

.differential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
}

.differential-item {
  min-width: 0;
  padding: 5px 25px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 13px;
}

.differential-item + .differential-item {
  border-left: 1px solid rgba(197, 138, 43, 0.65);
}

.differential-item svg {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.differential-item h2 {
  margin: 0 0 5px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
}

.differential-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.light-section {
  background: var(--ivory);
}

.practice-areas {
  padding: 32px 0 25px;
}

.section-heading {
  margin: 0 auto 25px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #111;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.15;
}

.heading-ornament {
  width: min(360px, 70%);
  margin: 5px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
}

.heading-ornament::before,
.heading-ornament::after {
  width: 42%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line));
}

.heading-ornament::after {
  background: linear-gradient(90deg, var(--line), transparent);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.practice-card {
  min-height: 220px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--gold-dark);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 0%, rgba(17, 62, 88, 0.42), transparent 44%),
    var(--navy);
  box-shadow: var(--shadow);
}

.practice-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.practice-card h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
}

.practice-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.center-action {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.center-action .button {
  min-width: 345px;
}

.specialties {
  padding: 0 0 42px;
}

.divided-heading {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.specialties-desktop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.specialty-column {
  min-width: 0;
  padding: 0 22px;
}

.specialty-column + .specialty-column {
  border-left: 1px solid var(--line);
}

.specialty-column svg {
  width: 45px;
  height: 45px;
  margin: 0 auto 7px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.specialty-column h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  text-align: center;
}

.specialty-column ul,
.accordion-panel ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}

.specialty-column li,
.accordion-panel li {
  margin-bottom: 6px;
}

.specialty-column li::marker,
.accordion-panel li::marker {
  color: var(--gold);
}

.specialties-mobile {
  display: none;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 60, 87, 0.32), transparent 48%),
    var(--navy);
}

.about {
  padding: 32px 0 38px;
}

.section-heading-gold {
  max-width: 920px;
}

.section-heading-gold h2 {
  color: var(--gold-light);
}

.section-heading-gold p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 150px;
  padding: 18px 17px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  background: rgba(0, 12, 22, 0.27);
}

.value-card svg {
  width: 54px;
  height: 54px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value-card h3 {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
}

.value-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.process {
  padding: 30px 0 34px;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: -12px;
  color: var(--navy);
  content: "⟶";
  font-size: 32px;
  line-height: 1;
}

.process-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--navy);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.16);
}

.process-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.process-step h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 16px;
}

.process-step p {
  margin: 0 auto;
  max-width: 230px;
  font-size: 12px;
}

.contact-section {
  padding: 0 0 34px;
}

.contact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  align-items: center;
  gap: 24px;
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px;
  background:
    radial-gradient(circle at 75% 50%, rgba(15, 61, 88, 0.45), transparent 40%),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-watermark {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -20px;
  width: 190px;
  height: 190px;
  object-fit: contain;
  opacity: 0.14;
  transform: translateY(-50%);
}

.contact-intro,
.contact-whatsapp,
.contact-details {
  min-width: 0;
}

.contact-whatsapp,
.contact-details {
  padding-left: 25px;
  border-left: 1px solid rgba(197, 138, 43, 0.75);
}

.contact-intro h2 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.contact-intro strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
}

.contact-intro p {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 16px;
}

.contact-label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  font-size: 22px;
}

.contact-label p {
  margin: 0;
}

.contact-label small,
.contact-label strong {
  display: block;
}

.contact-label small {
  color: #9fe58a;
}

.contact-label strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.contact-whatsapp .button {
  width: 100%;
}

.contact-details {
  margin: 0;
  font-style: normal;
}

.contact-details p {
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 8px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details p > span {
  grid-row: span 2;
  color: var(--gold-light);
  font-size: 20px;
}

.contact-details small,
.contact-details a {
  display: block;
}

.contact-details small {
  color: #e8d9bc;
}

.contact-details a {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 62, 91, 0.28), transparent 42%),
    var(--navy-deep);
  border-top: 1px solid rgba(197, 138, 43, 0.45);
}

.footer-watermark {
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: 40px;
  width: 230px;
  height: 230px;
  object-fit: contain;
  opacity: 0.15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.85fr 1.1fr;
  gap: 45px;
  padding-bottom: 28px;
}

.footer-brand img {
  width: 255px;
  height: auto;
  object-fit: contain;
  object-position: left;
}

.footer-brand p {
  margin: 15px 0 0;
  color: #f3e5c5;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.footer-brand strong {
  color: var(--gold-light);
}

.footer-column {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 16px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 16px 0 20px;
  border-top: 1px solid rgba(197, 138, 43, 0.45);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    flex-basis: 235px;
  }

  .main-navigation {
    gap: 15px;
    font-size: 12px;
  }

  .header-contact {
    padding-inline: 10px;
  }

  .differential-item {
    padding-inline: 15px;
    grid-template-columns: 42px 1fr;
  }

  .differential-item svg {
    width: 40px;
    height: 40px;
  }

  .practice-grid {
    gap: 12px;
  }

  .practice-card {
    padding-inline: 11px;
  }

  .specialty-column {
    padding-inline: 13px;
  }

  .values-grid {
    gap: 10px;
  }

  .value-card {
    padding-inline: 12px;
    grid-template-columns: 44px 1fr;
  }

  .value-card svg {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 69px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    width: 100%;
    min-height: 68px;
    padding: 8px 16px;
  }

  .brand {
    flex: 0 1 220px;
  }

  .brand img {
    max-height: 49px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 46px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 68px);
    padding: 14px 16px 22px;
    display: none;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    color: var(--white);
    background: rgba(3, 17, 28, 0.99);
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation > a:not(.header-contact) {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(197, 138, 43, 0.2);
  }

  .header-contact {
    margin-top: 10px;
    justify-content: center;
  }

  .hero {
    min-height: 0;
    align-items: stretch;
    background-position: 73% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 17, 29, 0.98) 0%, rgba(0, 17, 29, 0.9) 48%, rgba(0, 17, 29, 0.42) 100%),
      linear-gradient(0deg, rgba(0, 14, 24, 0.84) 0%, transparent 58%);
  }

  .hero-inner {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero-copy {
    width: min(68%, 460px);
  }

  .hero h1 {
    font-size: clamp(31px, 7.7vw, 42px);
    letter-spacing: -0.5px;
  }

  .hero-copy > p {
    margin: 15px 0 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 14px;
    font-size: 12px;
  }

  .differential-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 20px;
  }

  .differential-item {
    padding: 13px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .differential-item + .differential-item {
    border-left: 0;
  }

  .differential-item:nth-child(even) {
    border-left: 1px solid rgba(197, 138, 43, 0.65);
  }

  .differential-item:nth-child(n + 3) {
    border-top: 1px solid rgba(197, 138, 43, 0.38);
  }

  .differential-item svg {
    width: 39px;
    height: 39px;
  }

  .differential-item h2 {
    font-size: 14px;
  }

  .differential-item p {
    font-size: 10px;
  }

  .practice-areas {
    padding: 25px 0 20px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .practice-card {
    min-height: 0;
    padding: 15px 9px 14px;
  }

  .practice-card-wide {
    grid-column: 1 / -1;
  }

  .practice-card svg {
    width: 39px;
    height: 39px;
    margin-bottom: 6px;
  }

  .practice-card h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .practice-card p {
    font-size: 10px;
    line-height: 1.45;
  }

  .center-action {
    margin-top: 13px;
  }

  .center-action .button {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 44px;
    padding: 10px 15px;
    font-size: 12px;
  }

  .specialties {
    padding-bottom: 25px;
  }

  .divided-heading {
    padding-top: 16px;
  }

  .specialties-desktop {
    display: none;
  }

  .specialties-mobile {
    display: grid;
    gap: 5px;
  }

  .accordion-item {
    overflow: hidden;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    background: var(--white);
  }

  .accordion-trigger {
    width: 100%;
    min-height: 44px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    border: 0;
    background: transparent;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .accordion-trigger > span {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .accordion-trigger svg {
    width: 26px;
    height: 26px;
    color: var(--gold-dark);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .accordion-trigger b {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 400;
  }

  .accordion-panel {
    display: none;
    padding: 0 14px 12px 42px;
  }

  .accordion-panel.is-open {
    display: block;
  }

  .accordion-panel ul {
    font-size: 12px;
  }

  .about {
    padding: 24px 0 27px;
  }

  .section-heading-gold p {
    font-size: 12px;
    line-height: 1.45;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .value-card {
    min-height: 135px;
    padding: 13px 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .value-card svg {
    width: 39px;
    height: 39px;
  }

  .value-card h3 {
    font-size: 13px;
  }

  .value-card p {
    font-size: 9px;
  }

  .process {
    padding: 24px 0 27px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step {
    padding: 5px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    border-width: 1px;
  }

  .process-icon svg {
    width: 23px;
    height: 23px;
  }

  .process-step h3 {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .process-step p {
    max-width: none;
    margin: 0;
    font-size: 10px;
  }

  .contact-section {
    padding-bottom: 24px;
  }

  .contact-panel {
    padding: 18px 15px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-watermark {
    top: 12px;
    right: -20px;
    width: 140px;
    height: 140px;
    transform: none;
  }

  .contact-whatsapp,
  .contact-details {
    padding: 14px 0 0;
    border-top: 1px solid rgba(197, 138, 43, 0.75);
    border-left: 0;
  }

  .contact-intro h2 {
    font-size: 23px;
  }

  .contact-intro p {
    font-size: 13px;
  }

  .contact-label strong {
    font-size: 20px;
  }

  .contact-details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 29px;
  }

  .footer-watermark {
    right: -18px;
    bottom: 55px;
    width: 180px;
    height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-bottom: 22px;
  }

  .footer-brand img {
    width: min(260px, 78%);
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-column {
    gap: 6px;
  }

  .footer-column h2 {
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(197, 138, 43, 0.28);
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 17, 29, 0.99) 0%, rgba(0, 17, 29, 0.92) 57%, rgba(0, 17, 29, 0.5) 100%),
      linear-gradient(0deg, rgba(0, 14, 24, 0.9), transparent 62%);
  }

  .hero-copy {
    width: 75%;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-actions {
    width: min(100%, 330px);
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-label {
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .brand {
    flex-basis: 190px;
  }

  .hero-copy {
    width: 82%;
  }

  .hero h1 {
    font-size: 31px;
  }

  .practice-card h3 {
    font-size: 13px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}


/* === Adriana Passos: logo oficial + destaque Direito Trabalhista === */
.site-header .brand{flex:0 0 118px}
.site-header .brand img.sf-project-logo{
  width:104px!important;
  max-width:104px!important;
  height:auto!important;
  max-height:92px!important;
  object-fit:contain!important;
  filter:drop-shadow(0 2px 8px rgba(222,172,77,.18));
}
.header-inner{min-height:104px}

.labor-highlight{
  position:relative;
  overflow:hidden;
  color:var(--white);
  background:
    radial-gradient(circle at 17% 50%, rgba(224,172,77,.13), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(21,67,91,.28), transparent 38%),
    linear-gradient(135deg,#03080d 0%,#071723 46%,#02070b 100%);
  border-top:1px solid rgba(224,172,77,.45);
  border-bottom:1px solid rgba(224,172,77,.38);
}
.labor-highlight::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.16;
  background:repeating-linear-gradient(135deg,transparent 0 16px,rgba(255,255,255,.03) 16px 17px);
}
.labor-grid{
  position:relative;z-index:1;min-height:310px;padding-block:34px;
  display:grid;grid-template-columns:260px 1fr;align-items:center;gap:42px;
}
.labor-seal{
  position:relative;width:220px;height:220px;margin:auto;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;border-radius:50%;
  color:#f4d58f;border:1px solid rgba(239,195,100,.72);
  background:radial-gradient(circle at 35% 30%,rgba(219,167,63,.18),rgba(9,20,28,.96) 62%);
  box-shadow:0 0 0 8px rgba(197,138,43,.07),0 0 34px rgba(224,172,77,.24),inset 0 0 30px rgba(197,138,43,.10);
  isolation:isolate;
  animation:laborSealFloat 4s ease-in-out infinite;
}
.labor-seal::before{
  content:"";position:absolute;inset:-3px;border-radius:50%;z-index:-1;
  background:conic-gradient(from 0deg,transparent 0 16%,rgba(255,224,147,.85) 22%,transparent 30% 67%,rgba(255,224,147,.65) 73%,transparent 82%);
  filter:blur(.2px);animation:laborSealSpin 8s linear infinite;
}
.labor-seal-ring{position:absolute;inset:13px;border:1px solid rgba(224,172,77,.38);border-radius:50%}
.labor-seal svg{width:42px;height:42px;margin-bottom:3px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.labor-seal strong{font-family:var(--serif);font-size:58px;line-height:.95;color:#fff0c8;text-shadow:0 0 15px rgba(224,172,77,.28)}
.labor-seal>span:not(.labor-seal-ring){font-family:var(--serif);font-size:15px;text-transform:uppercase;letter-spacing:1.6px}
.labor-seal small{margin-top:5px;color:#fff;font-size:10px;text-transform:uppercase;letter-spacing:1.3px}
.labor-kicker{display:inline-flex;align-items:center;gap:8px;color:var(--gold-light);font-size:11px;font-weight:800;letter-spacing:2px}
.labor-kicker::before{content:"";width:34px;height:1px;background:var(--gold-light)}
.labor-copy h2{margin:8px 0 12px;color:#f5d58d;font-family:var(--serif);font-size:clamp(30px,3.2vw,45px);line-height:1.06}
.labor-copy p{max-width:820px;margin:0;color:#f7f4ef;font-size:15px;line-height:1.7}
.labor-copy p strong{color:#ffe1a0}
.labor-points{margin:18px 0 20px;display:flex;flex-wrap:wrap;gap:10px}
.labor-points span{position:relative;padding:8px 12px 8px 28px;border:1px solid rgba(224,172,77,.30);border-radius:999px;background:rgba(255,255,255,.035);font-size:11px}
.labor-points span::before{content:"✓";position:absolute;left:11px;color:var(--gold-light);font-weight:900}
.labor-button{min-width:145px}
@keyframes laborSealFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@keyframes laborSealSpin{to{transform:rotate(360deg)}}

.site-footer .footer-brand img.sf-project-logo{width:135px!important;max-width:135px!important;max-height:120px!important;filter:drop-shadow(0 2px 10px rgba(224,172,77,.15))}

@media(max-width:768px){
  .header-inner{min-height:76px}
  .site-header .brand{flex-basis:78px}
  .site-header .brand img.sf-project-logo{width:68px!important;max-width:68px!important;max-height:60px!important}
  .main-navigation{top:76px;max-height:calc(100vh - 76px)}
  .labor-grid{min-height:0;padding-block:26px;grid-template-columns:1fr;gap:18px;text-align:center}
  .labor-seal{width:168px;height:168px}
  .labor-seal strong{font-size:45px}
  .labor-seal svg{width:34px;height:34px}
  .labor-seal>span:not(.labor-seal-ring){font-size:11px}
  .labor-seal small{font-size:8px}
  .labor-kicker{justify-content:center;font-size:9px}
  .labor-copy h2{font-size:27px}
  .labor-copy p{font-size:12px;line-height:1.6}
  .labor-points{justify-content:center;gap:7px}
  .labor-points span{font-size:9px;padding:7px 10px 7px 24px}
  .labor-points span::before{left:9px}
  .labor-button{width:min(100%,280px)}
  .site-footer .footer-brand img.sf-project-logo{width:105px!important;max-width:105px!important}
}

@media(prefers-reduced-motion:reduce){.labor-seal,.labor-seal::before{animation:none!important}}
