/* Clínica Vigar main.css (merged styles.css + styles-v2.css, v2 canonical) */

/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-normal-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/montserrat/montserrat-italic-400.ttf') format('truetype');
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand colors */
  --teal-50:   #EDF4F0;
  --teal-100:  #D7E6DD;
  --teal-600:  #547F6B;
  --teal-700:  #3F6152;
  --teal-800:  #2C4539;
  --teal:      #547F6B;
  --teal-dark: #3F6152;
  --teal-light:#6E9984;
  --olive:     #B1AC7D;
  --olive-light:#C9C49A;
  --cream:     #F5F1E6;
  --cream-2:   #EFE9D8;
  --ink:       #2A2E2B;
  --ink-soft:  #5A5F59;
  --line:      #E3DFD0;
  --gold:      #C9A961;
  --white:     #FFFFFF;
  --footer-bg: #1F2A25;

  /* Radii */
  --radius:    14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(42,46,43,0.06), 0 2px 8px rgba(42,46,43,0.04);
  --shadow-md:   0 6px 22px rgba(42,46,43,0.08), 0 2px 6px rgba(42,46,43,0.05);
  --shadow-lg:   0 20px 60px rgba(42,46,43,0.14);
  --shadow-hero: 0 30px 80px -20px rgba(42,46,43,0.35), 0 8px 24px rgba(42,46,43,0.12);
  --shadow-btn:  0 1px 2px rgba(42,46,43,0.06), 0 4px 12px rgba(84,127,107,0.28);
  --shadow-btn-hover: 0 1px 2px rgba(42,46,43,0.06), 0 8px 24px rgba(84,127,107,0.35);

  /* Layout */
  --max:  1320px;

  /* Typography scale */
  --h1: clamp(2.4rem, 5.5vw, 4.8rem);
  --h2: clamp(1.6rem, 2.8vw, 2.4rem);
  --h3: clamp(1.15rem, 1.6vw, 1.35rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===== BASE ===== */
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: var(--h1);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
h2 {
  font-size: var(--h2);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h3 { font-size: var(--h3); font-weight: 600; letter-spacing: -0.01em; }

em { font-style: italic; color: var(--teal-600); font-weight: 400; letter-spacing: -0.02em; }
p  { color: var(--ink-soft); }

.container {
  width: min(calc(100% - 30px), var(--max));
  margin: 0 auto;
  padding: 0;
}

/* Accessibility */
.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:focus {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  background: var(--teal-600); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  clip: auto; width: auto; height: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,230,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(84,127,107,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 58px; height: auto; flex-shrink: 0; }
.logo-word {
  font-weight: 600; font-size: 14px; letter-spacing: 0.18em;
  color: var(--teal-600); text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal-600); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--teal-600); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(84,127,107,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang:hover {
  color: var(--teal-700);
  border-color: rgba(84,127,107,0.34);
  background: var(--teal-50);
}
.lang:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 3px;
}
.lang__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang__code {
  min-width: 2ch;
  text-align: center;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--teal-50); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: rgba(42,46,43,0.4); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(320px, 90vw);
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-inner {
  padding: 64px 28px 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 16px; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: var(--teal-50); }
.nav-drawer-inner a:not(.btn) {
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-drawer-inner a:not(.btn):hover { color: var(--teal-600); }
.nav-drawer-inner .btn { margin-top: 8px; text-align: center; justify-content: center; }
.nav-drawer-inner .btn-primary {
  background: #E07856;
  border-color: #E07856;
  color: var(--white);
}
.nav-drawer-inner .btn-primary:hover {
  background: #C95F3F;
  border-color: #C95F3F;
  color: var(--white);
}
.nav-drawer-inner a.lang {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(84,127,107,0.18);
  font-size: 12px;
}
@media (min-width: 901px) {
  .menu-item--desktop-hidden {
    display: none !important;
  }

  .nav-overlay,
  .nav-drawer {
    display: none !important;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: none;
  white-space: nowrap;
}
.btn:active { transform: none !important; }

.btn-primary {
  background: var(--teal-600); color: var(--white);
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: none;
  box-shadow: none;
}
.btn-booking,
.btn-primary.btn-booking,
.btn-white.btn-booking {
  background: #E07856;
  border-color: #E07856;
  color: var(--white);
}
.btn-booking:hover,
.btn-primary.btn-booking:hover,
.btn-white.btn-booking:hover {
  background: #C95F3F;
  border-color: #C95F3F;
  color: var(--white);
}
.btn-ghost {
  background: transparent; color: var(--teal-600);
  border: 1.5px solid var(--teal-600);
}
.btn-ghost:hover {
  background: var(--teal-600); color: var(--white);
  transform: none;
}
.btn-white { background: var(--white); color: var(--teal-600); }
.btn-white:hover { background: var(--cream-2); transform: none; }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: none;
}
.cv-single-action {
  display: flex;
  margin-top: 28px;
}

/* Nav header CTA (smaller) */
.site-header .btn-primary {
  padding: 11px 20px;
  min-height: 40px;
  font-size: 13px;
}
.site-header .nav-booking-btn {
  background: #E07856;
  color: var(--white);
}
.site-header .nav-booking-btn:hover {
  background: #C95F3F;
  color: var(--white);
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--teal-50);
  font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-700); font-weight: 300;
  margin-bottom: 24px;
}
.section-light .eyebrow,
.cv-about-story-panel .eyebrow {
  background: var(--cream-2);
}
.section-cream-2 .eyebrow,
.cv-programs-feature-panel .eyebrow {
  background: var(--white);
}
.section-teal .eyebrow,
.cta-band .eyebrow {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.hero .eyebrow::before {
  content: none;
  margin-right: 8px;
  color: var(--teal-600);
  font-size: 9px;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ===== HERO ===== */
.hero { padding: 48px 0 100px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}
.hero h1 { max-width: 16ch; margin-bottom: 24px; }
.hero p.lead {
  font-size: 19px; color: var(--ink); max-width: 50ch;
  margin-bottom: 36px; line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-badges li {
  font-size: 13px; color: var(--ink); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hero-badges li::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--olive); flex-shrink: 0;
}
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.hero-trust-text { font-size: 14px; color: var(--ink); }
.hero-trust-text strong { display: block; font-weight: 600; }
.hero-trust-text small { color: var(--ink-soft); font-size: 12px; }
.rating-big { font-size: 44px; font-weight: 700; color: var(--teal-700); letter-spacing: -0.03em; line-height: 1; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(145deg, #6E9984 0%, #3F6152 60%, #2C4539 100%);
  box-shadow: var(--shadow-hero);
}
.hero-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 15%, rgba(201,169,97,0.25), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(255,255,255,0.15), transparent 40%);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(130deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px);
}
.hero-logo-big {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-big img { width: 60%; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); }
.hero-photo {
  background: #5d7f6f;
}
.hero-photo::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31,42,37,0.10) 0%, rgba(31,42,37,0.16) 100%),
    radial-gradient(circle at 22% 18%, rgba(245,241,230,0.22), transparent 35%);
}
.hero-photo::after { display: none; }
.hero-photo .hero-logo-big { display: none; }
.hero-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 16px 18px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.hero-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
  flex-shrink: 0;
}
.hero-card-text { flex: 1; font-size: 13px; color: var(--ink); font-weight: 500; }
.hero-card-text small { display: block; color: var(--ink-soft); font-weight: 400; font-size: 12px; margin-top: 2px; }

/* ===== SECTIONS ===== */
section { padding: 110px 0; }
.section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.section-head p { font-size: 17px; }
.section-light { background: var(--white); }
.section-cream-2 { background: var(--cream-2); }
.cv-about-story-panel {
  width: calc(100% - 30px);
  max-width: 1820px;
  margin: 15px auto 0;
  padding: clamp(72px, 7vw, 108px) 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
}
.cv-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
}
.cv-about-story-media {
  position: relative;
  min-height: 600px;
  padding: 34px 0;
}
.cv-about-story-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 24px 70px rgba(42,46,43,0.14);
}
.cv-about-story-image img {
  display: block;
  width: 100%;
  height: clamp(600px, 41vw, 700px);
  object-fit: cover;
  object-position: center center;
}
.cv-about-story-content {
  max-width: 720px;
}
.cv-about-story-content .eyebrow {
  margin-bottom: 18px;
}
.cv-about-story-content h2 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.02;
}
.cv-about-story-content > p {
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.75;
}
.cv-about-story-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 46px);
  margin-top: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.cv-about-story-item {
  min-width: 0;
}
.cv-about-story-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 14px;
}
.cv-about-story-item h3::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E07856;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.cv-about-story-item p {
  max-width: 32ch;
  font-size: 15.5px;
  line-height: 1.7;
}

@media (min-width: 1101px) {
  .cv-about-story-items {
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
    gap: clamp(20px, 2vw, 32px);
  }

  .cv-about-story-item:nth-child(2) h3 {
    white-space: nowrap;
  }
}

.cv-about-story-footer {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.cv-about-story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cv-about-story-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 8px 22px rgba(42,46,43,0.14);
}
.cv-about-story-author strong,
.cv-about-story-author span {
  display: block;
}
.cv-about-story-author strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}
.cv-about-story-author span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  max-width: 32ch;
}
.cv-contact-booking-panel {
  background: var(--white);
}
.cv-contact-booking-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}
.cv-contact-booking-image img {
  height: clamp(520px, 36vw, 620px);
  object-position: center center;
}
.cv-contact-booking-content #cv-contact-booking-title {
  max-width: none;
  font-size: clamp(2rem, 3.55vw, 3.15rem);
}
.cv-contact-booking-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 54px;
  margin-top: 34px;
  padding-bottom: 34px;
  border-bottom: 0;
}
.cv-contact-booking-detail {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.cv-contact-booking-detail__icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
  color: rgba(42,46,43,0.56);
  background: transparent;
  box-shadow: none;
}
.cv-contact-booking-detail__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cv-contact-booking-detail__value {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.cv-contact-booking-detail__meta {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}
.cv-contact-booking-details a {
  color: inherit;
  font-weight: inherit;
}
.cv-contact-booking-details a:hover {
  text-decoration: underline;
}
.cv-contact-booking-details .cv-contact-booking-detail:nth-child(2) .cv-contact-booking-detail__value {
  color: var(--teal-600);
}
.cv-contact-booking-detail__meta a {
  color: var(--ink-soft);
  font-weight: 500;
}
.cv-contact-booking-content .cv-about-story-footer {
  margin-top: 0;
}
.cv-programs-feature-panel {
  width: calc(100% - 30px);
  max-width: 1820px;
  margin: 15px auto 0;
  padding: clamp(78px, 7vw, 118px) 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream-2);
}
.cv-programs-feature-head {
  max-width: 860px;
  margin: 0 auto clamp(50px, 5.2vw, 78px);
  text-align: center;
}
.cv-programs-feature-head .eyebrow {
  margin-bottom: 16px;
}
.cv-programs-feature-head h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}
.cv-programs-feature-head h2 span {
  display: block;
  white-space: nowrap;
}
.cv-programs-feature-head h2 .cv-programs-feature-title-accent {
  display: inline;
  color: #E07856;
  white-space: inherit;
}
.cv-programs-feature-head p {
  max-width: 72ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}
.cv-programs-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.cv-programs-feature-card,
.cv-programs-feature-goals {
  min-width: 0;
  border-radius: 22px;
}
.cv-programs-feature-card {
  position: relative;
  min-height: 370px;
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid rgba(84,127,107,0.12);
  box-shadow: none;
  overflow: visible;
  transition: none;
}
.cv-programs-feature-card:hover {
  transform: none;
  border-color: rgba(84,127,107,0.12);
  box-shadow: none;
}
.cv-programs-feature-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #E07856;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.cv-programs-feature-card-plant {
  position: absolute;
  top: -28px;
  right: -20px;
  z-index: 3;
  width: 224px;
  height: auto;
  pointer-events: none;
  transform: scaleX(-1);
  transform-origin: center;
}
.cv-programs-feature-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 92px;
  margin-bottom: 14px;
  min-height: 2.5em;
  font-size: 20px;
  line-height: 1.25;
}
.cv-programs-feature-title-light {
  font-weight: 300;
}
.cv-programs-feature-card p {
  position: relative;
  z-index: 2;
  font-size: 15.5px;
  line-height: 1.7;
}
.cv-programs-feature-goals {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(110,153,132,0.25), transparent 55%),
    linear-gradient(160deg, #2C4539 0%, #3F6152 100%);
  color: var(--white);
  box-shadow: none;
}
.cv-programs-feature-goals h3 {
  max-width: 12ch;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.14;
}
.cv-programs-feature-goals ul {
  display: grid;
  gap: 15px;
  margin-bottom: 28px;
}
.cv-programs-feature-goals li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.55;
}
.cv-programs-feature-goals li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.cv-programs-feature-goals .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  background: #E07856;
  color: var(--white);
  box-shadow: none;
}
.cv-programs-feature-goals .btn:hover {
  background: #C76545;
  color: var(--white);
}
.cv-programs-feature-method {
  max-width: 620px;
  margin: clamp(36px, 4vw, 56px) auto 0;
  text-align: center;
}
.cv-programs-feature-method span {
  display: block;
  margin-bottom: 10px;
  color: #E07856;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.cv-programs-feature-method h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
}
.cv-programs-feature-method p {
  margin: 0 auto;
  max-width: 54ch;
  font-size: 15.5px;
  line-height: 1.65;
}
.cv-programs-feature-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(22px, 2.6vw, 36px);
}
.cv-programs-feature-steps article {
  min-width: 0;
  padding: 24px 26px;
  border: 1px solid rgba(84,127,107,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(8px);
}
.cv-programs-feature-steps span {
  display: block;
  margin-bottom: 10px;
  color: #E07856;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.cv-programs-feature-steps h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
.cv-programs-feature-steps p {
  font-size: 14.5px;
  line-height: 1.65;
}
.section-teal {
  background: var(--teal-600); color: var(--white);
  position: relative; overflow: hidden;
}
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal p { color: rgba(255,255,255,0.85); }

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.treatment-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.treatment-support-grid .problem-card {
  min-width: 0;
  overflow: hidden;
}
.treatment-support-grid .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.treatment-support-grid .btn {
  max-width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s, border-color 0.3s;
}
.problem-card__media {
  margin: 0 0 28px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--teal-50);
}
.problem-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(42,46,43,0.12), 0 4px 12px rgba(42,46,43,0.06);
  border-color: transparent;
}
.problem-card .num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-50); color: var(--teal-700);
  font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.problem-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.problem-card p  { font-size: 14.5px; line-height: 1.65; }

/* Variant: on teal background */
.problem-card.on-teal {
  background: var(--white);
  border-color: rgba(255,255,255,0.28);
  color: var(--teal-700);
  box-shadow: none;
  transition: none;
}
.problem-card.on-teal:hover {
  background: var(--white);
  border-color: rgba(255,255,255,0.28);
  box-shadow: none;
  transform: none;
}
.problem-card.on-teal .num { background: var(--teal-50); color: var(--teal-700); }
.problem-card.on-teal h3 { color: var(--teal-800); }
.problem-card.on-teal p  { color: var(--teal-700); }

#readaptacion-deportiva .problem-card {
  padding: 18px 18px 32px;
  box-shadow: none;
  transition: none;
}

#readaptacion-deportiva .cv-readaptation-title-accent {
  color: #E07856;
}

#readaptacion-deportiva .problem-card h3 {
  font-size: 24px;
  font-weight: 700;
}

#readaptacion-deportiva .problem-card:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

/* ===== ECO SECTION ===== */
.eco-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eco-list { list-style: none; margin: 28px 0 32px; }
.eco-list li {
  padding: 20px 0; border-top: 1px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 16px; color: var(--ink);
}
.eco-list li:last-child { border-bottom: 1px solid var(--line); }
.eco-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal-700);
  border: 1.5px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.eco-visual {
  aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent 40%),
    linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  position: relative; box-shadow: var(--shadow-md); overflow: hidden;
}
.eco-visual .wave {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,0.15) 40px 41px);
}
.eco-visual .pulse { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.eco-visual .pulse svg { width: 70%; color: rgba(255,255,255,0.9); }
.eco-visual--photo {
  background: #d9d2bf;
}
.eco-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eco-visual--photo .wave,
.eco-visual--photo .pulse {
  display: none;
}

/* ===== STEPS ===== */
.steps {
  counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.step {
  padding: 40px 32px; background: var(--white);
  border-radius: 20px; position: relative;
}
.step .step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px; font-weight: 200;
  color: var(--teal-600); opacity: 0.25;
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.step h3 { margin-bottom: 10px; }
.step p  { font-size: 15px; }

/* ===== PROCESS ===== */
.process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; position: relative; counter-reset: p;
}
.process-item { counter-increment: p; }
.process-item::before {
  content: counter(p, decimal-leading-zero);
  font-size: 64px; font-weight: 200;
  color: var(--teal-600); opacity: 0.35;
  letter-spacing: -0.04em; display: block; margin-bottom: 18px;
}
.process-item h3 { margin-bottom: 10px; }
.process-item p  { font-size: 15px; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; font-weight: 500; color: var(--ink);
  width: 100%; text-align: left; padding: 0;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal-700); }
.faq-q .icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--teal-600); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.2s, color 0.2s;
  font-size: 20px; line-height: 1;
}
.faq-item.open .faq-q .icon {
  background: var(--teal-600); color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s;
  color: var(--ink-soft); font-size: 15px; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }

.cv-faq-section {
  background: var(--white);
}
.cv-faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}
.cv-faq-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding: 10px;
  border-radius: 28px;
  background: var(--teal-50);
}
.cv-faq-card__image {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}
.cv-faq-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  object-position: center center;
}
.cv-faq-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 30px 30px;
}
.cv-faq-card__body h3 {
  font-size: 24px;
  margin: 0;
}
.cv-faq-card__body p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
}
.cv-faq-main {
  min-width: 0;
}
.cv-faq-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.cv-faq-head .eyebrow {
  margin-bottom: 18px;
}
.cv-faq-head h2 {
  max-width: 21ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}
.cv-faq-accordion {
  max-width: none;
  margin: 0;
}
.cv-faq-accordion .faq-item {
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: var(--teal-50);
  box-shadow: none;
}
.cv-faq-accordion .faq-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.cv-faq-accordion .faq-q {
  min-height: 68px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}
.cv-faq-accordion .faq-q .icon {
  width: auto;
  height: auto;
  border: 0;
  color: currentColor;
  font-size: 28px;
  font-weight: 600;
  transform: none;
}
.cv-faq-accordion .faq-item.open {
  background: var(--teal-600);
}
.cv-faq-accordion .faq-item.open .faq-q {
  color: var(--white);
}
.cv-faq-accordion .faq-item.open .faq-q .icon {
  background: transparent;
  color: var(--white);
  font-size: 0;
  transform: none;
}
.cv-faq-accordion .faq-item.open .faq-q .icon::before {
  content: '−';
  font-size: 28px;
  line-height: 1;
}
.cv-faq-accordion .faq-a {
  padding: 0 24px;
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.22);
}
.cv-faq-accordion .faq-item.open .faq-a {
  margin-top: 0;
  padding-top: 22px;
  padding-bottom: 24px;
}

.cv-treatment-faq-section {
  padding: clamp(86px, 8vw, 124px) 0;
}
.cv-treatment-faq-section .cv-faq-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 4.5vw, 64px);
}
.cv-treatment-faq-section .cv-faq-head h2 {
  max-width: 24ch;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}
.cv-treatment-faq-section .cv-faq-card__body {
  gap: 24px;
}

.cv-treatment-support-section {
  padding: clamp(78px, 7vw, 116px) 0;
}
.cv-treatment-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px);
  width: 100%;
}
.cv-treatment-support-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(84,127,107,0.18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(22,45,41,0.07);
}
.cv-treatment-support-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal-600), rgba(224,113,78,0.9));
  opacity: 0.9;
}
.cv-treatment-support-card h2 {
  max-width: 14ch;
  margin: 26px 0 12px;
  font-size: clamp(2rem, 3.1vw, 2.65rem);
  line-height: 1.08;
}
.cv-treatment-support-card p {
  max-width: 56ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.cv-treatment-technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.cv-treatment-technique-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(84,127,107,0.42);
  border-radius: 999px;
  color: var(--teal-700);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cv-treatment-technique-pill:hover {
  border-color: var(--teal-600);
  background: var(--teal-50);
  color: var(--green);
}
.cv-treatment-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}
.cv-treatment-program-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--green);
  font-size: 15px;
  line-height: 1.25;
}
.cv-treatment-program-feature span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-700);
  font-weight: 800;
}
.cv-treatment-program-secondary {
  margin-top: 18px !important;
}

@media (min-width: 901px) {
  .cv-faq-card {
    min-height: var(--cv-faq-card-closed-height, auto);
  }
}

@media (max-width: 900px) {
  .cv-treatment-faq-section .cv-faq-layout {
    grid-template-columns: 1fr;
  }
  .cv-treatment-faq-section .cv-faq-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .cv-treatment-faq-section .cv-faq-head {
    text-align: left;
  }
  .cv-treatment-faq-section .cv-faq-head h2 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .cv-treatment-support-grid {
    grid-template-columns: 1fr;
  }
  .cv-treatment-support-card {
    min-height: auto;
  }
  .cv-treatment-support-card h2 {
    max-width: 15ch;
  }
}

@media (max-width: 640px) {
  .cv-treatment-faq-section {
    padding: 72px 0;
  }
  .cv-treatment-faq-section .cv-faq-layout {
    gap: 34px;
  }
  .cv-treatment-faq-section .cv-faq-card {
    padding: 8px;
    border-radius: 18px;
  }
  .cv-treatment-faq-section .cv-faq-card__image {
    border-radius: 14px;
  }
  .cv-treatment-faq-section .cv-faq-card__body {
    padding: 26px 22px 22px;
  }
  .cv-treatment-faq-section .cv-faq-head {
    margin-bottom: 24px;
  }
  .cv-treatment-faq-section .cv-faq-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }
  .cv-treatment-support-card {
    padding: 28px 22px;
    border-radius: 14px;
  }
  .cv-treatment-support-card h2 {
    font-size: 2rem;
  }
  .cv-treatment-support-actions,
  .cv-treatment-support-actions .btn,
  .cv-treatment-technique-list,
  .cv-treatment-technique-pill {
    width: 100%;
  }
  .cv-treatment-support-actions .btn,
  .cv-treatment-technique-pill {
    justify-content: center;
  }
}

/* ===== TESTIMONIALS ===== */
.cv-testimonials-section {
  background:
    radial-gradient(circle at 24px 24px, rgba(84,127,107,0.10) 1.5px, transparent 2px) 0 0 / 26px 26px,
    var(--cream-2);
}
.testimonials-slider {
  width: min(100%, 1320px);
  margin: 48px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: cv-testimonials-slide 26s linear infinite;
}
.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.quote {
  background: var(--white); border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote::before {
  content: '';
  position: absolute; top: 0; left: 36px;
  width: 48px; height: 3px;
  background: var(--teal-600);
  border-radius: 0 0 3px 3px;
}
.quote blockquote {
  font-size: 17px; line-height: 1.55;
  color: var(--ink); font-weight: 400; margin-bottom: 20px;
}
.quote blockquote::before {
  content: '"'; display: block;
  font-size: 64px; color: var(--teal-100);
  line-height: 0.5; margin-bottom: 8px;
  font-family: Georgia, serif;
}
.quote .author { font-size: 14px; font-weight: 600; color: var(--ink); }
.quote .source { font-size: 11px; color: var(--ink-soft); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

.cv-testimonials-section .quote {
  width: 398px;
  min-height: 430px;
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  transition: transform 0.3s;
}
.cv-testimonials-section .quote:hover { transform: translateY(-4px); box-shadow: none; }
.cv-testimonials-section .quote::before { content: none; }
.cv-testimonials-section .quote blockquote {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}
.cv-testimonials-section .quote blockquote::before { content: none; display: none; }
.cv-testimonials-section .quote-mark {
  color: var(--teal-600);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 0.62;
  margin-bottom: 24px;
}
.cv-testimonials-section .quote figcaption {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.cv-testimonials-section .quote .author { font-size: 18px; font-weight: 700; color: var(--ink); }
.cv-testimonials-section .quote .source { font-size: 12px; color: var(--ink-soft); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; }

@keyframes cv-testimonials-slide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; }
}

/* Rating summary */
.rating-summary {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
  padding: 24px 32px; background: rgba(255,255,255,0.72);
  border-radius: 24px; max-width: 600px;
  margin: 0 auto 48px;
  border: 1px solid rgba(84,127,107,0.10);
}
.rating-meta .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 4px; }
.rating-meta .label { font-size: 13px; color: var(--ink-soft); }

/* External review verification */
.testimonios__verificar {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 52px;
}
.testimonios__platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 14px;
  width: min(100%, 760px);
}
.testimonios__platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.testimonios__platforms a:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}
.testimonios__platforms .rating-summary--platform {
  display: flex;
  flex-wrap: nowrap;
  min-height: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 28px;
  border-radius: 24px;
  color: inherit;
  gap: 24px;
  text-align: left;
  text-decoration: none;
}
.testimonios__platforms .rating-summary--platform:hover {
  box-shadow: none;
}
.rating-summary--platform .rating-meta {
  display: grid;
  gap: 4px;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 120px 0; color: var(--white); text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(110,153,132,0.25), transparent 55%),
    linear-gradient(160deg, #2C4539 0%, #3F6152 100%);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 22ch; margin: 0 auto 20px; }
.cta-band p  { color: rgba(255,255,255,0.85); max-width: 55ch; margin: 0 auto 32px; font-size: 17px; }
.cta-band .buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info dt { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-600); margin-bottom: 6px; }
.contact-info dd { margin-bottom: 24px; font-size: 16px; color: var(--ink); line-height: 1.5; }
.contact-info dd a { color: var(--teal-600); font-weight: 500; transition: text-decoration 0.2s; }
.contact-info dd a:hover { text-decoration: underline; }

.contact-map {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-2), var(--olive-light));
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.contact-map::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(84,127,107,0.1) 49% 51%, transparent 51%) 0 0 / 80px 80px,
    linear-gradient(0deg,  transparent 0 49%, rgba(84,127,107,0.1) 49% 51%, transparent 51%) 0 0 / 80px 80px;
}
.pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 40px;
  display: flex; align-items: flex-start; justify-content: center;
}
.pin::after {
  content: ''; width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0; background: var(--teal-600);
  transform: rotate(-45deg);
  box-shadow: 0 6px 12px rgba(84,127,107,0.4);
}
.pin-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, 24px);
  background: var(--white); padding: 8px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; color: var(--teal-600);
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.contact-map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-map--photo {
  background: #d7d3ca;
}
.contact-map--photo::before,
.contact-map--photo .pin,
.contact-map--photo .pin-label {
  display: none;
}
.cv-contact-location-panel {
  background: var(--white);
  padding: clamp(72px, 7vw, 112px) 0;
}
.cv-contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}
.cv-contact-location-map {
  min-height: clamp(420px, 34vw, 560px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-2);
}
.cv-contact-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}
.cv-contact-location-content h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.55vw, 3.15rem);
}
.cv-contact-location-content > p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}
.cv-contact-location-details {
  margin-top: 34px;
}

/* Contact form card */
.cv-contact-form-section {
  background: var(--cream-2);
}
.cv-contact-form-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 5.6vw, 82px);
  align-items: start;
}
.cv-contact-form-intro h2 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.45vw, 2.45rem);
  white-space: nowrap;
}
.cv-contact-form-intro > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.cv-contact-form-intro__image {
  margin: 0 0 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cv-contact-form-intro__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.cv-contact-form-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.cv-contact-form-highlight {
  position: relative;
  min-height: 74px;
  padding: 22px 24px 22px 42px;
  border: 1px solid rgba(84,127,107,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.58);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.cv-contact-form-highlight::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 29px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
}
.cv-contact-form-layout .contact-form-card {
  max-width: none;
  margin: 0;
}
.contact-form-card {
  max-width: 700px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form-card label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 0; }
.contact-form-card input,
.contact-form-card textarea {
  display: block; width: 100%;
  padding: 12px 14px; margin-top: 6px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--white); resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none; border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(84,127,107,0.15);
}
#cv-form-feedback.success { background: var(--teal-50); color: var(--teal-700); border: 1px solid var(--teal-100); }
#cv-form-feedback.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

@media (max-width: 1023px) {
  .cv-contact-form-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .cv-contact-form-intro h2 {
    white-space: normal;
  }
  .cv-contact-form-highlights {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG ===== */
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.blog-card__image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__image {
  transform: scale(1.03);
}
.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
}
.blog-card__title {
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  margin: 0;
}
.blog-card__link {
  align-self: flex-start;
  margin-top: 22px;
  padding: 10px 18px;
  font-size: 13px;
}
.blog-card h2 a { transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--teal-600); }
.blog-pagination { margin-top: 56px; display: flex; justify-content: center; }
.blog-pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--white);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  color: var(--white);
  background: var(--teal-600);
  border-color: var(--teal-600);
}
.blog-content {
  margin: 0 auto;
}
.blog-featured-image {
  margin-bottom: 42px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.entry-content {
  max-width: 1120px;
  margin: 0 auto;
}
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
  color: var(--ink-soft);
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content img {
  border-radius: var(--radius);
  height: auto;
}

/* ===== PAGE HEADER / BREADCRUMB ===== */
.page-header { padding: 32px 0 20px; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); }
.breadcrumb a { color: var(--teal-600); transition: text-decoration 0.2s; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ===== FOOTER ===== */
.site-footer {
  width: calc(100% - 30px);
  max-width: 1820px;
  margin: 30px auto 30px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(110,153,132,0.25), transparent 55%),
    linear-gradient(160deg, #2C4539 0%, #3F6152 100%);
  color: rgba(255,255,255,0.72);
  padding: clamp(72px, 7vw, 112px) 0 34px;
  border-radius: 28px;
  overflow: hidden;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: start;
}
.footer-talk {
  max-width: 560px;
  padding-top: 4px;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 18px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.footer-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.footer-talk h2 {
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.footer-talk h2 a {
  color: var(--white);
}
.footer-talk p {
  max-width: 42ch;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.75;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.footer-links-box {
  min-width: 0;
}
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 48px;
  margin-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  display: block;
  width: 96px;
  height: auto;
}
.footer-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social-links a span,
.footer-social-links a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 64px);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 26px;
}
.footer-grid li {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}
.footer-toggle-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
}
.footer-toggle-icon {
  display: none;
}
.footer-grid a { transition: color 0.2s; }
.footer-grid a:hover { color: var(--accent); }
/* ===== DESKTOP WHATSAPP FLOAT ===== */
.desktop-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 54;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24), 0 6px 14px rgba(42,46,43,0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.desktop-whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1fb857;
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.28), 0 10px 18px rgba(42,46,43,0.16);
}
.desktop-whatsapp-float__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
}
.desktop-whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  gap: 10px;
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  border-radius: 0;
  background: rgba(245,241,230,0.78);
  border: 0;
  border-top: 0;
  box-shadow: 0 -12px 28px rgba(42,46,43,0.10);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.mobile-sticky-cta .btn {
  flex: 1;
  min-height: 56px;
  justify-content: center;
  border-radius: 8px;
  box-shadow: none;
}
.mobile-sticky-cta .btn-ghost {
  color: var(--teal-700);
  border-color: rgba(84,127,107,0.22);
  background: rgba(255,255,255,0.64);
}
.mobile-sticky-cta .btn-primary {
  color: #fff;
  border-color: #E07856;
  background: #E07856;
}
.mobile-sticky-cta .btn-primary:hover {
  border-color: #C95F3F;
  background: #C95F3F;
}
body.nav-open .mobile-sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

.cv-scroll-cue {
  display: none;
}

@media (max-width: 900px) {
  .cv-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: calc(98px + env(safe-area-inset-bottom));
    z-index: 6;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.34);
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    cursor: pointer;
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .cv-scroll-cue span {
    width: 11px;
    height: 11px;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    animation: cv-scroll-cue-bob 1.25s ease-in-out infinite;
  }

  body.cv-scroll-cue-hidden .cv-scroll-cue,
  body.nav-open .cv-scroll-cue {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv-scroll-cue span {
    animation: none;
  }
}

@keyframes cv-scroll-cue-bob {
  0%, 100% {
    transform: rotate(45deg) translate(-2px, -2px);
  }
  50% {
    transform: rotate(45deg) translate(3px, 3px);
  }
}

/* ===== CLAUDIA / CLINIC METHOD ===== */
.cv-clinic-profile__intro,
.cv-claudia-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  margin-bottom: 56px;
}

.cv-clinic-profile__media,
.cv-claudia-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 24px 70px rgba(42,46,43,0.12);
}

.cv-clinic-profile__media {
  aspect-ratio: 1;
}

.cv-clinic-profile__media img,
.cv-claudia-figure img {
  display: block;
  width: 100%;
  height: clamp(480px, 42vw, 660px);
  object-fit: cover;
  object-position: center center;
}

.cv-clinic-profile__media img {
  height: 100%;
  aspect-ratio: 1;
}

.cv-clinic-profile__copy {
  max-width: 680px;
}

.cv-clinic-profile__meta {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 24px 0 0;
}

.cv-clinic-profile__sports {
  max-width: 56ch;
  margin: 8px auto 0;
  color: var(--teal-700);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

.cv-clinic-profile__copy blockquote,
.cv-claudia-pullquote blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
}

.cv-clinic-training {
  margin-top: 52px;
}

.cv-clinic-training h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.cv-clinic-training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.cv-training-card {
  position: relative;
  min-height: 230px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(84,127,107,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 44px rgba(42,46,43,0.05);
}

.cv-training-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
}

.cv-training-card h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0;
}

.cv-training-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.cv-training-card--certificate {
  min-height: auto;
  padding: 12px;
  border-radius: 18px;
}

.cv-training-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin: 0 0 14px;
  padding: 8px;
  border: 1px solid rgba(84,127,107,0.12);
  border-radius: 14px;
  background: #fff;
}

.cv-training-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.cv-training-card--certificate span {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  font-size: 11px;
}

.cv-training-card--certificate h4 {
  font-size: 14px;
}

.cv-training-card--certificate p {
  font-size: 13px;
  line-height: 1.45;
}

.cv-clinic-profile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.cv-clinic-profile__footer p {
  max-width: 76ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.cv-clinic-profile__footer a {
  flex: 0 0 auto;
  color: var(--teal-700);
  font-weight: 700;
}

.cv-clinic-profile__cta {
  margin-top: 24px;
  color: var(--white);
  background: #E07856;
}

.cv-clinic-profile__cta:hover {
  color: var(--white);
  background: #C95F3F;
}

.cv-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cv-plain-card .num {
  display: none;
}

.cv-claudia-story .cv-claudia-split {
  margin-bottom: 0;
}

.cv-claudia-split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.cv-claudia-split--solo {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.cv-claudia-copy {
  max-width: 720px;
}

.cv-claudia-copy .eyebrow {
  margin-bottom: 16px;
}

.cv-claudia-copy h2 {
  max-width: 16ch;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.cv-claudia-copy p {
  font-size: 17px;
  line-height: 1.78;
}

.cv-claudia-figure figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  background: rgba(255,255,255,0.92);
}

.cv-media-placeholder {
  display: grid;
  place-items: center;
  min-height: clamp(420px, 36vw, 620px);
  padding: 28px;
  color: var(--teal-700);
  font-weight: 700;
  text-align: center;
}

.cv-claudia-quote-band {
  text-align: center;
}

.cv-claudia-pullquote {
  max-width: 980px;
  margin: 0 auto;
}

.cv-claudia-pullquote blockquote {
  color: var(--white);
}

.cv-claudia-pullquote figcaption {
  margin-top: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 600;
}

.cv-diploma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.cv-diploma-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  padding: 12px;
  border: 1px solid rgba(84,127,107,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--teal-700);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(42,46,43,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cv-diploma-card:hover {
  transform: translateY(-2px);
  border-color: rgba(84,127,107,0.24);
  box-shadow: 0 22px 48px rgba(42,46,43,0.08);
}

.cv-diploma-card--placeholder {
  cursor: default;
  opacity: 0.78;
}

.cv-diploma-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(84,127,107,0.1);
  border-radius: 12px;
  background: #fff;
}

.cv-diploma-card__title {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.cv-diploma-card__meta {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.cv-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: clamp(20px, 4vw, 44px);
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.cv-lightbox[open] {
  display: grid;
  place-items: center;
}

.cv-lightbox::backdrop {
  background: rgba(31,42,37,0.72);
}

.cv-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, calc(100vw - 48px));
  max-height: calc(100vh - 88px);
  max-height: calc(100dvh - 88px);
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(16,26,22,0.34);
}

.cv-lightbox__close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(16,26,22,0.22);
}

/* ===== SCROLL REVEAL ===== */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .problem-card, .step, .quote, .cv-diploma-card {
    opacity: 0; transform: translateY(16px);
    animation: cv-reveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .grid-3 .problem-card:nth-child(1), .steps .step:nth-child(1), .testimonials .quote:nth-child(1) { animation-delay: 0.05s; }
  .grid-3 .problem-card:nth-child(2), .steps .step:nth-child(2), .testimonials .quote:nth-child(2) { animation-delay: 0.15s; }
  .grid-3 .problem-card:nth-child(3), .steps .step:nth-child(3), .testimonials .quote:nth-child(3) { animation-delay: 0.25s; }
  .grid-3 .problem-card:nth-child(4) { animation-delay: 0.10s; }
  .grid-3 .problem-card:nth-child(5) { animation-delay: 0.20s; }
  .grid-3 .problem-card:nth-child(6) { animation-delay: 0.30s; }
}
@keyframes cv-reveal { to { opacity: 1; transform: none; } }

.cv-page-hero .cv-hero-bg,
.cv-pluxes-hero .cv-hero-bg {
  position: absolute;
  inset: -18px;
  z-index: 0;
  pointer-events: none;
  background-image: var(--cv-hero-image, none);
  background-size: inherit;
  background-repeat: inherit;
  background-position: inherit;
  background-attachment: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .cv-js .cv-page-hero .cv-hero-bg,
  .cv-js .cv-pluxes-hero .cv-hero-bg {
    opacity: 0.86;
    transform: scale(1.035);
    filter: blur(16px);
    will-change: opacity, transform, filter;
  }

  .cv-js .cv-pluxes-hero .section-title > .section-sub-title,
  .cv-js .cv-pluxes-hero .section-title > h1,
  .cv-js .cv-pluxes-hero .section-title > p,
  .cv-js .cv-pluxes-hero .section-title > .hero-cta,
  .cv-js .cv-pluxes-hero .section-title > .hero-badges,
  .cv-js .cv-page-hero__breadcrumb,
  .cv-js .cv-page-hero__content > .section-sub-title,
  .cv-js .cv-page-hero__content > h1,
  .cv-js .cv-page-hero__content > p,
  .cv-js .cv-page-hero__content > .cv-page-hero__actions {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(6px);
    will-change: opacity, transform, filter;
  }

  .cv-js .cv-page-hero.cv-hero-entered .cv-hero-bg,
  .cv-js .cv-pluxes-hero.cv-hero-entered .cv-hero-bg {
    animation: cv-hero-bg-enter 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .section-sub-title,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > h1,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > p,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-cta,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-badges,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__breadcrumb,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .section-sub-title,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > h1,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > p,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .cv-page-hero__actions {
    animation: cv-hero-enter 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .section-sub-title { animation-delay: 0.32s; }
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > h1 { animation-delay: 0.44s; }
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > p { animation-delay: 0.56s; }
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-cta { animation-delay: 0.68s; }
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-badges { animation-delay: 0.80s; }

  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__breadcrumb { animation-delay: 0.30s; }
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .section-sub-title { animation-delay: 0.38s; }
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > h1 { animation-delay: 0.50s; }
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > p { animation-delay: 0.62s; }
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .cv-page-hero__actions { animation-delay: 0.74s; }

  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-hero-bg,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .cv-hero-bg,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .section-title > .section-sub-title,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .section-title > h1,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .section-title > p,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .section-title > .hero-cta,
  .cv-js.cv-hero-intro-timeout .cv-pluxes-hero:not(.cv-hero-entered) .section-title > .hero-badges,
  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-page-hero__breadcrumb,
  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-page-hero__content > .section-sub-title,
  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-page-hero__content > h1,
  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-page-hero__content > p,
  .cv-js.cv-hero-intro-timeout .cv-page-hero:not(.cv-hero-entered) .cv-page-hero__content > .cv-page-hero__actions {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 900px) {
  .cv-js .cv-page-hero .cv-hero-bg,
  .cv-js .cv-pluxes-hero .cv-hero-bg {
    display: none;
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    will-change: auto;
  }

  .cv-js .cv-pluxes-hero .section-title > .section-sub-title,
  .cv-js .cv-pluxes-hero .section-title > h1,
  .cv-js .cv-pluxes-hero .section-title > p,
  .cv-js .cv-pluxes-hero .section-title > .hero-cta,
  .cv-js .cv-pluxes-hero .section-title > .hero-badges,
  .cv-js .cv-page-hero__breadcrumb,
  .cv-js .cv-page-hero__content > .section-sub-title,
  .cv-js .cv-page-hero__content > h1,
  .cv-js .cv-page-hero__content > p,
  .cv-js .cv-page-hero__content > .cv-page-hero__actions {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
    will-change: auto;
  }

  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .section-sub-title,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > h1,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > p,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-cta,
  .cv-js .cv-pluxes-hero.cv-hero-entered .section-title > .hero-badges,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__breadcrumb,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .section-sub-title,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > h1,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > p,
  .cv-js .cv-page-hero.cv-hero-entered .cv-page-hero__content > .cv-page-hero__actions {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
    will-change: auto;
  }

}

@keyframes cv-hero-bg-enter {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes cv-hero-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

/* ===== FOCUS VISIBLE ===== */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(84,127,107,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --h1: clamp(2rem, 7vw, 3.2rem); }

  section { padding: 60px 0; }
  .cta-band { padding: 80px 0; }

  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }

  .eco-wrap { grid-template-columns: 1fr; gap: 40px; }
  .eco-visual { display: none; } /* hide decorative visuals on mobile */

  .grid-3, .steps, .process, .testimonials { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .treatment-support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .treatment-support-grid .problem-card {
    padding: 32px 24px;
  }
  .treatment-support-grid .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .treatment-support-grid .btn {
    width: 100%;
  }
  .cv-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cv-clinic-profile__intro,
  .cv-claudia-split,
  .cv-claudia-split--reverse {
    grid-template-columns: 1fr;
  }
  .cv-clinic-profile__intro {
    margin-bottom: 42px;
  }
  .cv-clinic-profile__media img,
  .cv-claudia-figure img {
    height: clamp(420px, 72vw, 620px);
  }
  .cv-clinic-profile__media img {
    height: 100%;
    aspect-ratio: 1;
  }
  .cv-clinic-profile__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .cv-diploma-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cv-faq-layout {
    grid-template-columns: 1fr;
  }
  .cv-faq-card {
    height: auto;
    max-width: 620px;
    margin: 0 auto;
  }
  .cv-faq-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cv-faq-head h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials-slider {
    --cv-testimonial-edge: clamp(20px, 6vw, 28px);
    --cv-testimonial-card-width: calc(100% - (var(--cv-testimonial-edge) * 2));
    width: 100%;
    overflow: hidden;
    overflow-y: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .testimonials-track {
    width: 100%;
    gap: var(--cv-testimonial-edge);
    padding-inline: var(--cv-testimonial-edge);
    box-sizing: content-box;
    transition: transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    animation: none;
  }
  .testimonials-track .quote[aria-hidden="true"] {
    display: none;
  }
  .cv-testimonials-section .quote {
    flex: 0 0 var(--cv-testimonial-card-width);
    width: var(--cv-testimonial-card-width);
    min-height: 400px;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { display: none; } /* hide map placeholder on mobile */
  .cv-contact-location-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .cv-contact-location-map {
    min-height: 420px;
  }
  .cv-contact-form-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer { padding: 64px 0 30px; }
  .footer-main { grid-template-columns: 1fr; gap: 56px; }
  .footer-talk { max-width: 680px; }
  .footer-talk h2 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .footer-header {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 34px;
    margin-bottom: 26px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer-social-links {
    justify-content: center;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-grid h4 {
    margin: 0;
  }
  .footer-nav-group {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .footer-grid > .footer-nav-group:first-child {
    border-top: 0;
  }
  .footer-toggle-button {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--white);
    cursor: pointer;
  }
  .footer-toggle-icon {
    position: relative;
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .footer-toggle-icon::before,
  .footer-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.78);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
  }
  .footer-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .footer-nav-group--toggle.is-open .footer-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .footer-toggle-panel {
    display: none;
    padding: 0 0 18px;
  }
  .footer-nav-group--toggle.is-open .footer-toggle-panel {
    display: block;
  }
  .footer-grid li {
    margin-bottom: 10px;
  }
  .footer-grid > div:last-child {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    text-align: center;
  }
  .footer-grid > div:last-child ul {
    width: min(100%, 34ch);
    margin-inline: auto;
  }
  .testimonios__platforms {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
  }

  .form-row { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-booking-btn { display: none; }
  .desktop-whatsapp-float { display: none; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

  .cv-page-hero__actions,
  .cv-pluxes-hero .hero-cta > .btn {
    display: none;
  }

  .buttons:not(:has(> .btn ~ .btn)) > .btn,
  .hero-cta:not(:has(> .btn ~ .btn)) > .btn,
  .footer-actions:not(:has(> .btn ~ .btn)) > .btn,
  .cv-about-story-footer:not(:has(> .btn ~ .btn)) > .btn,
  .cv-page-hero__actions:not(:has(> .btn ~ .btn)) > .btn,
  .cv-clinic-profile__copy:not(:has(> .btn ~ .btn)) > .btn,
  .cv-programs-feature-goals:not(:has(> .btn ~ .btn)) > .btn,
  .cv-faq-card__body:not(:has(> .btn ~ .btn)) > .btn,
  .cv-program-pricing-card:not(:has(> .btn ~ .btn)) > .btn,
  .cv-single-action:not(:has(> .btn ~ .btn)) > .btn {
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    justify-content: center;
  }

  .section-head { margin-bottom: 48px; }

  .cv-about-story-panel {
    padding: 64px 0;
    border-radius: 24px;
  }
  .cv-about-story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .cv-about-story-media {
    min-height: auto;
    padding: 0;
  }
  .cv-about-story-image {
    width: 100%;
    max-width: 640px;
  }
  .cv-about-story-image img {
    height: clamp(440px, 72vw, 620px);
  }
  .cv-about-story-content {
    max-width: none;
  }
  .cv-about-story-content h2 {
    max-width: 15ch;
  }
  .cv-about-story-footer {
    flex-wrap: wrap;
  }
  .cv-programs-feature-panel {
    padding: 64px 0;
    border-radius: 24px;
  }
  .cv-programs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cv-programs-feature-card {
    min-height: 310px;
  }
  .cv-programs-feature-card h3 {
    margin-top: 64px;
  }
  .cv-programs-feature-head h2 {
    max-width: 760px;
  }
  .cv-programs-feature-head h2 span {
    white-space: normal;
  }
  .cv-programs-feature-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { flex-direction: column; gap: 10px; }
  .rating-summary { flex-direction: column; gap: 12px; text-align: center; }
  .cv-testimonials-section .quote {
    width: calc(100vw - 76px);
    min-height: 390px;
    padding: 32px 28px;
  }
  .cv-method-grid,
  .cv-diploma-grid {
    grid-template-columns: 1fr;
  }
  .cv-clinic-profile__media img,
  .cv-claudia-figure img {
    height: auto;
    aspect-ratio: 0.82;
  }
  .cv-clinic-profile__media img {
    aspect-ratio: 1;
  }
  .cv-clinic-profile__copy blockquote,
  .cv-claudia-pullquote blockquote {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
  .cv-lightbox__close {
    top: 10px;
    right: 10px;
  }
  .cta-band .buttons { flex-direction: column; align-items: center; }
  .cv-faq-card__body {
    padding: 30px 24px 24px;
  }
  .cv-faq-accordion .faq-q {
    min-height: 62px;
    padding: 18px 20px;
    font-size: 16px;
  }
  .cv-faq-accordion .faq-a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cv-about-story-panel {
    width: calc(100% - 30px);
    border-radius: 22px;
  }
  .cv-about-story-image {
    width: 100%;
  }
  .cv-about-story-image img {
    height: auto;
    aspect-ratio: 0.78;
  }
  .cv-about-story-items {
    grid-template-columns: 1fr;
  }
  .cv-contact-booking-details {
    grid-template-columns: 1fr;
  }
  .cv-contact-location-panel {
    padding: 54px 0;
  }
  .cv-contact-location-map {
    min-height: 360px;
    border-radius: 18px;
  }
  .cv-contact-location-content h2 {
    max-width: none;
  }
  .cv-about-story-footer,
  .cv-about-story-footer .btn {
    width: 100%;
  }
  .cv-about-story-footer {
    align-items: flex-start;
  }
  .cv-programs-feature-panel {
    width: calc(100% - 30px);
    border-radius: 22px;
    padding: 54px 0;
  }
  .cv-programs-feature-head {
    margin-bottom: 36px;
    text-align: left;
  }
  .cv-programs-feature-head h2,
  .cv-programs-feature-head p {
    margin-left: 0;
    margin-right: 0;
  }
  .cv-programs-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cv-programs-feature-card,
  .cv-programs-feature-goals {
    border-radius: 18px;
  }
  .cv-programs-feature-card {
    min-height: auto;
    padding: 26px 24px;
  }
  .cv-programs-feature-card h3 {
    margin-top: 52px;
  }
  .cv-programs-feature-goals {
    padding: 28px 24px;
  }
  .cv-programs-feature-goals h3 {
    max-width: 16ch;
  }
  .cv-programs-feature-steps {
    gap: 14px;
    margin-top: 18px;
  }
  .cv-programs-feature-steps article {
    padding: 22px 22px;
    border-radius: 16px;
  }
}

/* ===== WP CORE OVERRIDES ===== */
.wp-block-image { margin: 0; }
.alignnone, .aligncenter { max-width: 100%; }

/* WPML injects this footer notice after theme CSS; !important is needed to beat its late inline style block. */
.otgs-development-site-front-end { display: none !important; }

/* ===== INTERNAL PAGE HERO + SITEWIDE PANEL SYSTEM ===== */
.cv-page-hero {
  width: calc(100% - 30px);
  min-height: auto;
  margin: 15px auto 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-color: #083f43;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  box-shadow: 0 24px 70px rgba(31,42,37,0.16);
  isolation: isolate;
}

.cv-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,61,64,0.94) 0%, rgba(4,61,64,0.82) 42%, rgba(4,61,64,0.36) 70%, rgba(4,61,64,0.12) 100%),
    radial-gradient(circle at 18% 62%, rgba(84,127,107,0.32), transparent 34rem);
  opacity: 0.6;
}

.cv-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.26;
}

.cv-page-hero > .container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(44px, 5vw, 80px)), var(--max));
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.cv-page-hero__nav {
  position: relative;
  top: auto;
  z-index: 3;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cv-page-hero .cv-page-hero__nav .container.nav {
  width: 100%;
  gap: 24px;
  padding: 34px 0;
}

.cv-page-hero__nav .logo-word,
.cv-page-hero__nav .nav-links a,
.cv-page-hero__nav .lang {
  color: rgba(255,255,255,0.92);
}

.cv-page-hero .cv-page-hero__nav .logo-word {
  font-size: 0;
}

.cv-page-hero .cv-page-hero__nav .logo-word::after {
  content: 'Clínica Vigar';
  font-size: 18px;
  letter-spacing: 0.08em;
}

.cv-page-hero__nav .nav-links a:hover,
.cv-page-hero__nav .nav-links a.active,
.cv-page-hero__nav .lang:hover {
  color: #fff;
}

.cv-page-hero__nav .lang {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.cv-page-hero__nav .nav-hamburger:hover {
  background: rgba(255,255,255,0.10);
}

.cv-page-hero__nav .nav-hamburger span {
  background: #fff;
}

.cv-page-hero__breadcrumb {
  position: absolute;
  top: clamp(104px, 8vw, 120px);
  left: 0;
  right: 0;
  color: rgba(255,255,255,0.76);
}

.cv-page-hero__breadcrumb a,
.cv-page-hero__breadcrumb span {
  color: rgba(255,255,255,0.84);
}

.cv-page-hero__breadcrumb a:hover {
  color: #fff;
}

.cv-page-hero__content {
  width: min(72%, 980px);
  max-width: none;
  padding: clamp(132px, 11vw, 168px) 0 clamp(56px, 6vw, 86px);
}

.cv-page-hero .section-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 26px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cv-page-hero .section-sub-title::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14B8C7;
  box-shadow: 0 0 0 4px rgba(20,184,199,0.16);
}

.cv-page-hero h1 {
  width: 100%;
  max-width: 14em;
  margin: 0;
  color: #fff;
  font-size: 66px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}

.cv-page-hero h1 em {
  color: #fff;
  font-style: normal;
}

.cv-page-hero p {
  max-width: 58ch;
  margin-top: 28px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.65;
}

.cv-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.cv-page-hero .btn-primary {
  background: #E07856;
}

.cv-page-hero .btn-primary:hover {
  background: #C95F3F;
}

.cv-page-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
}

.cv-page-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.16);
}

main > section.section-light,
main > section.section-cream-2,
main > section.section-teal,
main > section.cta-band {
  width: calc(100% - 30px);
  max-width: 1820px;
  margin: 15px auto 0;
  border-radius: 28px;
  overflow: hidden;
}

main > section.section-light {
  background: var(--white);
}

main > section.section-cream-2 {
  background: var(--cream-2);
}

main > section.section-teal,
main > section.cta-band {
  box-shadow: 0 20px 58px rgba(42,46,43,0.10);
}

.problem-card,
.faq-item,
.contact-form-card {
  border-radius: 22px;
  border-color: rgba(84,127,107,0.12);
  box-shadow: 0 18px 48px rgba(42,46,43,0.05);
}

.quote {
  border-radius: 22px;
  border-color: rgba(84,127,107,0.12);
}

.problem-card {
  min-width: 0;
}

.problem-card .num,
.process-item::before {
  background: #E07856;
  color: var(--white);
}

.problem-card .num {
  min-width: 58px;
  width: fit-content;
  height: 58px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section-cream-2 .problem-card,
.section-light .problem-card {
  background: rgba(255,255,255,0.92);
}

.process {
  gap: 20px;
}

.cv-techniques-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cv-techniques-grid .process-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.process-item {
  padding: 32px 30px;
  border-radius: 22px;
  border: 1px solid rgba(84,127,107,0.12);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 48px rgba(42,46,43,0.05);
}

.process-item::before {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  opacity: 1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  .cv-techniques-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cv-techniques-grid {
    grid-template-columns: 1fr;
  }
}

.cv-programs-page-pricing {
  background:
    radial-gradient(circle at 92% 42%, rgba(224,120,86,0.12), transparent 16rem),
    radial-gradient(circle at 10% 78%, rgba(84,127,107,0.14), transparent 18rem),
    var(--cream-2);
}

.cv-program-pricing-head {
  margin-top: 64px;
  margin-bottom: 36px;
}

.cv-program-pricing-head h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
}

.cv-program-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.cv-program-pricing-grid--processes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cv-program-pricing-card {
  min-width: 0;
  min-height: 560px;
  padding: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(84,127,107,0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 60px rgba(42,46,43,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cv-program-pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,120,86,0.28);
  box-shadow: 0 28px 70px rgba(42,46,43,0.10);
}

.cv-program-pricing-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.cv-program-pricing-summary {
  min-height: 5.1em;
  font-size: 15.5px;
  line-height: 1.65;
}

.cv-program-pricing-price {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.05rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.cv-program-pricing-price.is-text {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cv-program-pricing-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
}

.cv-program-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.cv-program-pricing-list li + li {
  padding-top: 14px;
  border-top: 1px solid rgba(227,223,208,0.86);
}

.cv-program-pricing-list .check {
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
}

.cv-program-pricing-list .check {
  width: 20px;
  height: 20px;
  margin: 0.15em 0 0;
}

.cv-program-pricing-list-text {
  min-width: 0;
  flex: 1 1 auto;
}

.cv-program-pricing-indications {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(227,223,208,0.86);
  font-size: 14.5px;
  line-height: 1.65;
}

.cv-program-pricing-indications strong {
  color: var(--ink);
}

@media (min-width: 521px) {
  .cv-program-pricing-list:has(+ .cv-program-pricing-btn),
  .cv-program-pricing-indications:has(+ .cv-program-pricing-btn),
  .cv-program-pricing-summary:has(+ .cv-program-pricing-btn),
  .cv-program-pricing-price:has(+ .cv-program-pricing-btn) {
    margin-bottom: clamp(20px, 2vw, 28px);
  }
}

.cv-program-pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: #E07856;
  box-shadow: none;
}

.cv-program-pricing-btn:hover {
  background: #C95F3F;
}

@media (max-width: 900px) {
  .cv-page-hero {
    width: 100%;
    min-height: 100svh;
    margin: 0 auto 15px;
    border-radius: 0;
    background-image: var(--cv-hero-image-mobile, var(--cv-hero-image)) !important;
    background-attachment: scroll;
    background-position: 58% center;
  }

  .cv-page-hero::before {
    background:
      linear-gradient(180deg, rgba(4,61,64,0.96) 0%, rgba(4,61,64,0.91) 58%, rgba(4,61,64,0.98) 100%),
      radial-gradient(circle at 50% 20%, rgba(84,127,107,0.28), transparent 22rem);
  }

  .cv-page-hero > .container {
    width: 100%;
    min-height: inherit;
    padding: 0;
  }

  .cv-page-hero.cv-page-hero--contact-compact {
    min-height: auto;
  }

  .cv-page-hero.cv-page-hero--contact-compact > .container {
    min-height: auto;
  }

  .cv-page-hero.cv-page-hero--contact-compact .cv-page-hero__content {
    padding-bottom: 76px;
  }

  .cv-page-hero .cv-page-hero__nav .container.nav {
    padding: 41px 43px 26px;
  }

  .cv-page-hero__nav .lang {
    display: none;
  }

  .cv-page-hero__nav .logo img {
    width: 48px;
  }

  .cv-page-hero .cv-page-hero__nav .logo-word {
    color: #fff;
  }

  .cv-page-hero .cv-page-hero__nav .logo-word::after {
    font-size: 12px;
  }

  .cv-page-hero__breadcrumb {
    top: 97px;
    left: 41px;
    right: 41px;
  }

  .cv-page-hero__content {
    width: 100%;
    padding: 109px 43px 64px;
  }

  .cv-page-hero h1 {
    max-width: none;
    font-size: clamp(2.38rem, 8.7vw, 3.9rem);
    line-height: 1;
  }

  .cv-page-hero p {
    font-size: 16.5px;
    line-height: 1.54;
  }

  main > section.section-light,
  main > section.section-cream-2,
  main > section.section-teal,
  main > section.cta-band {
    border-radius: 24px;
  }

  .cv-program-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-program-pricing-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  main > section.section-light,
  main > section.section-cream-2,
  main > section.section-teal,
  main > section.cta-band {
    width: calc(100% - 30px);
    border-radius: 22px;
  }

  .cv-page-hero {
    width: 100%;
    min-height: 100svh;
    margin: 0 auto 15px;
    border-radius: 0;
  }

  .cv-page-hero > .container {
    width: 100%;
    padding: 0;
  }

  .cv-page-hero.cv-page-hero--contact-compact .cv-page-hero__content {
    padding-bottom: 58px;
  }

  .cv-page-hero .cv-page-hero__nav .container.nav {
    padding: 35px 37px 20px;
  }

  .cv-page-hero__breadcrumb {
    top: 91px;
    left: 37px;
    right: 37px;
    font-size: 12px;
  }

  .cv-page-hero__content {
    width: 100%;
    padding: 105px 37px 62px;
  }

  .cv-page-hero .section-sub-title {
    font-size: 11px;
  }

  .cv-page-hero h1 {
    font-size: clamp(2.12rem, 8.8vw, 2.5rem);
  }

  .cv-page-hero p {
    font-size: 15.5px;
    line-height: 1.5;
  }

  .cv-page-hero__actions,
  .cv-page-hero__actions .btn {
    width: 100%;
  }

  .cv-page-hero__actions .btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .cv-program-pricing-head {
    text-align: left;
  }

  .cv-program-pricing-head h2,
  .cv-program-pricing-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .cv-program-pricing-grid {
    grid-template-columns: 1fr;
  }

  .cv-program-pricing-grid--processes {
    grid-template-columns: 1fr;
  }

  .cv-program-pricing-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .cv-program-pricing-btn {
    margin-top: 20px;
  }
}

/* ===== HOME HERO: Pluxes dark-section/parallaxie adaptation ===== */
.cv-pluxes-hero {
  width: calc(100% - 30px);
  min-height: calc(100vh - 30px);
  min-height: calc(100svh - 30px);
  margin: 15px auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-color: #083f43;
  background-image: var(--cv-hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  box-shadow: 0 30px 80px rgba(31,42,37,0.18);
  isolation: isolate;
}

.cv-pluxes-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,61,64,0.94) 0%, rgba(4,61,64,0.82) 42%, rgba(4,61,64,0.36) 70%, rgba(4,61,64,0.12) 100%),
    radial-gradient(circle at 18% 62%, rgba(84,127,107,0.32), transparent 34rem);
  opacity: 0.6;
}

.cv-pluxes-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.34;
}

.cv-pluxes-hero > .container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(44px, 5vw, 80px)), var(--max));
  height: 100%;
  min-height: inherit;
}

.cv-pluxes-hero-row {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  grid-template-rows: auto 1fr;
  align-items: center;
}

.cv-hero-header {
  grid-column: 1 / -1;
  position: relative;
  top: auto;
  z-index: 3;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cv-hero-header .container.nav {
  position: relative;
  width: 100%;
  gap: 24px;
  padding: 34px 0;
}

.cv-hero-header .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: clamp(18px, 2vw, 28px);
}

.cv-hero-header .nav-right {
  flex-shrink: 0;
  gap: 16px;
}

.cv-hero-header .logo-word,
.cv-hero-header .nav-links a,
.cv-hero-header .lang {
  color: rgba(255,255,255,0.92);
}

.cv-hero-header .logo-word {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.cv-hero-header .nav-links a:hover,
.cv-hero-header .nav-links a.active,
.cv-hero-header .lang:hover {
  color: #fff;
}

.cv-hero-header .lang {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.cv-hero-header .nav-hamburger:hover {
  background: rgba(255,255,255,0.10);
}

.cv-hero-header .nav-hamburger span {
  background: #fff;
}

.cv-pluxes-hero-col {
  width: 100%;
  max-width: none;
  min-width: 0;
  grid-column: 1 / -1;
  padding: clamp(56px, 6vw, 86px) 0 clamp(72px, 8vw, 118px);
}

.cv-pluxes-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(72%, 980px);
}

.cv-pluxes-hero .section-title {
  display: contents;
}

.cv-pluxes-hero .section-sub-title {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 26px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cv-pluxes-hero .section-sub-title::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14B8C7;
  box-shadow: 0 0 0 4px rgba(20,184,199,0.16);
}

.cv-pluxes-hero h1 {
  order: 2;
  width: 100%;
  max-width: 14em;
  margin: 0 0 28px;
  color: #fff;
  font-size: 66px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}

.cv-pluxes-hero h1 em {
  color: inherit;
  font-style: normal;
}

.cv-hero-title-break {
  display: none;
}

.cv-pluxes-hero p {
  order: 3;
  max-width: 58ch;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.65;
}

.cv-pluxes-hero .hero-cta {
  order: 4;
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 34px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.cv-pluxes-hero .hero-cta .btn {
  min-height: 56px;
  padding: 17px 28px;
  font-weight: 700;
  box-shadow: none;
}

.cv-pluxes-hero .hero-cta .btn-primary {
  background: #E07856;
  color: #fff;
}

.cv-pluxes-hero .hero-cta .btn-primary::after,
.cv-pluxes-hero .hero-cta .btn-ghost::after {
  content: '↗';
  margin-left: 10px;
  font-size: 14px;
}

.cv-pluxes-hero .hero-cta .btn-primary:hover {
  background: #0AA1B0;
  transform: translateY(-2px);
}

.cv-pluxes-hero .hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cv-pluxes-hero .hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.cv-pluxes-hero .hero-trust {
  order: 5;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.cv-pluxes-hero .hero-trust--inline {
  order: 0;
  margin: 0;
  white-space: normal;
  flex: 1 1 260px;
  align-self: center;
  min-height: 56px;
}

.cv-pluxes-hero .hero-trust--inline > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cv-pluxes-hero .hero-trust--inline .hero-trust-text strong,
.cv-pluxes-hero .hero-trust--inline .hero-trust-text small {
  white-space: normal;
}

.cv-pluxes-hero .rating-big {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.cv-pluxes-hero .hero-trust .stars {
  color: #F7C948;
  font-size: 16px;
  letter-spacing: 2px;
}

.cv-pluxes-hero .hero-trust-text,
.cv-pluxes-hero .hero-trust-text strong,
.cv-pluxes-hero .hero-trust-text small {
  color: #fff;
}

.cv-pluxes-hero .hero-trust-text small {
  opacity: 0.86;
}

.cv-pluxes-hero .hero-badges {
  order: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 28px 0 0;
}

.cv-pluxes-hero .hero-badges li {
  min-height: 38px;
  padding: 9px 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cv-pluxes-hero .hero-badges li::before {
  background: #E07856;
}

.cv-pluxes-hero .hero-visual {
  display: none;
}

@media (min-width: 901px) {
  .cv-hero-title-break {
    display: block;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .cv-pluxes-hero h1 {
    font-size: clamp(52px, 5.2vw, 66px);
  }
}

@media (max-width: 900px) {
  .cv-pluxes-hero {
    width: 100%;
    min-height: 100svh;
    margin: 0 auto 15px;
    border-radius: 0;
    background-image: var(--cv-hero-image-mobile, var(--cv-hero-image)) !important;
    background-attachment: scroll;
    background-position: 62% center;
  }

  .cv-pluxes-hero::before {
    background:
      linear-gradient(180deg, rgba(4,61,64,0.96) 0%, rgba(4,61,64,0.91) 58%, rgba(4,61,64,0.98) 100%),
      radial-gradient(circle at 50% 20%, rgba(84,127,107,0.28), transparent 22rem);
  }

  .cv-pluxes-hero-row {
    grid-template-columns: 1fr;
  }

  .cv-pluxes-hero > .container {
    width: 100%;
    min-height: inherit;
  }

  .cv-hero-header .container.nav {
    padding: 41px 43px 26px;
  }

  .cv-hero-header .lang {
    display: none;
  }

  .cv-hero-header .logo img {
    width: 48px;
  }

  .cv-hero-header .logo-word {
    color: #fff;
    font-size: 12px;
  }

  .cv-pluxes-hero-col {
    grid-column: 1;
    padding: 58px 43px 38px;
  }

  .cv-pluxes-hero .hero-content {
    width: 100%;
  }

  .cv-pluxes-hero h1 {
    font-size: clamp(2.36rem, 6.65vw, 3.18rem);
    line-height: 1;
  }

  .cv-pluxes-hero p {
    font-size: 15.5px;
    line-height: 1.46;
  }

  .cv-pluxes-hero .hero-cta {
    padding-top: 18px;
  }

  .cv-pluxes-hero .hero-trust {
    width: auto;
    max-width: 100%;
    margin-top: 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .cv-pluxes-hero .hero-trust--inline {
    flex: 0 0 auto;
    align-self: flex-start;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .cv-pluxes-hero {
    width: 100%;
    min-height: 100svh;
    margin: 0 auto 15px;
    border-radius: 0;
  }

  .cv-pluxes-hero-col {
    padding: 40px 37px 44px;
  }

  .cv-hero-header .container.nav {
    padding: 37px 37px 22px;
  }

  .cv-pluxes-hero .section-sub-title {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .cv-pluxes-hero h1 {
    font-size: clamp(2.02rem, 8.9vw, 2.42rem);
    letter-spacing: -0.04em;
  }

  .cv-pluxes-hero p {
    font-size: 14.5px;
    line-height: 1.42;
  }

  .cv-pluxes-hero .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    padding-top: 0;
    flex-wrap: nowrap;
  }

  .cv-pluxes-hero .hero-trust--inline {
    width: auto;
    max-width: 100%;
    margin: 0;
    white-space: normal;
    flex: 0 0 auto;
    align-self: flex-start;
    min-height: 0;
  }

  .cv-pluxes-hero .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .cv-pluxes-hero .hero-trust {
    width: auto;
    max-width: 100%;
  }

  .cv-pluxes-hero .hero-badges {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cv-pluxes-hero .hero-badges li {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  body .cv-page-hero .cv-hero-bg,
  body .cv-pluxes-hero .cv-hero-bg,
  body .cv-page-hero__breadcrumb,
  body .cv-page-hero__content > .section-sub-title,
  body .cv-page-hero__content > h1,
  body .cv-page-hero__content > p,
  body .cv-pluxes-hero .section-title > .section-sub-title,
  body .cv-pluxes-hero .section-title > h1,
  body .cv-pluxes-hero .section-title > p,
  body .cv-pluxes-hero .section-title > .hero-cta,
  body .cv-pluxes-hero .section-title > .hero-badges {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body .cv-page-hero .cv-hero-bg,
  body .cv-pluxes-hero .cv-hero-bg {
    display: none !important;
  }

  body .cv-page-hero .cv-page-hero__actions,
  body .cv-pluxes-hero .hero-cta > .btn {
    display: none !important;
  }
}

/* ===== ERROR PAGES ===== */
.cv-error-page {
  background: #fff;
}

.cv-error-section {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: clamp(84px, 10vw, 150px);
}

.cv-error-card {
  max-width: 760px;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(245, 241, 230, 0.72), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 24px 70px rgba(42, 46, 43, 0.08);
}

.cv-error-card h1 {
  max-width: 10em;
  margin: 22px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.98;
}

.cv-error-card p {
  max-width: 58ch;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .cv-error-section {
    min-height: 58vh;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .cv-error-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .cv-error-card h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .cv-error-card p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* ===== LEGAL, PRIVACY AND COOKIE CONSENT ===== */
.cv-page-hero--legal-compact {
  min-height: clamp(420px, 52vh, 560px);
}
.cv-page-hero--legal-compact > .container {
  min-height: inherit;
}
.cv-page-hero--legal-compact .cv-page-hero__content {
  padding-top: clamp(130px, 16vh, 180px);
  padding-bottom: clamp(56px, 9vh, 92px);
}
.cv-legal-content {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}
.cv-legal-content > * + * {
  margin-top: 1.05em;
}
.cv-legal-content h2 {
  margin-top: 2em;
  margin-bottom: 0.35em;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}
.cv-legal-content ul {
  padding-left: 1.2em;
  list-style: disc;
}
.cv-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4em;
  overflow-wrap: anywhere;
  font-size: 14px;
}
.cv-legal-content th,
.cv-legal-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.cv-legal-content th {
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
}
.cv-legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(224,120,86,0.28);
  border-radius: 10px;
  background: rgba(224,120,86,0.08);
}
.cv-legal-placeholder {
  color: #9A4B2F;
  font-weight: 700;
}
.cv-form-privacy-note {
  margin: -8px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.contact-form-card .cv-form-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.cv-form-privacy-consent input {
  width: auto;
  min-width: 18px;
  margin-top: 3px;
}
.cv-form-legal-summary {
  margin: 4px 0 22px;
}
.cv-legal-summary-toggle {
  width: 100%;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(84,127,107,0.36);
  border-radius: 8px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.cv-legal-summary-toggle:focus-visible {
  outline: 3px solid rgba(84,127,107,0.28);
  outline-offset: 2px;
}
.cv-toggle-indicator {
  flex: 0 0 auto;
  min-width: 16px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}
.cv-legal-summary-content {
  margin-top: 12px;
}
.cv-legal-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
}
.cv-legal-summary-table th,
.cv-legal-summary-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.cv-legal-summary-table th {
  width: 30%;
  padding-right: 16px;
  color: var(--ink);
  font-weight: 700;
}
.cv-legal-summary-table td {
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .cv-legal-summary-table tr,
  .cv-legal-summary-table th,
  .cv-legal-summary-table td {
    display: block;
    width: 100%;
  }
  .cv-legal-summary-table th {
    padding: 12px 0 4px;
  }
  .cv-legal-summary-table td {
    padding: 0 0 12px;
  }
}
.cv-cookie-embed {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.cv-cookie-embed iframe {
  flex: 1;
}
.cv-cookie-embed__placeholder {
  width: 100%;
  min-height: inherit;
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(84,127,107,0.14), rgba(245,241,230,0.78)),
    var(--cream-2);
}
.cv-cookie-embed__placeholder h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.cv-cookie-embed__placeholder p {
  max-width: 46ch;
  margin: 0;
  color: var(--ink-soft);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.4;
}
.footer-legal-links a:hover {
  color: var(--accent);
}
.footer-credit {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.5;
}
.footer-credit a {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--accent);
}
.footer-credit__heart {
  display: inline-block;
  margin: 0 2px;
  color: var(--accent);
  font-size: 1.05em;
  line-height: 1;
}
.cv-cookie-banner,
.cv-cookie-modal {
  position: fixed;
  z-index: 80;
}
.cv-cookie-banner[hidden],
.cv-cookie-modal[hidden] {
  display: none !important;
}
.cv-cookie-banner {
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(84,127,107,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 70px rgba(42,46,43,0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.cv-cookie-banner__content h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
.cv-cookie-banner__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.cv-cookie-banner__actions,
.cv-cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cv-cookie-banner .btn,
.cv-cookie-modal .btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  white-space: nowrap;
}
.cv-cookie-modal {
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,37,36,0.55);
}
.cv-cookie-modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
}
.cv-cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
.cv-cookie-modal__panel h2 {
  margin: 0 42px 10px 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.cv-cookie-modal__panel p {
  color: var(--ink-soft);
  line-height: 1.6;
}
.cv-cookie-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.cv-cookie-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--ink);
  font-weight: 700;
}
.cv-cookie-options input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.cv-cookie-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
  font-size: 14px;
}
body.cv-cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .cv-page-hero.cv-page-hero--legal-compact {
    min-height: auto;
  }
  .cv-page-hero.cv-page-hero--legal-compact > .container {
    min-height: auto;
  }
  .cv-page-hero.cv-page-hero--legal-compact .cv-page-hero__content {
    padding-bottom: 72px;
  }
  .cv-legal-content {
    font-size: 15px;
  }
  .cv-legal-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .footer-legal-links {
    justify-content: center;
    text-align: center;
  }
  .footer-credit {
    text-align: center;
  }
  .cv-cookie-banner {
    right: 10px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .cv-cookie-banner__actions,
  .cv-cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cv-cookie-banner .btn,
  .cv-cookie-modal .btn {
    width: 100%;
    justify-content: center;
  }
  .cv-cookie-modal {
    align-items: stretch;
    padding: 0;
  }
  .cv-cookie-modal__panel {
    width: 100%;
    height: 100svh;
    max-height: none;
    padding: calc(24px + env(safe-area-inset-top)) 18px calc(24px + env(safe-area-inset-bottom));
    border-radius: 0;
  }
  .cv-cookie-embed__placeholder {
    min-height: 360px;
  }
}

/* Global interaction policy: buttons should not animate or move on hover. */
.btn,
.btn:hover,
.btn:active,
.btn:focus-visible {
  transition: none !important;
  transform: none !important;
}
