/* ═══════════════════════════════════════════════════════════════════
   MOBILE-FIRST CSS
   Breakpoints:
     base        → ≤ 639px   (móvil)
     @media sm:  → ≥ 640px   (móvil grande / tablet portrait)
     @media lg:  → ≥ 1024px  (tablet landscape / desktop)
     @media xl:  → ≥ 1280px  (desktop grande)
   ═══════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════
   BASE (móvil)
   ═══════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { font-family: var(--font-sans); font-weight: var(--fw-light); }
html[data-theme], html[data-theme] body { background: var(--bg); color: var(--ink); }
body { overflow-x: hidden; }
html, body, .nav, .floating-actions, .wa-float, .call-float, .btn, .card { transition: background-color var(--ease-theme), color var(--ease-theme), border-color var(--ease-theme); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

section[id], footer[id], div[id] { scroll-margin-top: 90px; }

::selection { background: var(--accent); color: var(--accent-ink); }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--ink); background-clip: content-box; }
::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
::-webkit-scrollbar-corner { background: transparent; }

.img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ph-bg);
}
.img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.img.no-radius { border-radius: 0; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--ease-reveal), transform var(--ease-reveal);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.gallery-hidden { display: none !important; }

strong {
  font-weight: var(--fw-black) !important;
  color: var(--bold) !important;
}


/* ────────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: var(--nav-top);
  left: var(--nav-top);
  right: var(--nav-top);
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-4);
  padding: 12px 18px;
  background: var(--nav-scroll-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: background .3s, padding .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 10px 30px -10px rgba(26,21,18,0.18); }
.nav .brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding-left: 4px;
}
.nav ul { display: none; }
.nav .right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-right: 2px;
}
.nav ul a.nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: var(--fw-medium);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.nav ul a.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.lang-toggle button,
.lang-toggle a {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px 10px;
  font-family: inherit;
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: all var(--ease-fast);
  text-decoration: none;
  display: inline-block;
}
.lang-toggle button.active,
.lang-toggle a.active {
  background: var(--ink);
  color: var(--bg);
}

.theme-toggle { display: none !important; }

.menu-btn {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
}
.menu-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  padding: 22px var(--sp-6) var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-panel.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 var(--sp-8);
}

.mobile-close {
  position: relative;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast), transform var(--ease-fast);
}

.mobile-close:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.mobile-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vh, 34px);
  flex: 1;
  width: 100%;
  padding: 0 0 60px;
  text-align: center;
}

.mobile-panel ul li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-panel ul a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 220px;
  padding: 10px 18px;
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: 1;
  text-align: center;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: color var(--ease-fast), background var(--ease-fast), transform var(--ease-fast);
}

.mobile-panel ul a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.mobile-book {
  margin-top: 10px;
  padding-top: 18px;
}

.mobile-book a {
  min-width: auto;
  padding: 16px 26px !important;
  border-radius: var(--radius-pill) !important;
  background: var(--accent) !important;
  color: var(--accent-ink) !important;
  font-family: var(--font-sans) !important;
  font-size: var(--fs-body) !important;
  font-weight: var(--fw-bold) !important;
  letter-spacing: var(--ls-btn) !important;
  border: 1px solid var(--accent) !important;
}

.mobile-book a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}


/* ────────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-sm);
  letter-spacing: var(--ls-btn);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--ease-base);
  text-decoration: none;
  line-height: 1;
}
.btn.lg {
  padding: 16px 24px;
  font-size: var(--fs-body);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--accent-deep);
  background: var(--accent-ink);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-ink {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}


/* ────────────────────────────────────────────────────────────────
   HERO SLIDER
   ──────────────────────────────────────────────────────────────── */

.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 200vw;
  height: 100%;
  transition: transform var(--ease-slide);
}
.hero-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
  align-self: flex-start;
  width: fit-content;
}
.hero-slide[data-kind="full"] .hero-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-slide[data-kind="full"] .hero-tag {
    background: rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.4);
  }
}
.hero-full {
  position: absolute;
  inset: 0;
}
.hero-full .bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.hero-full .scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background .4s ease;
}
.hero-slide[data-scrim="bottom-black"] .hero-full .scrim {
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.65) 85%);
}
.hero-slide[data-scrim="bottom-white"] .hero-full .scrim {
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(247,246,243,0.82) 100%);
}
.hero-slide[data-scrim="bottom-accent"] .hero-full .scrim {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 30%, rgba(191,153,78,0.78) 100%);
}
.hero-slide[data-scrim="none"] .hero-full .scrim { background: transparent; }
.hero-slide[data-scrim="bottom-white"] .hero-full .content { color: var(--ink); }
.hero-slide[data-scrim="bottom-white"] .hero-full h2 .it { color: var(--accent); }
.hero-slide[data-scrim="bottom-white"] .hero-tag {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border-color: var(--line-2);
}
.hero-full .content {
  position: absolute;
  left: var(--sp-6);
  right: var(--sp-6);
  bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-6);
  color: #fff;
  max-width: 900px;
}
.hero-full .content .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.hero-full .content .btn-ghost {
  border-color: var(--line-2);
  color: var(--accent);
}
.hero-full .content .btn-ghost:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.hero-slide[data-scrim="bottom-white"] .hero-full .content .btn-ghost {
  border-color: var(--line-2);
  color: var(--ink);
}
.hero-slide[data-scrim="bottom-white"] .hero-full .content .btn-ghost:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.hero-full h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-headline);
  line-height: var(--lh-flat);
  letter-spacing: var(--ls-display);
  max-width: 800px;
}
.hero-full h2 .it {
  font-style: italic;
  color: #E8D4A6;
}
.hero-full .content .side {
  max-width: 520px;
  font-size: var(--fs-h4);
  line-height: var(--lh-relaxed);
  opacity: 0.92;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding: 100px 20px 160px;
  height: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-split h1 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-display);
  line-height: var(--lh-flat);
  letter-spacing: var(--ls-display);
  margin-bottom: var(--sp-7);
  margin-top: 0;
}
.hero-split h1 .it {
  font-style: italic;
  color: var(--accent);
  font-weight: var(--fw-regular);
}
.hero-sub {
  max-width: 500px;
  font-size: var(--fs-h4);
  line-height: var(--lh-relaxed);
  color: var(--ink);
  margin-bottom: var(--sp-10);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-right {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-height: 240px;
}
.hero-right .big {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.hero-right .img {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.slider-dots {
  position: absolute;
  left: var(--sp-6);
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  background: var(--ink);
  opacity: 0.3;
  cursor: pointer;
  padding: 0;
  transition: opacity .3s, background .3s;
}
.slider-dots button.active { opacity: 1; }
.hero-slider[data-slide="0"] .slider-dots button { background: #fff; }
.hero-slider[data-slide="0"] .slider-dots button.active { background: #fff; }
.slider-arrows {
  position: absolute;
  right: var(--sp-6);
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slider-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}
.slider-arrows button:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.hero-slider[data-slide="0"] .slider-arrows button {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero-slider[data-slide="0"] .slider-arrows button:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}


/* ────────────────────────────────────────────────────────────────
   SECTION SHELL
   ──────────────────────────────────────────────────────────────── */

.section {
  padding: var(--sp-20) var(--sp-6);
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 900px;
  margin: 0 auto var(--sp-14);
  text-align: center;
}
.section-head p {
  margin: 0 auto;
  margin-bottom: var(--sp-5);
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
  margin-bottom: var(--sp-5);
}
.section-head h2 .it {
  font-style: italic;
  color: var(--accent);
}
.section-head p {
  max-width: 900px;
  color: var(--ink);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
}


/* ────────────────────────────────────────────────────────────────
   SERVICES
   ──────────────────────────────────────────────────────────────── */

.tr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.card > .img {
  aspect-ratio: 16/9;
  border-radius: 0;
}
.card .body {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  flex: 1;
}
.card h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-size: 32px;
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-heading);
  margin-bottom: 12px;
}
.card h3 .it {
  font-style: italic;
  color: var(--accent);
}
.kpis {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.kpi {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.32);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--ink);
  letter-spacing: var(--ls-ui);
}
.kpi svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--ink);
}
.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.price-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.price-row .dur {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--ink);
  letter-spacing: var(--ls-ui);
}
.price-row .price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-row .price {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-heading);
}
.price-row .transport {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-heading);
}
.price-row .price-suffix {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--ink);
  letter-spacing: var(--ls-ui);
  white-space: nowrap;
}
.card-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: auto;
}
.card-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: var(--fs-body);
}


/* ────────────────────────────────────────────────────────────────
   MODAL
   ──────────────────────────────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--overlay);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--ease-pop), opacity .35s;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal {
  transform: none;
  opacity: 1;
}
.modal-scroll {
  overflow-y: auto;
  padding: 32px var(--sp-6) 28px;
}
.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}
.modal-close:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.modal .img {
  aspect-ratio: 16/9;
  margin-bottom: var(--sp-7);
}
.modal h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-size: 30px;
  line-height: var(--lh-solid);
  margin-bottom: 14px;
}
.modal h3 .it {
  font-style: italic;
  color: var(--accent);
}
.modal .lede,
.modal .para {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.modal .para strong {
  font-weight: var(--fw-medium);
  color: var(--accent-deep);
}
.modal-bullets {
  list-style: none;
  padding: 0;
  margin: var(--sp-2) 0 var(--sp-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 22px;
}
.modal-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--ink);
}
.modal-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.modal h4 {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  margin-top: 12px;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.modal-actions .btn {
  width: 100%;
  justify-content: center;
}


/* ────────────────────────────────────────────────────────────────
   MARQUEE
   ──────────────────────────────────────────────────────────────── */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
}
.marquee-track {
  display: inline-block;
  animation: roll 50s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
}
.marquee-track span { padding: 0 32px; }
.marquee-track span::before {
  content: '—';
  margin-right: 32px;
  color: var(--accent);
  font-style: normal;
}
@keyframes roll {
  to { transform: translateX(-50%); }
}


/* ────────────────────────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────────────────────────── */

.about {
  padding: var(--sp-20) var(--sp-6);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: stretch;
}
.about-portrait { position: relative; }
.about-portrait .img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
  max-width: 100%;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
.about-body { display: contents; }
.about-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
  color: var(--ink);
  margin-bottom: var(--sp-5);
  text-wrap: balance;
}
.about-title .it {
  font-style: italic;
  color: var(--accent);
}
.about-copy .lede {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-style: italic;
  font-size: var(--fs-lede);
  line-height: var(--lh-normal);
  color: var(--ink);
  margin-bottom: var(--sp-6);
  text-wrap: pretty;
}
.about-copy p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: var(--ink);
  margin-bottom: var(--sp-4);
  text-wrap: pretty;
}
.about-copy .about-signoff {
  margin-top: var(--sp-7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-deep);
  line-height: var(--lh-solid);
}
.about-copy .about-signoff small {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink);
  margin-top: var(--sp-2);
  font-weight: var(--fw-medium);
}


/* ────────────────────────────────────────────────────────────────
   REVIEWS
   ──────────────────────────────────────────────────────────────── */

.reviews {
  padding: var(--sp-20) var(--sp-6);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: var(--sp-10);
}
.reviews-head h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
}
.reviews-head h2 .it {
  font-style: italic;
  color: var(--accent);
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: 18px 22px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  justify-self: start;
  box-shadow: var(--card-shadow);
}
.reviews-score .logo-g {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #4285F4 0 25%, #EA4335 0 50%, #FBBC04 0 75%, #34A853 0 100%);
  color: transparent;
}
.reviews-score .logo-g::after {
  content: 'G';
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 22px;
  position: absolute;
}
.reviews-score .logo-g-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.reviews-score .num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-solid);
  color: var(--ink);
}
.reviews-score .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: var(--fs-body-sm);
  margin-bottom: 2px;
}
.reviews-score .total {
  font-family: var(--font-mono);
  font-size: var(--fs-nano);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  position: relative;
}
.review-card .quote-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.28;
  font-style: italic;
}
.review-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: var(--fs-body-sm);
}
.review-card .text {
  font-family: var(--font-serif);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-normal);
  color: var(--ink);
  margin-bottom: var(--sp-5);
  flex: 1;
  font-style: italic;
}
.review-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.review-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body-sm);
}
.review-card .meta .name {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.review-card .meta .when {
  font-family: var(--font-mono);
  font-size: var(--fs-nano);
  letter-spacing: var(--ls-meta);
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
}
.reviews-cta {
  margin-top: var(--sp-10);
  display: flex;
  justify-content: center;
}


/* ────────────────────────────────────────────────────────────────
   GALLERY
   ──────────────────────────────────────────────────────────────── */

.gallery {
  padding: var(--sp-20) var(--sp-6);
  max-width: var(--content-max);
  margin: 0 auto;
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-10);
  align-items: end;
  gap: var(--sp-6);
}
.gallery-head h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
}
.gallery-head h2 .it {
  font-style: italic;
  color: var(--accent);
}
.gallery-head > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.gallery-head .meta {
  text-align: left;
  font-size: var(--fs-body-sm);
  color: var(--ink);
  max-width: 360px;
  line-height: var(--lh-relaxed);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.masonry .tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: var(--bg-2);
  transition: transform .3s ease, opacity .5s ease;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
}
.masonry .tile:hover { transform: scale(1.01); }
.masonry .tile .img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}
.masonry .tile .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.masonry .tile:hover .img img { transform: scale(1.04); }
.masonry .tile.fade-in { animation: tileIn .5s ease both; }
@keyframes tileIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-10);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease-fast);
}
.lightbox-nav.prev { left: 28px; }
.lightbox-nav.next { right: 28px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }


/* ────────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────────── */

.faq {
  padding: var(--sp-20) var(--sp-6);
  max-width: var(--content-max);
  margin: 0 auto;
}
.faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.faq-head h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
  text-wrap: balance;
}
.faq-head h2 .it {
  font-style: italic;
  color: var(--accent);
}
.faq-head .meta {
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 420px;
  text-wrap: pretty;
}
.faq-body { display: block; }
.faq-aside { display: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  color: var(--ink);
  transition: color var(--ease-fast);
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q .num {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  letter-spacing: var(--ls-btn);
  color: var(--ink);
  align-self: start;
  padding-top: 4px;
}
.faq-q .text {
  font-size: var(--fs-h4);
  line-height: var(--lh-snug);
  font-weight: var(--fw-regular);
  letter-spacing: -0.005em;
}
.faq-q .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: transform .35s ease, background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast);
  flex-shrink: 0;
}
.faq-q .icon svg {
  width: 14px;
  height: 14px;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--ease-fold), opacity .35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  opacity: 1;
}
.faq-a-inner {
  padding: 0 0 28px 38px;
  max-width: 640px;
}
.faq-a p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: var(--ink);
  text-wrap: pretty;
}


/* ────────────────────────────────────────────────────────────────
   STEPS CTA
   ──────────────────────────────────────────────────────────────── */

.steps-cta {
  background: #1A1512;
  color: #F2ECE1;
  padding: 120px var(--sp-6) 110px;
  position: relative;
  z-index: 1;
}
.steps-cta h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto var(--sp-5);
  color: #F2ECE1;
}
.steps-cta h2 .it {
  font-style: italic;
  color: var(--accent);
}
.steps-cta .lede {
  text-align: center;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto var(--sp-18);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step .num {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #1A1512;
  border: 1px solid rgba(242,236,225,0.28);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: var(--fw-light);
  font-size: 52px;
  margin-bottom: var(--sp-7);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: 32px;
  line-height: var(--lh-solid);
  margin-bottom: 14px;
  color: #F2ECE1;
}
.step p {
  color: var(--ink);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  max-width: 240px;
}
.steps-cta .cta-bottom {
  margin-top: var(--sp-14);
  display: flex;
  justify-content: center;
}
.steps-cta .cta-bottom .btn { font-size: var(--fs-body); }
.steps-cta .cta-bottom .btn svg {
  width: 16px;
  height: 16px;
}


/* ────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────── */

footer {
  padding: var(--sp-18) var(--sp-6) var(--sp-6);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}
footer .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
footer h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-size: clamp(44px, 5vw, 72px);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-display);
}
footer h3 .it {
  font-style: italic;
  color: var(--accent);
}
footer .col-label {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-meta);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  display: block;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer li {
  font-size: var(--fs-body-sm);
  color: var(--ink);
}


/* ────────────────────────────────────────────────────────────────
   FLOATING ACTIONS — MOBILE FIRST
   Móvil: row
   Desktop: column
   ──────────────────────────────────────────────────────────────── */

.floating-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.floating-actions .call-float,
.floating-actions .wa-float {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  z-index: auto;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 180px;
  min-height: 46px;
  padding: 13px 14px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: var(--ls-ui);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease-fast), box-shadow .3s, background var(--ease-fast);
}

.floating-actions .call-float {
  background: var(--accent);
  box-shadow: 0 14px 34px -10px rgba(167,141,4,0.55);
}

.floating-actions .wa-float {
  background: #25D366;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,0.55);
}

.floating-actions .call-float:hover,
.floating-actions .wa-float:hover {
  transform: translateY(-2px);
}

.floating-actions .call-float:hover {
  background: var(--accent-deep);
  box-shadow: 0 18px 44px -10px rgba(167,141,4,0.65);
}

.floating-actions .wa-float:hover {
  background: #1EBE5D;
  box-shadow: 0 18px 44px -10px rgba(37,211,102,0.65);
}

.floating-actions .call-float svg,
.floating-actions .wa-float svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.floating-actions .wa-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-nano);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg);
  animation: wa-pulse-anim 1.6s ease-in-out infinite;
}

@keyframes wa-pulse-anim {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}


/* ────────────────────────────────────────────────────────────────
   WA POPUP
   ──────────────────────────────────────────────────────────────── */

.wa-popup {
  position: fixed;
  right: 12px;
  bottom: 82px;
  z-index: 41;
  color: #303030;
  width: calc(100vw - 24px);
  max-width: 340px;
  background: #ECE5DD !important;
  border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.28), 0 8px 16px -8px rgba(0,0,0,0.18);
  overflow: hidden;
  transform-origin: bottom right;
  animation: wa-pop-in .32s cubic-bezier(.2,.8,.2,1) both;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
}
.wa-popup.closing { animation: wa-pop-out .22s ease both; }

@keyframes wa-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wa-pop-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
}

.wa-popup-head {
  background: #075E54 !important;
  color: #fff !important;
  padding: 14px 14px 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.wa-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
}
.wa-popup-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #075E54;
}
.wa-popup-info { min-width: 0; }
.wa-popup-info .name {
  font-family: var(--font-serif);
  font-weight: var(--fw-medium);
  font-size: 19px;
  line-height: var(--lh-snug);
  letter-spacing: 0.005em;
  color: #fff !important;
}
.wa-popup-info .status {
  font-size: var(--fs-micro);
  opacity: 0.85;
  margin-top: 3px;
  letter-spacing: 0.01em;
  color: #fff !important;
}
.wa-popup-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent !important;
  border: 0;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease-fast);
}
.wa-popup-close:hover { background: rgba(255,255,255,0.12); }
.wa-popup-close svg {
  width: 14px;
  height: 14px;
}
.wa-popup-body {
  padding: 22px 16px 18px;
  background-image:
    radial-gradient(ellipse at 25% 30%, rgba(7,94,84,0.05), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(37,211,102,0.04), transparent 50%);
  background-color: #ECE5DD !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-height: 200px;
}
.wa-bubble {
  align-self: flex-start;
  background: #fff !important;
  padding: 10px 12px 8px;
  border-radius: var(--radius-sm);
  border-top-left-radius: 2px;
  max-width: 86%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  position: relative;
  opacity: 0;
  transform: translateY(6px);
  animation: wa-bubble-in .35s ease forwards;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 0;
  border-color: transparent #fff transparent transparent;
}
.wa-bubble.b1 { animation-delay: .15s; }
.wa-bubble.b2 { animation-delay: 1.0s; }
.wa-bubble.b3 { animation-delay: 1.7s; }

@keyframes wa-bubble-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.wa-bubble .greet {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: var(--lh-snug);
  color: #075E54 !important;
  margin-bottom: 4px;
}
.wa-bubble .text {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
  color: #303030 !important;
}
.wa-time {
  font-size: var(--fs-nano);
  color: #92989a !important;
  text-align: right;
  margin-top: 2px;
  letter-spacing: var(--ls-ui);
}
.wa-typing {
  align-self: flex-start;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-top-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  display: flex;
  gap: 4px;
  opacity: 0;
  animation: wa-bubble-in .25s ease forwards .55s, wa-typing-fade .3s ease forwards .95s;
}

@keyframes wa-typing-fade {
  to {
    opacity: 0;
    transform: scale(.9);
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: -10px;
  }
}

.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #92989a;
  animation: wa-dot 1s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .15s; }
.wa-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes wa-dot {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.wa-popup-cta-row {
  padding: 0 16px 14px;
  background: #ECE5DD !important;
}
.wa-popup-cta {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  letter-spacing: var(--ls-ui);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: background var(--ease-fast), transform .15s;
  text-decoration: none;
}
.wa-popup-cta:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
}
.wa-popup-cta svg {
  width: 16px;
  height: 16px;
}
.wa-popup-hint {
  text-align: center;
  font-size: var(--fs-nano);
  color: #92989a !important;
  padding: 0 0 10px;
  background: #ECE5DD !important;
  letter-spacing: var(--ls-btn);
}


/* ═══════════════════════════════════════════════════════════════════
   sm ≥ 640px
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
  .tr-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-bullets { grid-template-columns: 1fr 1fr; }
  .card-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card-actions .btn {
    flex: 1;
    width: auto;
  }
  .modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .modal-actions .btn {
    flex: 1;
    width: auto;
  }
  footer .inner { grid-template-columns: 1fr 1fr; }
  footer h3 { grid-column: 1 / -1; }
  .marquee-track { font-size: 28px; }
  .nav {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 11px 14px 11px 16px;
    gap: 14px;
  }
  .nav .brand {
    font-size: 20px;
    gap: 10px;
    padding-left: 6px;
  }
  .nav .right {
    gap: var(--sp-2);
    padding-right: 4px;
  }
  .lang-toggle { padding: 4px; }
  .lang-toggle button,
  .lang-toggle a {
    padding: 6px 10px;
    font-size: var(--fs-caption);
  }
  .menu-btn {
    width: 36px;
    height: 36px;
  }
  .btn {
    padding: 18px 30px;
    font-size: var(--fs-body-lg);
  }
  .btn.lg {
    padding: 20px 34px;
    font-size: 17px;
    font-weight: var(--fw-bold);
  }
  .masonry { grid-template-columns: repeat(3, 1fr); }

  .floating-actions {
    left: auto;
    right: 24px;
    bottom: 24px;
    justify-content: flex-end;
  }

  .floating-actions .call-float,
  .floating-actions .wa-float {
    flex: 0 0 auto;
    max-width: none;
    min-height: 50px;
    padding: 15px 22px;
    font-size: var(--fs-body);
  }

  .wa-popup {
    right: 24px;
    bottom: 92px;
    width: 340px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   lg ≥ 1024px
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .nav {
    top: var(--nav-top);
    left: var(--nav-top);
    right: var(--nav-top);
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-4);
    padding: 12px 18px;
  }
  .nav .brand {
    font-size: 22px;
    gap: 12px;
    padding-left: 12px;
  }
  .nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    justify-self: center;
    padding: 4px;
  }
  .nav ul a {
    font-family: var(--font-sans);
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-sm);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    display: inline-block;
    transition: background var(--ease-fast), color var(--ease-fast);
    color: var(--ink);
  }
  .nav ul a:hover {
    background: var(--ink);
    color: var(--bg);
  }
  .nav .right {
    gap: 10px;
    padding-right: 6px;
  }
  .menu-btn { display: none; }

  .hero-split {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-8);
    padding: 120px var(--sp-12) 96px;
  }
  .hero-right { max-height: none; }
  .hero-right .big { aspect-ratio: auto; }
  .hero-full .content {
    left: var(--sp-12);
    right: var(--sp-12);
    bottom: 88px;
  }
  .slider-dots { left: var(--sp-12); }
  .slider-arrows {
    right: var(--sp-12);
    bottom: 34px;
  }
  .slider-arrows button {
    width: 52px;
    height: 52px;
  }

  .section { padding: var(--sp-30) var(--sp-12); }
  .section-head { margin: 0 auto var(--sp-14); }
  .about { padding: var(--sp-30) var(--sp-12); }
  .reviews { padding: 140px var(--sp-12); }
  .gallery { padding: var(--sp-30) var(--sp-12); }
  .faq { padding: var(--sp-30) var(--sp-12); }
  .steps-cta { padding: var(--sp-30) var(--sp-12) var(--sp-28); }
  footer { padding: var(--sp-24) var(--sp-12) var(--sp-8); }

  .card > .img { aspect-ratio: 5/3; }
  .card .body { padding: 20px 22px 22px; }

  .faq-body {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--sp-16, 64px);
    align-items: start;
  }
  .faq-aside {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    position: sticky;
    top: 110px;
  }
  .faq-aside .img {
    aspect-ratio: 5 / 5.5;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-2);
  }
  .faq-aside .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .faq-head {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-14);
    align-items: end;
  }
  .faq-head .meta { justify-self: end; }
  .faq-q {
    padding: 28px 4px;
    gap: var(--sp-6);
    align-items: center;
  }
  .faq-q .num {
    font-size: 18px;
    align-self: center;
    padding-top: 0;
  }
  .faq-a-inner {
    padding: 0 0 var(--sp-8) var(--sp-12);
  }

  .reviews-head {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--sp-12);
    align-items: end;
    margin-bottom: var(--sp-14);
  }
  .reviews-score { justify-self: end; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-head {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-14);
  }
  .gallery-head > div { align-items: flex-end; }
  .gallery-head .meta { text-align: right; }

  .about-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-18);
  }
  .about-portrait .img {
    min-height: 520px;
    max-width: none;
  }
  .about-copy { padding: var(--sp-6) 0; }

  .modal-scroll { padding: 40px 44px 36px; }
  .modal h3 { font-size: 46px; }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-12);
    max-width: 1100px;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: rgba(242,236,225,0.18);
  }
  .steps-cta h2 { font-size: var(--fs-h2); }
  .steps-cta .lede { margin-bottom: var(--sp-18); }
  .steps-cta .cta-bottom { margin-top: var(--sp-14); }
  .step h3 { font-size: 32px; }

  footer .inner {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
  footer .legal { grid-column: 1 / -1; }
  .marquee-track { font-size: 32px; }

  .floating-actions {
    left: auto;
    right: 28px;
    bottom: 28px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
  }

  .floating-actions .call-float,
  .floating-actions .wa-float {
    width: auto;
    min-width: 134px;
    min-height: 54px;
    padding: 18px 28px;
  }

  .floating-actions .call-float svg,
  .floating-actions .wa-float svg {
    width: 20px !important;
    height: 20px !important;
  }

  .wa-popup {
    right: 28px;
    bottom: 158px;
    width: 340px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   xl ≥ 1280px
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  .tr-grid { max-width: var(--content-max); }
}