:root {
  --blue-950: #04172f;
  --blue-900: #0a2f63;
  --blue-800: #0d4fb6;
  --blue-700: #1971dd;
  --blue-600: #3f8cff;
  --blue-200: #d8e9ff;
  --blue-100: #eef5ff;
  --cyan-200: #c9f4ff;
  --ink-900: #10213d;
  --ink-700: #3a4b68;
  --ink-500: #617390;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --border: rgba(22, 72, 148, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 28, 64, 0.16);
  --shadow-md: 0 18px 38px rgba(7, 28, 64, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1320px, calc(100vw - 40px));
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Trebuchet MS", Aptos, "Segoe UI", sans-serif;
  --header-height: 84px;
  --section-space-top: clamp(50px, 5.4vw, 70px);
  --section-space-bottom: clamp(18px, 2.4vw, 26px);
  --section-arrow-gap: clamp(18px, 2.2vw, 26px);
  --section-arrow-overlap: clamp(18px, 2vw, 24px);
  --section-bridge-gap: clamp(42px, 4.6vw, 54px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(63, 140, 255, 0.12), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(12, 106, 204, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  line-height: 1.6;
  min-width: 320px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 50;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-900);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 16px;
  transition: padding 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  padding: 16px 18px;
  background: rgba(250, 252, 255, 0.93);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(225, 236, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(6, 33, 81, 0.1);
}

.site-header.is-scrolled .header-inner {
  background: rgba(252, 253, 255, 0.97);
  border-color: rgba(220, 232, 252, 0.98);
  box-shadow: 0 16px 38px rgba(6, 33, 81, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(13, 79, 182, 0.16);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-950);
}

.brand-tag {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-900);
  background: linear-gradient(135deg, rgba(63, 140, 255, 0.15), rgba(201, 244, 255, 0.75));
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  font-size: 0.94rem;
  color: var(--ink-700);
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-900);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue-700), transparent);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(13, 79, 182, 0.22);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(15, 50, 102, 0.06);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.section,
.site-footer {
  scroll-margin-top: 116px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(16px, 2.4vw, 28px);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(12px);
  animation: drift 12s ease-in-out infinite;
}

.hero-orb-one {
  top: 100px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(25, 113, 221, 0.26), transparent 68%);
}

.hero-orb-two {
  right: -120px;
  bottom: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 244, 255, 0.9), transparent 72%);
  animation-duration: 15s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.hero-visual-mobile {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.hero h1,
.section h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  color: var(--blue-950);
  margin-inline: auto;
  text-align: center;
}

.hero-lead,
.section-head p,
.therapy-copy > p,
.footer-copy > p {
  margin: 18px 0 0;
  max-width: 80ch;
  width: 100%;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: var(--ink-700);
}

.hero-lead,
.section-head p,
.therapy-copy > p,
.footer-copy > p,
.service-card p,
.feature-list li,
.review-text,
.motive-text,
.accordion-panel p,
.therapy-note span {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.hero-signature {
  margin: 14px 0 0;
  max-width: 48ch;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--blue-900);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-cta-mobile {
  display: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow: 0 18px 32px rgba(13, 79, 182, 0.24);
}

.btn-whatsapp {
  gap: 0.75rem;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  flex: 0 0 1.5rem;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1fbe5b;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
}

.btn-secondary {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 79, 182, 0.16);
  box-shadow: 0 10px 20px rgba(10, 47, 99, 0.08);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 79, 182, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(7, 28, 64, 0.08);
  text-align: center;
}

.hero-points strong,
.hero-mini-card strong,
.therapy-note strong {
  display: block;
  font-size: 0.98rem;
  color: var(--blue-950);
}

.hero-point-secondary {
  margin-top: 2px;
}

.hero-points span,
.hero-mini-card span,
.therapy-note span {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--ink-700);
}

.hero-chips,
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chips span,
.chip-cloud span,
.chip-cloud a {
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-900);
  background: linear-gradient(135deg, rgba(24, 113, 221, 0.09), rgba(201, 244, 255, 0.85));
  border: 1px solid rgba(13, 79, 182, 0.08);
  border-radius: 999px;
}

.section-head .chip-cloud {
  width: 100%;
  justify-content: center;
}

.chip-cloud a:hover,
.chip-cloud a:focus-visible {
  color: var(--blue-950);
  border-color: rgba(13, 79, 182, 0.16);
  background: linear-gradient(135deg, rgba(24, 113, 221, 0.14), rgba(201, 244, 255, 0.92));
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 100%;
  height: clamp(320px, 45vw, 560px);
  object-fit: cover;
  border-radius: calc(clamp(28px, 5vw, 44px) - 14px);
}

.hero-photo {
  object-position: center 20%;
}

.hero-badge,
.hero-mini-card {
  position: absolute;
  max-width: 220px;
  padding: 14px 16px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 79, 182, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(6, 33, 81, 0.14);
}

.hero-badge {
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-badge-top {
  top: 30px;
  left: 30px;
}

.hero-badge-bottom {
  right: 30px;
  bottom: 30px;
}

.hero-mini-card {
  width: min(240px, 46%);
  backdrop-filter: blur(12px);
}

.hero-mini-card-left {
  left: -32px;
  bottom: 80px;
  animation: floatCard 7s ease-in-out infinite;
}

.hero-mini-card-right {
  right: -24px;
  top: 90px;
  animation: floatCard 8s ease-in-out infinite reverse;
}

.section {
  padding: var(--section-space-top) 0 var(--section-space-bottom);
}

.section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero {
  content-visibility: visible;
}

.section-arrow {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: var(--section-arrow-gap) auto calc(var(--section-arrow-overlap) * -1);
}

.hero-grid > .section-arrow {
  grid-column: 1 / -1;
  justify-self: center;
}

.therapy-grid > .section-arrow {
  grid-column: 1 / -1;
  justify-self: center;
}

.section-arrow img {
  width: 54px;
  height: auto;
  opacity: 0.96;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-arrow:hover img,
.section-arrow:focus-visible img {
  transform: translateY(3px);
  opacity: 1;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(216, 233, 255, 0.5), rgba(255, 255, 255, 0.95));
}

.section-deep {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(63, 140, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 1120px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.site-footer h2 {
  font-size: clamp(2.05rem, 3.45vw, 3.55rem);
  color: var(--blue-950);
  max-width: 31ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.section-head-wide h2 {
  max-width: 36ch;
}

#resenas .section-head h2 {
  max-width: 42ch;
}

#resenas .section-head p {
  max-width: 82ch;
}

#resenas,
#sobre-mi,
#servicios,
#psicoterapia {
  padding-top: clamp(34px, 4vw, 52px);
}

.carousel-toolbar {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 30px;
}

.toolbar-copy {
  margin: 0;
  color: var(--ink-500);
  text-align: center;
}

.carousel-actions {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
}

.carousel-button {
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 79, 182, 0.12);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(10, 47, 99, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-100);
}

.reviews-track,
.motives-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 44px) / 3));
  gap: 22px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.reviews-track::-webkit-scrollbar,
.motives-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb,
.motives-track::-webkit-scrollbar-thumb {
  background: rgba(13, 79, 182, 0.22);
  border-radius: 999px;
}

.review-card,
.about-card,
.service-card,
.support-card,
.motive-card,
.contact-panel,
.therapy-note {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.review-card {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.review-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1rem;
}

.review-text {
  line-height: 1.75;
}

.review-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-toggle {
  justify-self: start;
  padding: 0;
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.review-toggle:hover,
.review-toggle:focus-visible {
  color: var(--blue-700);
}

.review-card footer {
  display: grid;
  order: -1;
  gap: 4px;
  width: 100%;
  margin: 0;
  justify-items: center;
  text-align: center;
}

.review-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue-950);
  text-align: center;
  text-wrap: balance;
}

.review-card footer span {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}

.services-head {
  justify-items: center;
  text-align: center;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--blue-800), rgba(63, 140, 255, 0.18));
}

.service-card-emphasis {
  background:
    linear-gradient(135deg, rgba(13, 79, 182, 0.08), rgba(201, 244, 255, 0.72));
}

.service-card h3,
.therapy-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.service-card h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--blue-950);
  text-align: center;
  text-wrap: balance;
}

.service-card p {
  margin: 0;
  color: var(--ink-700);
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-200));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(25, 113, 221, 0.1);
}

.service-pricing {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(13, 79, 182, 0.1);
  border-radius: var(--radius-md);
}

.pricing-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(13, 79, 182, 0.08);
  color: var(--ink-700);
}

.pricing-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-list strong {
  color: var(--blue-950);
  white-space: nowrap;
}

.services-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.support-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  justify-items: center;
  text-align: center;
}

.support-card h3,
.motive-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  color: var(--blue-950);
}

.support-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  text-align: center;
  text-wrap: balance;
}

.support-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-700);
}

.support-card .eyebrow {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

.support-card a:last-child {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  justify-content: center;
  text-align: center;
}

.support-card a:last-child:hover,
.support-card a:last-child:focus-visible {
  color: var(--blue-700);
}

.motives-shell {
  margin-top: var(--section-bridge-gap);
  scroll-margin-top: 116px;
}

.section-arrow-between {
  margin-bottom: 0;
}

.section-arrow-between + .motives-shell {
  margin-top: var(--section-bridge-gap);
}

.motives-head {
  margin-bottom: 26px;
}

.motives-accordion {
  max-width: min(980px, 100%);
  margin: 0 auto;
}

.motives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.motive-accordion-item {
  position: relative;
}

.motive-accordion-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(13, 79, 182, 0.95), rgba(63, 140, 255, 0.18));
}

.motive-accordion-item .accordion-trigger span:last-child {
  max-width: 24ch;
}

.motive-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  scroll-snap-align: start;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
}

.motive-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, rgba(13, 79, 182, 0.95), rgba(63, 140, 255, 0.18));
}

.motive-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  text-align: center;
  text-wrap: balance;
}

.motive-card p {
  margin: 10px 0 0;
  color: var(--ink-700);
}

.motive-text {
  margin: 0;
  color: var(--ink-700);
}

.motive-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.therapy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.therapy-copy {
  display: grid;
  align-content: start;
  justify-items: center;
}

.therapy-copy h2 {
  font-size: clamp(2.2rem, 4.35vw, 4.45rem);
  color: var(--blue-950);
  max-width: 8.5ch;
  text-align: center;
  text-wrap: balance;
}

.therapy-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  width: 100%;
}

.therapy-note strong {
  text-align: center;
  text-wrap: balance;
}

.therapy-footer {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}

.therapy-footer .therapy-note {
  max-width: min(760px, 100%);
}

.therapy-footer .btn {
  justify-self: center;
}

.about-grid {
  display: grid;
  gap: 24px;
}

.about-card {
  display: grid;
  gap: 0;
  max-width: min(980px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: var(--radius-xl);
}

.about-intro,
.about-copy {
  margin: 0;
  color: var(--ink-700);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  text-align: justify;
  text-wrap: pretty;
}

.about-copy {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--ink-700);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  text-align: justify;
  text-wrap: pretty;
}

.about-copy.is-collapsed {
  display: none;
}

.about-accordion {
  max-width: min(980px, 100%);
  width: 100%;
  margin: 0 auto;
}

.about-trigger {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  padding-inline: 28px;
}

.about-trigger-spacer {
  width: 42px;
  height: 42px;
}

.about-trigger-label {
  justify-self: center;
  max-width: none;
  text-align: center;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}

.about-toggle {
  display: inline-flex;
  justify-self: center;
  margin-top: 18px;
}

.about-credentials {
  display: grid;
  gap: 18px;
  padding: 0 22px 22px;
}

.about-credentials-block {
  display: grid;
  gap: 10px;
}

.about-credentials-block + .about-credentials-block {
  padding-top: 18px;
  border-top: 1px solid rgba(13, 79, 182, 0.1);
}

.about-credentials h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.about-credentials ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-700);
}

.about-credentials li,
.about-credentials p {
  margin: 0;
  color: var(--ink-700);
}

.about-credentials p {
  padding: 0;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 79, 182, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 34px rgba(6, 33, 81, 0.08);
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  color: var(--blue-950);
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  background: rgba(13, 79, 182, 0.04);
}

.accordion-trigger::after {
  content: "";
  width: 12px;
  height: 12px;
  justify-self: center;
  border-right: 2px solid var(--blue-900);
  border-bottom: 2px solid var(--blue-900);
  transform: rotate(45deg);
  opacity: 0.82;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.accordion-trigger span:last-child {
  font-size: 1.1rem;
  font-weight: 800;
  justify-self: center;
  max-width: 18ch;
  text-wrap: balance;
}

.accordion-item.is-open .accordion-trigger::after {
  transform: rotate(-135deg);
  opacity: 1;
}

.accordion-index {
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-weight: 800;
  color: var(--blue-900);
  background: rgba(25, 113, 221, 0.08);
  border-radius: 14px;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 22px 22px 22px;
  color: var(--ink-700);
}

.accordion-item.is-open .accordion-panel {
  max-height: 280px;
}

.site-footer {
  padding: clamp(42px, 5vw, 62px) 0 24px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at top right, rgba(63, 140, 255, 0.36), transparent 26%),
    linear-gradient(180deg, var(--blue-950) 0%, #06182e 100%);
}

.site-footer .eyebrow,
.site-footer h2,
.contact-label,
.footer-bottom p {
  color: #fff;
}

.site-footer .footer-copy > p {
  color: #fff;
  max-width: none;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
}

.footer-copy {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 16px;
}

.footer-copy h2 {
  max-width: 13ch;
  text-wrap: balance;
}

.footer-whatsapp-link {
  border: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.contact-item {
  display: grid;
  gap: 6px;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.contact-item a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.footer-bottom p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 21px 14px 14px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
}

.whatsapp-mobile-mark {
  display: none;
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-label {
  font-size: 0.95rem;
  font-weight: 800;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.46);
  animation: pulse 2.2s infinite;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -16px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .therapy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section h2,
  .site-footer h2 {
    max-width: none;
  }

  .hero-visual {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-card,
  .about-accordion {
    max-width: 100%;
  }

  .reviews-track {
    grid-auto-columns: minmax(320px, calc((100% - 22px) / 2));
  }

  .services-support,
  .motives-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 761px) {
  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 1041px) {
  .hero-copy {
    padding-left: clamp(18px, 2vw, 32px);
  }

  .therapy-copy {
    padding-left: clamp(18px, 2vw, 32px);
  }
}

@media (max-width: 880px) {
  .header-inner,
  .site-nav {
    backdrop-filter: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(13, 79, 182, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(7, 28, 64, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: grid;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 63px;
    --section-space-top: 42px;
    --section-space-bottom: 20px;
    --section-arrow-gap: 16px;
    --section-arrow-overlap: 10px;
    --section-bridge-gap: 34px;
  }

  .section {
    padding: var(--section-space-top) 0 var(--section-space-bottom);
  }

  .site-header {
    padding-top: 6px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 9px 12px;
  }

  .brand-tag,
  .whatsapp-label {
    display: none;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
  }

  .site-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 18px;
  }

.hero-orb {
    display: none;
  }

  .hero-card,
  .hero-mini-card {
    backdrop-filter: none;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
  }

  .motives-head .chip-cloud {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-primary {
    display: none;
  }

  .hero-action-desktop-only {
    display: none;
  }

  .hero-points,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: none;
  }

  .services-support,
  .motives-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-card {
    display: none;
  }

  .hero-visual-desktop {
    display: none;
  }

  .hero-visual-mobile {
    display: block;
    margin: 26px auto 8px;
    max-width: 390px;
    padding: 0;
  }

  .hero-visual-mobile .hero-card {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-visual-mobile .hero-card img {
    height: 320px;
    border-radius: 18px;
  }

  .hero-visual-mobile .hero-badge,
  .hero-visual-mobile .hero-mini-card {
    display: none;
  }

  .hero-lead,
  .about-copy p,
  .service-card p,
  .feature-list li,
  .motive-text,
  .review-text,
  .accordion-panel p,
  .contact-item a,
  .contact-item span:last-child {
    hyphens: auto;
    text-align: justify;
    text-wrap: pretty;
  }

  .hero-chips {
    display: none;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10.5vw, 3.15rem);
    margin-inline: auto;
    text-align: center;
  }

  .hero-signature {
    max-width: none;
    width: 100%;
    font-size: 0.98rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-points li {
    padding: 20px 18px;
    text-align: center;
  }

  .service-card h3,
  .support-card h3,
  .motive-card h3 {
    line-height: 1.1;
  }

  .section h2,
  .site-footer h2,
  .therapy-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.92rem, 8.6vw, 2.45rem);
  }

  .site-footer .footer-copy > p {
    text-align: center;
  }

  .therapy-copy h2 {
    max-width: 15ch;
    font-size: clamp(1.78rem, 7.8vw, 2.18rem);
  }

  .reviews-track,
  .motives-track {
    grid-auto-columns: minmax(86vw, 86vw);
  }

  .carousel-toolbar,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .section-arrow {
    margin: var(--section-arrow-gap) auto calc(var(--section-arrow-overlap) * -1);
  }

  .section-arrow img {
    width: 46px;
  }

  #inicio .section-arrow {
    margin-top: 12px;
  }

  .section-arrow-between {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .section-arrow-between + .motives-shell {
    margin-top: var(--section-bridge-gap);
  }

  .toolbar-copy {
    text-align: center;
  }

  .contact-panel,
  .about-card,
  .review-card,
  .service-card,
  .support-card,
  .motive-card,
  .therapy-note {
    padding: 22px;
  }

  .pricing-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .support-card a:last-child {
    line-height: 1.5;
  }

  .accordion-trigger {
    padding: 18px;
  }

  .accordion-panel p {
    padding: 0 18px 18px 18px;
  }

  .about-credentials {
    padding: 0 18px 18px;
  }

  .whatsapp-float {
    width: 74px;
    height: 74px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
  }

  .whatsapp-mobile-mark {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .whatsapp-float svg {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 8px 10px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.95rem);
  }

  .section h2,
  .site-footer h2,
  .therapy-copy h2 {
    font-size: clamp(1.82rem, 9.2vw, 2.28rem);
  }

  .therapy-copy h2 {
    max-width: 15ch;
    font-size: clamp(1.64rem, 7.4vw, 1.96rem);
  }

  .hero-badge-top {
    top: 18px;
    left: 18px;
  }

  .hero-badge-bottom {
    right: 18px;
    bottom: 18px;
  }

  .hero-card {
    padding: 10px;
  }

  .hero-card img {
    height: 332px;
  }

  .hero-visual-mobile .hero-card img {
    height: 296px;
  }

  .hero-visual-mobile {
    padding: 0;
  }

  .review-card,
  .service-card,
  .support-card,
  .motive-card {
    border-radius: 22px;
  }

  .services-support,
  .motives-grid {
    gap: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
