@import url("../../theme.css.php?v=15.38.4");
:root {
  --wine: var(--theme-public-primary, #5b0d11);
  --wine-2: var(--theme-public-primary-2, #710c15);
  --wine-3: var(--theme-public-primary-3, #82171d);
  --gold: var(--theme-accent-500, #c79e69);
  --gold-light: var(--theme-accent-light, #e1c294);
  --ivory: var(--theme-surface-200, #f3ede4);
  --paper: var(--theme-surface-100, #fbf8f3);
  --ink: var(--theme-public-ink, #202024);
  --muted: var(--theme-public-muted, #5c5c5c);
  --line: var(--theme-public-line, #e7d8c4);
  --white: #fff;
  --shell: 1280px;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(38, 8, 10, 0.12);
  --font-sans: "Sora", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--wine);
  scrollbar-width: thin;
  overflow-x: clip;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--wine);
}

html::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--wine);
  border-radius: 999px;
}

html::-webkit-scrollbar-corner {
  background: var(--wine);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--wine);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.eyebrow--line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.eyebrow--line::before {
  width: 70px;
  height: 1px;
  flex: 0 0 70px;
  background: var(--gold);
  content: "";
}

.eyebrow--center {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.eyebrow--center::after {
  width: 70px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.display-title {
  color: var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.button:focus-visible,
.circle-button:focus-visible,
.faq-card button:focus-visible,
.field input:focus-visible,
.field select:focus-visible {
  outline: 3px solid rgba(199, 158, 105, 0.45);
  outline-offset: 3px;
}

.button--gold {
  color: #593a10;
  background: linear-gradient(
    135deg,
    #bc834d 0%,
    #e2c69c 42%,
    #d5b280 70%,
    #916133 100%
  );
  background-size: 260% 100%;
  border-color: var(--gold);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  animation: contact-button-wave 4s ease-in-out infinite;
}

.button--gold:hover {
  box-shadow: 0 12px 30px rgba(112, 64, 26, 0.2);
}

.button--outline {
  color: var(--gold);
  border-color: var(--line);
  background: transparent;
}

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

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 910px;
  overflow: visible;
  color: var(--white);
  background: #1d0305;
  border-bottom: 5px solid var(--gold);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: var(--hero-image, url("../images/hero-isabelle.webp"));
  background-position: 50% 50%;
  background-size: cover;
}

.hero__backdrop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__veil {
  position: absolute;
  inset-block: 0;
  pointer-events: none;
}

.hero__veil--left {
  left: 0;
  width: 62%;
  background: linear-gradient(
    104deg,
    #1d0305 2%,
    rgba(91, 13, 17, 0.96) 36%,
    rgba(91, 13, 17, 0.58) 52%,
    rgba(91, 13, 17, 0.12) 66%,
    transparent 76%
  );
}

.hero__veil--right {
  right: 0;
  width: 36%;
  background: linear-gradient(
    270deg,
    rgba(29, 3, 5, 0.86) 0%,
    rgba(29, 3, 5, 0.33) 70%,
    transparent 100%
  );
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 390px 1fr;
  min-height: 136px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 287px;
  max-width: 100%;
  overflow: visible;
}

.brand img {
  display: block;
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  overflow: visible;
}

.site-header__coverage {
  position: relative;
  margin: 0;
  text-align: center;
  font-size: 15px;
}

.site-header__coverage::before,
.site-header__coverage::after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: var(--gold);
  content: "";
}

.site-header__coverage::before {
  left: -1px;
}

.site-header__coverage::after {
  right: -1px;
}

.button--header {
  justify-self: end;
  min-width: 190px;
  gap: 14px;
  color: var(--white);
  background: rgba(130, 11, 20, 0.86);
  border-color: rgba(199, 158, 105, 0.42);
}

.button--header:hover {
  background: var(--wine-3);
  border-color: rgba(199, 158, 105, 0.62);
  box-shadow: 0 10px 24px rgba(34, 0, 3, 0.22);
}

.button--header__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button--header__divider {
  width: 1px;
  height: 20px;
  flex: 0 0 1px;
  background: rgba(197, 64, 70, 0.88);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 411px;
  min-height: 769px;
}

.hero__copy {
  width: 500px;
  padding-top: 124px;
}

.hero__copy h1 {
  max-width: 445px;
  margin: 40px 0 30px;
  color: var(--white);
  font-size: clamp(48px, 3.7vw, 53px);
  font-weight: 400;
  line-height: 1.23;
  letter-spacing: -0.04em;
}

.hero__description {
  max-width: 370px;
  margin: 0;
  color: #e5dddd;
  line-height: 2;
}

.lawyer-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 60px;
  color: var(--gold);
}

.lawyer-badge__brand,
.mini-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(199, 158, 105, 0.5);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
}

.lawyer-badge__identity {
  position: relative;
  display: block;
  width: 72px;
  height: 42px;
  flex: 0 0 72px;
}

.lawyer-badge__brand {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: var(--wine);
  border-color: var(--wine-3);
}

.lawyer-badge__brand img {
  display: block;
  width: 13px;
  height: 20px;
}

.lawyer-badge__portrait {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: #d9c3b5 url("../images/isabelle-sobre.webp") 50% 17% / 185%
    auto no-repeat;
  border: 1px solid rgba(199, 158, 105, 0.5);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(29, 3, 5, 0.3);
}

.lawyer-badge > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}

.lawyer-badge strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 400;
}

.lawyer-badge small {
  color: #d9d9d9;
  font-size: 13px;
}

.lead-form {
  position: relative;
  z-index: 50;
  align-self: start;
  min-height: 593px;
  margin-top: 47px;
  padding: 36px 30px 26px;
  color: var(--muted);
  background: rgba(243, 237, 228, 0.98);
  border: 1px solid var(--gold);
  border-radius: 16px;
  box-shadow:
    0 3px 0 var(--gold),
    var(--shadow);
}

.lead-form__eyebrow {
  margin: 0 0 26px;
  color: var(--wine);
  font-size: 14px;
}

.lead-form__eyebrow::after {
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 20px;
  background: var(--gold);
  content: "";
}

.lead-form h2 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.lead-form__intro {
  margin: 16px 0 6px;
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.field > span,
.field > label {
  font-size: 14px;
}

.field input,
.field select {
  width: 100%;
  height: 42px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfc5b6;
  border-radius: 0;
  outline: 0;
}

.field input:focus,
.field input:focus-visible,
.field select:focus,
.field select:focus-visible {
  outline: none;
  box-shadow: none;
}

.field--floating {
  position: relative;
  display: block;
  height: 58px;
  margin-top: 2px;
}

.field--floating span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  color: #6b6259;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left top;
  transition:
    top 0.2s ease,
    color 0.2s ease,
    font-size 0.2s ease,
    transform 0.2s ease;
}

.field--floating input {
  height: 58px;
  padding: 17px 0 0;
}

.field--floating:focus-within span,
.field--floating.is-filled span {
  top: 10px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transform: translateY(0);
}

.field--select {
  position: relative;
  z-index: 60;
  margin-top: 13px;
}

.field--select > label {
  margin-bottom: 8px;
  color: #6b6259;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  color: #6b6259;
  background: rgba(250, 247, 241, 0.8);
  border: 1px solid #cfc5b6;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger {
  color: var(--wine);
  background: #fbf7f0;
  border-color: rgba(130, 23, 29, 0.42);
  box-shadow: 0 8px 20px rgba(76, 34, 37, 0.07);
}

.custom-select__trigger:focus,
.custom-select__trigger:focus-visible {
  outline: none;
  border-color: rgba(130, 23, 29, 0.5);
  box-shadow: 0 0 0 3px rgba(130, 23, 29, 0.08);
}

.custom-select__chevron {
  width: 9px;
  height: 9px;
  margin: -4px 3px 0 16px;
  border-right: 1.5px solid var(--wine);
  border-bottom: 1.5px solid var(--wine);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.custom-select.is-open .custom-select__chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.custom-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 284px;
  padding: 7px;
  overflow-y: auto;
  visibility: hidden;
  background: #fffaf3;
  border: 1px solid rgba(199, 158, 105, 0.36);
  border-radius: 16px;
  box-shadow:
    0 20px 42px rgba(56, 24, 26, 0.16),
    0 3px 10px rgba(56, 24, 26, 0.07);
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  scrollbar-color: rgba(130, 23, 29, 0.38) transparent;
  scrollbar-width: thin;
}

.custom-select.is-open .custom-select__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 42px;
  padding: 9px 13px;
  color: #514944;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition:
    color 0.16s ease,
    background-color 0.16s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  color: var(--wine);
  background: rgba(130, 23, 29, 0.065);
  outline: none;
}

.custom-select__option.is-selected {
  color: var(--wine);
  background: rgba(130, 23, 29, 0.1);
  font-weight: 500;
}

.custom-select__option i {
  flex: 0 0 auto;
  width: 7px;
  height: 12px;
  margin: -3px 3px 0 0;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  opacity: 0;
  transform: rotate(45deg);
}

.custom-select__option.is-selected i {
  opacity: 1;
}

.custom-select__native {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(130, 23, 29, 0.08);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--wine);
}

.consent a {
  color: var(--wine);
  text-decoration: underline;
}

.lead-form .button {
  width: 100%;
  min-height: 60px;
  margin-top: 18px;
}

@keyframes contact-button-wave {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.lead-form__privacy {
  display: block;
  margin-top: 24px;
  text-align: center;
  color: #51484a;
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  min-height: 1px;
  margin: 0;
  color: var(--wine);
  text-align: center;
  font-size: 12px;
}
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.form-status.is-success { color: #f4d9a9; font-weight: 600; }
.form-status.is-error { color: #ffd4d4; font-weight: 600; }
.lead-form .button:disabled { opacity: .72; cursor: wait; transform: none; }

/* Aviso flutuante de privacidade */
.privacy-notice {
  position: fixed;
  z-index: 1100;
  left: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(91, 13, 17, 0.12);
  border-radius: 16px;
  background: #fffdfa;
  box-shadow: 0 16px 45px rgba(35, 8, 11, 0.24);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-notice.is-closing {
  pointer-events: none;
}

.privacy-notice p {
  margin: 0 0 14px;
  color: #51484a;
  font-size: 11px;
  line-height: 1.65;
}

.privacy-notice a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-notice button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--wine);
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(110deg, #641526, #430911);
  font: 600 12px var(--font-sans);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.privacy-notice button:hover {
  background: linear-gradient(110deg, #761a2d, #500b15);
  box-shadow: 0 8px 18px rgba(74, 8, 20, 0.18);
  transform: translateY(-1px);
}

.privacy-notice button:focus-visible {
  outline: 3px solid rgba(199, 158, 105, 0.5);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .privacy-notice {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 16px;
  }
}

/* Confirmação do envio do formulário */
.contact-success-modal {
  width: min(470px, calc(100% - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(197, 151, 67, 0.72);
  border-radius: 24px;
  background: #fffaf2;
  color: #302426;
  box-shadow:
    0 30px 90px rgba(31, 5, 10, 0.42),
    0 0 0 4px rgba(255, 250, 242, 0.14);
}

.contact-success-modal::backdrop {
  background: rgba(35, 6, 10, 0.76);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.contact-success-modal[open] {
  animation: contact-modal-enter 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-success-modal__content {
  display: flex;
  align-items: center;
  padding: 36px 44px 38px;
  flex-direction: column;
  text-align: center;
}

.contact-success-modal__icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 24px;
  border: 4px solid #d7a84e;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(116, 28, 42, 0.08);
}

.contact-success-modal__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success-modal__eyebrow {
  margin: 0 0 12px;
  color: #b4873c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-success-modal h2 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-success-modal__divider {
  display: flex;
  align-items: center;
  width: 180px;
  gap: 12px;
  margin: 22px 0;
}

.contact-success-modal__divider::before,
.contact-success-modal__divider::after {
  height: 1px;
  flex: 1;
  background: rgba(190, 143, 60, 0.48);
  content: "";
}

.contact-success-modal__divider i {
  width: 7px;
  height: 7px;
  background: #c89a47;
  rotate: 45deg;
}

.contact-success-modal__content > p:last-of-type {
  max-width: 330px;
  margin: 0;
  color: #51484a;
  font-size: 16px;
  line-height: 1.65;
}

.contact-success-modal__button {
  width: 100%;
  margin-top: 30px;
  padding: 15px 24px;
  border: 1px solid #5d1220;
  border-radius: 999px;
  background: linear-gradient(110deg, #641526, #3d0711);
  color: #fffaf3;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    translate 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-success-modal__button:hover {
  translate: 0 -2px;
  background: linear-gradient(110deg, #731a2c, #480913);
  box-shadow: 0 12px 24px rgba(74, 8, 20, 0.22);
}

.contact-success-modal__button:focus-visible {
  outline: 3px solid rgba(203, 157, 75, 0.58);
  outline-offset: 3px;
}

@keyframes contact-modal-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

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

@media (max-width: 520px) {
  .contact-success-modal {
    width: calc(100% - 28px);
    border-radius: 20px;
  }

  .contact-success-modal__content {
    padding: 30px 24px 28px;
  }

  .contact-success-modal__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .contact-success-modal h2 {
    font-size: 32px;
  }

  .contact-success-modal__button {
    margin-top: 26px;
  }
}

/* Intro */
.intro {
  min-height: 800px;
  padding: 96px 0 100px;
  background: var(--white);
}

.intro__inner {
  text-align: center;
}

.intro .display-title {
  margin: 64px 0 44px;
  font-size: 58px;
  line-height: 1.28;
}

.intro__text {
  max-width: 700px;
  margin: 0 auto;
  color: #383838;
  line-height: 2;
}

.intro__qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.quality {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.quality + .quality::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--ivory);
  content: "";
}

.quality strong {
  font-weight: 400;
}

.intro__quality-icon {
  background: rgba(245, 230, 206, 0.4);
  border-color: transparent;
}

.intro__quality-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.icon-tile {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--gold);
  background: rgba(245, 230, 206, 0.42);
  border: 1px solid rgba(199, 158, 105, 0);
  border-radius: 16px;
  font-size: 24px;
}

/* Services */
.services {
  min-height: 918px;
  padding: 1px 0 0;
  background: var(--white);
}

.section-heading--split,
.pillars__heading,
.faq__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading h2,
.pillars__heading h2,
.faq__heading h2 {
  margin: 30px 0 0;
  color: var(--wine);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.carousel-controls {
  display: flex;
  gap: 18px;
}

.circle-button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  color: var(--wine);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.circle-button:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.circle-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.circle-button:disabled:hover {
  transform: none;
  color: var(--wine);
  background: transparent;
  border-color: var(--line);
}

.circle-button--filled {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.services__grid {
  display: grid;
  grid-template-columns: 302px 1fr;
  gap: 24px;
  margin-top: 38px;
}

.services__portrait {
  position: relative;
  height: 544px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.services__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.services__portrait::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(transparent, rgba(91, 13, 17, 0.9));
  content: "";
}

.services__portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.services__portrait figcaption .services__brazil-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: #128807;
  border: 1px solid rgba(235, 235, 235, 0.5);
  border-radius: 16px;
}

.services__brazil-icon img {
  width: 30px;
  height: 21px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 260px;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: visible;
  border: 1px solid #f3ede4;
  border-radius: var(--radius);
  background: #fdfbfa;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-card h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card__summary {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.service-card--featured {
  grid-column: span 2;
}

.service-card__icon {
  margin-bottom: 24px;
}

.service-card--featured h3 {
  font-size: 19px;
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 24px;
}

.services__cards.is-changing .service-card {
  animation: service-card-in 0.24s ease both;
}

.services__cards .icon-tile {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(249, 218, 178, 0.4);
  border-radius: 16px;
}

.service-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.service-card__overlay {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  left: -1px;
  display: flex;
  min-height: calc(100% + 2px);
  padding: 30px 30px 0;
  flex-direction: column;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(43, 22, 22, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.service-card:hover,
.service-card:focus-within {
  z-index: 3;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(43, 22, 22, 0.12);
}

.service-card:hover .service-card__overlay,
.service-card:focus-within .service-card__overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card__overlay h3 {
  margin-bottom: 18px;
}

.service-card__topics {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-card__topics li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.45;
}

.service-card__topics li::before {
  position: absolute;
  top: 0;
  left: 2px;
  color: #787878;
  content: "▪";
}

.service-card__whatsapp {
  display: flex;
  min-height: 60px;
  margin: auto -30px 0;
  padding: 12px 22px;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: var(--white);
  background: #369e4f;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 13px;
  transition: background-color 0.18s ease;
}

.service-card__whatsapp:hover {
  background: #258a3e;
}

.service-card__whatsapp-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 14px;
}

.service-card--featured .service-card__overlay {
  max-width: 100%;
}

@keyframes service-card-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-facts {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr) 302px;
  gap: 30px;
  min-height: 211px;
}

.service-facts > div {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-facts > div + div::before {
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -30px;
  width: 1px;
  background: var(--line);
  content: "";
}

.service-facts strong {
  color: var(--gold);
  font-weight: 400;
}

.service-facts span {
  color: var(--muted);
  font-size: 13px;
}

.service-facts__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 7px 18px;
  color: var(--gold);
  background: rgba(243, 237, 228, 0.2);
  border: 1px solid #f3ede4;
  border-radius: 16px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-facts__cta:hover,
.service-facts__cta:focus-visible {
  color: var(--white);
  background: #38984d;
  border-color: #f3ede4;
  box-shadow: 0 10px 24px rgba(56, 152, 77, 0.2);
  transform: translateY(-2px);
}

.service-facts__profile {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.service-facts__profile > img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: 50% 17%;
  border: 1px solid rgba(199, 158, 105, 0.5);
  border-radius: 50%;
}

.service-facts__whatsapp-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: -6px;
  place-items: center;
  background: #58cf78;
  border-radius: 50%;
}

.service-facts__whatsapp-icon img {
  width: 16px;
  height: 16px;
}

.service-facts__cta .service-facts__cta-label {
  color: inherit;
  font-size: 15px;
  white-space: nowrap;
}

/* Pillars */
.pillars {
  min-height: 653px;
  padding: 95px 0 100px;
  color: var(--white);
  background: var(--wine);
}

.pillars .eyebrow,
.manifesto .eyebrow {
  color: var(--gold);
}

.pillars__heading {
  align-items: flex-end;
}

.pillars__heading h2 {
  color: var(--white);
}

.pillars__heading > p {
  max-width: 302px;
  margin: 0;
  padding: 25px 30px;
  color: #d9d9d9;
  border: 1px solid var(--wine-3);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.7;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  min-height: 280px;
  padding: 36px 30px;
  border: 1px solid var(--wine-3);
  border-radius: var(--radius);
  background: transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .pillar-card:hover {
    transform: translateY(-7px);
    background: rgba(130, 11, 20, 0.55);
    border-color: rgba(207, 166, 96, 0.32);
    box-shadow: 0 14px 28px rgba(34, 0, 3, 0.18);
  }
}

.pillar-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 400;
}

.pillar-card p {
  margin: 0;
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .button--gold {
    animation: none;
  }

  .pillar-card {
    transition: none;
  }
}

/* About and reviews */
.about-reviews {
  padding: 100px 0 120px;
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 100px;
  min-height: 680px;
  padding: 30px;
  border: 1px solid #f3ede4;
  border-bottom: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.about__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about__signature {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    rgba(17, 16, 16, 0.94),
    rgba(37, 22, 16, 0.75)
  );
  backdrop-filter: blur(8px);
}

.about__monogram {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #ffc581;
  background: rgba(255, 197, 129, 0.1);
  border: 1px solid rgba(199, 158, 105, 0.6);
  border-radius: 14px;
}

.about__monogram img {
  display: block;
  width: 24px;
  height: 36px;
}

.about__signature > span:last-child {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.about__signature small {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9d9d9;
  font-size: 13px;
}

.about__signature small::before {
  width: 40px;
  height: 1px;
  flex: 0 0 40px;
  background: var(--gold);
  content: "";
}

.about__signature strong {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
}

.about__content {
  align-self: center;
  max-width: 540px;
}

.about__content .display-title {
  margin: 26px 0 16px;
  font-size: 48px;
  line-height: 1;
}

.about__content > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about__list {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about__list span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(249, 218, 178, 0.4);
  border-radius: 14px;
}

.about__list span img {
  display: block;
  width: 20px;
  height: 20px;
}

.reviews {
  padding-top: 105px;
  text-align: center;
}

.reviews h2 {
  max-width: 1020px;
  margin: 42px auto 20px;
  color: var(--wine);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.google-mini {
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.google-mark {
  position: relative;
  display: grid;
  width: 78px;
  height: 80px;
  margin: 30px auto 50px;
  place-items: center;
}

.google-mark__border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.22s ease;
}

.google-mark:hover .google-mark__border {
  transform: scale(1.128, 1.125);
}

.google-mark__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
}

.google-mini {
  width: 40px;
  height: 40px;
  border: 1px solid #f3ede4;
}

.google-mini img {
  display: block;
  width: 18px;
  height: 18px;
}

.reviews__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  text-align: left;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
}

.reviews__viewport::-webkit-scrollbar {
  display: none;
}

.reviews__viewport:focus-visible {
  outline: 2px solid rgba(130, 23, 29, 0.28);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.reviews__viewport.is-dragging {
  cursor: grabbing;
}

.reviews__track {
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid #f3ede4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.review-card .icon-tile {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-color: rgba(249, 218, 178, 0.4);
  font-size: 18px;
}

.review-card .icon-tile img {
  width: 18px;
  height: 18px;
}

.review-card h3 {
  margin: 42px 0 8px;
  color: #333;
  font-size: 20px;
  font-weight: 400;
}

.review-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.review-card footer {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #f3ede4;
  color: var(--muted);
  font-size: 12px;
}

.review-card footer strong {
  color: #ffb800;
  font-size: 13px;
  letter-spacing: 2px;
}

/* FAQ */
.faq {
  min-height: 695px;
  padding: 95px 0 70px;
  overflow: hidden;
  background: var(--white);
}

.faq__heading {
  align-items: flex-end;
}

.faq__heading h2 {
  font-size: 34px;
}

.faq__helper {
  width: 350px;
}

.faq__helper p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq__controls {
  align-items: center;
}

.faq__counter {
  min-width: 44px;
  margin-left: 4px;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.faq__cards {
  display: flex;
  gap: 24px;
  margin-top: 42px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.faq__cards::-webkit-scrollbar {
  display: none;
}

.faq-card {
  display: flex;
  width: 194px;
  min-width: 0;
  height: 380px;
  padding: 30px;
  flex: 0 0 194px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    flex-basis 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    color 0.35s ease;
}

.faq-card.is-active {
  flex-basis: 410px;
  justify-content: flex-end;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.faq-card button {
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-card button span {
  display: block;
  width: 134px;
  font-size: 15px;
  line-height: 1.45;
}

.faq-card.is-active button span {
  width: 350px;
  color: var(--gold);
  font-size: 22px;
}

.faq-card__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.35s ease,
    opacity 0.25s ease;
}

.faq-card__answer > p {
  min-height: 0;
  margin: 16px 0 0;
  overflow: hidden;
  color: #eee2df;
  font-size: 13px;
  line-height: 1.7;
}

.faq-card.is-active .faq-card__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Decision */
.decision {
  min-height: 450px;
  padding: 85px 0 100px;
  text-align: center;
}

.decision .display-title {
  margin: 0;
  font-size: 58px;
  line-height: 1.28;
}

.decision p {
  max-width: 700px;
  margin: 34px auto 0;
  color: var(--muted);
  line-height: 2;
}

/* Footer */
.footer {
  padding: 0;
}

.manifesto {
  position: relative;
  min-height: 650px;
  padding: 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--wine);
  border-radius: var(--radius);
}

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

.manifesto__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 0, 3, 0.9) 0%,
    rgba(91, 13, 17, 0.75) 52%,
    rgba(91, 13, 17, 0.26) 100%
  );
}

.manifesto__top,
.manifesto__contacts,
.manifesto__bottom {
  position: relative;
  z-index: 1;
}

.manifesto__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.manifesto h2 {
  margin: 34px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: rgba(91, 13, 17, 0.78);
  border: 1px solid rgba(199, 158, 105, 0.2);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(31, 0, 3, 0.08);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.socials a img {
  width: 16px;
  height: 16px;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--wine-3);
  box-shadow: 0 12px 25px rgba(31, 0, 3, 0.22);
  transform: translateY(-3px);
}

.socials__link--whatsapp:hover,
.socials__link--whatsapp:focus-visible {
  background-color: #1cc855;
}

.socials__link--instagram:hover,
.socials__link--instagram:focus-visible {
  background-color: #ff114d;
}

.manifesto__contacts {
  display: flex;
  gap: 70px;
  margin-top: 110px;
}

.manifesto__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.manifesto__contacts span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #f4d9ba;
  background: rgba(130, 11, 20, 0.72);
  border: 1px solid rgba(199, 158, 105, 0.26);
  border-radius: 11px;
  box-shadow: 0 7px 16px rgba(31, 0, 3, 0.08);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.manifesto__contacts span img {
  width: 18px;
  height: 18px;
}

.manifesto__contacts a:hover,
.manifesto__contacts a:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.manifesto__contacts a:hover span,
.manifesto__contacts a:focus-visible span {
  background-color: var(--wine-3);
  border-color: rgba(244, 217, 186, 0.5);
  box-shadow: 0 11px 22px rgba(31, 0, 3, 0.24);
  transform: translateY(-1px);
}

.manifesto__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 120px;
}

.manifesto__bottom p {
  max-width: 610px;
  margin: 0;
  color: #efe5e3;
  font-size: 13px;
  line-height: 1.9;
}

.manifesto__bottom .button {
  min-width: 246px;
  min-height: 60px;
}

.footer__legal {
  display: grid;
  align-items: center;
  grid-template-columns: 190px 300px 1fr auto;
  min-height: 106px;
  color: #737373;
  font-size: 12px;
}

.footer__legal > * + * {
  position: relative;
}

.footer__legal > * + *::before {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 1px;
  height: 30px;
  background: #eee3d3;
  content: "";
  transform: translateY(-50%);
}

.goavante {
  display: inline-flex;
  width: 100px;
  height: 30px;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.goavante:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.goavante img {
  display: block;
  width: 100px;
  height: 30px;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  pointer-events: none;
}

.floating-whatsapp__message {
  position: relative;
  max-width: 310px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(91, 13, 17, 0.1);
  border-radius: 14px;
  color: #463a3c;
  background: #fffdfa;
  box-shadow: 0 15px 38px rgba(35, 8, 11, 0.2);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px) scale(0.98);
  transform-origin: right center;
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-whatsapp__message::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(91, 13, 17, 0.08);
  border-right: 1px solid rgba(91, 13, 17, 0.08);
  background: #fffdfa;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp__message i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #d19b4c;
  box-shadow: 0 0 0 4px rgba(209, 155, 76, 0.14);
}

.floating-whatsapp.is-online .floating-whatsapp__message i {
  background: #35b96e;
  box-shadow: 0 0 0 4px rgba(53, 185, 110, 0.14);
}

.floating-whatsapp.is-message-visible .floating-whatsapp__message,
.floating-whatsapp:hover .floating-whatsapp__message,
.floating-whatsapp:focus-within .floating-whatsapp__message {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.floating-whatsapp__button {
  width: 62px;
  pointer-events: auto;
  height: 62px;
  display: grid;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(17, 118, 56, 0.34);
  outline: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.floating-whatsapp__button img {
  width: 29px;
  height: 29px;
}

.floating-whatsapp__button:hover,
.floating-whatsapp__button:focus-visible {
  background: #20c55d;
  box-shadow: 0 19px 42px rgba(17, 118, 56, 0.42);
  transform: translateY(-3px) scale(1.03);
}

.side-nav {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: auto;
  left: 30px;
  display: flex;
  width: 48px;
  padding: 7px 5px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: linear-gradient(180deg, #650b10 0%, var(--wine) 100%);
  border: 1px solid rgba(199, 158, 105, 0.68);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(50, 6, 9, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-28px, -50%);
  transition:
    opacity 320ms ease,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 440ms;
  visibility: hidden;
}

.side-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
  transition-delay: 0s;
  visibility: visible;
}

.side-nav__link {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  outline: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.side-nav__link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-nav__link::after {
  position: absolute;
  top: 50%;
  right: auto;
  left: calc(100% + 11px);
  padding: 6px 9px;
  color: var(--white);
  background: rgba(48, 6, 9, 0.92);
  border: 1px solid rgba(199, 158, 105, 0.34);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(32, 4, 6, 0.14);
  content: attr(data-label);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-5px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.side-nav__link:hover,
.side-nav__link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.side-nav__link:hover::after,
.side-nav__link:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.side-nav__link.is-active {
  color: var(--wine);
  background: var(--gold);
  box-shadow: 0 5px 13px rgba(42, 4, 7, 0.2);
}

.side-nav__link--whatsapp:hover,
.side-nav__link--whatsapp:focus-visible {
  color: var(--wine);
  background: var(--gold-light);
}

@media (max-width: 1180px) {
  .shell {
    width: min(var(--shell), calc(100% - 64px));
  }

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

  .site-header__coverage {
    display: none;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
  }

  .about {
    grid-template-columns: 46% 1fr;
    gap: 56px;
  }

  .faq-card,
  .faq-card.is-active {
    flex-basis: calc((100vw - 64px - 96px) / 4);
  }

  .faq-card.is-active {
    flex-basis: 340px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 48px, 720px);
  }

  .hero {
    min-height: auto;
  }

  .hero__backdrop {
    background-position: 48% 25%;
  }

  .hero__backdrop > img {
    object-position: 48% 25%;
  }

  .hero__veil--left {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(29, 3, 5, 0.28),
      rgba(91, 13, 17, 0.92) 52%,
      #3a0104 100%
    );
  }

  .hero__veil--right {
    display: none;
  }

  .site-header {
    min-height: 104px;
  }

  .brand__copy strong {
    font-size: 17px;
  }

  .button--header {
    min-width: 0;
    padding: 0 18px;
  }

  .hero__layout {
    display: block;
    padding-bottom: 48px;
  }

  .hero__copy {
    width: auto;
    min-height: 610px;
    padding-top: 80px;
  }

  .hero__copy h1 {
    font-size: 48px;
  }

  .lawyer-badge {
    margin-top: 45px;
  }

  .lead-form {
    max-width: 520px;
    margin: 0 auto;
  }

  .intro,
  .services,
  .pillars,
  .faq,
  .decision {
    min-height: 0;
  }

  .intro {
    padding-block: 90px;
  }

  .intro .display-title,
  .decision .display-title {
    font-size: 48px;
  }

  .services {
    padding-top: 70px;
  }

  .services__grid {
    grid-template-columns: 260px 1fr;
  }

  .services__portrait {
    height: auto;
    min-height: 624px;
  }

  .services__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .service-facts {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 60px;
  }

  .service-facts__cta {
    grid-column: 1 / -1;
  }

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

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__photo {
    min-height: 620px;
  }

  .about__content {
    max-width: none;
    padding: 0 20px 30px;
  }

  .reviews__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .review-card {
    min-height: 320px;
  }

  .faq__cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .faq-card,
  .faq-card.is-active {
    flex-basis: min(410px, 78vw);
    scroll-snap-align: start;
  }

  .manifesto {
    padding: 56px;
  }

  .manifesto__contacts,
  .manifesto__bottom {
    gap: 28px;
  }

  .footer__legal {
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
    padding-block: 28px;
  }

  .footer__legal > * + *::before {
    display: none;
  }

  .side-nav {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 50%;
    width: auto;
    padding: 5px 7px;
    flex-direction: row;
    gap: 2px;
    transform: translate(-50%, 20px);
  }

  .side-nav.is-visible {
    transform: translate(-50%, 0);
  }

  .side-nav__link {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .side-nav__link::after {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .shell {
    width: calc(100% - 40px);
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .eyebrow--line {
    gap: 14px;
  }

  .eyebrow--line::before {
    width: 40px;
    flex-basis: 40px;
  }

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

  .brand {
    width: 194px;
    max-width: calc(100vw - 92px);
  }

  .brand img {
    width: 194px;
  }

  .button--header {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .button--header__icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .button--header__divider,
  .button--header__label {
    display: none;
  }

  .hero__backdrop {
    height: 690px;
    background-position: 51% center;
    background-size: auto 690px;
  }

  .hero__backdrop > img {
    object-position: 51% center;
  }

  .hero__copy {
    min-height: 606px;
    padding-top: 340px;
  }

  .hero__copy .eyebrow {
    display: none;
  }

  .hero__copy h1 {
    max-width: 355px;
    margin: 0 0 18px;
    font-size: clamp(34px, 10.7vw, 43px);
    line-height: 1.1;
  }

  .hero__description {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.7;
  }

  .lawyer-badge {
    display: none;
  }

  .lead-form {
    min-height: 0;
    margin-top: 18px;
    padding: 28px 22px 20px;
    box-shadow:
      5px 0 0 var(--gold),
      var(--shadow);
  }

  .lead-form__eyebrow {
    margin-bottom: 26px;
    font-size: 12px;
  }

  .lead-form__eyebrow::after {
    margin-top: 14px;
  }

  .lead-form h2 {
    font-size: 34px;
  }

  .intro {
    padding-block: 72px;
  }

  .intro .display-title,
  .decision .display-title {
    margin-top: 46px;
    font-size: 39px;
    line-height: 1.12;
  }

  .intro .display-title br,
  .decision .display-title br,
  .reviews h2 br {
    display: none;
  }

  .intro__text {
    line-height: 1.8;
  }

  .intro__qualities {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }

  .quality {
    display: grid;
    grid-template-columns: 50px 1fr;
    text-align: left;
  }

  .quality + .quality::before {
    display: none;
  }

  .quality .icon-tile {
    width: 50px;
    height: 50px;
  }

  .section-heading--split,
  .pillars__heading,
  .faq__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .section-heading h2,
  .pillars__heading h2,
  .faq__heading h2,
  .reviews h2 {
    font-size: 28px;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .services .section-heading--split > .carousel-controls {
    display: none;
  }

  .services__grid {
    display: flex;
    flex-direction: column;
  }

  .services__portrait {
    width: 100%;
    height: 450px;
    min-height: 0;
  }

  .service-card--featured {
    grid-column: auto;
    padding: 24px;
  }

  .service-card--featured .icon-tile {
    width: 46px;
    height: 46px;
  }

  .services__cards {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services__cards::-webkit-scrollbar {
    display: none;
  }

  .services__cards .service-card {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 280px;
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-card__overlay {
    padding: 26px 24px 0;
  }

  .service-card__whatsapp {
    margin-inline: -24px;
  }

  .service-facts {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-facts > div + div::before {
    top: -14px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .pillars {
    padding-block: 72px;
  }

  .pillars__heading > p {
    max-width: none;
  }

  .pillars__grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pillar-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }

  .about-reviews {
    padding-block: 72px;
  }

  .about {
    padding: 14px;
    gap: 36px;
  }

  .about__photo {
    min-height: 510px;
  }

  .about__signature {
    min-height: 130px;
    padding: 22px;
  }

  .about__signature strong {
    font-size: 14px;
  }

  .about__content {
    padding: 0 10px 24px;
  }

  .about__content .display-title {
    font-size: 42px;
  }

  .reviews {
    padding-top: 82px;
  }

  .reviews h2 {
    margin-top: 34px;
  }

  .reviews__track {
    grid-auto-columns: min(82vw, 340px);
    gap: 16px;
  }

  .review-card {
    min-width: 0;
  }

  .faq {
    padding-block: 72px;
  }

  .faq__helper {
    width: auto;
  }

  .faq__helper .carousel-controls {
    display: flex;
  }

  .faq__controls .circle-button {
    display: none;
  }

  .faq__counter {
    margin-left: 0;
  }

  .faq__cards {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 34px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .faq__cards::-webkit-scrollbar {
    display: none;
  }

  .faq-card,
  .faq-card.is-active {
    width: auto;
    height: auto;
    min-height: 250px;
    padding: 26px 24px;
    flex: 0 0 calc(100% - 32px);
    justify-content: flex-start;
    color: var(--white);
    background: var(--wine);
    border-color: var(--wine);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .faq-card button span,
  .faq-card.is-active button span {
    width: 100%;
    color: var(--gold);
    font-size: 19px;
    line-height: 1.4;
  }

  .faq-card button {
    cursor: default;
    pointer-events: none;
  }

  .faq-card__answer {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .faq-card__answer > p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .decision {
    padding-block: 80px;
  }

  .decision p {
    line-height: 1.8;
  }

  .footer {
    padding-bottom: 0;
  }

  .footer .shell {
    width: 100%;
  }

  .manifesto {
    min-height: 650px;
    padding: 46px 24px;
    border-radius: 0;
    background-position: 64% center;
  }

  .manifesto__top {
    gap: 30px;
    flex-direction: column;
  }

  .manifesto h2 {
    font-size: 21px;
  }

  .socials {
    align-self: flex-end;
  }

  .manifesto__contacts {
    gap: 18px;
    margin-top: 52px;
    flex-direction: column;
    font-size: 12px;
  }

  .manifesto__bottom {
    align-items: stretch;
    gap: 36px;
    margin-top: 54px;
    flex-direction: column;
  }

  .manifesto__bottom .button {
    width: 100%;
  }

  .footer__legal {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 20px 0;
    text-align: center;
  }

  .whatsapp-float {
    display: none;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 74px;
    gap: 8px;
  }

  .floating-whatsapp__message {
    max-width: min(250px, calc(100vw - 104px));
    padding: 11px 13px;
    font-size: 10px;
  }

  .floating-whatsapp__message::after {
    right: -6px;
  }

  .floating-whatsapp__button {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
}

/* Página pública de Política de Privacidade */
.privacy-page {
  background: #f7f2eb;
}

.privacy-site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(227, 194, 143, 0.24);
  background: linear-gradient(115deg,var(--theme-brand-primary-deep,#39070b),var(--wine) 64%,var(--theme-brand-primary-dark,#42080c));
}

.privacy-site-header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-site-header .brand {
  display: block;
}

.privacy-back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(227, 194, 143, 0.45);
  border-radius: 999px;
  color: #f4e9dc;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.privacy-back-link:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 158, 105, 0.22), transparent 30%),
    linear-gradient(130deg,var(--theme-brand-primary-deep,#3b070b) 0%,var(--wine) 58%,color-mix(in srgb,var(--theme-brand-primary-deep,#330509) 88%,#000) 100%);
}

.privacy-hero::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(227, 194, 143, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(227, 194, 143, 0.025), 0 0 0 110px rgba(227, 194, 143, 0.018);
  content: "";
}

.privacy-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 490px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: center;
  gap: 90px;
  padding-block: 72px;
}

.privacy-hero__copy {
  max-width: 760px;
}

.privacy-hero h1 {
  margin: 24px 0 20px;
  color: #fffaf4;
  font: italic 600 clamp(54px, 6vw, 82px)/0.98 var(--font-display);
  letter-spacing: -0.02em;
}

.privacy-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.privacy-hero__copy > span {
  display: inline-block;
  margin-top: 26px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.privacy-controller-card {
  padding: 30px;
  border: 1px solid rgba(227, 194, 143, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(22, 1, 4, 0.22);
  backdrop-filter: blur(10px);
}

.privacy-controller-card span,
.privacy-contact-card span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.privacy-controller-card strong {
  display: block;
  margin: 14px 0 8px;
  color: #fffaf3;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.privacy-controller-card a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content-section {
  padding: 84px 0 100px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 74px;
}

.privacy-index {
  position: sticky;
  top: 28px;
}

.privacy-index > div {
  padding: 24px;
  border: 1px solid #e4d6c7;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 13px 35px rgba(79, 37, 38, 0.06);
}

.privacy-index > div > span {
  display: block;
  margin-bottom: 15px;
  color: #a87937;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.privacy-index nav {
  display: grid;
  gap: 2px;
}

.privacy-index a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(231, 216, 196, 0.72);
  color: #625557;
  font-size: 10px;
  line-height: 1.45;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.privacy-index a:last-child {
  border-bottom: 0;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  padding-left: 5px;
  color: var(--wine);
}

.privacy-document {
  overflow: hidden;
  border: 1px solid #e4d6c7;
  border-radius: 24px;
  background: #fffdfa;
  box-shadow: 0 22px 60px rgba(72, 26, 29, 0.08);
}

.privacy-policy-section {
  scroll-margin-top: 32px;
  padding: 42px 50px;
  border-bottom: 1px solid #eadfd3;
}

.privacy-policy-section h2 {
  margin: 0 0 20px;
  color: var(--wine);
  font: 600 27px/1.2 var(--font-display);
}

.privacy-policy-section p {
  margin: 0;
  color: #51484a;
  font-size: 13px;
  line-height: 1.95;
}

.privacy-policy-section p + p {
  margin-top: 15px;
}

.privacy-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin: 30px;
  padding: 28px 30px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(120deg, #4b090f, #6d1019);
}

.privacy-contact-card h2 {
  margin: 7px 0 4px;
  color: #fffaf3;
  font: 600 28px/1.15 var(--font-display);
}

.privacy-contact-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.privacy-contact-card > a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(227, 194, 143, 0.48);
  border-radius: 10px;
  color: #f6dfbc;
  font-size: 11px;
  font-weight: 600;
}

.privacy-page-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #350609;
}

.privacy-page-footer .shell,
.privacy-page-footer .shell > div,
.privacy-page-footer nav {
  display: flex;
  align-items: center;
}

.privacy-page-footer .shell {
  justify-content: space-between;
  gap: 30px;
}

.privacy-page-footer .shell > div {
  gap: 28px;
}

.privacy-page-footer img {
  width: 230px;
}

.privacy-page-footer p {
  margin: 0;
  font-size: 10px;
}

.privacy-page-footer nav {
  gap: 24px;
  font-size: 11px;
}

.privacy-page-footer a:hover {
  color: var(--gold-light);
}

@media (max-width: 1000px) {
  .privacy-hero__inner {
    grid-template-columns: 1fr 310px;
    gap: 45px;
  }

  .privacy-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 35px;
  }

  .privacy-policy-section {
    padding: 36px;
  }
}

@media (max-width: 760px) {
  .privacy-site-header__inner {
    min-height: 88px;
  }

  .privacy-site-header .brand img {
    width: 210px;
  }

  .privacy-back-link {
    padding-inline: 14px;
  }

  .privacy-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 58px;
  }

  .privacy-hero h1 {
    font-size: 52px;
  }

  .privacy-controller-card {
    max-width: 520px;
  }

  .privacy-content-section {
    padding-block: 54px 70px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-index {
    position: static;
  }

  .privacy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .privacy-contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-page-footer .shell,
  .privacy-page-footer .shell > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .privacy-site-header .brand img {
    width: 178px;
  }

  .privacy-back-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .privacy-back-link span {
    display: none;
  }

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

  .privacy-index nav {
    grid-template-columns: 1fr;
  }

  .privacy-policy-section {
    padding: 30px 24px;
  }

  .privacy-policy-section h2 {
    font-size: 24px;
  }

  .privacy-contact-card {
    margin: 20px;
    padding: 24px;
  }

  .privacy-contact-card > a {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .privacy-page-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .lead-form .button--gold {
    animation: none;
  }

  .contact-success-modal[open] {
    animation: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-revealed {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }
}

/* Entrada suave do conteúdo durante a rolagem. A propriedade `translate`
   mantém intactas as animações de hover que já usam `transform`. */
.reveal-on-scroll {
  --reveal-distance: 28px;
  opacity: 0;
  translate: 0 var(--reveal-distance);
  transition:
    opacity 680ms ease,
    translate 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.reveal-on-scroll--image {
  --reveal-distance: 36px;
  transition-duration: 820ms;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (max-width: 640px) {
  .reveal-on-scroll {
    --reveal-distance: 18px;
    transition-duration: 560ms;
  }

  .reveal-on-scroll--image {
    --reveal-distance: 24px;
    transition-duration: 680ms;
  }
}
