﻿:root {
  color-scheme: dark;
  --font-display: "Noto Serif", "Times New Roman", serif;
  --font-body: "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;

  --color-bg: #05140f;
  --color-surface: #0d241d;
  --color-surface-2: #113329;
  --color-surface-3: #184538;
  --color-primary: #4dd99c;
  --color-primary-strong: #1fbe78;
  --color-secondary: #e8c9a1;
  --color-secondary-soft: #f2dec3;
  --color-text: #e6f3ec;
  --color-muted: #acc3b9;
  --color-line: #275142;
  --color-card-line: #33604f;
  --color-ink: #163229;

  --shadow-sm: 0 16px 40px -24px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 28px 68px -34px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 42px 88px -36px rgba(0, 0, 0, 0.85);
  --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.21, 0.76, 0.24, 1);
  --hero-overlay: linear-gradient(
    104deg,
    rgba(4, 17, 13, 0.92) 14%,
    rgba(4, 17, 13, 0.76) 45%,
    rgba(4, 17, 13, 0.54) 70%,
    rgba(4, 17, 13, 0.4) 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;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

.team-description {
  margin: 0.74rem 0 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;
}

.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% - 1.3rem, 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;
  }
}

