@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fdfdfc;
  --surface: #faf7f5;
  --surface-strong: #f2eeea;
  --ink: #0c0c0c;
  --ink-soft: #3e3935;
  --muted: #6f6c69;
  --line: rgba(12, 12, 12, 0.13);
  --line-soft: rgba(12, 12, 12, 0.07);
  --accent: #c7b0a2;
  --dark: #1d1715;
  --dark-2: #2a211e;
  --white: #ffffff;
  --green: #27d045;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(12, 12, 12, 0.10);
  --shadow-soft: 0 10px 24px rgba(12, 12, 12, 0.08);
  --container: 1180px;
  --gutter: clamp(16px, 5vw, 56px);
  --sans: "DM Sans", sans-serif;
  --heading: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 176, 162, 0.22), transparent 35rem),
    linear-gradient(180deg, #fdfdfc 0%, #faf7f5 46%, #fdfdfc 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-dark {
  background: var(--dark);
  color: var(--white);
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 9px var(--gutter);
  background: rgba(29, 23, 21, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-light {
  background: rgba(242, 238, 234, 0.94);
  color: var(--ink);
  border-bottom-color: rgba(12, 12, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: clamp(96px, 28vw, 156px);
  height: auto;
  filter: invert(1);
}

.site-header.is-light .brand img {
  filter: none;
}

.brand span {
  font-family: var(--heading);
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.site-header.is-light .header-cta {
  background: var(--ink);
  color: var(--white);
}

.hero-split {
  position: relative;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.90) 0%, rgba(12, 12, 12, 0.60) 42%, rgba(12, 12, 12, 0.10) 100%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  min-height: calc(100svh - 58px);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 132px) var(--gutter) clamp(72px, 12vh, 136px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.kicker {
  font-family: var(--heading);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero-title,
.article-title,
.landing-title {
  margin: 0;
  max-width: 760px;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title,
.article-title {
  margin-top: 22px;
  font-size: clamp(3.45rem, 5.6vw, 3.45rem);
  line-height: 1.04;
}

.landing-title {
  font-size: clamp(2.875rem, 4.4vw, 2.875rem);
  line-height: 1.04;
}

.hero-deck,
.landing-deck {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #e7ddd6;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #2a2928;
}

.btn-outline {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

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

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.section {
  padding: clamp(58px, 8vw, 112px) var(--gutter);
}

.section.compact {
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(38px, 6vw, 72px);
}

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

.section-warm {
  background: var(--surface-strong);
}

.section-pale {
  background: var(--surface);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.article-body {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
}

.article-body h2,
.section-title {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: clamp(2.875rem, 4.4vw, 2.875rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--ink);
}

.article-body h2 {
  font-size: clamp(3.45rem, 5.6vw, 3.45rem);
}

.section-dark .section-title,
.section-dark .article-body h2 {
  color: var(--white);
}

.article-body h3 {
  margin: 2.4rem 0 0.9rem;
  font-family: var(--heading);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.article-body p {
  margin-bottom: 1.28rem;
}

.article-body strong {
  color: var(--ink);
  font-weight: 700;
}

.lede {
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.38;
  color: var(--ink);
}

.article-image {
  width: 100%;
  margin: 34px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-image figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.callout {
  margin: 30px 0;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-panel {
  margin: 36px 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.sticky-summary {
  position: sticky;
  top: 86px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.sticky-summary h2 {
  margin: 0 0 14px;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  padding: 14px;
  border-radius: 16px;
  background: rgba(242, 238, 234, 0.82);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-item {
  min-height: 156px;
  padding: 22px;
  background: var(--white);
}

.proof-item b {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 44px) var(--gutter) clamp(44px, 7vw, 86px);
}

.product-media {
  position: sticky;
  top: 86px;
}

.gallery-main {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: none;
  cursor: pointer;
}

.gallery-thumb[aria-current="true"] {
  border-color: var(--ink);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.booking-card {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: #b28c64;
  letter-spacing: 0.06em;
}

.booking-card .landing-title {
  margin-bottom: 16px;
}

.booking-card .landing-deck {
  margin: 0 0 22px;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.mini-benefit {
  padding: 13px;
  border-radius: 14px;
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.option-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.option-card {
  width: 100%;
  padding: 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(12, 12, 12, 0.35);
}

.option-card.is-selected {
  background: var(--surface-strong);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(12, 12, 12, 0.06);
}

.option-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.option-name {
  display: block;
  font-weight: 800;
  line-height: 1.2;
}

.option-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.option-price {
  flex: 0 0 auto;
  font-weight: 800;
}

.option-badge {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--heading);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.trust-row span {
  padding: 11px;
  border-radius: 12px;
  background: var(--surface);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 26px 34px;
  font-family: var(--heading);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-media {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-section.reverse .split-media img {
  aspect-ratio: 16 / 11;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.timeline-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
}

.timeline-card b {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-family: var(--heading);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-card h3,
.testimonial-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.feature-card,
.testimonial-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.testimonial-card p {
  color: var(--ink-soft);
}

.testimonial-card .person {
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.faq-item {
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-strong);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  padding: clamp(34px, 7vw, 72px);
}

.final-cta .section-title {
  color: var(--white);
}

.legal-note {
  padding: 28px var(--gutter) 110px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  padding: 44px var(--gutter);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 118px;
  filter: invert(1);
}

.sticky-mobile-cta,
.sticky-atc {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 22px;
  background: rgba(29, 23, 21, 0.96);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.sticky-mobile-cta strong,
.sticky-atc strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.1;
}

.sticky-mobile-cta span,
.sticky-atc span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.sticky-mobile-cta .btn,
.sticky-atc .btn {
  min-height: 44px;
  padding: 12px 16px;
  white-space: nowrap;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 991px) {
  body {
    font-size: 17px;
  }

  .header-cta {
    display: none;
  }

  .hero-split::after {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.20) 0%, rgba(12, 12, 12, 0.84) 48%, rgba(12, 12, 12, 0.95) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 42vh;
  }

  .hero-title,
  .article-title {
    font-size: clamp(3rem, 14vw, 3.65rem);
    line-height: 1.02;
  }

  .landing-title {
    font-size: clamp(2.55rem, 12vw, 3.05rem);
    line-height: 1.03;
  }

  .article-body h2 {
    font-size: clamp(3rem, 13vw, 3.45rem);
    line-height: 1.02;
  }

  .section-title {
    font-size: clamp(2.55rem, 11vw, 2.875rem);
    line-height: 1.03;
  }

  .article-shell,
  .landing-hero,
  .split-section,
  .split-section.reverse,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-media,
  .sticky-summary {
    position: static;
  }

  .landing-hero {
    padding-top: 14px;
  }

  .gallery-main img {
    aspect-ratio: 1 / 1.08;
  }

  .proof-strip,
  .timeline,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-card b {
    margin-bottom: 20px;
  }

  .sticky-mobile-cta,
  .sticky-atc {
    display: flex;
  }

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

@media (max-width: 560px) {
  .brand {
    gap: 9px;
  }

  .brand img {
    width: 102px;
  }

  .brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-meta,
  .benefit-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .trust-row {
    display: grid;
  }

  .proof-item {
    min-height: 126px;
  }

  .booking-card {
    border-radius: 24px;
  }

  .option-top {
    flex-direction: column;
  }
}
