:root {
  --ink: #091522;
  --forest: #071323;
  --green: #19365c;
  --mint: #ede3c8;
  --paper: #f8f5ed;
  --line: #ded6c5;
  --muted: #6b6f78;
  --white: #ffffff;
  --accent: #cca75b;
  --accent-soft: #e5cf91;
  --blue: #19365c;
  --shadow: 0 24px 70px rgba(9, 21, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 248, 244, 0.94);
  box-shadow: 0 10px 32px rgba(17, 23, 19, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(204, 167, 91, 0.56);
  border-radius: 8px;
  background: var(--forest);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.74;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(204, 167, 91, 0.72);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--white);
  background: rgba(204, 167, 91, 0.14);
  opacity: 1;
}

.site-header.is-scrolled .nav-cta {
  color: var(--green);
  background: rgba(204, 167, 91, 0.16);
}

.menu-button {
  display: none;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  padding: 8px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.94) 0%, rgba(9, 21, 34, 0.76) 38%, rgba(9, 21, 34, 0.18) 78%),
    linear-gradient(180deg, rgba(5, 13, 24, 0.5) 0%, rgba(5, 13, 24, 0.12) 45%, rgba(5, 13, 24, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 180px 0 110px;
  margin-left: clamp(18px, 7vw, 96px);
}

.hero-logo {
  width: clamp(150px, 17vw, 230px);
  height: auto;
  margin-bottom: 22px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--accent-soft);
  padding: 8px 12px;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: var(--forest);
  background: var(--accent);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline-dark {
  border-color: rgba(25, 54, 92, 0.22);
  color: var(--green);
  background: transparent;
}

.button.outline-dark:hover {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

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

.button.full {
  width: 100%;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-band div {
  min-height: 120px;
  padding: 26px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.signal-band div:last-child {
  border-right: 0;
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  max-width: 340px;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.signal-band span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-kicker {
  color: var(--green);
  margin-bottom: 16px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.intro-grid h2,
.business-copy h2,
.about-copy h2,
.method-copy h2,
.proof-section h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.intro-grid p,
.business-copy p,
.business-panel p,
.about-copy p,
.profile-body p,
.method-copy p,
.proof-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section {
  padding-bottom: clamp(50px, 7vw, 88px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro-note {
  border-left: 4px solid var(--green);
  padding-left: 24px;
}

.intro-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.access-section {
  padding-top: clamp(36px, 6vw, 72px);
}

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

.access-card {
  display: grid;
  align-content: start;
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.access-card:hover,
.access-card:focus-visible {
  border-color: rgba(204, 167, 91, 0.78);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  outline: 0;
}

.access-card span {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-card h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1;
}

.access-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.primary-access {
  color: var(--white);
  border-color: rgba(204, 167, 91, 0.42);
  background:
    linear-gradient(135deg, rgba(7, 19, 35, 0.99), rgba(25, 54, 92, 0.95)),
    var(--forest);
}

.primary-access span {
  color: var(--accent);
}

.primary-access p {
  color: rgba(255, 255, 255, 0.76);
}

.people-section {
  padding-top: clamp(44px, 7vw, 84px);
}

.business-section {
  padding: clamp(72px, 10vw, 124px) 0;
  background: var(--white);
}

.business-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.business-copy {
  position: sticky;
  top: 108px;
}

.business-copy .section-kicker {
  color: var(--accent);
}

.business-panel {
  display: grid;
  gap: 14px;
}

.business-panel article {
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  padding: 24px;
  background: #fbfcf8;
}

.business-panel span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 900;
}

.business-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.business-panel p {
  margin-bottom: 0;
}

.business-depth,
.business-warning {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(58px, 8vw, 96px) auto 0;
}

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

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

.practice-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.practice-grid h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.12rem;
  line-height: 1.15;
}

.practice-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.business-warning {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 35, 0.98), rgba(25, 54, 92, 0.94)),
    var(--forest);
}

.business-warning .section-kicker {
  color: var(--accent);
}

.business-warning h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.business-warning ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-warning li {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.about-section {
  padding: clamp(72px, 10vw, 124px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 35, 0.98), rgba(25, 54, 92, 0.92)),
    var(--forest);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.about-copy {
  padding-top: 12px;
}

.about-copy .section-kicker {
  color: var(--accent);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.firm-registration {
  margin-top: 22px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

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

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(204, 167, 91, 0.28);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.profile-photo {
  aspect-ratio: 4 / 5;
  background: var(--forest);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matheus-photo {
  object-position: 44% 46%;
}

.silvia-photo {
  object-position: 34% 45%;
}

.profile-body {
  padding: 24px;
}

.profile-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-body h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.profile-oab {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.profile-oab span {
  margin: 0;
  border: 1px solid rgba(25, 54, 92, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: #fbfcf8;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.profile-areas li {
  border: 1px solid rgba(25, 54, 92, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(204, 167, 91, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 292px;
  padding: 24px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--green);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--forest);
}

.method-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.method-section .section-kicker {
  color: var(--accent);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline li::before {
  counter-increment: method;
  content: "0" counter(method);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  grid-column: 2;
}

.timeline strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.timeline span {
  margin-top: -16px;
  color: rgba(255, 255, 255, 0.72);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  padding: clamp(72px, 10vw, 124px) clamp(18px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.proof-grid p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  border-left: 4px solid var(--green);
  padding-left: 14px;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.address-box {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  border-left: 4px solid var(--accent);
  padding: 18px 0 18px 16px;
  color: var(--muted);
  font-style: normal;
}

.address-box strong {
  color: var(--ink);
}

.address-box a {
  width: fit-content;
  color: var(--green);
  font-weight: 900;
}

.address-box span {
  display: block;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcf8;
}

.contact-form textarea {
  resize: vertical;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  border-top: 1px solid var(--line);
  padding: clamp(42px, 7vw, 78px) clamp(18px, 7vw, 96px);
  background: var(--paper);
}

.privacy-section h2 {
  max-width: 420px;
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.privacy-copy {
  display: grid;
  gap: 14px;
  max-width: 840px;
  color: var(--muted);
}

.privacy-copy p {
  margin: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 132px;
  height: auto;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 18px 0 15px;
  color: var(--white);
  background: #1f9d61;
  box-shadow: 0 18px 46px rgba(9, 21, 34, 0.22);
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #168451;
  box-shadow: 0 22px 58px rgba(9, 21, 34, 0.28);
  transform: translateY(-2px);
  outline: 0;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.thanks-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 35, 0.96), rgba(25, 54, 92, 0.9)),
    url("assets/hero-office-optimized.jpg") center/cover;
}

.thanks-main {
  display: grid;
  align-content: center;
  min-height: 100vh;
  max-width: 760px;
  padding: clamp(36px, 8vw, 96px);
}

.thanks-main img {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 30px;
}

.thanks-main h1 {
  margin: 12px 0 18px;
}

.thanks-main p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
  }

  .signal-band,
  .cards-grid,
  .business-inner,
  .business-warning,
  .about-inner,
  .method-section,
  .proof-section,
  .proof-grid,
  .contact-section,
  .privacy-section,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .business-copy {
    position: static;
  }
}

@media (max-width: 740px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 18px;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 4px;
    color: var(--green);
    text-align: center;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 126px 0 64px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 13, 24, 0.94), rgba(9, 21, 34, 0.66)),
      linear-gradient(180deg, rgba(5, 13, 24, 0.3), rgba(5, 13, 24, 0.88));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .signal-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .service-card {
    min-height: 230px;
  }

  .service-card span {
    margin-bottom: 32px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline strong,
  .timeline span {
    grid-column: auto;
  }

  .timeline span {
    margin-top: -8px;
  }
}
