:root {
  --ink: #11100d;
  --ink-2: #1c1a16;
  --ink-3: #29251f;

  --paper: #f8f3ea;
  --paper-2: #efe7d8;
  --paper-3: #e5dac8;
  --white: #ffffff;

  --gold: #b9935a;
  --gold-2: #d9bb82;
  --gold-3: #f0dca8;
  --teal: #173b3f;
  --wine: #553234;

  --muted: #756f65;
  --muted-dark: #aaa094;

  --line: rgba(17, 16, 13, 0.12);
  --line-strong: rgba(17, 16, 13, 0.18);
  --line-light: rgba(248, 243, 234, 0.14);

  --success: #25d366;

  --shadow-soft: 0 28px 90px rgba(17, 16, 13, 0.13);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 22px 60px rgba(185, 147, 90, 0.25);

  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1180px;
  --header-height: 88px;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(185, 147, 90, 0.13), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(185, 147, 90, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 234, 0.72);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(17, 16, 13, 0.08);
}

.nav-shell {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(17, 16, 13, 0.12);
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 50px rgba(17, 16, 13, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo-image {
  width: auto;
  max-width: 184px;
  height: 43px;
  object-fit: contain;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 220, 168, 0.4), transparent 34%),
    linear-gradient(145deg, #11100d, #2b261f);
  color: var(--gold-3);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(17, 16, 13, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 16, 13, 0.06);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding-inline: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 16, 13, 0.16);
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: #000;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 16, 13, 0.2);
}

.nav-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--paper);
  transition: transform 230ms ease, top 230ms ease;
}

.nav-toggle span:first-child {
  top: 18px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle.is-open span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

main {
  min-height: 60vh;
}

.section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.section-tight {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 147, 90, 0.22), transparent 34%),
    linear-gradient(145deg, #11100d, #211d17);
  color: var(--paper);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-dark p,
.section-dark .lead {
  color: rgba(248, 243, 234, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.2rem, 7.2vw, 7.8rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
}

h3 {
  line-height: 1.15;
  font-size: clamp(1.12rem, 1.65vw, 1.46rem);
  letter-spacing: -0.04em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.34rem);
  line-height: 1.76;
}

.text-muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 74px) 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -22vw;
  right: -22vw;
  width: 64vw;
  height: 64vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 147, 90, 0.28), rgba(185, 147, 90, 0.06) 44%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(0deg, rgba(239, 231, 216, 0.9), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy .lead {
  max-width: 700px;
  margin-top: 26px;
}

.hero-actions {
  margin-top: 34px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.025em;
  transition:
    transform 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.btn-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 16, 13, 0.18);
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(17, 16, 13, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(17, 16, 13, 0.1);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
}

.btn-light:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.btn-outline-light {
  color: var(--paper);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.85rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-card {
  position: relative;
  min-height: 650px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 187, 130, 0.3), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(17, 16, 13, 0.98), rgba(38, 34, 28, 0.96));
  box-shadow: var(--shadow-dark);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(248, 243, 234, 0.13);
  border-radius: 28px;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(248, 243, 234, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 74px;
}

.visual-placeholder + .route-panel,
.visual-image + .route-panel {
  margin-top: 22px;
}

.route-item {
  padding: 22px;
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.route-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(217, 187, 130, 0.32);
}

.route-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-item strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.3rem, 2.1vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.route-item p {
  margin-top: 9px;
  color: rgba(248, 243, 234, 0.62);
}

.card-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.metric {
  padding-top: 14px;
  border-top: 1px solid rgba(248, 243, 234, 0.14);
}

.metric strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(248, 243, 234, 0.55);
  font-size: 0.76rem;
}

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading .lead {
  margin-top: 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.lux-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.lux-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(185, 147, 90, 0.25);
  box-shadow: var(--shadow-soft);
}

.lux-card .number {
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lux-card h3 {
  margin-bottom: 14px;
}

.lux-card p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0;
}

.service-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 220ms ease;
}

.service-link:last-child {
  border-bottom: 1px solid var(--line);
}

.service-link strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(1.28rem, 2vw, 1.86rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.service-link span {
  display: block;
  max-width: 610px;
  color: var(--muted);
}

.service-link i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-style: normal;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-link:hover {
  padding-left: 14px;
}

.service-link:hover i {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-35deg);
}

.dark-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 187, 130, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.process-step {
  min-height: 232px;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.process-step small {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-top: 38px;
  margin-bottom: 12px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 187, 130, 0.24), transparent 32%),
    linear-gradient(135deg, var(--ink), #2b261d);
  box-shadow: var(--shadow-dark);
}

.cta-band h2 {
  max-width: 780px;
  color: var(--paper);
}

.cta-band p {
  max-width: 710px;
  margin-top: 18px;
  color: rgba(248, 243, 234, 0.7);
}

.page-hero {
  padding: calc(var(--header-height) + 90px) 0 76px;
}

.page-hero .lead {
  max-width: 820px;
  margin-top: 24px;
}

.page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 20px 70px rgba(17, 16, 13, 0.08);
}

.sticky-card h3 {
  margin-bottom: 14px;
}

.sticky-card p {
  color: var(--muted);
}

.content-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.34);
}

.content-block + .content-block {
  margin-top: 18px;
}

.content-block h2,
.content-block h3 {
  margin-bottom: 16px;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.visual-image,
.visual-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius-lg);
}

.visual-image {
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 20px 62px rgba(17, 16, 13, 0.1);
}

.visual-placeholder {
  position: relative;
  display: grid;
  align-content: end;
  gap: 9px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(17, 16, 13, 0.13);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(23, 59, 63, 0.12), rgba(185, 147, 90, 0.12)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18));
}

.visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(17, 16, 13, 0.1);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.visual-placeholder small,
.visual-placeholder strong,
.visual-placeholder span {
  position: relative;
  z-index: 1;
}

.visual-placeholder small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-placeholder strong {
  max-width: 420px;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.visual-placeholder span {
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.visual-placeholder.is-dark {
  border-color: rgba(248, 243, 234, 0.14);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(23, 59, 63, 0.5), rgba(85, 50, 52, 0.34)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.visual-placeholder.is-dark::before {
  border-color: rgba(248, 243, 234, 0.12);
}

.visual-placeholder.is-dark span {
  color: rgba(248, 243, 234, 0.62);
}

.visual-placeholder.is-compact,
.visual-image.is-compact {
  min-height: 190px;
}

.visual-placeholder.is-portrait,
.visual-image.is-portrait {
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.visual-placeholder.is-inline,
.visual-image.is-inline {
  margin-bottom: 22px;
}

.hero-card .visual-placeholder,
.hero-card .visual-image {
  margin-top: 30px;
}

.sticky-card .visual-placeholder,
.sticky-card .visual-image,
.contact-side .visual-placeholder,
.contact-side .visual-image {
  margin-top: 24px;
}

.contact-side-card > .visual-placeholder:first-child,
.contact-side-card > .visual-image:first-child {
  margin-top: 0;
}

.founder-card {
  min-height: auto;
}

.site-footer {
  padding: 78px 0 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 147, 90, 0.16), transparent 28%),
    linear-gradient(145deg, #11100d, #1b1814);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo .brand-mark {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.footer-logo .brand-logo-image {
  max-width: 190px;
}

.footer-logo .brand-text strong {
  color: var(--paper);
}

.footer-logo .brand-text small,
.site-footer p {
  color: rgba(248, 243, 234, 0.62);
}

.footer-brand p {
  max-width: 400px;
  margin-top: 22px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(248, 243, 234, 0.68);
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--gold-2);
  transform: translateX(3px);
}

.footer-note {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(248, 243, 234, 0.52);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(248, 243, 234, 0.62);
}

.footer-bottom a:hover {
  color: var(--gold-2);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 110;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
    #25d366;
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.32),
    0 14px 34px rgba(17, 16, 13, 0.2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 26px 56px rgba(37, 211, 102, 0.38),
    0 16px 36px rgba(17, 16, 13, 0.22);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.travelaux-chatbot {
  position: fixed;
  right: 22px;
  bottom: calc(96px + env(safe-area-inset-bottom));
  z-index: 109;
  font-family: var(--font-body);
}

.chatbot-launcher {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(248, 243, 234, 0.14);
  border-radius: 999px;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 187, 130, 0.24), transparent 34%),
    rgba(17, 16, 13, 0.94);
  box-shadow: 0 20px 60px rgba(17, 16, 13, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.chatbot-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(17, 16, 13, 0.28);
}

.chatbot-launcher-glow {
  position: absolute;
  inset: -80px auto auto -80px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(217, 187, 130, 0.18);
  pointer-events: none;
}

.chatbot-launcher-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-3), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.chatbot-launcher-text {
  position: relative;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100svh - 126px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 234, 0.14);
  border-radius: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 187, 130, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(17, 16, 13, 0.98), rgba(36, 32, 26, 0.98));
  box-shadow: var(--shadow-dark);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 240ms ease, transform 240ms ease;
}

.chatbot-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(248, 243, 234, 0.1);
}

.chatbot-head strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.chatbot-head span {
  display: block;
  max-width: 270px;
  margin-top: 4px;
  color: rgba(248, 243, 234, 0.58);
  font-size: 0.8rem;
  line-height: 1.45;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.35rem;
  line-height: 1;
  transition: background 200ms ease, transform 200ms ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.chatbot-body {
  min-height: 0;
  flex: 1 1 240px;
  overflow-y: auto;
  padding: 18px 18px 8px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.chatbot-body::-webkit-scrollbar {
  width: 7px;
}

.chatbot-body::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.18);
}

.chatbot-message {
  display: flex;
  margin-bottom: 12px;
}

.chatbot-message p {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chatbot-message.bot {
  justify-content: flex-start;
}

.chatbot-message.bot p {
  color: rgba(248, 243, 234, 0.82);
  background: rgba(255, 255, 255, 0.075);
  border-top-left-radius: 6px;
}

.chatbot-message.user {
  justify-content: flex-end;
}

.chatbot-message.user p {
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-3), var(--gold-2));
  border-top-right-radius: 6px;
  font-weight: 800;
}

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 16px;
  transition: opacity 200ms ease;
}

.chatbot-options.is-answered {
  opacity: 0.42;
}

.chatbot-option {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 999px;
  color: rgba(248, 243, 234, 0.84);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.chatbot-option:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 187, 130, 0.3);
  transform: translateY(-2px);
}

.chatbot-option:disabled {
  cursor: default;
  transform: none;
}

.chatbot-contact,
.chatbot-summary {
  flex: 0 0 auto;
  max-height: min(360px, 44svh);
  overflow-y: auto;
  padding: 0 18px 18px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.chatbot-contact label {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

.chatbot-contact label span {
  color: rgba(248, 243, 234, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.chatbot-contact input {
  width: 100%;
  height: 45px;
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 14px;
  outline: none;
  padding: 0 13px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.065);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.chatbot-contact input::placeholder {
  color: rgba(248, 243, 234, 0.34);
}

.chatbot-contact input:focus {
  border-color: rgba(217, 187, 130, 0.48);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(217, 187, 130, 0.08);
}

.chatbot-submit,
.chatbot-whatsapp,
.chatbot-reset {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.chatbot-submit {
  margin-top: 4px;
  border: 0;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-3), var(--gold));
  box-shadow: var(--shadow-gold);
}

.chatbot-whatsapp {
  color: #ffffff;
  background: var(--success);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.25);
}

.chatbot-reset {
  margin-top: 10px;
  border: 1px solid rgba(248, 243, 234, 0.12);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-enabled .reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal-pending {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .nav-shell {
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(248, 243, 234, 0.12);
    border-radius: 28px;
    color: var(--paper);
    background:
      radial-gradient(circle at 90% 0%, rgba(217, 187, 130, 0.16), transparent 30%),
      rgba(17, 16, 13, 0.97);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 230ms ease, transform 230ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    color: rgba(248, 243, 234, 0.74);
    padding-inline: 16px;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
    color: var(--ink);
    background: var(--paper);
  }

  .hero-grid,
  .split,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 560px;
  }

  .card-grid,
  .card-grid.two,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-card {
    min-height: auto;
    border-radius: 28px;
  }

  .route-panel {
    margin-top: 54px;
  }

  .card-metrics {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .card-grid,
  .card-grid.two,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-link {
    grid-template-columns: 1fr;
  }

  .service-link i {
    display: none;
  }

  .cta-band {
    border-radius: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .travelaux-chatbot {
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .chatbot-launcher {
    min-height: 50px;
    padding-right: 12px;
  }

  .chatbot-launcher-text {
    display: none;
  }

  .chatbot-panel {
    right: -1px;
    bottom: 64px;
    width: calc(100vw - 28px);
    max-height: calc(100svh - 112px);
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.8rem, 16vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .nav-shell {
    padding-left: 10px;
  }

  .hero-proof {
    gap: 8px;
  }

  .proof-pill {
    width: 100%;
    justify-content: center;
  }

  .lux-card,
  .content-block,
  .sticky-card {
    padding: 24px;
  }
}
