@charset "UTF-8";
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: oklch(0.99 0.005 80);
  --surface: #ffffff;
  --surface-2: oklch(0.97 0.005 80);
  --surface-3: oklch(0.94 0.006 80);
  --ink: oklch(0.18 0.01 80);
  --ink-2: oklch(0.38 0.01 80);
  --ink-3: oklch(0.55 0.01 80);
  --line: oklch(0.91 0.005 80);
  --line-2: oklch(0.86 0.006 80);
  --brand: oklch(0.62 0.16 35);
  --brand-ink: oklch(0.42 0.14 35);
  --brand-soft: oklch(0.96 0.03 35);
  --accent: oklch(0.55 0.07 155);
  --accent-soft:oklch(0.96 0.025 155);
  --gold: oklch(0.78 0.13 75);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill:999px;
  --shadow-sm: 0 1px 2px rgba(20,16,12,.04), 0 1px 1px rgba(20,16,12,.03);
  --shadow: 0 4px 14px rgba(20,16,12,.06), 0 2px 4px rgba(20,16,12,.04);
  --shadow-lg: 0 18px 40px rgba(20,16,12,.10), 0 6px 14px rgba(20,16,12,.05);
  --shadow-pop: 0 24px 60px rgba(20,16,12,.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Inter Tight", sans-serif;
  --font-serif: "DM Serif Display", serif;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .brand {
  color: var(--ink);
}
.site-header.is-scrolled .nav__link {
  color: var(--ink-2);
}
.site-header.is-scrolled .nav__link:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.site-header.is-scrolled .btn-ghost {
  color: var(--ink-2);
}
.site-header.is-scrolled .btn-ghost:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.site-header.is-scrolled .btn-outline {
  border-color: var(--line-2);
  background: #fff;
  color: var(--ink);
}
.site-header.is-scrolled .btn-outline:hover {
  border-color: var(--ink);
}
.site-header.is-scrolled .btn-menu {
  border-color: var(--line-2);
  background: #fff;
  color: var(--ink);
}
.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-solid .brand,
.site-header.is-solid .nav__link,
.site-header.is-solid .btn-ghost {
  color: var(--ink);
}
.site-header.is-solid .nav__link {
  color: var(--ink-2);
}
.site-header.is-solid .nav__link:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.site-header.is-solid .btn-outline {
  border-color: var(--line-2);
  background: #fff;
  color: var(--ink);
}
.site-header.is-solid .btn-outline:hover {
  border-color: var(--ink);
}
.site-header.is-solid .btn-menu {
  border-color: var(--line-2);
  background: #fff;
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
}
.brand__mark svg {
  width: 18px;
  height: 18px;
}
.brand__logo {
  max-width: 230px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nav__link.is-active {
  color: var(--ink);
  background: var(--surface-2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-drop {
  position: relative;
}
@media (max-width: 880px) {
  .lang-drop {
    display: none;
  }
}
.lang-drop__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 6px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  color: rgba(255, 255, 255, 0.85);
}
.lang-drop__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lang-drop.is-open .lang-drop__btn {
  background: rgba(255, 255, 255, 0.12);
}
.lang-drop__flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lang-drop__flag svg {
  width: 20px;
  height: 14px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.lang-drop__code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.lang-drop__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  opacity: 0.7;
  flex-shrink: 0;
}
.lang-drop.is-open .lang-drop__chevron {
  transform: rotate(180deg);
}
.lang-drop__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  min-width: 148px;
  padding: 4px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.lang-drop.is-open .lang-drop__menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-drop__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  white-space: nowrap;
}
.lang-drop__item:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.lang-drop__item.is-active {
  color: var(--brand);
  font-weight: 600;
}

.site-header.is-solid .lang-drop__btn,
.site-header.is-scrolled .lang-drop__btn {
  color: var(--ink-2);
}
.site-header.is-solid .lang-drop__btn:hover,
.site-header.is-scrolled .lang-drop__btn:hover {
  background: var(--surface-2);
}
.site-header.is-solid .lang-drop.is-open .lang-drop__btn,
.site-header.is-scrolled .lang-drop.is-open .lang-drop__btn {
  background: var(--surface-2);
}

.profile-dropdown {
  position: relative;
}
.profile-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s var(--ease), color 0.2s;
  cursor: pointer;
}
.profile-dropdown__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.profile-dropdown__chevron {
  opacity: 0.7;
  transition: transform 0.2s var(--ease);
}
.profile-dropdown.is-open .profile-dropdown__chevron {
  transform: rotate(180deg);
}
.profile-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 500;
  animation: dropdownIn 0.15s var(--ease-out) both;
}
.profile-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.profile-dropdown__item:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.profile-dropdown__item--danger {
  color: #dc2626;
}
.profile-dropdown__item--danger:hover {
  background: #fef2f2;
  color: #b91c1c;
}
.profile-dropdown__item svg {
  flex-shrink: 0;
}
.profile-dropdown__sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 4px 0;
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header.is-solid .profile-dropdown__btn,
.site-header.is-scrolled .profile-dropdown__btn {
  color: var(--ink-2);
}
.site-header.is-solid .profile-dropdown__btn:hover,
.site-header.is-scrolled .profile-dropdown__btn:hover {
  background: var(--surface-2);
  color: var(--ink);
}

@media (max-width: 880px) {
  .profile-dropdown {
    display: none;
  }
}
.btn-ghost {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all 0.2s var(--ease);
}
.btn-outline:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-menu {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn-menu svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 880px) {
  .nav,
  .header-cta .btn-ghost,
  .header-cta .btn-outline {
    display: none;
  }
  .btn-menu {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.mobile-menu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.is-open {
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__scrim {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  color: var(--ink);
}
.mobile-menu__close svg {
  width: 18px;
  height: 18px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  overflow-y: auto;
  flex: 1;
}
.mobile-menu__nav a {
  padding: 11px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.mobile-menu__nav a:hover {
  background: var(--surface-2);
}
.mobile-menu__nav-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 16px 16px 6px;
  margin: 0;
}
.mobile-menu__nav-label:first-child {
  padding-top: 4px;
}
.mobile-menu__lang {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.mobile-menu__lang .lang-drop {
  display: flex;
  width: 100%;
}
.mobile-menu__lang .lang-drop__btn {
  width: 100%;
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  justify-content: space-between;
}
.mobile-menu__lang .lang-drop__btn:hover {
  background: var(--surface-2);
}
.mobile-menu__lang .lang-drop.is-open .mobile-menu__lang .lang-drop__btn {
  background: var(--surface-2);
  border-color: var(--brand);
}
.mobile-menu__lang .lang-drop__menu {
  left: 0;
  right: 0;
  top: auto;
  bottom: calc(100% + 6px);
}
.mobile-menu__lang .lang-drop__code {
  color: var(--ink-2);
}
.mobile-menu__lang .lang-drop__chevron {
  color: var(--ink-3);
  opacity: 1;
}
.mobile-menu__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu__footer-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.mobile-menu__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #25D366;
}
.mobile-menu__whatsapp:hover {
  opacity: 0.8;
}
.mobile-menu__socials {
  display: flex;
  gap: 4px;
}
.mobile-menu__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu__socials a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}
.section {
  padding: 80px 0;
  position: relative;
}
.section--alt {
  background: var(--surface-2);
}
@media (max-width: 880px) {
  .section {
    padding: 56px 0;
  }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head__title {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
}
.section-head__sub {
  font-size: 16px;
  color: var(--ink-2);
  margin-top: 8px;
  max-width: 560px;
}
.section-head__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.section-head__link:hover {
  gap: 10px;
}
.section-head__link svg {
  width: 14px;
  height: 14px;
}

.page-hero {
  position: relative;
  min-height: 320px;
  padding: 120px 0 56px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.page-hero__crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.page-hero__crumbs a {
  transition: color 0.2s var(--ease);
}
.page-hero__crumbs a:hover {
  color: var(--brand);
}
.page-hero__crumbs .sep {
  opacity: 0.5;
}
.page-hero__sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 640px;
}
.page-hero--image {
  min-height: 480px;
  padding: 160px 0 80px;
  color: #fff;
  border-bottom: none;
}
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-img, linear-gradient(135deg, #2a2218, #4a3a26));
  background-size: cover;
  background-position: center;
}
.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.55) 0%, rgba(20, 16, 12, 0.25) 50%, rgba(20, 16, 12, 0.6) 100%);
}
.page-hero--image .page-hero__crumbs {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero--image .page-hero__crumbs a:hover {
  color: var(--gold);
}
.page-hero--image h1 {
  color: #fff;
}
.page-hero--image h1 em {
  color: var(--gold);
}
.page-hero--image .page-hero__sub {
  color: rgba(255, 255, 255, 0.85);
}

.content-section {
  padding: 64px 0;
}
.content-section--dark {
  background: var(--ink);
  color: #fff;
}
.content-section--alt {
  background: var(--surface-2);
}
@media (max-width: 880px) {
  .content-section {
    padding: 48px 0;
  }
}

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content-narrow h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 32px 0 16px;
}
.content-narrow h2:first-child {
  margin-top: 0;
}
.content-narrow h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.content-narrow p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.content-narrow ul, .content-narrow ol {
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.7;
}
.content-narrow li {
  margin-bottom: 6px;
}

.badge {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
}
.badge--brand {
  background: var(--brand);
  color: #fff;
}
.badge--accent {
  background: var(--accent);
  color: #fff;
}
.badge--dark {
  background: rgba(20, 16, 12, 0.85);
  color: #fff;
}
.badge--gold {
  background: var(--gold);
  color: oklch(0.25 0.06 75);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--brand {
  background: var(--brand);
  color: #fff;
}
.btn--brand:hover {
  background: var(--brand-ink);
  transform: translateY(-1px);
}
.btn--outline {
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0;
}

.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, oklch(0.62 0.16 35/0.35), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
@media (max-width: 720px) {
  .form-card {
    padding: 24px;
  }
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.form-grid--full {
  grid-template-columns: 1fr;
}
@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--span2 {
  grid-column: span 2;
}
@media (max-width: 720px) {
  .form-field--span2 {
    grid-column: span 1;
  }
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}

.form-help {
  font-size: 12px;
  color: var(--ink-3);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 16, 12, 0.06);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-grid .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1;
  }
}

.footer-brand p {
  color: var(--ink-3);
  font-size: 14px;
  margin-top: 12px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--ink);
}
.footer-col li {
  color: var(--ink-3);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 15px;
  height: 15px;
}

.fullpage-state {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.fullpage-state__inner {
  max-width: 520px;
}
.fullpage-state__code {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 8px;
}
.fullpage-state h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.fullpage-state p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal--stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal--stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.reveal--stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.reveal--stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.25s;
}
.reveal--stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.3s;
}
.reveal--stagger.is-visible > *:nth-child(7) {
  transition-delay: 0.35s;
}
.reveal--stagger.is-visible > *:nth-child(8) {
  transition-delay: 0.4s;
}

.prop-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.prop-card:hover .prop-card__media img {
  transform: scale(1.06);
}
.prop-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-3);
}
.prop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.prop-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.prop-card__badges .badge {
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(15, 12, 8, 0.52);
  color: #fff;
  backdrop-filter: blur(4px);
}
.prop-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(6px);
}
.prop-card__fav:hover {
  transform: scale(1.1);
}
.prop-card__fav svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.prop-card__fav.is-active {
  background: var(--brand);
}
.prop-card__fav.is-active svg {
  color: #fff;
  fill: #fff;
}
.prop-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.prop-card__loc {
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.prop-card__loc svg {
  width: 12px;
  height: 12px;
}
.prop-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-card__title a {
  color: inherit;
}
.prop-card__title a:hover {
  color: var(--brand);
}
.prop-card__specs {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.prop-card__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.prop-card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--ink-3);
  flex-shrink: 0;
}
.prop-card__spec b {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.prop-card__spec small {
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.prop-card__spec--arealote {
  display: none;
}
.prop-card__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.prop-card__price {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.prop-card__price-old {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  text-decoration: line-through;
  letter-spacing: 0;
}
.prop-card__price strong {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.prop-card__price small {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.prop-card__cond {
  font-size: 12px;
  color: var(--ink-3);
}

.banner-anunciar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.banner-anunciar:hover .banner-anunciar__photo img {
  transform: scale(1.04);
}
.banner-anunciar__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.banner-anunciar__content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.banner-anunciar__content p {
  color: var(--ink-2);
  line-height: 1.65;
}
.banner-anunciar__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-ink);
  background: var(--brand-soft);
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.banner-anunciar__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.banner-anunciar__photo {
  position: relative;
  overflow: hidden;
}
.banner-anunciar__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
@media (max-width: 880px) {
  .banner-anunciar {
    grid-template-columns: 1fr;
  }
  .banner-anunciar__photo {
    aspect-ratio: 16/9;
  }
  .banner-anunciar__content {
    padding: 32px;
  }
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1100px) {
  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .filters-grid {
    grid-template-columns: 1fr;
  }
}

.filters-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filters-col h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.filters-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.filters-col a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.filters-col a:hover {
  color: var(--brand);
  padding-left: 6px;
}

.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease), filter 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  filter: brightness(1.12);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.social-share {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.social-share__label {
  font-size: 12px;
  color: var(--ink-3);
}
.social-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--surface-2);
  color: var(--ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s;
  text-decoration: none;
}
.social-share__btn:hover {
  transform: scale(1.1);
}
.social-share__btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
}
.social-share__btn--facebook:hover {
  background: #1877F2;
  color: #fff;
}
.social-share__btn--twitter:hover {
  background: #000;
  color: #fff;
}
.social-share__btn--copy:hover {
  background: var(--brand);
  color: #fff;
}

.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  animation: lgpdIn 0.35s var(--ease);
}
.lgpd-banner[hidden] {
  display: none;
}
.lgpd-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lgpd-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
}
.lgpd-banner__text a {
  color: var(--brand);
  text-decoration: underline;
}
.lgpd-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .lgpd-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .lgpd-banner__actions {
    justify-content: stretch;
  }
  .lgpd-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@keyframes lgpdIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  flex: 1;
  font-style: italic;
}
.testimonial-card__text::before {
  content: "“";
}
.testimonial-card__text::after {
  content: "”";
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-card__author span {
  font-size: 12px;
  color: var(--ink-3);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.prop-card__cmp {
  position: absolute;
  top: 12px;
  right: 56px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.prop-card__cmp:hover {
  transform: scale(1.1);
}
.prop-card__cmp svg {
  width: 14px;
  height: 14px;
  transition: all 0.25s var(--ease);
}
.prop-card__cmp.is-active {
  background: var(--brand);
  color: #fff;
}

.comparador-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: #1a1a2e;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.comparador-bar.is-visible {
  transform: translateY(0);
}
.comparador-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}
@media (max-width: 640px) {
  .comparador-bar__inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
  }
}
.comparador-bar__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.45;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .comparador-bar__label {
    display: none;
  }
}
.comparador-bar__slots {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.comparador-bar__slots::-webkit-scrollbar {
  display: none;
}
.comparador-bar__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 640px) {
  .comparador-bar__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
.comparador-bar__count {
  font-size: 13px;
  opacity: 0.55;
  white-space: nowrap;
  margin-right: 4px;
}

.cmp-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 10px 6px 6px;
  width: 200px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cmp-slot:hover {
  background: rgba(255, 255, 255, 0.12);
}
.cmp-slot img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}
.cmp-slot__info {
  min-width: 0;
  flex: 1;
}
.cmp-slot__info strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.cmp-slot__info span {
  display: block;
  font-size: 11px;
  opacity: 0.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.cmp-slot__remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0 0 0 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.cmp-slot__remove:hover {
  color: #fff;
}

.comparador-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.comparador-modal[hidden] {
  display: none;
}
.comparador-modal__panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.comparador-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface-2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}
.comparador-modal__close:hover {
  background: var(--line);
}
.comparador-modal__title {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 24px 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.comparador-modal__scroll {
  overflow: auto;
  padding: 16px;
  flex: 1;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cmp-table th, .cmp-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  min-width: 160px;
}
.cmp-table th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 13px;
}
.cmp-table__label {
  color: var(--ink-3);
  font-weight: 600;
  min-width: 100px;
}
.cmp-table a {
  color: var(--brand);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease), filter 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  filter: brightness(1.12);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/*# sourceMappingURL=style.css.map */
