:root {
  --color-navy-900: #003457;
  --color-navy-850: #083a5a;
  --color-navy-700: #0b4b73;
  --color-blue-soft: #eaf2f7;
  --color-blue-surface: #f5f9fc;
  --color-gold: #c89b38;
  --color-whatsapp: #06a94f;
  --color-whatsapp-dark: #04863f;
  --color-text: #163246;
  --color-muted: #5e7180;
  --color-white: #ffffff;
  --color-page-bg: #f8fbfd;
  --color-text-secondary: #31485a;
  --color-text-card: #273d4d;
  --color-text-explain: #233a4c;
  --color-border: #d7e3eb;
  --color-border-soft: rgba(215, 227, 235, 0.7);
  --color-border-strong: rgba(215, 227, 235, 0.92);
  --color-border-blue-soft: rgba(11, 75, 115, 0.12);
  --color-white-90: rgba(255, 255, 255, 0.9);
  --shadow-card: 0 14px 34px rgba(4, 35, 57, 0.11);
  --shadow-card-hover: 0 18px 42px rgba(4, 35, 57, 0.15);
  --shadow-soft: 0 20px 44px rgba(4, 35, 57, 0.08);
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --section-y: clamp(56px, 8vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-page-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero-logo {
  max-width: 165px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-logo {
    display: block;
    margin: 0 auto 20px;
  }
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

.container--narrow {
  width: min(980px, calc(100% - 40px));
}

.section {
  padding-block: var(--section-y);
}

.section--light {
  background: linear-gradient(180deg, var(--color-page-bg) 0%, var(--color-white) 52%, var(--color-page-bg) 100%);
}

.section__heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.section__heading h2,
.profile h2,
.faq h2 {
  color: var(--color-navy-900);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section__heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--color-text-secondary);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.section__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.section__action--large {
  margin-top: clamp(42px, 6vw, 64px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(6, 169, 79, 0.24);
  outline: none;
}

.btn--whatsapp {
  color: var(--color-white);
  background: var(--color-whatsapp);
  box-shadow: 0 12px 22px rgba(6, 169, 79, 0.18);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: var(--color-whatsapp-dark);
}

.btn--outline {
  color: var(--color-navy-900);
  background: var(--color-white);
  border-color: var(--color-navy-700);
  box-shadow: 0 10px 20px rgba(0, 52, 87, 0.08);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  box-shadow: 0 12px 24px rgba(0, 52, 87, 0.13);
  background: #f5fbff;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 650px);
  isolation: isolate;
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 155, 56, 0.18) 0 18%, transparent 31%),
    radial-gradient(circle at 6% 10%, rgba(11, 75, 115, 0.11) 0 16%, transparent 33%),
    linear-gradient(112deg, #ffffff 0%, #f7fbfd 46%, #eaf2f7 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(135deg, rgba(0, 52, 87, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, 34px 34px;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -210px;
  top: -170px;
  border-radius: 999px;
  background: rgba(200, 155, 56, 0.13);
  filter: blur(2px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(0, 52, 87, 0.08) 58% 59%, transparent 59% 100%),
    radial-gradient(circle at 74% 82%, rgba(0, 52, 87, 0.12), transparent 30%);
}

.hero__container {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: center;
  padding-block: 56px 62px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 64px);
}

.hero__content {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(215, 227, 235, 0.92);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 48px rgba(4, 35, 57, 0.11);
  backdrop-filter: blur(12px);
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--color-gold), rgba(200, 155, 56, 0.32));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 11px;
  color: var(--color-navy-900);
  background: rgba(200, 155, 56, 0.12);
  border: 1px solid rgba(200, 155, 56, 0.34);
  border-radius: 999px;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 700;
  line-height: 1.3;
}

.hero h1 {
  max-width: 500px;
  color: var(--color-navy-900);
  font-size: clamp(1.74rem, 3.15vw, 2.86rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.032em;
}

.hero__subtitle {
  max-width: 520px;
  margin-top: clamp(14px, 2vw, 20px);
  color: var(--color-text-secondary);
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}

.hero .btn {
  margin-top: clamp(20px, 2.8vw, 28px);
  min-width: min(310px, 100%);
}

.hero__visual {
  position: relative;
  width: min(395px, 100%);
  justify-self: end;
  margin: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% -6% -6% 10%;
  z-index: -1;
  border-radius: 30px 30px 30px 94px;
  background: linear-gradient(145deg, rgba(0, 52, 87, 0.14), rgba(200, 155, 56, 0.2));
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 34px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(200, 155, 56, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 34px rgba(4, 35, 57, 0.12);
}

.hero__photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px 30px 30px 82px;
  background: var(--color-blue-soft);
  box-shadow: 0 24px 56px rgba(4, 35, 57, 0.18);
}

.hero__photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 52, 87, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
}

.hero__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.compliance {
  background: var(--color-navy-900);
  color: var(--color-white-90);
}

.compliance__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
}

.compliance p {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.79rem;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards reutilizáveis */
:is(.info-card, .service-card) {
  height: 100%;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

:is(.info-card, .service-card):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(11, 75, 115, 0.25);
}

.info-card {
  min-height: 260px;
  padding: 26px 22px 24px;
}

.service-card {
  min-height: 318px;
  padding: 30px 24px 28px;
}

:is(.info-card, .service-card) img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 16px;
}

:is(.info-card, .service-card, .faq-item) h3 {
  color: var(--color-navy-900);
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 700;
}

:is(.info-card, .service-card, .faq-item) p {
  margin-top: 12px;
  color: var(--color-text-card);
  font-size: 0.92rem;
  line-height: 1.68;
}

.explain {
  padding-block: var(--section-y);
  background:
    radial-gradient(circle at top right, rgba(11, 75, 115, 0.08), transparent 28%),
    linear-gradient(180deg, var(--color-page-bg) 0%, #eef4f8 100%);
}

.explain__panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--color-border-blue-soft);
  border-radius: clamp(24px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 251, 0.98) 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.explain__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-navy-700) 0%, rgba(11, 75, 115, 0.22) 42%, rgba(11, 75, 115, 0) 100%);
}

.explain__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.explain__content {
  max-width: 640px;
}

.explain h2 {
  color: var(--color-navy-900);
  font-size: clamp(1.28rem, 2.15vw, 1.85rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.explain h2 + p,
.explain p + p {
  margin-top: 18px;
}

.explain p {
  color: var(--color-text-explain);
  font-size: clamp(0.98rem, 1.35vw, 1.06rem);
  line-height: 1.76;
}

.check-list {
  margin-top: 22px;
  list-style: none;
}

.check-list--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.check-list--cards li {
  min-height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border-blue-soft);
  box-shadow: 0 10px 24px rgba(4, 35, 57, 0.08);
}

.check-list__icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  background: transparent;
}

.check-list__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--color-navy-700);
  border-bottom: 2px solid var(--color-navy-700);
  transform: translate(-50%, -62%) rotate(-45deg);
}

.check-list--cards strong,
.check-list--cards span {
  display: block;
}

.check-list--cards strong {
  color: var(--color-navy-900);
  font-size: 0.96rem;
  line-height: 1.5;
}

.check-list--cards span {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.explain__image {
  margin: 0;
}

.explain__media-card {
  position: relative;
  padding: clamp(14px, 2vw, 18px);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--color-white) 0%, #edf3f7 100%);
  border: 1px solid var(--color-border-blue-soft);
  box-shadow: 0 18px 36px rgba(4, 35, 57, 0.12);
}

.explain__media-card::before {
  content: "";
  position: absolute;
  inset: auto 28px -18px 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 52, 87, 0.08);
  filter: blur(18px);
  pointer-events: none;
}

.explain__media-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.explain__highlight {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 38px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 52, 87, 0.98) 0%, rgba(8, 58, 90, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(0, 52, 87, 0.18);
}

.explain__highlight-line {
  width: 4px;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-gold) 0%, #f0c86a 100%);
}

.explain__highlight-content h2,
.explain__highlight-content p {
  color: var(--color-white);
}

.explain__highlight-content p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.explain__highlight-content .btn {
  margin-top: 20px;
}

.office {
  background: linear-gradient(180deg, var(--color-page-bg) 0%, var(--color-white) 48%, var(--color-page-bg) 100%);
}


.profile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  padding-block: clamp(58px, 8vw, 96px);
  color: var(--color-white);
  text-align: center;
  background: #071a2a;
}

.profile__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/images/fundo-da-justica.webp");
  background-size: cover;
  background-position: center right;
  opacity: 0.72;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 30, 48, 0.96) 0%, rgba(0, 38, 61, 0.9) 42%, rgba(0, 38, 61, 0.64) 72%, rgba(0, 38, 61, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 30, 48, 0.3) 0%, rgba(0, 30, 48, 0.82) 100%);
}

.profile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.profile h2 {
  color: var(--color-gold);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.profile-card {
  width: min(100% - 32px, 980px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(230px, 305px) minmax(0, 560px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  justify-content: center;

  margin-top: clamp(34px, 5vw, 58px);
  text-align: left;
}

.profile-card__photo-wrap {
  position: relative;
  justify-self: center;
}

.profile-card__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(200, 155, 56, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.profile-card__photo {
  position: relative;
  z-index: 1;
  width: min(305px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #14283a;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.profile-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-card__content {
  position: relative;
  max-width: 590px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(0, 38, 61, 0.64), rgba(0, 38, 61, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.profile-card__name {
  color: var(--color-white);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.profile-card__oab {
  margin-top: 4px;
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 700;
}

.profile-card__content p:not(.profile-card__name):not(.profile-card__oab) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.3vw, 1.06rem);
  line-height: 1.74;
}

.faq {
  background: var(--color-white);
}

.faq h2 {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(4, 35, 57, 0.06);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--color-navy-900);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: #f5f9fc;
  outline: none;
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(11, 75, 115, 0.28);
  border-radius: 999px;
  background: var(--color-blue-surface);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-navy-900);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-navy-900);
  border-color: var(--color-navy-900);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--color-white);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--color-text-card);
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  line-height: 1.72;
  transition: padding 240ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 24px 22px;
}

.final-cta {
  padding: clamp(42px, 6vw, 74px) 0 24px;
  background: var(--color-page-bg);
}

.final-cta__box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px 30px;
  align-items: center;
  padding: clamp(26px, 3vw, 42px);
  color: var(--color-white);
  background: var(--color-navy-900);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 52, 87, 0.22);
}

.final-cta__icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.final-cta__icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.final-cta h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.2;
  font-weight: nowrap;
}

.final-cta p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.66;
}

.final-cta__button {
  min-width: 220px;
}

.final-cta__contacts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.22);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  color: rgba(255,255,255,0.95);
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: center;
}

.contact-item + .contact-item {
  border-left: 1px solid rgba(255,255,255,0.28);
}

.contact-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex: 0 0 auto;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.92);
  background: var(--color-navy-900);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 1.25fr;
  gap: 32px;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__brand img {
  width: 156px;
  height: auto;
}

.site-footer__brand p,
.site-footer__info p {
  font-size: 0.84rem;
  line-height: 1.58;
}

.site-footer__legal p {
  font-size: 0.70rem; /* media de 15% mener, 40% ficou extremamente pequeno */
  line-height: 1.58;
}

.site-footer__info,
.site-footer__legal {
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

.site-footer strong {
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-whatsapp);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(6, 169, 79, 0.32);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: var(--color-whatsapp-dark);
  outline: none;
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
