/*
Theme Name: Araújo & Batalha Advogados
Theme URI: https://araujo-batalha-advogados.iranvfranca.chatgpt.site/
Author: TMEX
Description: Tema institucional personalizado para Araújo & Batalha Advogados.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: araujo-batalha
*/

@font-face {
  font-family: "Museo";
  src: url("assets/fonts/museo-300.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Museo";
  src: url("assets/fonts/museo-500.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Museo";
  src: url("assets/fonts/museo-700.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Arial Custom";
  src: url("assets/fonts/arial.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Arial Custom";
  src: url("assets/fonts/arial-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #1e1c1d;
  --charcoal: #302e2f;
  --charcoal-soft: #3b393a;
  --gold: #cfa345;
  --gold-bright: #f2d879;
  --gold-dark: #9f7627;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --muted: #6d6864;
  --line: rgba(43, 39, 39, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Custom", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Museo", "Arial Custom", sans-serif;
  font-weight: 300;
}

h2 {
  margin-bottom: 32px;
  font-size: clamp(42px, 4.1vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.07;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(100deg, var(--gold-dark), var(--gold-bright));
  color: var(--ink);
}

.button-gold:hover {
  background: linear-gradient(100deg, #b58a31, #ffe69a);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--charcoal-soft);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  align-items: center;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(28, 26, 27, 0.94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 205px;
}

.brand img {
  width: 100%;
  height: 57px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: transparent;
  color: var(--white);
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.icon-button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.header-cta {
  height: 46px;
  padding-inline: 21px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: background 180ms ease;
}

.header-cta:hover {
  background: var(--gold-bright);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  position: relative;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle.is-open span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 70;
  inset: 84px 0 0;
  display: none;
  padding: 36px 32px;
  background: rgba(30, 28, 29, 0.985);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Museo", sans-serif;
  font-size: clamp(23px, 6vw, 32px);
  font-weight: 300;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mobile-menu-contact span {
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero */

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 920px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.62);
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1s ease,
    transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24, 21, 22, 0.25) 0%, rgba(24, 21, 22, 0.45) 100%),
    linear-gradient(
      90deg,
      rgba(23, 21, 22, 0.97) 0%,
      rgba(23, 21, 22, 0.9) 32%,
      rgba(23, 21, 22, 0.43) 60%,
      rgba(23, 21, 22, 0.26) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 84px;
}

.hero h1 {
  max-width: 880px;
  margin: 0 0 30px;
  font-size: clamp(58px, 6.2vw, 91px);
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 645px;
  margin-bottom: 37px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 54px;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease;
}

.hero-controls button::after {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: background 180ms ease;
}

.hero-controls button.is-active {
  color: var(--gold-bright);
}

.hero-controls button.is-active::after {
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 46px;
  left: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 36px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  content: "";
  animation: scroll-line 2s infinite ease-in-out;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

/* Trust bar */

.trust-bar {
  position: relative;
  z-index: 5;
  background: var(--white);
  box-shadow: 0 25px 75px rgba(27, 24, 25, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1.45fr;
  min-height: 124px;
}

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

.trust-grid > div:first-child {
  border-left: 0;
}

.trust-number {
  color: var(--gold);
  font-family: "Museo", sans-serif;
  font-size: 13px;
}

.trust-grid p {
  margin: 0;
  font-family: "Museo", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.trust-grid .trust-call {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  background: var(--charcoal);
  color: var(--white);
}

.trust-call span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-call button {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

/* About */

.about {
  background:
    radial-gradient(circle at 84% 50%, rgba(207, 163, 69, 0.07), transparent 26%),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, 0.93fr);
  align-items: center;
  gap: clamp(72px, 9vw, 142px);
}

.about-copy .lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: #3f3b3a;
  font-family: "Museo", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.65;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.85;
}

.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition:
    gap 180ms ease,
    color 180ms ease;
}

.text-link:hover {
  gap: 28px;
  color: var(--gold-dark);
}

.about-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.about-symbol {
  position: absolute;
  z-index: 0;
  top: 3%;
  right: 3%;
  width: 350px;
  opacity: 0.09;
  filter: grayscale(0.25);
}

.quote-card {
  position: relative;
  z-index: 2;
  width: min(100% - 54px, 460px);
  margin: 62px 0 0 0;
  padding: 68px 52px 52px;
  background: var(--charcoal);
  box-shadow: 0 35px 80px rgba(31, 28, 29, 0.21);
  color: var(--white);
}

.quote-mark {
  position: absolute;
  top: 25px;
  left: 45px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.quote-card blockquote {
  margin: 0 0 30px;
  font-family: "Museo", sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.48;
}

.quote-card p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold-frame {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 0;
  width: 77%;
  height: 88%;
  border: 1px solid rgba(178, 132, 41, 0.55);
}

/* Areas */

.areas {
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  color: var(--white);
}

.areas::before {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(207, 163, 69, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(207, 163, 69, 0.03),
    0 0 0 160px rgba(207, 163, 69, 0.025);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.area-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.area-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.area-card:first-child {
  border-left: 0;
}

.area-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-9px);
}

.area-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.area-icon {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 163, 69, 0.52);
  color: var(--gold-bright);
}

.area-number {
  color: rgba(255, 255, 255, 0.28);
  font-family: "Museo", sans-serif;
  font-size: 12px;
}

.area-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
}

.area-card p {
  flex-grow: 1;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.78;
}

.area-card button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  transition: gap 180ms ease;
}

.area-card button:hover {
  gap: 20px;
}

/* Method */

.method {
  background: var(--cream);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.method-intro {
  position: sticky;
  top: 130px;
}

.method-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--muted);
  line-height: 1.85;
}

.method-steps {
  border-top: 1px solid rgba(43, 39, 39, 0.2);
}

.method-steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 39px 0 35px;
  border-bottom: 1px solid rgba(43, 39, 39, 0.2);
}

.method-steps article > span {
  color: var(--gold-dark);
  font-family: "Museo", sans-serif;
  font-size: 13px;
}

.method-steps h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

/* Commitment */

.commitment {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

.commitment-image {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(rgba(25, 22, 23, 0.45), rgba(25, 22, 23, 0.55)),
    url("assets/images/nosso-diferencial-logo.jpg") center / contain no-repeat,
    var(--ink);
  filter: saturate(0.78);
}

.commitment-image::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(242, 216, 121, 0.32);
  content: "";
}

.commitment-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 128px);
  background:
    radial-gradient(circle at 90% 10%, rgba(207, 163, 69, 0.12), transparent 30%),
    var(--ink);
  color: var(--white);
}

.commitment-panel > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.83;
}

.commitment-panel ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.commitment-panel li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.commitment-panel li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.contact::after {
  position: absolute;
  right: -135px;
  bottom: -185px;
  width: 470px;
  height: 470px;
  background: url("assets/brand/symbol.png") center / contain no-repeat;
  content: "";
  opacity: 0.035;
  transform: rotate(-9deg);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 9vw, 135px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.83;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 45px;
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: var(--white);
}

.contact-details a > span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 163, 69, 0.45);
  color: var(--gold-bright);
}

.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 51px;
  background: var(--paper);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.24);
  color: var(--ink);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: #4f4a47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(43, 39, 39, 0.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 10px 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a39c96;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
}

.privacy-note {
  margin: -4px 0 0;
  color: #8a837e;
  font-size: 11px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
}

/* Footer */

footer {
  background: #181617;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr 1.05fr;
  gap: 55px;
  padding-block: 76px 65px;
}

.footer-brand img {
  width: 238px;
  height: 95px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand > p {
  max-width: 310px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.75;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav > p,
.footer-contact > p {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact button {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 14px;
  padding: 0 0 5px;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: 25px;
  bottom: 25px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #1f8e50;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp:hover {
  background: #167744;
  transform: translateY(-3px);
}

/* Search */

.search-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(18, 16, 17, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(9px);
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  width: min(100%, 650px);
  height: 100%;
  overflow-y: auto;
  padding: 50px 55px;
  background: var(--paper);
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.28);
  transform: translateX(40px);
  transition: transform 220ms ease;
}

.search-overlay.is-open .search-panel {
  transform: translateX(0);
}

.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.search-top p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.search-top button {
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.search-input-wrap {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(43, 39, 39, 0.25);
  color: var(--gold-dark);
}

.search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Museo", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
}

.search-input-wrap input::placeholder {
  color: #aaa29b;
}

.search-results {
  margin-top: 30px;
}

.search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(43, 39, 39, 0.12);
}

.search-results a div {
  display: flex;
  flex-direction: column;
}

.search-results strong {
  font-family: "Museo", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.search-results span {
  color: var(--muted);
  font-size: 12px;
}

.search-results a > svg {
  flex: 0 0 auto;
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.search-results a:hover > svg {
  transform: translateX(5px);
}

.empty-search {
  padding: 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Responsive */

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 230px 1fr 210px;
    padding-inline: 26px;
  }

  .brand {
    width: 185px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

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

  .area-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .area-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 1fr;
  }

  .footer-nav:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 940px) {
  .section {
    padding-block: 102px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    height: 50px;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    inset: 76px 0 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-controls {
    right: 32px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .method-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-grid {
    gap: 64px;
  }

  .method-intro {
    position: static;
  }

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

  .commitment-image {
    min-height: 510px;
  }

  .commitment-panel {
    padding: 95px max(32px, calc((100vw - 780px) / 2));
  }

  .contact-grid {
    gap: 60px;
  }
}

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

  .shell {
    width: min(100% - 40px, 1240px);
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    margin-bottom: 24px;
    font-size: clamp(37px, 11vw, 48px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    width: 168px;
  }

  .search-button {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 42px;
  }

  .mobile-menu {
    inset: 76px 0 0;
    padding: 27px 24px;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 850px;
  }

  .hero-slide {
    background-position: 55% center;
    filter: saturate(0.75) contrast(1.03) brightness(0.48);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(23, 21, 22, 0.45), rgba(23, 21, 22, 0.79)),
      linear-gradient(90deg, rgba(23, 21, 22, 0.92), rgba(23, 21, 22, 0.42));
  }

  .hero-content {
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 13.4vw, 62px);
    line-height: 1.01;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .scroll-cue {
    display: none;
  }

  .hero-controls {
    right: auto;
    bottom: 22px;
    left: 20px;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 75px;
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid > div:first-child {
    border-top: 0;
  }

  .trust-grid .trust-call {
    min-height: 96px;
  }

  .about-copy .lead {
    font-size: 18px;
  }

  .about-visual {
    min-height: 445px;
  }

  .about-symbol {
    width: 285px;
  }

  .quote-card {
    width: calc(100% - 30px);
    margin: 42px 15px 0 0;
    padding: 60px 31px 40px;
  }

  .quote-card blockquote {
    font-size: 22px;
  }

  .gold-frame {
    width: 85%;
  }

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

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

  .area-card {
    min-height: 365px;
    padding: 34px 26px 29px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .area-card:first-child {
    border-top: 0;
  }

  .method-steps article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .method-steps h3 {
    font-size: 22px;
  }

  .commitment-image {
    min-height: 365px;
  }

  .commitment-panel {
    padding: 78px 20px;
  }

  .contact-form {
    gap: 21px;
    padding: 34px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-block: 64px 50px;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-nav:nth-of-type(2) {
    display: flex;
  }

  .footer-bottom {
    min-height: 110px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-block: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .search-panel {
    padding: 35px 24px;
  }

  .search-input-wrap {
    grid-template-columns: 32px 1fr;
  }

  .search-input-wrap input {
    font-size: 25px;
  }

  .search-results span {
    line-height: 1.45;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 145px;
  }

  .header-actions {
    gap: 2px;
  }

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

  .hero-description {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*
Theme Name: Araújo & Batalha Advogados
Theme URI: https://araujo-batalha-advogados.iranvfranca.chatgpt.site
Author: TMEX
Description: Tema institucional exclusivo do escritório Araújo & Batalha Advogados.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: araujo-batalha
*/
