﻿:root {
  color-scheme: dark;
  --font-display: "Noto Serif", "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", "Manrope", "Segoe UI", sans-serif;

  --max-width: 1200px;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --radius-xl: 2.2rem;
  --radius-pill: 999px;

  /* Premium Dark Theme Colors */
  --color-bg: #090a0f;
  --color-surface: #12141d;
  --color-surface-2: #1c1f2b;
  --color-surface-3: #262a3b;
  --color-primary: #d4af37; /* Luxurious Gold */
  --color-primary-strong: #b5952f;
  --color-secondary: #e8c9a1;
  --color-secondary-soft: #f2dec3;
  --color-text: #f0f0f2;
  --color-muted: #a4a5b0;
  --color-line: #2a2d3d;
  --color-card-line: #3d4154;
  --color-ink: #161821;

  --shadow-sm: 0 16px 40px -24px rgba(0, 0, 0, 0.85);
  --shadow-md: 0 28px 68px -34px rgba(0, 0, 0, 0.95);
  --shadow-lg: 0 42px 88px -36px rgba(0, 0, 0, 1);
  --wa-green: #25d366;
  --wa-green-hover: #20bd5a;
  --logo-beige-filter: brightness(0) saturate(100%) invert(87%) sepia(26%) saturate(314%) hue-rotate(343deg) brightness(96%) contrast(88%);
  --ease-premium: cubic-bezier(0.25, 1, 0.3, 1);
  --hero-overlay: linear-gradient(
    104deg,
    rgba(9, 10, 15, 0.95) 14%,
    rgba(9, 10, 15, 0.8) 45%,
    rgba(9, 10, 15, 0.6) 70%,
    rgba(9, 10, 15, 0.45) 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 20% -8%, rgba(77, 217, 156, 0.16), transparent 45%),
    radial-gradient(circle at 80% 8%, rgba(232, 201, 161, 0.14), transparent 38%),
    var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--surface {
  background: linear-gradient(180deg, rgba(17, 51, 41, 0.35), rgba(17, 51, 41, 0.08));
}

.section--muted {
  background: rgba(13, 36, 29, 0.64);
  border-block: 1px solid rgba(51, 96, 79, 0.5);
}

.section--sand {
  background:
    radial-gradient(circle at 100% 0%, rgba(230, 201, 161, 0.24), transparent 44%),
    #efddc0;
  color: #25352e;
}

.section--sand .eyebrow {
  color: #506a5f;
}

.section--sand .section-title,
.section--sand .card-title,
.section--sand .contact-text strong,
.section--sand .step-number {
  color: #1b2d26;
}

.section--sand .section-subtitle,
.section--sand .card-text,
.section--sand .contact-text,
.section--sand .faq-answer,
.section--sand .footer-copy {
  color: #456057;
}

.section--sand .card,
.section--sand .faq-item,
.section--sand .contact-card {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(89, 123, 109, 0.25);
}

.section--sand .btn--ghost {
  color: #34554a;
  border-color: rgba(89, 123, 109, 0.45);
  background: rgba(255, 255, 255, 0.34);
}

.section--sand .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.62);
}

.section--sand .btn--surface {
  color: #215140;
  border-color: rgba(40, 97, 76, 0.48);
  background: rgba(77, 217, 156, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--sentence {
  letter-spacing: 0.08em;
  text-transform: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-title {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  color: var(--color-secondary-soft);
}

.section-subtitle {
  margin: 1rem 0 0;
  color: var(--color-muted);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  color: #062315;
  background: linear-gradient(135deg, var(--color-primary), #8bf2c4);
  box-shadow: 0 16px 40px -20px rgba(77, 217, 156, 0.65);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #72ebbb, #b1ffd8);
}

.btn--ghost {
  color: var(--color-secondary-soft);
  border-color: rgba(232, 201, 161, 0.42);
  background: rgba(14, 38, 31, 0.3);
}

.btn--ghost:hover {
  background: rgba(22, 58, 47, 0.68);
  border-color: rgba(232, 201, 161, 0.72);
}

.btn--surface {
  color: var(--color-primary);
  background: rgba(77, 217, 156, 0.14);
  border-color: rgba(77, 217, 156, 0.3);
}

.btn--whatsapp {
  color: #04331b;
  background: var(--wa-green);
  border-color: rgba(5, 52, 28, 0.22);
  box-shadow:
    0 16px 38px -22px rgba(37, 211, 102, 0.94),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--whatsapp:hover {
  background: var(--wa-green-hover);
  box-shadow:
    0 20px 44px -24px rgba(37, 211, 102, 0.96),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wa-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(51, 96, 79, 0.58);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(24, 69, 56, 0.54), rgba(12, 34, 27, 0.7));
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.card-title {
  margin: 0 0 0.38rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--color-text);
}

.card-text {
  margin: 0;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(5, 20, 15, 0.54);
  border-bottom: 1px solid rgba(140, 168, 153, 0.14);
  transition:
    background-color 0.38s var(--ease-premium),
    border-color 0.38s var(--ease-premium),
    backdrop-filter 0.38s var(--ease-premium),
    box-shadow 0.38s var(--ease-premium);
}

.site-header.is-scrolled {
  background: rgba(5, 18, 13, 0.84);
  border-bottom-color: rgba(219, 196, 159, 0.26);
  box-shadow: 0 18px 36px -30px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
}

.top-language-bar {
  border-bottom: 1px solid rgba(232, 201, 161, 0.14);
  background: rgba(5, 17, 13, 0.5);
  transition: border-color 0.34s ease, background-color 0.34s ease;
}

.site-header.is-scrolled .top-language-bar {
  border-bottom-color: rgba(232, 201, 161, 0.11);
  background: rgba(4, 14, 11, 0.48);
}

.top-language-row {
  min-height: 2.1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  transition: min-height 0.34s ease;
}

.site-header.is-scrolled .top-language-row {
  min-height: 1.9rem;
}

.top-language-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98b4a8;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border: 1px solid rgba(219, 196, 159, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(10, 34, 26, 0.48);
  color: #d9e8e0;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.55rem;
  cursor: pointer;
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.language-trigger:hover {
  border-color: rgba(232, 201, 161, 0.52);
  background: rgba(10, 34, 26, 0.76);
  color: #f1e1c6;
}

.language-trigger:focus-visible {
  outline: 2px solid rgba(117, 241, 165, 0.85);
  outline-offset: 2px;
}

.language-caret {
  display: inline-flex;
  font-size: 0.64rem;
  transform-origin: center;
  transition: transform 0.24s var(--ease-premium);
}

.language-current-label {
  white-space: nowrap;
}

.language-menu[data-open="true"] .language-caret {
  transform: rotate(180deg) translateY(-1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  margin: 0;
  padding: 0.35rem;
  min-width: 146px;
  list-style: none;
  border-radius: 0.92rem;
  border: 1px solid rgba(232, 201, 161, 0.24);
  background: rgba(7, 26, 20, 0.94);
  box-shadow:
    0 18px 40px -24px rgba(0, 0, 0, 0.9),
    0 8px 28px -22px rgba(232, 201, 161, 0.48);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0) scale(0.985);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.24s var(--ease-premium),
    transform 0.24s var(--ease-premium),
    visibility 0.24s step-end;
}

.language-menu[data-open="true"] .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.24s var(--ease-premium),
    transform 0.24s var(--ease-premium),
    visibility 0s;
}

.language-item {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 0.36rem;
  text-align: left;
  padding: 0.3rem 0.42rem;
  border: 0;
  border-radius: 0.64rem;
  background: transparent;
  color: #d4e5dd;
  font-size: 0.75rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-item:hover {
  background: rgba(77, 217, 156, 0.13);
  color: #e8f7ef;
}

.language-item.is-active {
  background: rgba(77, 217, 156, 0.16);
  color: #e6f5ee;
}

.language-flag {
  font-size: 0.8rem;
  line-height: 1;
}

.nav-row {
  min-height: 5.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.24rem;
  transition: min-height 0.36s var(--ease-premium), padding-block 0.36s var(--ease-premium);
}

.site-header.is-scrolled .nav-row {
  min-height: 4.78rem;
  padding-block: 0.12rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0.34rem 0.22rem 0.34rem 0.1rem;
  border-radius: 1rem;
  transition: background-color 0.24s ease;
}

.brand:hover {
  background: rgba(242, 222, 195, 0.08);
}

.brand-mark {
  width: 82px;
  height: auto;
  filter: var(--logo-beige-filter);
  transition: transform 0.28s var(--ease-premium), filter 0.28s var(--ease-premium);
}

.brand-mark--horizontal {
  width: clamp(126px, 17.8vw, 208px);
  filter: none;
}

.site-header.is-scrolled .brand-mark {
  width: 78px;
}

.site-header.is-scrolled .brand-mark--horizontal {
  width: clamp(120px, 16.4vw, 190px);
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.018);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 1.45rem;
  align-items: center;
}

.nav-links a {
  color: #d7e7df;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.14rem;
  border-bottom: 1px solid transparent;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.nav-links a:hover {
  color: var(--color-secondary-soft);
  border-color: rgba(232, 201, 161, 0.66);
}

.nav-action {
  margin-left: 1.15rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(232, 201, 161, 0.4);
  color: var(--color-secondary-soft);
  background: transparent;
  border-radius: var(--radius-sm);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
}

.nav-toggle-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: clip;
  --hero-parallax-y: 0px;
  --hero-stack-shift: 0px;
  min-height: calc(100svh - 118px);
  padding-block: clamp(4.3rem, 8.5vw, 7.6rem) clamp(3.4rem, 7.6vw, 5.6rem);
}

.hero-backdrops {
  position: absolute;
  inset: -2.6% 0 0;
  z-index: -3;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-position: var(--bg-position-desktop, center);
  background-size: cover;
  opacity: 0;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  filter: saturate(0.92) contrast(1.03) brightness(0.86);
  transition:
    opacity 0.92s var(--ease-premium),
    transform 1.2s var(--ease-premium),
    filter 0.72s var(--ease-premium);
}

.hero-backdrop.is-active {
  opacity: 1;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
  filter: saturate(1) contrast(1.04) brightness(0.9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay),
    radial-gradient(circle at 78% 22%, rgba(232, 201, 161, 0.2), transparent 44%),
    linear-gradient(105deg, rgba(3, 12, 10, 0.58), rgba(3, 12, 10, 0.34));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: min(36vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 217, 156, 0.3), rgba(77, 217, 156, 0));
  filter: blur(12px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(1.8rem, 3.5vw, 3.4rem);
  grid-template-columns: minmax(0, 1.23fr) minmax(0, 0.9fr);
  transform: translate3d(0, var(--hero-stack-shift), 0);
  will-change: transform;
}

.hero-slider {
  position: relative;
}

.hero-slides {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(24px, 0, 0);
  transition:
    opacity 0.62s var(--ease-premium),
    transform 0.62s var(--ease-premium),
    visibility 0.62s step-end;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.62s var(--ease-premium),
    transform 0.62s var(--ease-premium),
    visibility 0s;
}

.hero .eyebrow {
  color: #88e3b7;
  letter-spacing: 0.28em;
}

.hero-title {
  margin: 0.72rem 0 1.02rem;
  max-width: 13ch;
  display: grid;
  gap: 0.12em;
  font-family: var(--font-display);
  line-height: 0.98;
  font-size: clamp(2.5rem, 7.8vw, 5.3rem);
  color: #f4f8f6;
  text-wrap: balance;
}

.hero-title-main {
  display: block;
}

.hero-title-accent {
  display: block;
  color: #f1d4b1;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.hero-copy {
  max-width: 50ch;
  color: #e0eee8;
  margin-bottom: 1.7rem;
  font-size: clamp(1.03rem, 1.8vw, 1.16rem);
  line-height: 1.64;
}

.hero-animate {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.hero-slide.is-active .hero-animate {
  animation: hero-fade-up 0.66s var(--ease-premium) forwards;
}

.hero-slide.is-active .hero-animate--1 {
  animation-delay: 0.04s;
}

.hero-slide.is-active .hero-animate--2 {
  animation-delay: 0.12s;
}

.hero-slide.is-active .hero-animate--3 {
  animation-delay: 0.2s;
}

.hero-slide.is-active .hero-animate--4 {
  animation-delay: 0.28s;
}

.hero-pagination {
  margin-top: 1.22rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 201, 161, 0.54);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    width 0.34s var(--ease-premium),
    background-color 0.34s var(--ease-premium),
    border-color 0.34s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.hero-dot:hover {
  transform: translateY(-1px);
}

.hero-dot.is-active {
  width: 1.64rem;
  border-color: rgba(245, 214, 175, 0.86);
  background: linear-gradient(90deg, rgba(245, 214, 175, 0.95), rgba(192, 245, 215, 0.88));
}

.hero-dot:focus-visible {
  outline: 2px solid rgba(111, 239, 159, 0.84);
  outline-offset: 2px;
}

.hero-panel {
  border-radius: 1.9rem;
  border: 1px solid rgba(232, 201, 161, 0.28);
  background:
    linear-gradient(158deg, rgba(8, 31, 24, 0.66), rgba(7, 24, 18, 0.84)),
    rgba(7, 24, 18, 0.56);
  box-shadow:
    0 28px 72px -44px rgba(0, 0, 0, 0.95),
    0 12px 32px -28px rgba(232, 201, 161, 0.46);
  backdrop-filter: blur(10px);
  padding: clamp(1.55rem, 2.9vw, 2.15rem);
  animation:
    hero-fade-up 0.74s var(--ease-premium) 0.08s forwards,
    hero-panel-float 9.8s ease-in-out 0.82s infinite;
}

.hero-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.66rem, 2.5vw, 2.12rem);
  line-height: 1.14;
  color: #f3d6b2;
  max-width: 19ch;
}

.hero-panel ul {
  margin: 1.22rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.74rem;
}

.hero-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.66rem;
  align-items: start;
  color: #e0efe7;
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero-panel-marker {
  width: 1.08rem;
  height: 1.08rem;
  margin-top: 0.08rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #9cf7c3;
  background: rgba(37, 211, 102, 0.11);
  box-shadow: inset 0 0 0 1px rgba(111, 239, 159, 0.28);
  font-size: 0.62rem;
  line-height: 1;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-panel-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero + .section {
  position: relative;
  margin-top: -1.1rem;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 -12px 30px -24px rgba(0, 0, 0, 0.75);
}

.needs-grid {
  align-items: start;
}

.needs-grid > article {
  grid-column: span 12;
  align-self: start;
}

.need-card {
  padding: 0;
  height: fit-content;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.15rem);
  border-color: rgba(108, 151, 134, 0.48);
  background:
    radial-gradient(circle at 85% 8%, rgba(232, 201, 161, 0.16), transparent 36%),
    linear-gradient(140deg, rgba(22, 56, 46, 0.84), rgba(9, 28, 22, 0.88));
  transition:
    border-color 0.28s var(--ease-premium),
    transform 0.32s var(--ease-premium),
    box-shadow 0.32s var(--ease-premium),
    background-color 0.28s var(--ease-premium);
}

.need-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(232, 201, 161, 0.44);
  box-shadow:
    0 32px 54px -38px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(232, 201, 161, 0.12);
}

.need-card.is-open {
  border-color: rgba(232, 201, 161, 0.6);
  box-shadow:
    0 34px 62px -42px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(232, 201, 161, 0.2);
}

.need-card-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.95rem;
  padding: 1.25rem 1.2rem;
  cursor: pointer;
  font: inherit;
  touch-action: manipulation;
}

.need-card-trigger:focus-visible {
  outline: 2px solid rgba(117, 241, 165, 0.82);
  outline-offset: -2px;
}

.need-card-index {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #022615;
  font-weight: 800;
  background: linear-gradient(145deg, #92ffd2, #4dd99c);
  box-shadow:
    0 6px 22px -14px rgba(77, 217, 156, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.need-card-copy .card-title {
  margin-bottom: 0.46rem;
  font-size: 1.28rem;
  color: #f1e3ca;
}

.need-card-copy .card-text {
  color: #bdd0c7;
}

.need-card-plus {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 161, 0.35);
  background: rgba(9, 32, 25, 0.5);
  margin-top: 0.06rem;
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.need-card-plus::before,
.need-card-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.68rem;
  height: 1.5px;
  border-radius: 2px;
  background: #e9ddc5;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.need-card-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.need-card.is-open .need-card-plus {
  border-color: rgba(117, 241, 165, 0.72);
  background: rgba(16, 62, 47, 0.75);
}

.need-card.is-open .need-card-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.35);
}

.need-card-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.34s var(--ease-premium),
    opacity 0.26s ease;
  opacity: 0;
}

.need-card-panel-inner {
  overflow: hidden;
  border-top: 1px solid rgba(232, 201, 161, 0.18);
  margin-inline: 1.2rem;
  padding: 0 0 1.2rem;
}

.need-card.is-open .need-card-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.need-therapy-list {
  margin: 0;
  padding: 0.9rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.need-therapy-link {
  width: 100%;
  border: 0;
  border-radius: 0.8rem;
  padding: 0.64rem 0.78rem;
  text-align: left;
  font: inherit;
  color: #dfede7;
  background: rgba(14, 45, 35, 0.66);
  border: 1px solid rgba(101, 143, 128, 0.42);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.need-therapy-link:hover {
  border-color: rgba(232, 201, 161, 0.52);
  background: rgba(19, 60, 47, 0.86);
  transform: translateX(3px);
}

.need-therapy-link:focus-visible {
  outline: 2px solid rgba(117, 241, 165, 0.86);
  outline-offset: 2px;
}

.need-help-copy {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: #c8dbd2;
}

.need-help-btn {
  width: min(100%, 260px);
  margin: 0.62rem auto 0;
}

.services-showcase-section {
  position: relative;
  overflow: hidden;
}

.services-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(77, 217, 156, 0.1), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(232, 201, 161, 0.14), transparent 38%);
}

.services-showcase-head {
  position: relative;
  z-index: 1;
}

.services-showcase {
  position: relative;
  --services-controls-height: 3.75rem;
}

.services-showcase::before,
.services-showcase::after {
  display: none;
}

.services-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.28rem 0.1rem 0.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.services-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.services-carousel-controls {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  min-height: var(--services-controls-height);
  position: relative;
  z-index: 4;
}

.services-carousel-arrow {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid rgba(127, 168, 153, 0.56);
  background: rgba(13, 39, 31, 0.8);
  color: #e8d7ba;
  font-size: 1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.services-carousel-arrow:hover {
  border-color: rgba(232, 201, 161, 0.72);
  background: rgba(24, 66, 53, 0.9);
  transform: translateY(-1px);
}

.services-carousel-arrow:focus-visible {
  outline: 2px solid rgba(136, 227, 183, 0.82);
  outline-offset: 2px;
}

.services-carousel-indicators {
  display: grid;
  gap: 0.5rem;
}

.services-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
}

.services-carousel-dots::-webkit-scrollbar {
  display: none;
}

.services-carousel-dot {
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(137, 178, 162, 0.52);
  background: rgba(89, 126, 113, 0.48);
  flex: none;
  cursor: pointer;
  transition:
    width 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.services-carousel-dot.is-active {
  width: 1.35rem;
  border-color: rgba(232, 201, 161, 0.8);
  background: linear-gradient(90deg, rgba(106, 229, 168, 0.88), rgba(232, 201, 161, 0.88));
}

.services-carousel-dot:focus-visible {
  outline: 2px solid rgba(136, 227, 183, 0.82);
  outline-offset: 2px;
}

.services-carousel-progress {
  position: relative;
  width: 100%;
  height: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(102, 141, 126, 0.52);
  background: rgba(8, 28, 22, 0.72);
  overflow: hidden;
}

.services-carousel-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(111, 236, 173, 0.9), rgba(232, 201, 161, 0.9));
  transition: width 0.2s ease;
}

.service-showcase-card {
  flex: 0 0 clamp(248px, 32vw, 338px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border: 1px solid rgba(97, 140, 124, 0.5);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    radial-gradient(circle at 88% 6%, rgba(232, 201, 161, 0.18), transparent 30%),
    linear-gradient(150deg, rgba(21, 57, 46, 0.88), rgba(8, 28, 22, 0.9));
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.1rem 1.1rem;
  box-shadow: 0 24px 48px -34px rgba(0, 0, 0, 0.92);
  transition:
    transform 0.32s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium);
}

.service-showcase-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(232, 201, 161, 0.56);
  box-shadow:
    0 34px 60px -40px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(232, 201, 161, 0.14);
}

.service-showcase-card.is-focused {
  border-color: rgba(117, 241, 165, 0.86);
  box-shadow:
    0 0 0 1px rgba(117, 241, 165, 0.44),
    0 30px 56px -38px rgba(7, 25, 20, 0.94);
  transform: translate3d(0, -5px, 0);
}

.service-card-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #a8d6c3;
  font-weight: 700;
}

.service-card-title {
  margin: 0.62rem 0 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.24;
  color: #f0dfc3;
}

.service-card-description {
  margin: 0.65rem 0 0;
  color: #c8dbd2;
  font-size: 0.94rem;
}

.service-card-meta {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.service-meta-item {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(102, 140, 126, 0.4);
  background: rgba(8, 35, 27, 0.48);
}

.service-meta-item span {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #9bbdb0;
}

.service-meta-item strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.93rem;
  color: #f3e5cc;
  font-weight: 700;
}

.service-card-cta {
  margin-top: 0.95rem;
  width: 100%;
  border-color: rgba(232, 201, 161, 0.32);
  color: #d9f8e9;
  background: rgba(77, 217, 156, 0.14);
}

.service-card-cta:hover {
  border-color: rgba(232, 201, 161, 0.62);
  background: rgba(77, 217, 156, 0.24);
}

.experiences-grid > article,
.testimonials-grid > article,
.contact-grid > article,
.legal-grid > article {
  grid-column: span 12;
}

.experience-card .card-title {
  color: var(--color-secondary-soft);
}

.card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card-link:hover {
  gap: 0.7rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.team-card {
  position: relative;
  border: 1px solid rgba(93, 134, 119, 0.5);
  border-radius: calc(var(--radius-lg) + 0.18rem);
  background:
    radial-gradient(circle at 86% 9%, rgba(232, 201, 161, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(20, 56, 45, 0.9), rgba(9, 29, 23, 0.92));
  box-shadow: 0 24px 42px -34px rgba(0, 0, 0, 0.9);
  padding: 1.05rem;
  display: grid;
  align-content: start;
  transition:
    transform 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium);
  overflow: hidden;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto 1.05rem 0.9rem;
  border-bottom: 1px solid rgba(114, 155, 139, 0.36);
}

.team-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(232, 201, 161, 0.56);
  box-shadow:
    0 30px 48px -36px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(232, 201, 161, 0.15);
}

.team-media {
  width: min(100%, 178px);
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(140, 178, 163, 0.5);
  background: rgba(8, 27, 21, 0.78);
  margin-inline: auto;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-media--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(26, 66, 53, 0.9), rgba(9, 28, 22, 0.9));
}

.team-placeholder {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  color: #e8d7ba;
}

.team-name {
  margin: 0.84rem 0 0.14rem;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.18;
  color: #efe1c8;
  text-align: center;
}

.team-specialty {
  margin: 0.2rem 0 0;
  color: #2f5648;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-align: center;
}

.team-description {
  margin: 0;
  padding-top: 0.78rem;
  border-top: 1px solid rgba(103, 142, 127, 0.44);
  color: #c2d7cd;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.team-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0.06rem 0 0.2rem;
  padding: 0.28rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 171, 143, 0.52);
  background: linear-gradient(135deg, rgba(232, 245, 238, 0.76), rgba(218, 236, 226, 0.72));
  color: #2f6952;
  font-size: 0.98rem;
  font-weight: 700;
}

.team-subtitle-pill {
  width: fit-content;
  margin: clamp(0.9rem, 2.1vw, 1.25rem) 0 0;
  padding: 0.68rem 0.95rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(118, 176, 146, 0.52);
  background: linear-gradient(135deg, rgba(234, 246, 240, 0.72), rgba(224, 239, 230, 0.62));
  color: #48665a;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  font-weight: 600;
}

.gift-media {
  margin: 1rem 0 1.1rem;
  border-radius: calc(var(--radius-lg) - 0.06rem);
  overflow: hidden;
  border: 1px solid rgba(96, 132, 118, 0.42);
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.38);
}

.gift-media img {
  width: 100%;
  height: auto;
  min-height: 210px;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.about-premium-content {
  border: 1px solid rgba(87, 129, 114, 0.45);
  border-radius: calc(var(--radius-lg) + 0.05rem);
  background: linear-gradient(160deg, rgba(19, 54, 43, 0.76), rgba(9, 30, 24, 0.84));
  padding: 1.15rem;
}

.about-premium-lead {
  margin: 0;
  color: #d7e7e0;
}

.about-pillars {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.about-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  border: 1px solid rgba(94, 136, 121, 0.45);
  border-radius: 0.86rem;
  background: rgba(12, 39, 31, 0.76);
  padding: 0.72rem;
}

.about-pillar-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(77, 217, 156, 0.15);
  color: #9af4c2;
  border: 1px solid rgba(133, 232, 182, 0.5);
}

.about-pillar-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillar h3 {
  margin: 0;
  font-size: 0.97rem;
  color: #ecddc2;
}

.about-pillar p {
  margin: 0.18rem 0 0;
  color: #bdd2c8;
  font-size: 0.89rem;
}

.about-premium-media {
  border-radius: calc(var(--radius-lg) + 0.2rem);
  overflow: hidden;
  border: 1px solid rgba(112, 149, 135, 0.5);
  box-shadow: var(--shadow-sm);
}

.about-premium-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: flex;
  gap: 0.85rem;
  align-items: start;
  border: 1px solid rgba(89, 123, 109, 0.3);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.32);
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ddeecf;
  color: #204234;
  font-weight: 800;
  flex: none;
}

.step-text {
  margin: 0;
  color: #3b544b;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(51, 96, 79, 0.58);
  border-radius: var(--radius-md);
  background: rgba(12, 34, 27, 0.6);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.contact-grid {
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(89, 123, 109, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.35);
}

.contact-item + .contact-item {
  margin-top: 0.9rem;
}

.contact-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #607870;
}

.contact-text {
  margin: 0.2rem 0 0;
  color: #3c584f;
}

.legal-section {
  padding-top: clamp(2.6rem, 6vw, 4rem);
}

.legal-card {
  min-height: 100%;
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(77, 217, 156, 0.16), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(232, 201, 161, 0.12), transparent 34%),
    linear-gradient(180deg, #071d16, #04120d 72%);
}

.legal-page-wrap {
  padding-block: clamp(2.3rem, 6vw, 4.5rem);
}

.legal-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.legal-page-header .brand {
  padding-left: 0;
}

.legal-page-card {
  border: 1px solid rgba(89, 126, 113, 0.5);
  border-radius: calc(var(--radius-lg) + 0.16rem);
  background:
    radial-gradient(circle at 90% 8%, rgba(232, 201, 161, 0.14), transparent 36%),
    linear-gradient(155deg, rgba(17, 47, 38, 0.92), rgba(8, 25, 20, 0.95));
  box-shadow: 0 28px 48px -34px rgba(0, 0, 0, 0.9);
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
}

.legal-page-card h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  color: #efe1c8;
  font-size: clamp(1.8rem, 4.5vw, 2.45rem);
  line-height: 1.1;
}

.legal-page-lead {
  margin: 0 0 1.1rem;
  color: #cfe0d8;
  max-width: 64ch;
}

.legal-page-card h2 {
  margin: 1.15rem 0 0.4rem;
  font-family: var(--font-display);
  color: #e9d6b6;
  font-size: 1.25rem;
}

.legal-page-card p,
.legal-page-card li {
  color: #bfd3ca;
}

.legal-page-card ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.legal-page-meta {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: #9db6ac;
}

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding-block: clamp(3.4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(77, 217, 156, 0.2), transparent 40%),
    linear-gradient(160deg, rgba(4, 19, 14, 0.95), rgba(2, 11, 8, 0.98));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/final-cta-premium.webp");
  background-size: cover;
  background-position: center 34%;
  opacity: 0.22;
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.82) contrast(1.03);
  z-index: -2;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 14, 10, 0.74) 0%,
      rgba(3, 14, 10, 0.58) 50%,
      rgba(3, 14, 10, 0.78) 100%
    ),
    radial-gradient(circle at 78% 26%, rgba(232, 201, 161, 0.2), transparent 42%);
  z-index: -1;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 980px);
}

.final-cta .eyebrow {
  color: #84ebbb;
}

.final-cta .section-title {
  margin: 0.72rem auto 0;
  color: #f1dfc2;
  max-width: 18ch;
}

.final-cta p {
  margin: 0.9rem auto 1.45rem;
  color: #d5e7de;
  max-width: 56ch;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.final-cta .btn {
  box-shadow:
    0 0 0 1px rgba(153, 235, 198, 0.3),
    0 20px 36px -24px rgba(0, 0, 0, 0.92);
}

.site-footer {
  border-top: 1px solid rgba(51, 96, 79, 0.38);
  padding-block: 1.8rem;
  background: rgba(6, 22, 16, 0.84);
}

.footer-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 52px;
}

.footer-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #bdd0c7;
}

.footer-social {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  width: 2.08rem;
  height: 2.08rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 168, 153, 0.52);
  background: rgba(14, 38, 31, 0.5);
  color: #d8eadf;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.social-link svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 201, 161, 0.68);
  background: rgba(22, 58, 47, 0.82);
}

.footer-whatsapp-number {
  color: #d7e9df;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 164, 148, 0.52);
  background: rgba(12, 35, 28, 0.6);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.footer-whatsapp-number:hover {
  border-color: rgba(232, 201, 161, 0.72);
  background: rgba(22, 58, 47, 0.82);
}

.floating-mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 38;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(6, 22, 16, 0.92);
  border-top: 1px solid rgba(51, 96, 79, 0.44);
  backdrop-filter: blur(10px);
}

.floating-mobile-cta p {
  margin: 0;
  font-size: 0.85rem;
  color: #def5e9;
}

.btn--whatsapp-floating {
  min-width: 138px;
  padding-inline: 1rem;
  gap: 0.45rem;
  color: #032b16;
  background: #25d366;
  border-color: rgba(4, 39, 22, 0.28);
  box-shadow:
    0 14px 30px -20px rgba(37, 211, 102, 0.94),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn--whatsapp-floating:hover {
  background: #20bd5a;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

/* Dedicated mobile model page */
.mobile-page {
  color-scheme: dark;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 217, 156, 0.22), transparent 38%),
    linear-gradient(180deg, #071b14, #05120e 72%);
}

.mobile-wrap {
  max-width: 460px;
  margin-inline: auto;
  padding-inline: 0.95rem;
  padding-bottom: 5.6rem;
}

.mobile-block {
  margin-top: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(51, 96, 79, 0.5);
  background: linear-gradient(145deg, rgba(18, 51, 41, 0.86), rgba(12, 35, 28, 0.92));
  padding: 1rem;
}

.mobile-hero {
  padding-top: 1.2rem;
}

.mobile-title {
  margin: 0.45rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.12;
  color: var(--color-secondary-soft);
}

.mobile-sub {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.mobile-scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 74%);
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scroll-snap-type: x mandatory;
}

.mobile-scroll-row > article {
  scroll-snap-align: start;
}

.mobile-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(77, 217, 156, 0.4);
  color: var(--color-primary);
  background: rgba(77, 217, 156, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.38rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(51, 96, 79, 0.5);
  background: rgba(6, 22, 16, 0.94);
  backdrop-filter: blur(10px);
}

.mobile-bottom-nav a {
  padding: 0.72rem 0.4rem 0.9rem;
  text-align: center;
  font-size: 0.77rem;
  color: #c4d7ce;
}

.mobile-bottom-nav a strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .nav-action {
    margin-left: 0.75rem;
    padding-inline: 1.1rem;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 640px;
    animation: none;
  }

  .hero.is-ready .hero-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .top-language-row {
    justify-content: center;
  }

  .language-dropdown {
    right: auto;
    left: 50%;
    transform: translate3d(-50%, -8px, 0) scale(0.985);
    transform-origin: top center;
  }

  .language-menu[data-open="true"] .language-dropdown {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header[data-open="true"] .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 1rem;
    left: 1rem;
    margin: 0;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(51, 96, 79, 0.58);
    background: rgba(8, 27, 20, 0.96);
    box-shadow: var(--shadow-md);
    justify-items: center;
    text-align: center;
  }

  .site-header[data-open="true"] .nav-links li {
    width: 100%;
  }

  .site-header[data-open="true"] .nav-links a {
    display: block;
    width: 100%;
    padding: 0.55rem 0;
    font-size: 0.96rem;
    text-align: center;
  }

  .site-header[data-open="true"] .mobile-only {
    display: flex;
    margin-top: 0.6rem;
  }

  .site-header[data-open="true"] .mobile-only a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.46rem;
    color: #022a15;
    font-weight: 800;
  }
}

@media (min-width: 680px) {
  .needs-grid > article {
    grid-column: span 6;
  }

  .testimonials-grid > article,
  .contact-grid > article,
  .legal-grid > article {
    grid-column: span 6;
  }
}

@media (min-width: 980px) {
  .needs-grid > article {
    grid-column: span 4;
  }

  .needs-grid > article:last-child {
    grid-column: span 4;
  }

  .testimonials-grid > article {
    grid-column: span 4;
  }

  .about-premium-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .contact-grid > article:first-child {
    grid-column: span 7;
  }

  .contact-grid > article:last-child {
    grid-column: span 5;
  }
}

@media (min-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 3.4rem;
  }

  .container {
    width: min(100% - 2.4rem, var(--max-width));
  }

  .floating-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 4.2rem;
    background:
      radial-gradient(circle at 20% -8%, rgba(77, 217, 156, 0.2), transparent 45%),
      radial-gradient(circle at 80% 8%, rgba(232, 201, 161, 0.16), transparent 38%),
      #082118;
  }

  .desktop-only {
    display: none;
  }

  .top-language-label {
    display: none;
  }

  .top-language-row {
    min-height: 1.8rem;
  }

  .language-trigger {
    font-size: 0.72rem;
    padding: 0.2rem 0.44rem;
  }

  .language-dropdown {
    min-width: 136px;
  }

  .hero {
    min-height: auto;
    padding-block: 3.5rem 3.1rem;
  }

  .hero-backdrop {
    background-image: var(--bg-image-mobile, var(--bg-image));
    background-position: var(--bg-position-mobile, center);
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.01);
  }

  .hero-backdrop.is-active {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1);
  }

  .nav-row {
    padding-left: 0.45rem;
  }

  .brand {
    padding-left: 0.32rem;
  }

  .brand-mark--horizontal {
    width: clamp(142px, 52vw, 194px);
  }

  .section-head {
    padding-inline: 0.22rem;
  }

  .section-head .eyebrow,
  .section-head .section-title,
  .section-head .section-subtitle {
    padding-inline: 0.08rem;
  }

  .hero-title {
    max-width: 14ch;
    font-size: clamp(2.2rem, 11.8vw, 3.25rem);
    margin-top: 0.5rem;
    margin-bottom: 0.76rem;
  }

  .hero-title-accent {
    letter-spacing: 0.01em;
  }

  .hero-copy {
    margin-bottom: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .hero-panel {
    padding: 1.25rem;
    border-radius: 1.55rem;
  }

  .hero-panel h3 {
    font-size: 1.52rem;
  }

  .hero-panel li {
    font-size: 0.93rem;
  }

  .hero-pagination {
    margin-top: 1rem;
  }

  .hero + .section {
    margin-top: -0.4rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .eyebrow--sentence {
    letter-spacing: 0.04em;
    font-size: 0.72rem;
  }

  .need-card {
    border-radius: 1.3rem;
  }

  .need-card-trigger {
    padding: 1.05rem 0.95rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.72rem;
  }

  .need-card-copy .card-title {
    font-size: 1.18rem;
  }

  .need-card-copy .card-text {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .need-card-panel-inner {
    margin-inline: 0.95rem;
    padding-bottom: 1rem;
  }

  .need-therapy-link {
    padding: 0.72rem 0.74rem;
    border-radius: 0.74rem;
    font-size: 0.9rem;
  }

  .need-help-btn {
    width: 100%;
    margin-inline: 0;
  }

  .services-track {
    gap: 0.82rem;
    padding-bottom: 0.45rem;
    cursor: auto;
  }

  .service-showcase-card {
    flex-basis: min(82vw, 300px);
    padding: 1.04rem 0.92rem 0.95rem;
  }

  .service-card-title {
    font-size: 1.14rem;
  }

  .service-card-description {
    font-size: 0.89rem;
  }

  .service-meta-item {
    padding: 0.48rem 0.55rem;
  }

  .service-card-cta {
    margin-top: 0.82rem;
    padding-block: 0.74rem;
    font-size: 0.9rem;
  }

  .services-carousel-controls {
    gap: 0.55rem;
  }

  .services-carousel-arrow {
    width: 2.02rem;
    height: 2.02rem;
    font-size: 0.9rem;
  }

  .team-media {
    width: min(100%, 154px);
  }

  .team-name {
    font-size: 1.12rem;
  }

  .team-description {
    font-size: 0.86rem;
  }

  .about-premium-content {
    padding: 0.95rem;
  }

  .about-premium-media img {
    min-height: 260px;
  }

  .footer-row {
    align-items: flex-start;
  }

  .footer-social {
    order: 3;
  }

  .footer-whatsapp-number {
    font-size: 0.78rem;
  }

  .final-cta {
    padding-block: 3.1rem;
  }

  .final-cta::before {
    background-position: 60% center;
    opacity: 0.24;
  }

  .final-cta .section-title {
    max-width: 13.5ch;
  }

  .final-cta p {
    max-width: 33ch;
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .hero::before,
  .hero-backdrop,
  .hero-slide,
  .hero-dot,
  .hero-panel,
  .need-card,
  .need-card-panel,
  .need-card-plus,
  .need-therapy-link,
  .service-showcase-card {
    transition: none !important;
  }

  .hero-slide,
  .hero-panel,
  .hero-backdrop,
  .hero-animate,
  .hero-slide.is-active .hero-animate {
    animation: none !important;
    transform: none !important;
  }

  .hero-slide {
    opacity: 0;
  }

  .hero-slide.is-active {
    opacity: 1;
  }

  .hero-backdrop {
    opacity: 0;
  }

  .hero-backdrop.is-active {
    opacity: 1;
  }

  .hero-panel,
  .hero-animate {
    opacity: 1;
  }

  .need-card:hover,
  .service-showcase-card:hover,
  .service-showcase-card.is-focused {
    transform: none !important;
  }
}

/* ===== 2026 Premium Refresh ===== */
:root {
  color-scheme: light;
  --color-bg: #f7f4ee;
  --color-surface: #ffffff;
  --color-surface-2: #f1ece2;
  --color-surface-3: #e7dfd0;
  --color-primary: #2f7b57;
  --color-primary-strong: #235f43;
  --color-secondary: #dbc59d;
  --color-secondary-soft: #efe5d2;
  --color-text: #1f342c;
  --color-muted: #5a6f66;
  --color-line: #cfd7cd;
  --color-card-line: #d2d8ce;
  --color-ink: #1e2f29;
  --hero-overlay: linear-gradient(
    102deg,
    rgba(8, 25, 20, 0.9) 10%,
    rgba(8, 25, 20, 0.75) 45%,
    rgba(8, 25, 20, 0.44) 100%
  );
}

html,
body {
  background: radial-gradient(circle at 8% 0%, rgba(219, 197, 157, 0.32), transparent 45%),
    radial-gradient(circle at 90% 6%, rgba(47, 123, 87, 0.16), transparent 42%),
    var(--color-bg);
  color: var(--color-text);
}

.section--surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 236, 226, 0.56));
}

.section--muted {
  background: #f1ece2;
  border-block: 1px solid #ddd6c9;
}

.section-title {
  color: #204136;
}

.section-subtitle,
.card-text,
.faq-answer {
  color: #556861;
}

.card,
.need-card,
.service-showcase-card,
.team-card,
.plan-card,
.trust-card,
.testimonial-card,
.faq-item,
.contact-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid #d9dfd6;
  box-shadow: 0 20px 36px -28px rgba(20, 40, 33, 0.28);
}

.site-header {
  background: rgba(250, 248, 243, 0.86);
  border-bottom-color: rgba(206, 216, 205, 0.82);
}

.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.96);
  border-bottom-color: rgba(196, 207, 195, 0.95);
}

.top-language-bar {
  background: rgba(240, 235, 226, 0.82);
  border-bottom: 1px solid rgba(197, 207, 196, 0.9);
}

.top-language-row {
  min-height: 2.3rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
}

.topbar-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-link {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(104, 130, 118, 0.32);
  color: #2a5142;
  background: rgba(255, 255, 255, 0.72);
}

.topbar-link svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.topbar-address {
  margin: 0;
  font-size: 0.78rem;
  color: #486056;
}

.top-language-label {
  color: #486056;
}

.language-trigger {
  border-color: rgba(109, 134, 121, 0.38);
  background: rgba(255, 255, 255, 0.84);
  color: #2a4a3d;
}

.language-dropdown {
  border-color: rgba(110, 134, 121, 0.32);
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 18px 36px -26px rgba(21, 41, 33, 0.4);
}

.language-item {
  color: #2e4f42;
}

.language-item:hover,
.language-item.is-active {
  background: rgba(47, 123, 87, 0.12);
  color: #1f3f33;
}

.brand:hover {
  background: rgba(234, 226, 212, 0.5);
}

.nav-links a {
  color: #2d4e41;
}

.nav-links a:hover {
  color: #153b2d;
  border-color: rgba(47, 123, 87, 0.4);
}

.btn--ghost {
  border-color: rgba(91, 124, 108, 0.34);
  color: #214136;
  background: rgba(255, 255, 255, 0.66);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.98);
}

.hero-panel {
  border-color: rgba(227, 201, 158, 0.4);
}

.hero-panel li {
  color: #e6f1eb;
}

.needs-grid > article {
  grid-column: span 12;
}

.need-card {
  background: linear-gradient(140deg, #f9f8f4, #eeeadf);
}

.need-card-copy .card-title {
  color: #224236;
}

.need-card-copy .card-text {
  color: #566b63;
}

.need-card-plus {
  background: rgba(255, 255, 255, 0.74);
}

.need-card-plus::before,
.need-card-plus::after {
  background: #2d5a49;
}

.need-card-panel-inner {
  border-top-color: rgba(110, 132, 121, 0.28);
}

.need-therapy-link {
  background: #fff;
  color: #244337;
  border-color: #d8e0d6;
}

.need-therapy-link:hover {
  background: #f3f8f5;
}

.services-filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.service-filter-btn {
  border: 1px solid #cad5ca;
  background: #fff;
  color: #2b4d40;
  border-radius: 999px;
  padding: 0.42rem 0.88rem;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-filter-btn.is-active {
  border-color: #2f7b57;
  color: #fff;
  background: #2f7b57;
}

.service-showcase-section::before {
  background: radial-gradient(circle at 8% 14%, rgba(47, 123, 87, 0.1), transparent 40%),
    radial-gradient(circle at 92% 8%, rgba(219, 197, 157, 0.18), transparent 42%);
}

.services-track {
  gap: 1.05rem;
  cursor: grab;
}

.service-showcase-card {
  background: #ffffff;
  border: 1px solid #d4dbd1;
  flex: 0 0 clamp(260px, 31vw, 344px);
  padding: 0.7rem 0.7rem 1rem;
}

.service-card-media {
  margin: 0 0 0.72rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #d6ddd3;
  aspect-ratio: 16/10;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-kicker {
  color: #416457;
}

.service-card-title {
  color: #1f3d33;
}

.service-card-description {
  color: #5a6d66;
}

.service-meta-item {
  background: #f8f8f4;
  border-color: #d6ddd3;
}

.service-meta-item span {
  color: #5b756a;
}

.service-meta-item strong {
  color: #25493b;
}

.service-card-cta {
  color: #245442;
  background: rgba(47, 123, 87, 0.09);
}

.service-card-cta:hover {
  background: rgba(47, 123, 87, 0.16);
}

.service-showcase-card.is-focused {
  border-color: #2f7b57;
  box-shadow: 0 0 0 2px rgba(47, 123, 87, 0.2);
}

.services-carousel-arrow {
  border-color: #becbc0;
  color: #2c4f41;
  background: #fff;
}

.services-carousel-arrow:hover {
  background: #f1f7f3;
}

.services-carousel-dot {
  border-color: #bfd0c4;
  background: #dbe7df;
}

.services-carousel-dot.is-active {
  border-color: #2f7b57;
  background: linear-gradient(90deg, #2f7b57, #88bb9f);
}

.services-carousel-progress {
  border-color: #cad5ca;
  background: #eef2ee;
}

.services-carousel-progress-fill {
  background: linear-gradient(90deg, #2f7b57, #a9cbb8);
}

.plans-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.plan-tab-btn {
  border: 1px solid #cad5ca;
  background: #fff;
  color: #2b4d40;
  border-radius: 999px;
  padding: 0.44rem 0.94rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

.plan-tab-btn.is-active {
  border-color: #2f7b57;
  background: #2f7b57;
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  grid-column: span 12;
  padding: 1rem;
  border-radius: 1.1rem;
}

.plan-category {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7b6e;
  font-weight: 700;
}

.plan-badge {
  margin: 0.5rem 0 0;
  display: inline-flex;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: rgba(47, 123, 87, 0.12);
  color: #285340;
  font-weight: 700;
  font-size: 0.78rem;
}

.plan-card h3 {
  margin: 0.58rem 0 0.4rem;
  color: #214337;
  font-family: var(--font-display);
}

.plan-card > p {
  color: #596d65;
}

.plan-details {
  margin: 0.8rem 0 0.85rem;
  padding-left: 1rem;
  color: #2f4d40;
}

.gift-grid > article {
  grid-column: span 12;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-content {
  border: 1px solid #d7dfd5;
  border-radius: 1.2rem;
  background: #fff;
  padding: 1rem;
}

.about-bullets {
  margin: 1rem 0;
  padding-left: 1rem;
  color: #2f4d41;
}

.about-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  min-height: 190px;
  border: 1px solid #d7dfd5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-card {
  grid-column: span 12;
  border-radius: 1.05rem;
  padding: 0.94rem;
}

.trust-card h3 {
  margin: 0 0 0.4rem;
  color: #214237;
  font-size: 1.02rem;
}

.trust-card p {
  margin: 0;
  color: #576a63;
}

.testimonials-carousel,
.team-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.carousel-arrow {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid #c4d1c7;
  background: #fff;
  color: #2b4f41;
}

.testimonials-track,
.team-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar,
.team-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(88%, 340px);
  scroll-snap-align: start;
}

.testimonial-stars {
  margin: 0 0 0.35rem;
  color: #d79c2f;
  letter-spacing: 0.08em;
}

.team-track .team-card {
  flex: 0 0 calc((100% - 0.85rem * 3) / 4);
  min-width: 180px;
  scroll-snap-align: start;
  padding: 0.88rem;
}

.team-card::after {
  display: none;
}

.team-media {
  width: min(100%, 138px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  margin-top: 0.25rem;
}

.team-specialty {
  color: #34604f;
}

.team-description {
  color: #5b6f67;
  border-top-color: #d5ddd2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-media {
  margin: 0.9rem 0 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #d8e0d6;
}

.contact-media img {
  width: 100%;
  aspect-ratio: 18/11;
  object-fit: cover;
}

.contact-form-card {
  border-radius: 1.2rem;
  padding: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
  color: #2c4f42;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  font: inherit;
  color: #28473b;
  border: 1px solid #c8d4ca;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.65rem 0.72rem;
}

.form-field textarea {
  resize: vertical;
}

.form-status {
  margin: 0.1rem 0 0;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: #1f6b4a;
}

.form-status[data-state="error"] {
  color: #7a2f2f;
}

.form-note {
  margin: 0;
  color: #62766d;
  font-size: 0.84rem;
}

.final-cta {
  background: linear-gradient(145deg, rgba(21, 61, 46, 0.94), rgba(9, 27, 20, 0.96));
}

.final-cta .section-title {
  color: #f3ebda;
}

.site-footer {
  background: #15382b;
  border-top-color: rgba(220, 227, 218, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem 0 1rem;
}

.footer-col {
  grid-column: span 12;
}

.footer-col h3 {
  margin: 0 0 0.45rem;
  color: #deecd8;
  font-size: 0.9rem;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: #b9cdbf;
  display: block;
  font-size: 0.88rem;
}

.footer-logo {
  width: 58px;
}

.footer-copy {
  margin-top: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 226, 216, 0.18);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.8rem 0 1.3rem;
}

.footer-bottom a {
  color: #d5e3d9;
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: #25d366;
  color: #093723;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 42;
  box-shadow: 0 18px 34px -20px rgba(27, 121, 71, 0.72);
}

.floating-whatsapp svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.45rem);
  white-space: nowrap;
  background: #1d3f32;
  color: #eff4f0;
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.26rem 0.62rem;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 680px) {
  .gift-grid > article {
    grid-column: span 6;
  }

  .plans-grid .plan-card {
    grid-column: span 6;
  }

  .trust-card {
    grid-column: span 6;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 1100px) {
  .team-track .team-card {
    flex-basis: calc((100% - 0.85rem) / 2);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0 !important;
  }

  .top-language-row {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .topbar-address,
  .topbar-socials,
  .top-language-label {
    display: none;
  }

  .site-header[data-open="true"] .nav-links {
    background: rgba(248, 246, 241, 0.98);
    border-color: #cfdbd1;
  }

  .site-header[data-open="true"] .nav-links a {
    color: #2e4f41;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .team-track .team-card {
    flex-basis: 100%;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img {
    min-height: 220px;
  }

  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .floating-whatsapp-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp-tooltip {
    transition: none;
  }
}

/* ===== 2026 Final User-Driven Polish ===== */
:root {
  --premium-dark: #082119;
  --premium-dark-soft: #0e2e24;
  --premium-green: #1f6d4e;
  --premium-green-strong: #1a593f;
  --premium-beige: #e8d1ad;
  --premium-cream: #f7f3ea;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 15% 0, rgba(216, 192, 153, 0.28), rgba(216, 192, 153, 0) 44%),
    radial-gradient(circle at 85% 6%, rgba(48, 128, 91, 0.16), rgba(48, 128, 91, 0) 40%),
    var(--color-bg);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.58);
  border-bottom: 1px solid rgba(200, 212, 201, 0.55);
  backdrop-filter: blur(12px);
}

.top-language-bar,
.site-header.is-scrolled .top-language-bar {
  background: rgba(18, 45, 37, 0.9);
  border-bottom: 1px solid rgba(110, 156, 136, 0.35);
}

.topbar-address,
.top-language-label,
.language-trigger,
.language-item {
  color: #e0ebe5;
}

.language-trigger {
  background: rgba(9, 25, 20, 0.58);
  border-color: rgba(132, 182, 160, 0.45);
}

.language-item:hover,
.language-item.is-active {
  background: rgba(103, 221, 167, 0.2);
  color: #edf7f2;
}

.language-dropdown {
  background: rgba(6, 23, 18, 0.95);
  border-color: rgba(132, 182, 160, 0.4);
}

.brand-mark {
  width: min(240px, 46vw);
  max-height: 56px;
  object-fit: contain;
}

.nav-links a {
  color: #244839;
}

.btn,
.btn--primary,
.btn--whatsapp,
.btn--surface,
.btn--ghost {
  background-image: none !important;
}

.btn {
  border-radius: 999px;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: none;
}

.btn--whatsapp {
  background: #25d366;
  border: 1px solid #20be5b;
  color: #073322;
  font-weight: 800;
  box-shadow: 0 14px 28px -20px rgba(32, 160, 87, 0.9);
}

.btn--whatsapp:hover {
  background: #2fe071;
  color: #072d1f;
}

.btn--surface {
  background: rgba(33, 96, 67, 0.12);
  color: #1d5a40;
  border-color: rgba(41, 113, 79, 0.4);
}

.btn--surface:hover {
  background: rgba(33, 96, 67, 0.18);
}

.btn--ghost {
  border: 1px solid rgba(232, 209, 173, 0.45);
  color: #eedac0;
  background: rgba(8, 31, 24, 0.45);
}

.hero {
  min-height: calc(100svh - 114px);
}

.hero::before {
  background:
    linear-gradient(102deg, rgba(3, 12, 9, 0.84) 10%, rgba(3, 12, 9, 0.56) 52%, rgba(3, 12, 9, 0.3) 100%),
    radial-gradient(circle at 86% 20%, rgba(232, 201, 161, 0.2), transparent 42%);
}

.hero-backdrop {
  filter: saturate(1.03) contrast(1.06) brightness(0.84);
}

.hero-backdrop.is-active {
  filter: saturate(1.1) contrast(1.08) brightness(0.92);
}

.hero-title {
  max-width: 13ch;
}

.hero-title-main em {
  color: var(--premium-beige);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  max-width: 47ch;
}

.hero-dot {
  width: 0.68rem;
  height: 0.68rem;
  background: rgba(255, 255, 255, 0.14);
}

.hero-dot.is-active {
  width: 1.8rem;
  border-color: rgba(232, 209, 173, 0.92);
  background: #ecd9bc;
}

.about-section--hero {
  background:
    radial-gradient(circle at 15% 12%, rgba(62, 147, 106, 0.2), transparent 38%),
    linear-gradient(170deg, #0a241c, #061811 70%);
}

.about-hero-layout {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.about-section--hero .about-content {
  background: rgba(8, 27, 20, 0.56);
  border-color: rgba(128, 180, 157, 0.28);
  color: #e6f3ec;
}

.about-section--hero .section-title {
  color: #f1e0c5;
}

.about-section--hero .section-subtitle {
  color: #bdd1c6;
}

.about-section--hero .about-bullets {
  color: #d3e5db;
}

.about-visual {
  border-radius: 1.4rem;
  border: 1px solid rgba(128, 180, 157, 0.34);
  background: rgba(7, 22, 17, 0.64);
  padding: 0.7rem;
}

.about-visual-frame {
  overflow: hidden;
  border-radius: 1rem;
  min-height: min(64vw, 420px);
}

.about-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   PROMO POPUP (NAMORADOS)
   Toggle via JS: PROMO_POPUP_CONFIG.enabled
   ========================================================================== */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease-premium),
    visibility 0.32s step-end;
}

.promo-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.32s var(--ease-premium),
    visibility 0s;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 126, 152, 0.18), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(181, 16, 47, 0.2), transparent 36%),
    rgba(8, 12, 14, 0.62);
  backdrop-filter: blur(10px) saturate(1.05);
}

.promo-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  max-height: min(92svh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border-radius: clamp(1rem, 1.9vw, 1.6rem);
  border: 1px solid rgba(255, 224, 229, 0.3);
  box-shadow:
    0 45px 90px -40px rgba(0, 0, 0, 0.9),
    0 16px 46px -34px rgba(255, 93, 132, 0.62);
  background: #120d10;
  transform: translate3d(0, 24px, 0) scale(0.965);
  opacity: 0;
  transition:
    transform 0.34s var(--ease-premium),
    opacity 0.34s var(--ease-premium);
}

.promo-popup.is-visible .promo-popup__dialog {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.promo-popup__close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 241, 244, 0.52);
  background: rgba(18, 12, 15, 0.8);
  color: #fff0f3;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.promo-popup__close:hover {
  transform: scale(1.05);
  background: rgba(190, 29, 62, 0.9);
  border-color: rgba(255, 244, 246, 0.92);
}

.promo-popup__media {
  position: relative;
  min-height: 100%;
}

.promo-popup__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.4s ease,
    transform 0.6s ease;
}

.promo-popup__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.promo-popup__veil {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(12, 8, 10, 0.62), rgba(12, 8, 10, 0));
}

.promo-popup__content {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2.5vw, 1.65rem);
  display: grid;
  align-content: center;
  gap: 0.72rem;
  color: #fff4f6;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 117, 143, 0.18), transparent 40%),
    linear-gradient(160deg, rgba(95, 9, 27, 0.92), rgba(33, 9, 16, 0.94));
}

.promo-popup__eyebrow {
  margin: 0;
  color: #ffd7df;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}

.promo-popup__content h3 {
  margin: 0;
  color: #fff5f7;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.promo-popup__content p {
  margin: 0;
  color: #ffeef1;
  line-height: 1.5;
}

.promo-popup__note {
  color: #ffccd8;
  font-weight: 700;
  font-size: 0.93rem;
}

.promo-popup__cta {
  justify-self: start;
  margin-top: 0.15rem;
}

body.promo-popup-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .promo-popup__dialog {
    width: min(100%, 560px);
    max-height: 90svh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(240px, 46svh) 1fr;
  }

  .promo-popup__content {
    gap: 0.62rem;
    padding: 1rem 1rem 1.1rem;
    text-align: center;
    justify-items: center;
  }

  .promo-popup__content h3 {
    font-size: clamp(1.18rem, 6.2vw, 1.48rem);
  }

  .promo-popup__content p {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .promo-popup__cta {
    justify-self: center;
    width: 100%;
  }

  .promo-popup__slide {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #160b11;
  }
}

.about-visual-image.is-swapping {
  opacity: 0.12;
}

.about-thumb-strip {
  display: flex;
  gap: 0.42rem;
  margin-top: 0.62rem;
  padding: 0.12rem 0.02rem 0.18rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-thumb-strip::-webkit-scrollbar {
  display: none;
}

.about-thumb {
  flex: 0 0 3.05rem;
  width: 3.05rem;
  aspect-ratio: 1.22 / 1;
  padding: 0;
  border: 1px solid rgba(232, 209, 173, 0.28);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(232, 209, 173, 0.08);
  cursor: pointer;
  opacity: 0.72;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-thumb:hover,
.about-thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(232, 209, 173, 0.92);
  box-shadow: 0 10px 18px -16px rgba(232, 209, 173, 0.75);
}

.about-thumb.is-active {
  outline: 2px solid rgba(232, 209, 173, 0.34);
  outline-offset: 2px;
}

.needs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.needs-grid > article {
  grid-column: span 12;
}

@media (min-width: 920px) {
  .needs-grid > article {
    grid-column: span 4;
  }

  .needs-grid > article:nth-child(4),
  .needs-grid > article:nth-child(5) {
    grid-column: span 6;
  }
}

.services-showcase-head--split {
  display: grid;
  gap: 1rem;
}

.services-specialist-btn {
  align-self: center;
  justify-self: start;
}

.services-filters {
  margin-bottom: 1rem;
}

.service-filter-btn {
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.52rem 1rem;
}

.service-filter-btn--estetica {
  border-color: #c7a867;
  color: #6f4f14;
  background: #f5e6c5;
}

.service-filter-btn--estetica.is-active {
  color: #fff;
  background: #b08742;
  border-color: #8f6a2f;
}

.services-track {
  padding-inline: 0;
}

.service-showcase-card {
  flex: 0 0 clamp(280px, 30vw, 360px);
  scroll-snap-align: center;
}

.services-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
  min-height: auto;
}

.services-carousel-arrow {
  background: #fff;
  color: #24473a;
}

.section--deep {
  background:
    radial-gradient(circle at 80% 3%, rgba(45, 118, 85, 0.2), transparent 32%),
    linear-gradient(170deg, #081f18, #04130e 72%);
}

.section--deep .section-title,
.section--deep .card-title {
  color: #f0dfc4;
}

.section--deep .section-subtitle,
.section--deep .card-text {
  color: #bdd1c6;
}

.plans-section .section-subtitle {
  max-width: 68ch;
}

.plans-layout {
  display: grid;
  gap: 1.2rem;
}

.plans-feature {
  border: 1px solid rgba(128, 180, 157, 0.3);
  border-radius: 1.2rem;
  background: rgba(7, 24, 18, 0.76);
  overflow: hidden;
}

.plans-feature-media {
  margin: 0;
  aspect-ratio: 4 / 5;
}

.plans-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-feature-copy {
  padding: 1rem;
}

.plans-feature-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fd8bc;
}

.plans-feature-copy h3 {
  margin: 0.5rem 0 0;
  color: #e6d4b8;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.plan-card {
  background: #fff;
  border-color: #d4ddd3;
  border-radius: 1.1rem;
  padding: 1.2rem;
}

.plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.plan-category {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.plan-category svg {
  width: 1rem;
  height: 1rem;
  fill: #2d6049;
}

.plan-badge {
  margin: 0;
  align-self: start;
  background: #f2dfbe;
  color: #6f5420;
}

.plan-card > p {
  margin-bottom: 0.7rem;
}

.gift-hero {
  background:
    radial-gradient(circle at 0 0, rgba(238, 224, 194, 0.85), rgba(238, 224, 194, 0) 42%),
    #f3ead7;
}

.gift-hero-layout {
  display: grid;
  gap: clamp(1.8rem, 3.6vw, 3rem);
}

.gift-hero-media {
  margin: 0;
  border-radius: 1.3rem;
  overflow: hidden;
  position: relative;
}

.gift-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gift-voucher-overlay {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ecddc4;
  background: rgba(9, 30, 23, 0.75);
  border: 1px solid rgba(236, 221, 196, 0.34);
}

.steps--inline {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.steps--inline .step {
  background: #fff;
  border: 1px solid #d4ddd3;
  border-radius: 0.9rem;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-grid {
  margin-top: 1.1rem;
}

.trust-card {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: rgba(27, 100, 69, 0.1);
  border: 1px solid rgba(35, 109, 77, 0.24);
  display: inline-grid;
  place-items: center;
  color: #1f6f4e;
}

.trust-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.trust-closing {
  margin: 1.1rem 0 0;
  font-size: 1.03rem;
  color: #3d6052;
  font-weight: 600;
}

.experiences-section .carousel-arrow,
.faq-section .faq-index {
  border-color: rgba(130, 183, 160, 0.44);
}

.experiences-section .testimonial-card {
  background:
    radial-gradient(circle at 95% 5%, rgba(232, 201, 161, 0.14), transparent 32%),
    rgba(10, 36, 28, 0.84);
  border: 1px solid rgba(130, 183, 160, 0.33);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(239, 223, 194, 0.42);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

.testimonial-avatar--initials {
  background: linear-gradient(145deg, rgba(63, 122, 96, 0.95), rgba(28, 72, 55, 0.95));
  color: #f2dfc0;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(237, 220, 191, 0.2);
}

.testimonial-author {
  margin: 0.12rem 0 0;
  color: #9ec4b2;
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-stars {
  color: #f0c675;
}

.faq-section .container {
  max-width: 1180px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid rgba(130, 183, 160, 0.3);
  border-radius: 0.95rem;
  background: rgba(8, 29, 22, 0.55);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.72rem;
  color: #e4d3b8;
  font-weight: 700;
}

.faq-index {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(130, 183, 160, 0.45);
  display: grid;
  place-items: center;
  color: #88d8b2;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.faq-question {
  line-height: 1.35;
}

.faq-answer {
  color: #b8cec2;
}

.team-kicker {
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 5%, rgba(68, 143, 106, 0.18), transparent 32%),
    #f3ead7;
}

.contact-card--clean,
.contact-form-card--minimal {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.contact-map-banner {
  margin-top: 0.9rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #cdd6cb;
}

.contact-map-banner iframe {
  width: 100%;
  min-height: 188px;
  border: 0;
}

.contact-btn-row {
  margin-top: 0.9rem;
}

.contact-btn-row .btn {
  min-width: 208px;
}

.contact-form-card--minimal .form-field input,
.contact-form-card--minimal .form-field textarea {
  background: rgba(255, 255, 255, 0.8);
}

.final-cta {
  background:
    linear-gradient(120deg, rgba(4, 17, 13, 0.85), rgba(4, 17, 13, 0.64)),
    url("assets/final-cta-premium.webp") center / cover no-repeat;
}

.final-cta .btn {
  margin-top: 1rem;
}

.footer-grid--three {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.footer-grid--three .footer-col:nth-child(1) {
  grid-column: span 4;
}

.footer-grid--three .footer-col:nth-child(2) {
  grid-column: span 3;
}

.footer-grid--three .footer-col:nth-child(3) {
  grid-column: span 5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.footer-bottom--copyright {
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid rgba(215, 227, 216, 0.15);
}

.footer-bottom--copyright p {
  margin: 0;
  color: #cfded4;
  font-size: 0.86rem;
}

.floating-assistant {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 0.4rem;
}

.floating-assistant-chip {
  background: #fff;
  color: #1e5240;
  border-radius: 999px;
  padding: 0.26rem 0.64rem;
  font-size: 0.77rem;
  font-weight: 700;
  border: 1px solid rgba(44, 112, 80, 0.28);
  box-shadow: 0 16px 30px -22px rgba(27, 74, 56, 0.56);
}

.floating-assistant-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 14px 24px -18px rgba(5, 21, 16, 0.72);
}

.floating-whatsapp {
  position: static;
}

@media (min-width: 980px) {
  .about-hero-layout {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  }

  .services-showcase-head--split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .services-specialist-btn {
    justify-self: end;
  }

  .plans-layout {
    grid-template-columns: minmax(280px, 0.32fr) minmax(0, 1fr);
    align-items: start;
  }

  .gift-hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: clamp(2rem, 4.3vw, 3.4rem);
    align-items: start;
  }

  .steps--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .team-track .team-card {
    flex-basis: calc((100% - 0.85rem) / 2);
  }

  .footer-grid--three .footer-col:nth-child(1),
  .footer-grid--three .footer-col:nth-child(2),
  .footer-grid--three .footer-col:nth-child(3) {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .gift-voucher-overlay {
    display: none !important;
  }

  .hero {
    min-height: calc(100svh - 94px);
  }

  .hero-backdrops {
    inset: 0;
  }

  .services-showcase-head--split {
    grid-template-columns: 1fr;
  }

  .services-specialist-btn {
    justify-self: stretch;
  }

  .service-showcase-card {
    flex-basis: 86vw;
    max-width: 86vw;
  }

  .contact-btn-row .btn {
    min-width: 100%;
  }

  .floating-assistant {
    right: 0.7rem;
    bottom: 0.8rem;
    gap: 0.28rem;
  }

  .floating-assistant-chip {
    font-size: 0.71rem;
    padding: 0.22rem 0.5rem;
  }

  .floating-assistant-avatar {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-visual-image,
  .hero-backdrop,
  .hero-slide {
    transition: none !important;
  }
}

/* ===== 2026 Incremental Footer + Buttons Update ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border-width: 1.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px -20px rgba(8, 30, 22, 0.9);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25d366;
  border-color: #19b958;
  color: #053321;
  box-shadow: 0 14px 24px -20px rgba(25, 132, 77, 0.92);
}

.btn--whatsapp:hover {
  background: #38df78;
  border-color: #22c563;
  color: #042f1e;
}

.btn--surface {
  background: #e9d8ba;
  border-color: #c8a569;
  color: #4f3a12;
}

.btn--surface:hover {
  background: #efdcbf;
  border-color: #b88f50;
  color: #442f0d;
}

.btn--ghost {
  background: rgba(9, 31, 23, 0.58);
  border-color: rgba(232, 209, 173, 0.7);
  color: #f1e2ca;
}

.btn--ghost:hover {
  background: rgba(9, 31, 23, 0.74);
  border-color: rgba(232, 209, 173, 0.95);
  color: #fff3dd;
}

.floating-assistant-chip {
  background: #f7f3ea;
  color: #1d5a40;
  border-color: rgba(35, 109, 77, 0.34);
  font-weight: 800;
}

.floating-whatsapp {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -16px rgba(29, 128, 76, 0.9);
  background: #30dc6f;
}

.site-footer {
  background:
    radial-gradient(circle at 8% -8%, rgba(44, 124, 88, 0.22), rgba(44, 124, 88, 0) 46%),
    #113729;
}

.footer-grid--three {
  gap: 1.8rem;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}

.footer-grid--three .footer-col:nth-child(1) {
  padding-right: 0.7rem;
}

.footer-logo {
  width: clamp(110px, 13vw, 146px);
}

.footer-copy {
  margin-top: 1rem;
  max-width: 34ch;
  color: #d7e4dc;
  line-height: 1.6;
}

.footer-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 1.05rem;
}

.footer-col h3 {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  color: #eef6f1;
}

.footer-col a,
.footer-col p {
  color: #d0ddd5;
  font-size: 0.96rem;
  line-height: 1.58;
}

.footer-col p + p {
  margin-top: 0.55rem;
}

.footer-email-line {
  margin-top: 0.28rem;
}

.footer-email-inline {
  color: inherit;
  text-decoration: none;
}

.footer-email-inline:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-whatsapp-number {
  display: inline-block;
  margin-top: 0.2rem;
  margin-bottom: 0.95rem;
}

.footer-col em {
  color: #e8d1ad;
  font-style: italic;
  font-weight: 600;
}

.footer-col strong {
  color: #eef6f1;
  font-weight: 800;
}

.footer-bottom--copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 1rem;
}

.footer-bottom--copyright p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal-links {
  margin-top: 0;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-legal-links a {
  color: #dce9e0;
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: #f0debf;
}

@media (max-width: 1099px) {
  .footer-bottom--copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

/* Darker footer + subtle section drift on scroll */
.site-footer {
  background:
    radial-gradient(circle at 12% -10%, rgba(58, 142, 102, 0.12), rgba(58, 142, 102, 0) 44%),
    linear-gradient(180deg, #061711 0%, #04110d 72%, #030d09 100%) !important;
  border-top-color: rgba(136, 177, 157, 0.22);
}

main > section.scroll-drift,
.site-footer.scroll-drift {
  opacity: 0.001;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms var(--ease-premium),
    transform 960ms cubic-bezier(0.18, 0.86, 0.24, 0.99);
  will-change: opacity, transform;
}

main > section.scroll-drift.is-visible,
.site-footer.scroll-drift.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  main > section.scroll-drift,
  .site-footer.scroll-drift {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* ==========================================================================
   DAY SPA SECTION
   ========================================================================== */
.dayspa-section {
  position: relative;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08), transparent 50%), var(--color-surface);
  border-block: 1px solid var(--color-line);
}

.dayspa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .dayspa-layout {
    grid-template-columns: 1fr;
  }
}

.dayspa-content {
  max-width: 540px;
}

.dayspa-desc {
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.dayspa-pricing {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 500px) {
  .dayspa-pricing {
    flex-direction: column;
  }
}

.dayspa-price-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dayspa-price-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.dayspa-price-card h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.dayspa-price-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.dayspa-price-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--color-text);
  font-weight: 700;
}

.dayspa-price-card--premium {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0));
  border-color: rgba(212, 175, 55, 0.4);
}

.dayspa-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dayspa-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.dayspa-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dayspa-visual:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   PARTNER LOGO (HARMONIA)
   ========================================================================== */
.footer-partner {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partner span {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.footer-partner:hover .partner-logo {
  filter: none;
  opacity: 1;
}

/* ==========================================================================
   PERSUASIVE PLANS (LANDING PAGE STYLE)
   ========================================================================== */
.plans-subtitle-persuasive {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 500;
  max-width: 800px;
}

.plans-feature {
  background: linear-gradient(135deg, rgba(20, 22, 30, 0.9), rgba(10, 11, 15, 0.95));
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.plans-feature-title {
  font-size: 1.8rem;
  color: var(--color-text);
  line-height: 1.3;
}

.plan-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border-color: rgba(212, 175, 55, 0.5);
}

.plan-card-name {
  color: var(--color-primary);
  font-family: var(--font-display);
}

.plan-card-detail-item::before {
  content: "✔";
  color: var(--color-primary);
  font-size: 1rem;
}

/* ==========================================================================
   ELEGANT SPACING & OVERALL REFINEMENTS
   ========================================================================== */
.section {
  padding-block: clamp(5rem, 10vw, 8.5rem); /* Increased spacing for premium feel */
}
.section-head {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ==========================================================================
   SOBRE O UNIVERSO SPA (REFÚGIO URBANO)
   ========================================================================== */
.about-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-hero-layout { grid-template-columns: 1fr; gap: 3rem; }
}
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.6), transparent);
  pointer-events: none;
}
.about-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-thumb-strip {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none; /* Firefox */
  z-index: 10;
}
.about-thumb-strip::-webkit-scrollbar { display: none; }
.about-thumb-strip button {
  flex: 0 0 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.about-thumb-strip button:hover,
.about-thumb-strip button.is-active {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.about-thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   PLANOS DE TRATAMENTO (STACKED)
   ========================================================================== */
.plans-layout--stacked {
  display: block;
}
.plans-grid--vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-template-columns: 1fr; /* Override if it was grid */
}
.plan-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 22, 30, 0.6), rgba(10, 11, 15, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.15);
}
@media (max-width: 768px) {
  .plan-card { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.8rem; }
}
.plan-card-header {
  flex: 1;
  padding-right: 2rem;
}
.plan-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  background: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  font-weight: 700;
}
.plan-card-name {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}
.plan-card-desc {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}
.plan-card-details {
  flex: 0 0 auto;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .plan-card-details { padding-left: 0; border-left: none; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
}
.plan-card-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}
.plan-card-cta {
  margin-top: 1rem;
  align-self: flex-start;
}

/* ==========================================================================
   VALE PRESENTE (INLINE STEPS)
   ========================================================================== */
.gift-steps-fullwidth {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.steps--horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .steps--horizontal { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}
@media (max-width: 500px) {
  .steps--horizontal { grid-template-columns: 1fr; }
}
.steps--horizontal::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps--horizontal::before { display: none; }
}
.steps--horizontal .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.steps--horizontal .step-number {
  position: absolute;
  top: -5px;
  right: calc(50% - 35px);
  background: var(--color-primary);
  color: var(--color-bg);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ==========================================================================
   FAQ (1 COLUMN)
   ========================================================================== */
.faq-list--single {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: min(980px, 100%);
  margin: 0;
}
.faq-list--single .faq-item {
  width: 100%;
}

/* ==========================================================================
   FOOTER SOCIAL ICONS ALIGNMENT
   ========================================================================== */
.footer-social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}
.footer-social-icons .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  transition: all 0.3s ease;
}
.footer-social-icons .social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-social-icons .social-link:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

/* ==========================================================================
   2026 FOOTER LAYOUT REFINEMENT
   ========================================================================== */
.footer-grid--three .footer-col:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  width: clamp(92px, 9.5vw, 126px);
  margin-bottom: 0.95rem;
}

.footer-copy {
  margin-top: 0;
  max-width: 30ch;
}

.footer-partner {
  margin-top: 1.25rem;
  padding-top: 1.2rem;
}

.footer-grid--three .footer-col:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col .footer-whatsapp-number {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  padding: 0.44rem 0.92rem;
  line-height: 1.25;
  border: 0;
  background: rgba(15, 44, 33, 0.58);
  color: #e8f3ec;
  box-shadow:
    0 8px 18px -14px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(226, 238, 231, 0.16);
}

.footer-col .footer-whatsapp-number:hover {
  color: #f4f9f6;
  background: rgba(23, 58, 45, 0.74);
  box-shadow:
    0 10px 20px -14px rgba(0, 0, 0, 0.78),
    inset 0 0 0 1px rgba(238, 247, 242, 0.3);
}

.footer-room-rental {
  display: block;
  width: min(100%, 450px);
  margin-top: 1.45rem;
  padding: 0.9rem 1rem 0.95rem;
  border: 1px solid rgba(248, 252, 250, 0.7);
  border-radius: 16px;
  background: transparent;
  color: #eaf4ee;
  text-decoration: none;
  box-shadow: 0 14px 24px -20px rgba(0, 0, 0, 0.75);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.footer-grid--three .footer-col:nth-child(2) > a[data-i18n="footer.contact"] {
  margin-bottom: 0.95rem;
}

.footer-room-rental:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 252, 250, 0.92);
  background: rgba(248, 252, 250, 0.03);
  box-shadow: 0 18px 28px -20px rgba(0, 0, 0, 0.82);
}

.footer-room-rental:focus-visible {
  outline: 2px solid rgba(248, 252, 250, 0.82);
  outline-offset: 2px;
}

.footer-room-rental__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.38;
  color: #f2f8f5;
}

.footer-room-rental__action {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  margin-top: 0.38rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #d6e8df;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.footer-room-rental__action::after {
  content: "↗";
  font-size: 0.82rem;
  transform: translateY(-1px);
}

.footer-social-icons--contact {
  margin-top: 0.15rem;
  margin-bottom: 1.1rem;
  justify-content: flex-start;
}

.footer-social-icons--contact + h3 {
  margin-top: 0.35rem;
}

@media (max-width: 1099px) {
  .footer-social-icons--contact {
    margin-bottom: 0.9rem;
  }

  .footer-col .footer-whatsapp-number {
    margin-top: 0.4rem;
  }

  .footer-room-rental {
    width: 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   2026 POLISH FIXES (HERO + SERVICES)
   ========================================================================== */
.hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(56, 143, 107, 0.24), transparent 42%),
    linear-gradient(138deg, #0a251d 4%, #071a14 58%, #05110d 100%);
  isolation: isolate;
}

.hero-backdrops {
  z-index: 0;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(
      102deg,
      rgba(3, 12, 9, 0.72) 10%,
      rgba(3, 12, 9, 0.42) 52%,
      rgba(3, 12, 9, 0.2) 100%
    ),
    radial-gradient(circle at 86% 20%, rgba(232, 201, 161, 0.22), transparent 42%);
}

.hero::after {
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-backdrop {
  background-color: #0a251d;
  background-repeat: no-repeat;
  filter: saturate(1.04) contrast(1.06) brightness(0.9);
}

.hero-backdrop.is-active {
  filter: saturate(1.12) contrast(1.08) brightness(0.96);
}

.hero-panel-marker {
  color: transparent;
}

.hero-panel-marker::before {
  content: "";
  width: 0.36rem;
  height: 0.2rem;
  border-left: 2px solid #9cf7c3;
  border-bottom: 2px solid #9cf7c3;
  transform: rotate(-45deg) translateY(-0.02rem);
}

.nav-row,
.site-header.is-scrolled .nav-row {
  min-height: 5.16rem;
  padding-block: 0.2rem;
}

.brand-mark,
.site-header.is-scrolled .brand-mark {
  width: 82px;
}

.brand-mark--horizontal,
.site-header.is-scrolled .brand-mark--horizontal {
  width: clamp(126px, 17.2vw, 194px);
}

.services-filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.06rem 0.08rem 0.26rem;
}

.services-filter-select-wrap {
  display: none;
  position: relative;
  margin: 0 0 1rem;
}

.services-filter-select {
  width: 100%;
  border: 1px solid rgba(145, 173, 160, 0.72);
  border-radius: 0.92rem;
  padding: 0.78rem 2.9rem 0.78rem 0.95rem;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 246, 0.98));
  color: #234639;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 14px 26px -24px rgba(22, 58, 44, 0.45);
}

.services-filter-select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid #2c5a48;
  border-bottom: 2px solid #2c5a48;
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
}

.services-filter-select:focus-visible {
  outline: 2px solid rgba(91, 191, 143, 0.68);
  outline-offset: 2px;
}

.services-filters::-webkit-scrollbar {
  display: none;
}

.service-filter-btn {
  flex: 0 0 auto;
}

.services-track {
  padding-inline: clamp(0.12rem, 1.6vw, 0.65rem);
  scroll-padding-inline: clamp(0.12rem, 1.6vw, 0.65rem);
}

.services-track:focus-visible {
  outline: 2px solid rgba(117, 241, 165, 0.82);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .services-filters {
    flex-wrap: nowrap;
  }

  .services-track {
    gap: 0.85rem;
  }

  .service-showcase-card {
    flex-basis: min(87vw, 340px);
    max-width: min(87vw, 340px);
  }

  .brand-mark--horizontal,
  .site-header.is-scrolled .brand-mark--horizontal {
    width: clamp(142px, 52vw, 194px);
  }
}

.need-help-copy {
  color: #3f6054;
  font-weight: 600;
}

.need-help-btn {
  background: linear-gradient(135deg, #2e9a6b, #247a55);
  border: 1px solid #1d6648;
  color: #f3fbf7;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 24px -16px rgba(28, 92, 64, 0.56);
}

.need-help-btn:hover {
  background: linear-gradient(135deg, #35a776, #2a8660);
  border-color: #215f46;
  color: #ffffff;
}

.need-help-btn:focus-visible {
  outline: 2px solid rgba(46, 154, 107, 0.78);
  outline-offset: 2px;
}

/* ==========================================================================
   2026 SERVICES LAYOUT + CAROUSEL UX FIXES
   ========================================================================== */
.services-showcase-section {
  overflow: visible;
}

.services-showcase-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.services-showcase-head--split > div {
  max-width: 62ch;
}

.services-showcase-head--split .section-subtitle {
  margin-bottom: 0;
  max-width: 50ch;
}

.services-specialist-btn {
  justify-self: start;
  align-self: start;
  margin-top: 0.12rem;
}

.services-showcase {
  position: relative;
  overflow: visible;
}

.services-track {
  gap: 1rem;
  padding-inline: clamp(2.8rem, 4.4vw, 3.6rem);
  padding-block: 0.34rem 1.6rem;
  scroll-padding-inline: clamp(2.8rem, 4.4vw, 3.6rem);
  scroll-behavior: smooth;
}

.services-carousel-controls {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

.services-carousel-arrow {
  pointer-events: auto;
  width: 2.5rem;
  height: 2.5rem;
  border-width: 1px;
  border-color: rgba(83, 120, 106, 0.42);
  background: rgba(255, 255, 255, 0.92);
  color: #24473a;
  box-shadow: 0 12px 24px -18px rgba(21, 55, 43, 0.58);
}

.service-showcase-card {
  overflow: visible;
  box-shadow:
    0 20px 42px -28px rgba(7, 28, 20, 0.3),
    0 2px 5px rgba(13, 40, 30, 0.08);
}

.service-card-cta {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #e8d5b4, #dfc79d);
  border-color: rgba(182, 139, 70, 0.66);
  color: #503c1b;
  box-shadow: 0 10px 18px -14px rgba(130, 98, 45, 0.56);
}

.service-card-cta:hover {
  background: linear-gradient(135deg, #eddcbe, #e4cfaa);
  border-color: rgba(156, 117, 54, 0.72);
  color: #433116;
}

@media (max-width: 920px) {
  .services-track {
    padding-inline: 0.25rem;
    scroll-padding-inline: 0.25rem;
  }

  .services-carousel-controls {
    position: relative;
    inset: auto;
    margin-top: 0.2rem;
    justify-content: center;
    gap: 0.9rem;
    pointer-events: auto;
  }

  .services-carousel-arrow {
    box-shadow: none;
  }
}

/* ==========================================================================
   2026 DAY SPA BALANCE FIXES
   ========================================================================== */
.dayspa-price-card {
  background: linear-gradient(150deg, #ffffff, #f7f3ea);
  border: 1px solid rgba(184, 160, 121, 0.42);
  box-shadow: 0 14px 26px -20px rgba(48, 58, 50, 0.18);
}

.dayspa-price-card p {
  color: #5f6f68;
}

.dayspa-price-card strong {
  color: #294b3e;
}

.dayspa-price-card--premium {
  background: linear-gradient(150deg, #f8f1e2, #f3e6cd);
  border-color: rgba(190, 151, 87, 0.5);
}

.dayspa-visual {
  aspect-ratio: 5 / 4;
  min-height: clamp(320px, 33vw, 500px);
  max-height: min(72vh, 560px);
}

.dayspa-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .dayspa-visual {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: none;
  }
}

/* ==========================================================================
   2026 PLANS PREMIUM RESTYLE
   ========================================================================== */
.plans-section .section-head {
  margin-bottom: clamp(2rem, 3.8vw, 2.8rem);
}

.plans-section .plans-subtitle-persuasive {
  max-width: 58ch;
  color: #c9dbd3;
  font-size: clamp(1.06rem, 1.95vw, 1.22rem);
  line-height: 1.52;
}

.plans-section .plans-tabs {
  gap: 0.68rem;
  margin-bottom: 1.25rem;
}

.plans-section .plan-tab-btn {
  border: 1px solid rgba(194, 214, 204, 0.62);
  background: rgba(248, 251, 249, 0.96);
  color: #1f4637;
  padding: 0.56rem 1.14rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px -12px rgba(14, 45, 34, 0.5);
}

.plans-section .plan-tab-btn[data-plans-tab="massoterapia"].is-active {
  border-color: #4b9f78;
  background: #4b9f78;
  color: #f6fffa;
}

.plans-section .plan-tab-btn[data-plans-tab="estetica"].is-active {
  border-color: #c7a067;
  background: #e4cdab;
  color: #573f1c;
}

.plans-section .plans-grid--vertical {
  display: grid;
  gap: 1.3rem;
}

.plans-section .plans-group {
  padding: clamp(0.95rem, 1.9vw, 1.2rem);
  border-radius: 1.35rem;
  border: 1px solid rgba(134, 182, 159, 0.32);
}

.plans-section .plans-group--massoterapia {
  background:
    radial-gradient(circle at 12% 16%, rgba(92, 169, 130, 0.16), transparent 40%),
    linear-gradient(155deg, rgba(20, 64, 48, 0.25), rgba(12, 48, 36, 0.16));
}

.plans-section .plans-group--estetica {
  background:
    radial-gradient(circle at 14% 14%, rgba(215, 181, 130, 0.2), transparent 44%),
    linear-gradient(155deg, rgba(97, 70, 33, 0.2), rgba(73, 50, 20, 0.12));
}

.plans-section .plans-group-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.plans-section .plans-group-separator {
  width: 1.7rem;
  height: 1px;
  background: rgba(216, 238, 228, 0.72);
}

.plans-section .plans-group-title {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d5e9de;
}

.plans-section .plans-group--estetica .plans-group-separator {
  background: rgba(244, 228, 203, 0.85);
}

.plans-section .plans-group--estetica .plans-group-title {
  color: #f1e1c4;
}

.plans-section .plans-group-grid {
  display: grid;
  gap: 1.05rem;
}

.plans-section .plan-card {
  display: grid;
  grid-template-columns: minmax(156px, 192px) minmax(0, 1fr) minmax(228px, 262px);
  align-items: center;
  gap: 1.18rem;
  padding: 1.18rem 1.24rem;
  border-radius: 1.28rem;
  border: 1px solid rgba(141, 187, 164, 0.44);
  box-shadow:
    0 18px 34px -24px rgba(4, 20, 14, 0.45),
    0 2px 6px rgba(14, 39, 28, 0.08);
  overflow: hidden;
}

.plans-section .plan-card-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(121, 164, 144, 0.42);
  background: rgba(245, 250, 247, 0.65);
}

.plans-section .plan-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plans-section .plan-card-main {
  min-width: 0;
}

.plans-section .plan-badge {
  margin: 0;
  display: inline-flex;
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.plans-section .plan-card-name {
  margin: 0.58rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 1.84rem);
  line-height: 1.1;
}

.plans-section .plan-card-desc {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.plans-section .plan-card-details-wrap {
  display: grid;
  gap: 0.86rem;
  align-self: stretch;
  padding-left: 1rem;
  border-left: 1px solid rgba(99, 140, 123, 0.36);
}

.plans-section .plan-details {
  margin: 0;
  padding-left: 1rem;
}

.plans-section .plan-card-detail-item {
  color: #28483a;
  font-size: 0.99rem;
  line-height: 1.35;
}

.plans-section .plan-card-cta {
  width: 100%;
  justify-content: center;
  font-weight: 800;
}

.plans-section .plan-card[data-plan-category="massoterapia"] {
  background: linear-gradient(145deg, rgba(154, 221, 191, 0.42), rgba(236, 248, 242, 0.98) 42%);
  border-color: rgba(99, 167, 132, 0.52);
}

.plans-section .plan-card[data-plan-category="massoterapia"] .plan-badge {
  background: rgba(73, 153, 116, 0.2);
  color: #245842;
}

.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-name {
  color: #1f5b42;
}

.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-desc {
  color: #315c4a;
}

.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-cta {
  background: linear-gradient(135deg, #4da47b, #398e67);
  border-color: #327f5c;
  color: #f6fffa;
}

.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-cta:hover {
  background: linear-gradient(135deg, #59b286, #429b71);
  color: #ffffff;
}

.plans-section .plan-card[data-plan-category="estetica"] {
  background: linear-gradient(145deg, rgba(235, 218, 189, 0.76), rgba(250, 241, 226, 0.98) 42%);
  border-color: rgba(197, 160, 103, 0.5);
}

.plans-section .plan-card[data-plan-category="estetica"] .plan-badge {
  background: rgba(198, 156, 92, 0.22);
  color: #6c4a1d;
}

.plans-section .plan-card[data-plan-category="estetica"] .plan-card-name {
  color: #6a4720;
}

.plans-section .plan-card[data-plan-category="estetica"] .plan-card-desc {
  color: #6a5640;
}

.plans-section .plan-card[data-plan-category="estetica"] .plan-card-cta {
  background: linear-gradient(135deg, #e5cea7, #d9ba89);
  border-color: #c59d63;
  color: #553a17;
}

.plans-section .plan-card[data-plan-category="estetica"] .plan-card-cta:hover {
  background: linear-gradient(135deg, #ebd8b6, #e0c495);
  color: #4a3113;
}

@media (max-width: 1024px) {
  .plans-section .plans-group {
    padding: 0.92rem;
  }

  .plans-section .plan-card {
    grid-template-columns: 1fr;
    gap: 0.98rem;
    padding: 1.05rem;
  }

  .plans-section .plan-card-media {
    aspect-ratio: 16 / 9;
  }

  .plans-section .plan-card-details-wrap {
    border-left: 0;
    border-top: 1px solid rgba(99, 140, 123, 0.36);
    padding-left: 0;
    padding-top: 0.88rem;
  }
}

/* ==========================================================================
   2026 ABOUT SECTION LIGHTWEIGHT PREMIUM
   ========================================================================== */
.about-section--hero {
  background:
    radial-gradient(circle at 18% 14%, rgba(82, 170, 131, 0.2), transparent 34%),
    linear-gradient(168deg, #08281f, #051911 72%);
}

.about-section--hero .about-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: start;
}

.about-section--hero .about-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: clamp(0.4rem, 1.1vw, 0.9rem) clamp(0.2rem, 0.8vw, 0.7rem) 0;
}

.about-section--hero .section-title {
  max-width: 16ch;
  margin-bottom: 1.05rem;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.about-section--hero .section-subtitle {
  max-width: 52ch;
  color: #c7dbd3;
  line-height: 1.48;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.about-section--hero .about-bullets {
  margin: 1.3rem 0 1.4rem;
  padding-left: 1.05rem;
  color: #dcebe4;
  font-size: 1.02rem;
  line-height: 1.38;
}

.about-section--hero .about-bullets li {
  margin-bottom: 0.26rem;
}

.about-section--hero .about-visual {
  padding: 0.9rem;
  aspect-ratio: auto;
  border-radius: 1.4rem;
  border: 1px solid rgba(116, 167, 145, 0.36);
  background: linear-gradient(160deg, rgba(8, 27, 21, 0.9), rgba(6, 20, 16, 0.86));
  box-shadow: 0 24px 46px -32px rgba(0, 0, 0, 0.62);
  display: grid;
  gap: 0.7rem;
}

.about-section--hero .about-visual::after {
  display: none;
}

.about-section--hero .about-visual-frame {
  border-radius: 0.95rem;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: rgba(4, 14, 11, 0.74);
}

.about-section--hero .about-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section--hero .about-thumb-strip {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 0.02rem 0.02rem 0.08rem;
  gap: 0.48rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-section--hero .about-thumb-strip::-webkit-scrollbar {
  display: none;
}

.about-section--hero .about-thumb,
.about-section--hero .about-thumb-strip button {
  flex: 0 0 3.35rem;
  width: 3.35rem;
  height: 2.48rem;
  border-radius: 0.56rem;
  border: 1px solid rgba(142, 188, 167, 0.34);
  box-shadow: none;
  opacity: 0.86;
}

.about-section--hero .about-thumb:hover,
.about-section--hero .about-thumb.is-active,
.about-section--hero .about-thumb-strip button:hover,
.about-section--hero .about-thumb-strip button.is-active {
  transform: translateY(-1px);
  opacity: 1;
  border-color: rgba(232, 209, 173, 0.7);
}

@media (max-width: 1024px) {
  .about-section--hero .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .about-section--hero .about-content {
    padding-right: 0;
  }

  .about-section--hero .about-visual-frame {
    aspect-ratio: 15 / 10;
  }
}

/* ==========================================================================
   2026 TEAM CAROUSEL USABILITY FIXES
   ========================================================================== */
.team-name {
  color: #2b4f41;
  text-shadow: none;
}

.team-carousel {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.92rem;
  align-items: center;
}

.carousel-arrow {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(160, 187, 175, 0.72);
  background: #f6faf8;
  color: #285040;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 4;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.carousel-arrow:hover {
  background: #ffffff;
  border-color: rgba(86, 146, 119, 0.74);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -16px rgba(23, 66, 50, 0.42);
}

.carousel-arrow:focus-visible {
  outline: 2px solid rgba(76, 163, 125, 0.78);
  outline-offset: 2px;
}

.team-track {
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
  padding-block: 0.24rem 0.5rem;
  scroll-padding-inline: 0.65rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-stop: always;
}

.team-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.team-track .team-card {
  position: relative;
  scroll-snap-align: center;
  border-color: rgba(188, 204, 195, 0.78);
}

.team-track .team-card.team-card--founder {
  background: linear-gradient(160deg, #e6efe9, #dae7df);
  border-color: rgba(107, 149, 128, 0.82);
  box-shadow:
    0 24px 36px -30px rgba(27, 68, 51, 0.45),
    0 0 0 1px rgba(101, 150, 125, 0.16);
}

.team-track .team-card.team-card--founder .team-name {
  color: #1f4a3b;
}

.team-track .team-card.team-card--founder .team-specialty {
  color: #2f6b52;
}

.team-track .team-card.team-card--founder .team-description {
  color: #45685a;
  border-top-color: rgba(113, 154, 134, 0.62);
}

.team-badge {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  padding: 0.3rem 0.64rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
}

.team-badge--founder {
  color: #1f5a44;
  border: 1px solid rgba(94, 144, 121, 0.72);
  background: linear-gradient(135deg, #eaf5ee, #d9ecdf);
}

@media (max-width: 760px) {
  .carousel-arrow {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1rem;
  }

  .team-kicker {
    font-size: 0.92rem;
  }

  .team-subtitle-pill {
    width: 100%;
  }
}

/* ==========================================================================
   2026 TRUST SECTION HIERARCHY + SPACING
   ========================================================================== */
.trust-section {
  margin-top: clamp(1.2rem, 2.8vw, 2.2rem);
  padding-top: clamp(4.4rem, 7.2vw, 5.8rem);
  border-top: 1px solid rgba(169, 191, 180, 0.4);
  background:
    radial-gradient(circle at 88% 9%, rgba(74, 160, 123, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(251, 252, 251, 0.45), rgba(251, 252, 251, 0));
}

.trust-head {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(0.64rem, 1.6vw, 1rem);
  align-items: start;
  margin-bottom: clamp(1.3rem, 3vw, 2rem);
}

.trust-head .eyebrow {
  grid-column: 1;
}

.trust-title {
  grid-column: 1;
  max-width: none;
  margin-top: 0.18rem;
  font-size: clamp(1.98rem, 3.8vw, 3.24rem);
  line-height: 1.12;
  letter-spacing: -0.006em;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  color: #21483a;
}

.trust-intro {
  grid-column: 1;
  margin: 0;
  max-width: min(100%, 76ch);
  color: #466357;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.48;
  font-weight: 500;
}

.trust-grid {
  margin-top: 1.35rem;
  gap: 1rem;
}

.trust-card {
  border-radius: 1.14rem;
  border: 1px solid rgba(178, 198, 188, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 248, 0.9));
  padding: 1.08rem 1.08rem 1.04rem;
  box-shadow: 0 14px 26px -24px rgba(31, 67, 52, 0.28);
  gap: 0.94rem;
}

.trust-icon {
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 0.94rem;
  border: 1px solid rgba(76, 148, 113, 0.44);
  background: rgba(77, 170, 130, 0.14);
}

.trust-icon svg {
  width: 1.42rem;
  height: 1.42rem;
}

.trust-card h3 {
  margin: 0.05rem 0 0.32rem;
  font-size: 1.12rem;
  color: #234638;
}

.trust-card p {
  color: #576d64;
  font-size: 1rem;
  line-height: 1.42;
}

.trust-closing {
  margin-top: 1.3rem;
  color: #3f6254;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

@media (max-width: 760px) {
  .trust-head {
    grid-template-columns: 1fr;
    row-gap: 0.82rem;
  }

  .trust-intro {
    grid-column: 1;
  }

  .trust-title {
    max-width: none;
  }

  .trust-icon {
    width: 2.58rem;
    height: 2.58rem;
  }
}

/* ==========================================================================
   2026 CONTACT SECTION LIGHTWEIGHT REFINEMENT
   ========================================================================== */
.contact-section {
  background:
    radial-gradient(circle at 84% 6%, rgba(72, 150, 113, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(247, 241, 227, 0.88), rgba(247, 241, 227, 0.74));
}

.contact-section .section-head {
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-layout {
  grid-template-columns: minmax(0, 920px);
  gap: 0;
  align-items: start;
}

.contact-card--clean,
.contact-form-card--minimal {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-card--clean {
  padding: 0.25rem 0.1rem 0;
}

.contact-item {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(173, 190, 178, 0.44);
}

.contact-item + .contact-item {
  margin-top: 0.95rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #648178;
}

.contact-text {
  margin-top: 0.28rem;
  color: #38564c;
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-text strong {
  color: #253f36;
}

.contact-email-link {
  color: #38564c;
  font-weight: 500;
  text-decoration: none;
}

.contact-email-link:hover {
  color: #253f36;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-map-banner {
  margin-top: 1.18rem;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 28px -24px rgba(22, 58, 45, 0.36);
}

.contact-map-banner iframe {
  min-height: 204px;
}

.contact-btn-row {
  margin-top: 1.05rem;
  gap: 0.66rem;
}

.contact-btn-row .btn {
  min-width: 198px;
}

.contact-form-card--minimal {
  padding: 0.2rem 0.1rem 0;
}

.contact-form {
  gap: 0.92rem;
}

.form-field {
  gap: 0.4rem;
}

.form-field > span {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #2d5245;
}

.contact-form-card--minimal .form-field input,
.contact-form-card--minimal .form-field textarea {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(150, 178, 164, 0.6);
  border-radius: 0.9rem;
  color: #27483d;
  padding: 0.84rem 0.95rem;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-card--minimal .form-field input:focus,
.contact-form-card--minimal .form-field textarea:focus {
  outline: none;
  border-color: rgba(81, 151, 117, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(86, 160, 124, 0.18);
}

.contact-form-card--minimal .form-field textarea {
  min-height: 168px;
}

.contact-form [data-contact-submit] {
  margin-top: 0.22rem;
  align-self: flex-start;
}

.btn--whatsapp {
  background: #25d366;
  border-color: #19b958;
  color: #053321;
  box-shadow: 0 14px 24px -20px rgba(25, 132, 77, 0.92);
}

.btn--whatsapp:hover {
  background: #38df78;
  border-color: #22c563;
  color: #042f1e;
}

.btn--primary {
  background: linear-gradient(135deg, #ead8b8, #dec49e);
  border-color: rgba(170, 126, 62, 0.78);
  color: #4a3719;
  box-shadow: 0 14px 24px -20px rgba(115, 83, 37, 0.48);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #efdec0, #e5cfad);
  border-color: rgba(158, 114, 49, 0.84);
  color: #3f2d11;
}

.form-status {
  margin-top: 0.12rem;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-map-banner iframe {
    min-height: 188px;
  }
}

/* ==========================================================================
   2026 BATCH UX REFINEMENT (HERO, SERVICES, PLANS, ABOUT, GIFT, FAQ, CONTACT)
   ========================================================================== */
.nav-row,
.site-header.is-scrolled .nav-row {
  min-height: 5.1rem;
}

.brand-mark--horizontal,
.site-header.is-scrolled .brand-mark--horizontal {
  width: clamp(138px, 17.5vw, 198px);
  height: auto;
}

.hero-backdrop {
  background-color: #0c2f24;
}

.hero-panel {
  background: linear-gradient(145deg, rgba(4, 31, 23, 0.92), rgba(2, 25, 18, 0.86));
  border-color: rgba(171, 214, 192, 0.24);
  backdrop-filter: blur(2px);
}

.need-help-copy {
  color: #41685b;
  font-weight: 700;
  margin-top: 1.08rem;
}

.need-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 302px);
  margin: 0.74rem auto 0;
  background: linear-gradient(135deg, #ebdbc0, #dfc8a5);
  border: 1px solid rgba(177, 136, 75, 0.72);
  color: #553d1b;
  font-weight: 800;
  box-shadow: 0 14px 22px -18px rgba(112, 78, 35, 0.5);
}

.need-help-btn:hover {
  background: linear-gradient(135deg, #f0e3ca, #e4d0b1);
  border-color: rgba(165, 122, 60, 0.76);
  color: #4b3415;
}

.services-showcase-head--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1.2rem 2rem;
}

.services-specialist-btn {
  justify-self: end;
  align-self: center;
  margin-top: clamp(1rem, 2.4vw, 2rem);
  white-space: nowrap;
  background: linear-gradient(135deg, #ebd9bb, #e1c89f);
  border-color: rgba(174, 133, 73, 0.72);
  color: #5a401c;
  font-weight: 800;
}

.services-specialist-btn:hover {
  background: linear-gradient(135deg, #f1e2c8, #e7d1ae);
  border-color: rgba(161, 117, 56, 0.78);
  color: #4a3214;
}

.service-filter-btn {
  border-color: #c9d4cb;
  background: rgba(255, 255, 255, 0.9);
  color: #305144;
}

.service-filter-btn.is-active {
  border-color: rgba(168, 126, 66, 0.7);
  background: linear-gradient(135deg, #ecdcc1, #e1cbab);
  color: #5a4020;
}

.service-card-cta {
  background: linear-gradient(135deg, #ebdbc0, #dfc8a5);
  border-color: rgba(174, 133, 73, 0.7);
  color: #543d1b;
}

.service-card-cta:hover {
  background: linear-gradient(135deg, #f1e3cb, #e5d0b0);
  border-color: rgba(161, 117, 56, 0.74);
  color: #493212;
}

.plans-section .plan-card-cta,
.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-cta,
.plans-section .plan-card[data-plan-category="estetica"] .plan-card-cta {
  background: linear-gradient(135deg, #ecdec6, #dfcaab);
  border-color: rgba(173, 131, 70, 0.72);
  color: #533b18;
  box-shadow: 0 14px 24px -20px rgba(115, 83, 37, 0.5);
}

.plans-section .plan-card-cta:hover,
.plans-section .plan-card[data-plan-category="massoterapia"] .plan-card-cta:hover,
.plans-section .plan-card[data-plan-category="estetica"] .plan-card-cta:hover {
  background: linear-gradient(135deg, #f2e6d1, #e6d4b9);
  border-color: rgba(157, 114, 49, 0.82);
  color: #432d11;
}

.about-section--hero .about-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.7rem, 3vw, 2.8rem);
  align-items: start;
}

.about-section--hero .about-content {
  padding-right: clamp(0.2rem, 1.2vw, 1.2rem);
}

.about-section--hero .about-bullets {
  margin: 1.5rem 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
  max-width: 52ch;
}

.about-section--hero .about-bullets li {
  position: relative;
  margin: 0;
  padding: 0.62rem 0.92rem 0.62rem 2.18rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(128, 188, 161, 0.28);
  background: linear-gradient(140deg, rgba(225, 242, 233, 0.12), rgba(225, 242, 233, 0.05));
}

.about-section--hero .about-bullets li::before {
  content: "";
  position: absolute;
  left: 0.82rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: -0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 198, 168, 0.7);
  background: radial-gradient(circle at 45% 40%, rgba(117, 241, 165, 0.62), rgba(74, 179, 132, 0.24));
}

.about-section--hero .about-visual {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 0.52rem;
  padding: 0.78rem;
}

.about-section--hero .about-visual-intro {
  margin: 0;
  max-width: none;
  color: #d3e4dc;
  font-size: clamp(0.98rem, 1.22vw, 1.1rem);
  line-height: 1.46;
}

.about-section--hero .about-visual-frame {
  aspect-ratio: 16 / 9;
}

.about-section--hero .about-thumb-strip {
  margin-top: 0;
}

.gift-hero-copy .section-subtitle[data-i18n="gift.subtitle_2"] {
  margin-top: 1.32rem;
  padding-left: 0.92rem;
  border-left: 3px solid rgba(79, 143, 113, 0.48);
  color: #2e5648;
  font-weight: 600;
}

.gift-cta-btn {
  margin-top: 1.16rem;
}

.gift-steps-fullwidth .steps--horizontal {
  gap: clamp(0.9rem, 1.9vw, 1.25rem);
  align-items: stretch;
  grid-auto-rows: 1fr;
  margin-top: 0;
  overflow: visible;
}

.gift-steps-fullwidth .steps--horizontal::before {
  display: none;
}

.gift-steps-fullwidth .steps--horizontal .step {
  position: relative;
  min-height: 206px;
  padding: 2.9rem 1.18rem 1.26rem;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(5.5rem, 1fr);
  justify-items: center;
  align-content: start;
  border-radius: 1.08rem;
  border: 1px solid rgba(164, 184, 171, 0.74);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.5));
  box-shadow: 0 16px 28px -20px rgba(56, 84, 72, 0.42);
  transform: translateY(-1rem);
  transition: transform 0.28s var(--ease-premium), box-shadow 0.24s ease, border-color 0.24s ease;
}

.gift-steps-fullwidth .steps--horizontal .step:hover {
  transform: translateY(-1.35rem);
  border-color: rgba(119, 166, 143, 0.84);
  box-shadow: 0 22px 34px -22px rgba(40, 72, 58, 0.48);
}

.gift-steps-fullwidth .steps--horizontal .step-number {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  min-width: 2.56rem;
  height: 2.08rem;
  padding: 0 0.58rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(93, 144, 119, 0.54);
  background: linear-gradient(135deg, #eef8f2, #d6eadf);
  color: #2d7357;
  font-size: 1.14rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.gift-steps-fullwidth .step-icon {
  width: 3.9rem;
  height: 3.9rem;
  margin-bottom: 0.98rem;
  border-color: rgba(83, 146, 116, 0.58);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px -18px rgba(26, 72, 54, 0.5);
}

.gift-steps-fullwidth .step-icon svg {
  width: 1.76rem;
  height: 1.76rem;
  color: #2f6f54;
}

.gift-steps-fullwidth .step-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gift-steps-fullwidth .step-text {
  margin: 0;
  max-width: 21ch;
  width: 100%;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34584c;
  font-size: clamp(1.04rem, 1.4vw, 1.26rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: balance;
}

.faq-list--single {
  max-width: none;
  width: 100%;
}

.contact-section {
  background: #f3ead8;
}

.contact-card--clean,
.contact-form-card--minimal {
  background: transparent;
}

.contact-map-banner {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(174, 184, 173, 0.62);
}

.contact-form-card--minimal .form-field input,
.contact-form-card--minimal .form-field textarea {
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(154, 177, 164, 0.7);
}

.contact-form-card--minimal .form-field input:focus,
.contact-form-card--minimal .form-field textarea:focus {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .services-showcase-head--split {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .services-specialist-btn {
    justify-self: start;
    margin-top: 0;
    white-space: normal;
  }
}

/* ==========================================================================
   2026 BATCH 2 REFINEMENT (REQUESTED)
   ========================================================================== */
.services-showcase-head {
  max-width: none;
}

.services-showcase-head--split {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.services-showcase-head--split > div {
  max-width: 70ch;
}

.services-specialist-btn {
  justify-self: start;
  align-self: start;
  margin-top: clamp(0.2rem, 1vw, 0.6rem);
  max-width: 420px;
  box-shadow: 0 12px 24px -20px rgba(101, 70, 31, 0.5);
}

.service-showcase-card .service-card-cta {
  background: linear-gradient(135deg, #efdcbf, #e2cba6) !important;
  border-color: rgba(171, 129, 68, 0.82) !important;
  color: #523916 !important;
  box-shadow: 0 12px 22px -18px rgba(110, 78, 34, 0.58);
}

.service-showcase-card .service-card-cta:hover {
  background: linear-gradient(135deg, #f4e5cd, #e8d6b7) !important;
  border-color: rgba(156, 113, 49, 0.84) !important;
  color: #432c0f !important;
}

.plans-section .plan-tab-btn {
  border: 1.5px solid rgba(156, 198, 178, 0.72);
  background: rgba(5, 32, 24, 0.56);
  color: #e6f4ee;
}

.plans-section .plan-tab-btn:not(.is-active):hover {
  border-color: rgba(187, 220, 204, 0.92);
  background: rgba(10, 43, 33, 0.72);
}

.plans-section .plan-tab-btn[data-plans-tab="massoterapia"].is-active {
  border-color: #67b690;
  background: linear-gradient(135deg, #4aa37b, #3a8f69);
  color: #f6fffa;
}

.plans-section .plan-tab-btn[data-plans-tab="estetica"].is-active {
  border-color: rgba(214, 178, 126, 0.9);
  background: linear-gradient(135deg, #e9d5b4, #dfc395);
  color: #4f3716;
}

.plans-section .plan-card .plan-card-cta {
  background: linear-gradient(135deg, #efdfc6, #e0caab) !important;
  border-color: rgba(171, 129, 68, 0.8) !important;
  color: #533a18 !important;
  box-shadow: 0 14px 24px -20px rgba(113, 80, 36, 0.56);
}

.plans-section .plan-card .plan-card-cta:hover {
  background: linear-gradient(135deg, #f3e6d2, #e7d5ba) !important;
  border-color: rgba(156, 113, 49, 0.84) !important;
  color: #412b10 !important;
}

.about-section--hero .about-feature-wire {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(0.95rem, 2.2vw, 1.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr) minmax(220px, 0.78fr);
  align-items: stretch;
  gap: 0.84rem 1.06rem;
  padding: clamp(1.04rem, 1.95vw, 1.46rem);
  border-radius: 1.08rem;
  border: 1px solid rgba(127, 184, 158, 0.42);
  background:
    radial-gradient(circle at 9% 15%, rgba(88, 170, 131, 0.18), transparent 36%),
    linear-gradient(155deg, rgba(13, 47, 37, 0.78), rgba(8, 32, 24, 0.68));
}

.about-section--hero .about-feature-wire .about-bullets {
  grid-column: 1 / span 2;
  margin: 0;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.34rem 1rem;
  align-items: stretch;
}

.about-section--hero .about-feature-wire .about-bullets li {
  position: relative;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.2rem 0.66rem 1.48rem;
  border: 0;
  border-bottom: 1px solid rgba(122, 182, 154, 0.26);
  border-radius: 0;
  background: transparent;
  color: #d8e9e1;
  font-weight: 500;
  line-height: 1.34;
}

.about-section--hero .about-feature-wire .about-bullets li::before {
  left: 0.16rem;
  top: 1.02rem;
  margin-top: 0;
  width: 0.72rem;
  height: 0.72rem;
  border-color: rgba(148, 207, 177, 0.72);
  background: radial-gradient(circle at 50% 45%, rgba(112, 234, 159, 0.7), rgba(67, 164, 122, 0.2));
}

.about-section--hero .about-feature-wire .about-bullets li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.about-section--hero .about-feature-wire .about-bullets li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.about-section--hero .about-feature-wire .about-bullets li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.about-section--hero .about-feature-wire .about-bullets li:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.about-section--hero .about-feature-wire .about-bullets li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.about-section--hero .about-feature-wire .about-bullets-cta {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  width: min(100%, 276px);
  min-width: 0;
  max-width: none;
  margin-inline: 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(253, 255, 254, 0.98), rgba(244, 250, 247, 0.96));
  border-color: rgba(157, 188, 174, 0.72);
  color: #1f4a3b;
  box-shadow: 0 15px 24px -21px rgba(13, 44, 33, 0.54);
}

.about-section--hero .about-feature-wire .about-bullets-cta:hover {
  background: linear-gradient(135deg, #ffffff, #eef7f2);
  border-color: rgba(118, 165, 145, 0.84);
  color: #173d31;
}

.gift-steps-fullwidth {
  position: relative;
  margin-top: clamp(-2.3rem, -3.2vw, -1.15rem);
  padding-top: clamp(2.7rem, 4.6vw, 3.35rem);
  border-top: 0;
  background: transparent;
  isolation: isolate;
}

.gift-steps-fullwidth::before {
  content: "";
  position: absolute;
  inset: 0;
  top: clamp(1.05rem, 2vw, 1.7rem);
  background: linear-gradient(180deg, rgba(243, 234, 215, 0), rgba(243, 234, 215, 0.55) 26%, rgba(243, 234, 215, 0.86) 72%, #f3ead7);
  z-index: -1;
  pointer-events: none;
}

.gift-steps-head {
  margin-bottom: clamp(1.2rem, 2.6vw, 1.8rem);
}

.gift-steps-head .eyebrow {
  font-size: clamp(0.8rem, 1.05vw, 0.9rem);
  letter-spacing: 0.2em;
}

.gift-steps-title {
  margin: clamp(0.42rem, 1vw, 0.7rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #234739;
}

.trust-title {
  max-width: none;
}

.trust-title-main {
  max-width: none;
  line-height: 1.08;
}

.trust-subtitle {
  display: flex;
  margin: 0;
  padding: 0.66rem 0.96rem;
  border-radius: 1.02rem;
  border: 1px solid rgba(114, 173, 143, 0.52);
  background: rgba(233, 246, 238, 0.62);
  color: #2d5849;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .trust-head {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
  }

  .trust-subtitle {
    grid-column: 1;
    width: fit-content;
    max-width: min(100%, 68ch);
    min-height: 0;
  }

  .about-section--hero .about-feature-wire {
    grid-template-columns: 1fr 1fr;
    padding: 0.88rem;
  }

  .about-section--hero .about-feature-wire .about-bullets {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .about-section--hero .about-feature-wire .about-bullets-cta {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    width: auto;
    min-width: 220px;
    max-width: none;
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  .about-section--hero .about-feature-wire {
    grid-template-columns: 1fr;
  }

  .about-section--hero .about-feature-wire .about-bullets {
    grid-template-columns: 1fr;
  }

  .about-section--hero .about-feature-wire .about-bullets li:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-section--hero .about-feature-wire .about-bullets-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .services-showcase-head--split {
    grid-template-columns: 1fr;
  }

  .services-specialist-btn {
    justify-self: start;
    margin-top: 0.2rem;
  }
}

@media (max-width: 900px) {
  .gift-steps-fullwidth {
    margin-top: 0.5rem;
    padding-top: 1.8rem;
  }

  .gift-steps-fullwidth::before {
    top: 0;
    background: linear-gradient(180deg, rgba(243, 234, 215, 0.5), #f3ead7 54%);
  }

  .gift-steps-fullwidth .steps--horizontal {
    grid-auto-rows: auto;
  }

  .gift-steps-fullwidth .steps--horizontal .step {
    transform: none;
    min-height: 186px;
    grid-template-rows: auto auto auto;
  }

  .gift-steps-fullwidth .steps--horizontal .step:hover {
    transform: translateY(-4px);
  }

  .gift-steps-fullwidth .step-text {
    min-height: 0;
    font-size: clamp(1rem, 3.8vw, 1.14rem);
  }

  .gift-steps-fullwidth .step-icon {
    width: 3.34rem;
    height: 3.34rem;
  }

  .gift-steps-fullwidth .step-icon svg {
    width: 1.52rem;
    height: 1.52rem;
  }

  .gift-steps-fullwidth .steps--horizontal .step-number {
    min-width: 2.2rem;
    height: 1.88rem;
    font-size: 1rem;
  }

  .gift-steps-title {
    font-size: clamp(1.5rem, 5.8vw, 1.95rem);
  }
}

/* ==========================================================================
   TRUST HEADER FULL-WIDTH FIX
   ========================================================================== */
.trust-head {
  max-width: none;
  width: 100%;
  display: block;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
}

.trust-head .eyebrow {
  display: inline-flex;
  margin-bottom: 0.66rem;
}

.trust-title {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.trust-title-main {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0.62rem;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.trust-subtitle {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: clamp(0.72rem, 1.4vw, 1rem);
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2c5748;
  font-size: clamp(1.12rem, 2vw, 1.44rem);
  font-weight: 700;
  line-height: 1.4;
}

.trust-head .trust-title + .trust-intro {
  max-width: min(100%, 76ch);
  margin-top: clamp(0.72rem, 1.4vw, 1rem);
}

@media (max-width: 760px) {
  .trust-head .eyebrow {
    margin-bottom: 0.7rem;
  }

  .trust-head .trust-title + .trust-intro {
    margin-top: 0.84rem;
  }
}

/* ==========================================================================
   GIFT STEPS PREMIUM REFINEMENT
   ========================================================================== */
.gift-hero {
  padding-bottom: clamp(2.6rem, 4.6vw, 3.8rem);
}

.gift-steps-fullwidth {
  margin-top: clamp(1rem, 2.2vw, 1.6rem);
  padding-top: clamp(1.35rem, 2.8vw, 2rem);
}

.gift-steps-fullwidth::before {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(243, 234, 215, 0.12),
    rgba(243, 234, 215, 0.54) 36%,
    rgba(243, 234, 215, 0.76) 78%,
    #f3ead7
  );
}

.gift-steps-head {
  margin-bottom: clamp(0.95rem, 2vw, 1.4rem);
}

.gift-steps-title {
  margin-top: clamp(0.36rem, 0.9vw, 0.56rem);
  font-size: clamp(1.42rem, 2.55vw, 2.02rem);
  line-height: 1.14;
  letter-spacing: -0.005em;
}

.gift-steps-fullwidth .steps--horizontal {
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

.gift-steps-fullwidth .steps--horizontal .step {
  min-height: clamp(210px, 21vw, 250px);
  padding: 2.45rem 1.2rem 1.3rem;
  grid-template-rows: auto auto auto;
  row-gap: 0.72rem;
  justify-items: center;
  align-content: start;
  transform: none;
}

.gift-steps-fullwidth .steps--horizontal .step:hover {
  transform: translateY(-6px);
}

.gift-steps-fullwidth .steps--horizontal .step-number {
  min-width: 2.84rem;
  height: 2.22rem;
  padding: 0 0.64rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.gift-steps-fullwidth .step-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 0.78rem;
}

.gift-steps-fullwidth .step-icon svg {
  width: 1.92rem;
  height: 1.92rem;
}

.gift-steps-fullwidth .step-text {
  max-width: 18ch;
  min-height: 0;
  font-size: clamp(1.16rem, 1.68vw, 1.34rem);
  font-weight: 600;
  line-height: 1.34;
}

@media (max-width: 900px) {
  .gift-hero {
    padding-bottom: clamp(2.1rem, 7vw, 3rem);
  }

  .gift-steps-fullwidth {
    margin-top: 0.6rem;
    padding-top: 1.2rem;
  }

  .gift-steps-fullwidth .steps--horizontal {
    gap: 0.85rem;
  }

  .gift-steps-fullwidth .steps--horizontal .step {
    min-height: 188px;
    padding: 2.2rem 1rem 1.08rem;
    row-gap: 0.56rem;
  }

  .gift-steps-fullwidth .step-icon {
    width: 3.7rem;
    height: 3.7rem;
  }

  .gift-steps-fullwidth .step-icon svg {
    width: 1.62rem;
    height: 1.62rem;
  }

  .gift-steps-fullwidth .step-text {
    font-size: clamp(1.03rem, 3.4vw, 1.14rem);
  }
}

/* ==========================================================================
   EXPERIENCES TITLE FULL-WIDTH (NO WRAP ON DESKTOP)
   ========================================================================== */
.experiences-section .section-head {
  max-width: none;
  width: 100%;
}

.experiences-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.78rem;
}

.experiences-section .section-title {
  width: 100%;
  max-width: none;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.experiences-google-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.8rem, 2.8vw, 2.6rem);
}

.experiences-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(166, 202, 185, 0.5);
  background: rgba(8, 31, 24, 0.54);
  color: #cce0d5;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.experiences-google-link::after {
  content: "↗";
  font-size: 0.78rem;
  transform: translateY(-1px);
}

.experiences-google-link:hover {
  border-color: rgba(238, 213, 175, 0.65);
  color: #efdec1;
  background: rgba(11, 37, 29, 0.72);
  transform: translateY(-1px);
}

.experiences-google-link:focus-visible {
  outline: 2px solid rgba(139, 219, 183, 0.78);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .experiences-google-row {
    justify-content: center;
    margin-top: 1.55rem;
  }

  .experiences-google-link {
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER RIGHT COLUMN ALIGNMENT
   ========================================================================== */
.footer-grid--three .footer-col:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}

.footer-grid--three .footer-col:nth-child(3) h3,
.footer-grid--three .footer-col:nth-child(3) p {
  width: 100%;
  text-align: right;
}

.footer-grid--three .footer-col:nth-child(3) .footer-whatsapp-number {
  margin-left: auto;
}

.footer-grid--three .footer-col:nth-child(3) .footer-social-icons--contact {
  width: 100%;
  justify-content: flex-end;
}

@media (max-width: 1099px) {
  .footer-grid--three .footer-col:nth-child(3) {
    align-items: flex-start;
    text-align: left;
  }

  .footer-grid--three .footer-col:nth-child(3) h3,
  .footer-grid--three .footer-col:nth-child(3) p {
    text-align: left;
  }

  .footer-grid--three .footer-col:nth-child(3) .footer-whatsapp-number {
    margin-left: 0;
  }

  .footer-grid--three .footer-col:nth-child(3) .footer-social-icons--contact {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   MOBILE MENU TOGGLE VISIBILITY + ORDER
   ========================================================================== */
@media (max-width: 980px) {
  .nav-row {
    gap: 0.58rem;
  }

  .nav-toggle {
    order: 1;
    margin-left: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.86rem;
    border: 1.5px solid rgba(27, 66, 52, 0.82);
    background: rgba(252, 248, 239, 0.96);
    color: #1e4b3c;
    box-shadow:
      0 10px 20px -15px rgba(13, 38, 29, 0.62),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .nav-toggle-icon {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
  }

  .brand {
    order: 2;
    margin-right: auto;
    padding-left: 0.1rem;
  }
}

/* ==========================================================================
   TRUST TITLE COMPOSITION (CONTROLLED BREAKS + EMPHASIS)
   ========================================================================== */
.trust-title {
  text-wrap: pretty;
}

.trust-title-emphasis {
  display: inline-block;
  color: #2a6a50;
  font-weight: 800;
  white-space: normal;
}

@media (max-width: 960px) {
  .trust-title-emphasis {
    white-space: normal;
  }
}

/* Hide the header CTA on mobile; the same WhatsApp action stays inside the opened menu. */
@media (max-width: 980px) {
  .hero {
    touch-action: pan-y;
  }

  .nav-row > .nav-action.desktop-only {
    display: none !important;
  }

  .site-header[data-open="true"] .nav-links {
    padding: 0.88rem 1rem 1rem;
    border: 1px solid rgba(171, 214, 192, 0.36);
    background:
      radial-gradient(circle at 18% 0%, rgba(68, 157, 113, 0.28), transparent 42%),
      linear-gradient(155deg, rgba(5, 35, 25, 0.98), rgba(10, 63, 45, 0.96));
    box-shadow: 0 24px 54px -30px rgba(0, 0, 0, 0.76);
  }

  .site-header[data-open="true"] .nav-links li:not(.mobile-only) {
    border-bottom: 1px solid rgba(218, 238, 226, 0.14);
  }

  .site-header[data-open="true"] .nav-links li:nth-last-child(2) {
    border-bottom: 0;
  }

  .site-header[data-open="true"] .nav-links a {
    color: #f6ead6;
    font-weight: 760;
    padding: 0.78rem 0.2rem;
    letter-spacing: 0.02em;
  }

  .site-header[data-open="true"] .nav-links a:hover,
  .site-header[data-open="true"] .nav-links a:focus-visible {
    color: #fff7e8;
    background: rgba(255, 255, 255, 0.055);
    border-radius: 0.8rem;
  }

  .site-header[data-open="true"] .mobile-only {
    margin-top: 0.78rem;
    padding-top: 0.86rem;
    border-top: 1px solid rgba(238, 213, 175, 0.24);
  }

  .site-header[data-open="true"] .mobile-only a.btn--whatsapp {
    padding: 0.88rem 1rem;
    color: #062f1f;
    background: #27d86b;
    border-color: rgba(30, 185, 90, 0.95);
    box-shadow: 0 16px 30px -22px rgba(39, 216, 107, 0.82);
  }
}

/* ==========================================================================
   MOBILE SERVICES FILTERS - USE DROPDOWN
   ========================================================================== */
@media (max-width: 760px) {
  .services-filter-select-wrap {
    display: block;
  }

  .services-filters {
    display: none;
  }
}

/* ==========================================================================
   FOOTER RESPONSIVE POLISH (TABLET REDUCED + MOBILE)
   ========================================================================== */
@media (max-width: 1099px) {
  .site-footer {
    padding-top: 0.35rem;
  }

  .footer-grid--three {
    gap: 0.95rem;
    padding-top: 1.1rem;
    padding-bottom: 0.95rem;
  }

  .footer-grid--three .footer-col {
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(132, 171, 153, 0.26);
    border-radius: 1rem;
    background: linear-gradient(162deg, rgba(11, 30, 24, 0.62), rgba(6, 18, 14, 0.72));
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.74);
  }

  .footer-grid--three .footer-col:nth-child(1),
  .footer-grid--three .footer-col:nth-child(2),
  .footer-grid--three .footer-col:nth-child(3) {
    padding-right: 1rem;
  }

  .footer-grid--three .footer-col:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    align-items: start;
  }

  .footer-grid--three .footer-col:nth-child(2) > h3,
  .footer-grid--three .footer-col:nth-child(2) > .footer-room-rental {
    grid-column: 1 / -1;
  }

  .footer-grid--three .footer-col:nth-child(2) > a {
    padding: 0.18rem 0;
  }

  .footer-room-rental {
    margin-top: 0.9rem;
    padding: 0.82rem 0.92rem 0.88rem;
    border-radius: 0.9rem;
  }

  .footer-social-icons--contact {
    margin-bottom: 0.95rem;
  }

  .footer-bottom--copyright {
    padding-top: 0.82rem;
    padding-bottom: 0.98rem;
    gap: 0.5rem;
  }

  .footer-bottom--copyright p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (max-width: 760px) {
  .footer-grid--three {
    gap: 0.8rem;
    padding-top: 0.95rem;
    padding-bottom: 0.78rem;
  }

  .footer-grid--three .footer-col {
    padding: 0.88rem 0.86rem 0.92rem;
    border-radius: 0.9rem;
  }

  .footer-logo {
    width: clamp(84px, 24vw, 108px);
    margin-bottom: 0.78rem;
  }

  .footer-copy {
    margin-top: 0.45rem;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .footer-col h3 {
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.91rem;
    line-height: 1.5;
  }

  .footer-grid--three .footer-col:nth-child(2) > a[data-i18n="footer.contact"] {
    margin-bottom: 1.05rem;
  }

  .footer-col .footer-whatsapp-number {
    margin-top: 0.32rem;
    margin-bottom: 0.7rem;
    padding: 0.42rem 0.82rem;
  }

  .footer-social-icons .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom--copyright {
    align-items: center;
    text-align: center;
    padding-top: 0.72rem;
    padding-bottom: 0.88rem;
  }

  .footer-legal-links {
    width: 100%;
    justify-content: center;
    gap: 0.72rem;
  }

  .footer-legal-links a {
    font-size: 0.82rem;
  }
}

@media (max-width: 560px) {
  .footer-grid--three .footer-col:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .footer-grid--three .footer-col:nth-child(2) > a[data-i18n="footer.contact"] {
    margin-bottom: 1.15rem;
  }
}

/* Needs cards: clearer clickable options and a warmer help area. */
.need-card-panel-inner {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(34, 76, 60, 0.14);
}

.need-therapy-list {
  gap: 0.64rem;
}

.need-therapy-link {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 241, 0.96));
  border-color: rgba(46, 72, 61, 0.13);
  color: #25483d;
  box-shadow:
    0 12px 24px -22px rgba(5, 28, 20, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.need-therapy-link:hover {
  border-color: rgba(186, 139, 72, 0.4);
  background:
    linear-gradient(180deg, #ffffff, #fbf4e8);
  box-shadow:
    0 16px 30px -22px rgba(91, 61, 25, 0.68),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transform: translateY(-1px);
}

.need-help-copy {
  position: relative;
  z-index: 0;
  margin: 1.06rem -1.2rem 0;
  padding: 1.08rem 1.2rem 0.16rem;
  border-top: 1px solid rgba(202, 163, 103, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.7), transparent 54%),
    linear-gradient(180deg, rgba(241, 225, 198, 0.72), rgba(237, 220, 190, 0.9));
  box-shadow: 0 5rem 0 5rem rgba(237, 220, 190, 0.9);
  color: #31584b;
  font-weight: 800;
}

.need-help-btn {
  position: relative;
  z-index: 1;
  width: min(100%, 324px);
  margin: 0.62rem auto 1.05rem;
  background: linear-gradient(135deg, #fff8ec, #ead2aa);
  border-color: rgba(158, 111, 48, 0.62);
  color: #583b16;
  box-shadow:
    0 16px 26px -22px rgba(76, 49, 19, 0.72),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.need-help-btn:hover {
  background: linear-gradient(135deg, #ffffff, #efd9b4);
  border-color: rgba(138, 93, 34, 0.7);
  color: #493112;
}

@media (max-width: 760px) {
  .need-card-panel-inner {
    margin-inline: 0.92rem;
    padding-bottom: 0;
  }

  .need-therapy-list {
    gap: 0.72rem;
    padding-top: 1rem;
  }

  .need-therapy-link {
    padding: 0.84rem 0.9rem;
    border-radius: 0.86rem;
    font-size: 0.98rem;
    box-shadow:
      0 14px 28px -22px rgba(5, 28, 20, 0.86),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  .need-help-copy {
    margin-inline: -0.92rem;
    padding: 1.06rem 1rem 0.14rem;
    font-size: 0.98rem;
  }

  .need-help-btn {
    width: min(100%, 88%);
    min-height: 3.25rem;
    margin-top: 0.58rem;
    margin-bottom: 0.92rem;
  }
}

/* Footer + choice card polish: clearer links without losing the premium restraint. */
.site-footer .footer-room-rental {
  display: grid;
  gap: 0.56rem;
  box-sizing: border-box;
  margin-top: clamp(1.15rem, 1.8vw, 1.55rem);
  padding: clamp(1.18rem, 1.9vw, 1.42rem) clamp(1.24rem, 2.1vw, 1.55rem);
  line-height: 1.38;
}

.footer-room-rental__title,
.footer-room-rental__action {
  max-width: 100%;
}

.site-footer .footer-room-rental__title {
  line-height: 1.42;
}

.site-footer .footer-room-rental__action {
  margin-top: 0.1rem;
}

.site-footer .footer-social-icons .social-link {
  opacity: 1;
  color: rgba(239, 248, 243, 0.82);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(229, 244, 236, 0.24);
  box-shadow:
    0 12px 24px -20px rgba(0, 0, 0, 0.86),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer .footer-social-icons .social-link svg {
  opacity: 0.92;
}

.site-footer .footer-social-icons .social-link:hover {
  color: #f8fbf9;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(236, 248, 242, 0.4);
}

.need-card-trigger {
  grid-template-columns: minmax(0, 1fr) auto;
}

.need-card-index {
  display: none !important;
}

.need-card-plus {
  position: relative;
  display: grid;
  place-items: center;
  color: #2f6d59;
  border-color: rgba(94, 131, 117, 0.5);
  background: rgba(245, 249, 246, 0.95);
}

.need-card-plus::before {
  content: "›";
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -54%) rotate(90deg);
}

.need-card-plus::after {
  content: none;
  display: none;
}

.need-card.is-open .need-card-plus {
  color: #2f6d59;
  border-color: rgba(74, 121, 103, 0.6);
  background: rgba(220, 242, 230, 0.95);
}

.need-card.is-open .need-card-plus::before {
  transform: translate(-50%, -46%) rotate(-90deg);
}

.need-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  text-align: center;
  width: min(82%, 320px);
  margin-left: auto;
  margin-right: auto;
}

.need-card-panel-inner .need-help-btn {
  left: 50%;
  transform: translateX(-50%);
}

.need-card-panel-inner .need-help-btn:hover {
  transform: translateX(-50%) translateY(-1px);
}

@media (max-width: 760px) {
  .site-footer .footer-room-rental {
    margin-top: 1.35rem;
    padding: 1.32rem 1.36rem 1.3rem;
    border-radius: 1rem;
  }

  .site-footer .footer-social-icons {
    gap: 0.82rem;
  }

  .site-footer .footer-social-icons .social-link {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-room-rental {
    padding: 1.24rem 1.3rem 1.24rem;
  }
}

/* Mobile card carousels: allow natural finger swiping across every track. */
.services-track,
.team-track,
.testimonials-track,
.services-filters {
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.services-track.is-touching,
.team-track.is-touching,
.testimonials-track.is-touching,
.services-track.is-dragging,
.team-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

@media (max-width: 760px) {
  .services-track,
  .team-track,
  .testimonials-track {
    scroll-snap-stop: always;
    user-select: none;
  }

  .testimonials-track {
    cursor: grab;
    touch-action: pan-x pan-y;
    scroll-padding-inline: 0.25rem;
  }
}

/* About section mobile: stack content instead of squeezing it into columns. */
@media (max-width: 760px) {
  .about-section--hero {
    padding-block: 3.2rem 2.7rem;
  }

  .about-section--hero .about-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .about-section--hero .about-content,
  .about-section--hero .about-visual,
  .about-section--hero .about-feature-wire {
    grid-column: 1 / -1;
    width: 100%;
  }

  .about-section--hero .about-content {
    padding: 0;
  }

  .about-section--hero .eyebrow {
    opacity: 1;
  }

  .about-section--hero .section-title {
    max-width: 10.8ch;
    margin-bottom: 0.92rem;
    font-size: clamp(2.4rem, 12vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .about-section--hero .about-content .section-subtitle {
    max-width: 31ch;
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .about-section--hero .about-visual {
    margin-top: 0.22rem;
    padding: 0.72rem;
    border-radius: 1.22rem;
    aspect-ratio: auto;
    overflow: visible;
    background:
      radial-gradient(circle at 16% 0%, rgba(110, 211, 162, 0.16), transparent 42%),
      linear-gradient(160deg, rgba(10, 43, 32, 0.92), rgba(5, 22, 16, 0.9));
  }

  .about-section--hero .about-visual-intro {
    max-width: none;
    margin: 0 0 0.72rem;
    padding: 0.82rem 0.86rem;
    border-radius: 0.98rem;
    border: 1px solid rgba(146, 192, 171, 0.22);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .about-section--hero .about-visual-frame {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-radius: 0.95rem;
  }

  .about-section--hero .about-thumb-strip {
    width: 100%;
    margin-top: 0.62rem;
    padding: 0.04rem 0.02rem 0.1rem;
    gap: 0.44rem;
    scroll-snap-type: x proximity;
  }

  .about-section--hero .about-thumb,
  .about-section--hero .about-thumb-strip button {
    flex-basis: 3.38rem;
    width: 3.38rem;
    height: 2.36rem;
    scroll-snap-align: start;
  }

  .about-section--hero .about-feature-wire {
    margin-top: 0.34rem;
    padding: 0.92rem;
    border-radius: 1rem;
  }
}

/* Mobile CTAs: single section buttons should occupy the available width. */
@media (max-width: 760px) {
  .dayspa-btn,
  .gift-cta-btn,
  .about-bullets-cta,
  .contact-btn-row .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    text-align: center;
  }

  .dayspa-content {
    max-width: none;
  }

  .dayspa-btn {
    margin-top: 0.2rem;
  }
}

/* About CTA: discreet outline, clear contrast and pointer cue. */
.about-section--hero .about-feature-wire .about-bullets-cta {
  gap: 0.52rem;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(238, 247, 242, 0.62) !important;
  color: #ffffff !important;
  box-shadow:
    0 14px 28px -24px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.about-section--hero .about-feature-wire .about-bullets-cta::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.6 21.8c-.4 0-.8-.2-1.1-.5L3.2 18c-.7-.7-.7-1.8 0-2.5.7-.7 1.8-.7 2.5 0l1.1 1.1V4.8c0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8v6.1l.3-.3c.7-.7 1.8-.7 2.5 0 .2.2.3.4.4.6.7-.5 1.7-.5 2.3.2.2.2.3.4.4.6.7-.4 1.6-.3 2.2.3.4.4.6.9.6 1.4v2.1c0 3.3-2.7 6-6 6H7.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.6 21.8c-.4 0-.8-.2-1.1-.5L3.2 18c-.7-.7-.7-1.8 0-2.5.7-.7 1.8-.7 2.5 0l1.1 1.1V4.8c0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8v6.1l.3-.3c.7-.7 1.8-.7 2.5 0 .2.2.3.4.4.6.7-.5 1.7-.5 2.3.2.2.2.3.4.4.6.7-.4 1.6-.3 2.2.3.4.4.6.9.6 1.4v2.1c0 3.3-2.7 6-6 6H7.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.92;
}

.about-section--hero .about-feature-wire .about-bullets-cta:hover {
  background: rgba(255, 255, 255, 0.105) !important;
  border-color: rgba(255, 255, 255, 0.82) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Gift CTA: keep the mobile pill elegant, even when the text wraps. */
@media (max-width: 760px) {
  .gift-cta-btn {
    min-height: 3.25rem;
    padding: 0.82rem 1.05rem;
    border-radius: 999px;
    line-height: 1.18;
    gap: 0.48rem;
  }

  .gift-cta-btn svg {
    flex: 0 0 auto;
  }

  .gift-cta-btn span {
    display: block;
    max-width: 22ch;
    text-wrap: balance;
  }
}

/* Team carousel mobile: arrows below the cards and finger-first navigation. */
@media (max-width: 760px) {
  .team-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "track track"
      "prev next";
    gap: 0.98rem 0.8rem;
    align-items: center;
  }

  .team-carousel [data-team-track] {
    grid-area: track;
    width: 100%;
    min-width: 0;
    padding-inline: 0.28rem;
    scroll-padding-inline: 0.28rem;
    touch-action: pan-x pan-y;
  }

  .team-carousel [data-team-prev] {
    grid-area: prev;
    justify-self: end;
  }

  .team-carousel [data-team-next] {
    grid-area: next;
    justify-self: start;
  }

  .team-carousel .carousel-arrow {
    position: static;
    width: 2.95rem;
    height: 2.95rem;
    margin: 0;
    transform: none;
  }

  .team-carousel .carousel-arrow:hover {
    transform: translateY(-1px);
  }

  .team-track .team-card {
    flex: 0 0 min(78vw, 330px);
    max-width: min(78vw, 330px);
    min-width: 0;
  }
}

/* Trust heading: avoid awkward orphan line breaks on wide screens. */
@media (min-width: 961px) {
  .trust-head {
    width: 100%;
    max-width: none;
  }

  .trust-head .trust-title {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2rem, 3.2vw, 2.92rem);
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: wrap;
  }

  .trust-head .trust-title + .trust-intro {
    width: 100%;
    max-width: none;
    margin-top: 0.92rem;
    text-wrap: pretty;
  }
}

/* Contact split layout: info on the left, map/actions on the right. */
.contact-layout--split {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(1.2rem, 2.8vw, 2.35rem);
  align-items: start;
}

.contact-layout--split .contact-info-col {
  padding-top: 0.22rem;
}

.contact-layout--split .contact-map-col {
  padding-top: 0.22rem;
}

.contact-layout--split .contact-map-banner {
  margin-top: 0;
}

.contact-layout--split .contact-map-banner iframe {
  min-height: clamp(260px, 29vw, 390px);
}

.contact-layout--split .contact-btn-row {
  margin-top: 0.92rem;
  justify-content: flex-start;
  gap: 0.72rem;
}

@media (max-width: 980px) {
  .contact-layout--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-layout--split .contact-map-col {
    padding-top: 0;
  }

  .contact-layout--split .contact-map-banner {
    margin-top: 0.72rem;
  }
}

/* Day Spa mobile flow: image first, content after. */
@media (max-width: 900px) {
  .dayspa-layout {
    grid-template-columns: 1fr;
  }

  .dayspa-visual {
    order: 1;
  }

  .dayspa-content {
    order: 2;
  }
}
