:root {
  --bg: #f2f3ef;
  --ink: #101216;
  --muted: #5a5f63;
  --green: #80bf3f;
  --green-dark: #3a7c2b;
  --card: #ffffff;
  --line: #d9ddd3;
  --shadow: 0 16px 50px rgba(16, 18, 22, 0.11);
  --anchor-offset: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Verdana, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% -10%, #d5e7bb, transparent 45%), var(--bg);
  line-height: 1.35;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(242, 243, 239, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.brand {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
  max-width: none;
  white-space: nowrap !important;
  flex: 0 0 auto;
}

.brand-salud {
  display: inline;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #b7c9a7;
  background: #ffffff;
  color: #182029;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: #f4faeb;
  border-color: #8ebe5c;
  transform: translateY(-1px);
  outline: none;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 16, 0.46);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #534741;
  border-left: 1px solid #374151;
  box-shadow: -14px 0 36px rgba(0, 0, 0, 0.26);
  padding: 16px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mobile-drawer-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #e5e7eb;
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid #4b5563;
  border-radius: 10px;
  background: #111827;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.mobile-drawer-nav {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.mobile-drawer-link {
  display: block;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-drawer-link:hover,
.mobile-drawer-link:focus-visible {
  background: rgba(152, 212, 104, 0.5);
  border-color: rgba(114, 248, 4, 0.35);
  outline: none;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.2rem 0 2.2rem;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.45;
}

.bg-orb--a {
  width: 320px;
  height: 320px;
  background: #aed975;
  left: -120px;
  top: 60px;
}

.bg-orb--b {
  width: 260px;
  height: 260px;
  background: #8fd15f;
  right: -120px;
  bottom: -20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "media intro"
    "media offer";
  gap: 2rem;
  align-items: center;
}

.hero-intro {
  grid-area: intro;
  text-align: right;
}

.hero-media {
  grid-area: media;
}

.hero-offer {
  grid-area: offer;
  text-align: right;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

h1,
h2,
h3 {
  font-family: "Archivo", sans-serif;
  line-height: 1.07;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  margin-top: 0.45rem;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  margin-bottom: 0.2rem;
}

#proposito h2 {
  margin-bottom: 1.0rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-title-line {
  display: block;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: #1f2329;
  max-width: 62ch;
  margin-left: auto;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 1.4rem 0;
  justify-content: flex-end;
}

.price-label {
  margin: 0;
  color: var(--muted);
}

.price {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.58rem 1.3rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  color: #121417;
  background: linear-gradient(120deg, #b9ef71, var(--green));
  box-shadow: 0 8px 24px rgba(65, 132, 43, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(65, 132, 43, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: #96c66b;
  box-shadow: none;
}

.btn--sm {
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  font-size: 0.9rem;
}

.mini {
  margin-top: 0.8rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.social-links--footer {
  justify-content: center;
  margin: 0.35rem 0 0.7rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.35rem 0.82rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1d2228;
  text-decoration: none;
  background: #edf3e4;
  border: 1px solid #c8d9b3;
}

.social-link:hover {
  background: #dff0c9;
  border-color: #9ec76e;
}

.social-link--icon {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.social-link--icon:hover {
  background: transparent;
  border: 0;
}

.social-link--icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.book-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.book {
  grid-area: 1 / 1;
  display: block;
  width: min(360px, calc(100% - 2.6rem));
  border-radius: 0;
  transition: opacity 0.25s ease;
}

#bookCard .book--base {
  opacity: 0;
  transform: translateX(-120vw);
  transition: transform 1.05s ease-out, opacity 0.65s ease-out;
}

#bookCard.is-entered .book--base {
  opacity: 1;
  transform: translateX(0);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.42rem;
}

.hero-offer .hero-strip {
  margin-top: 0.9rem;
}

.hero-strip img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .hero-strip img {
    height: 130px; /* súbelo a 110-130px según cómo lo quieras */
  }
}

.section {
  padding: 3.5rem 0;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

#solicitud-hora {
  scroll-margin-top: calc(var(--anchor-offset) - 56px);
}

.section--accent {
  background: linear-gradient(180deg, rgba(152, 212, 104, 0.15), rgba(152, 212, 104, 0.03));
  border-block: 1px solid var(--line);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 2.0rem;
}

h2 + .section-intro {
  margin-top: 0rem;
}

#solicitud-hora h2 + .section-intro {
  margin-bottom: 0.6rem;
}

.consult-request-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 0 1.25rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.testimonials {
  background: linear-gradient(180deg, rgba(128, 191, 63, 0.12), rgba(128, 191, 63, 0.03));
  border-block: 1px solid var(--line);
}

.opinion-cta {
  text-align: center;
}

.opinion-cta .cta-row {
  justify-content: center;
}

.testimonials-scroll {
  margin-top: 3rem;
  padding: 0.15rem 0 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(65, 132, 43, 0.12), 0 5px 14px rgba(16, 18, 22, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card--scroll {
  width: min(380px, calc(100vw - 3rem));
  flex: 0 0 auto;
  transform: translateY(-2px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, #4f9c34, #80bf3f);
}

.testimonial-name {
  margin: 0;
  font-weight: 800;
}

.testimonial-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-rating {
  margin: 0 0 0.55rem;
  font-weight: 800;
  color: #3a7c2b;
  font-family: "Archivo", sans-serif;
}

.testimonial-card blockquote {
  margin: 0;
  color: #20252a;
}

.testimonial-card--cta {
  border-color: #8fc257;
  background: linear-gradient(165deg, #f8fdea, #eef8df);
  box-shadow: 0 12px 30px rgba(65, 132, 43, 0.16), 0 6px 14px rgba(46, 98, 33, 0.08);
}

.testimonial-card--cta .testimonial-rating {
  color: #2f6d25;
}

.card-list {
  display: grid;
  gap: 0.85rem;
}

.card-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(16, 18, 22, 0.05);
}

.card p {
  margin: 0;
}

.benefits {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.benefits-link {
  color: #2f7f33;
  font-weight: 700;
  text-decoration: none;
  text-decoration-color: #3e9d45;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.benefits-link:visited {
  color: #2a6f2f;
}

.benefits-link:hover {
  color: #225f27;
  text-decoration-color: #225f27;
}

.benefits-link:focus-visible {
  outline: 2px solid #7fc667;
  outline-offset: 2px;
  border-radius: 3px;
}

.author {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.6rem;
}

.author-photo-wrap {
  position: relative;
}

.author-photo-grid {
  display: grid;
  gap: 0.8rem;
}

.author-photo-caption-wrap {
  display: grid;
  gap: 0.35rem;
}

.author-photo {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #d4ddca;
  box-shadow: var(--shadow);
}

.author-photo-note {
  margin: 0;
  font-size: 0.95rem;
  color: #5d6368;
  text-align: center;
}

.author-badges {
  margin-top: 5.3rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.author-badges img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dbe3cf;
}

.author-name {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0.25rem 0 1.85rem;
}

.author-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.chapters {
  display: grid;
  gap: 0.85rem;
}

.chapter {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
}

.chapter p {
  margin: 0.42rem 0;
}

.final-cta {
  text-align: center;
  padding-top: 2.7rem;
}

.final-cta h2 {
  margin-bottom: 2.7rem;
}

#consulta-doctor h2 {
  margin-top: 3.2rem;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 4.2rem;
}

.decision-card {
  border: 1px solid #bfd0ab;
  border-radius: 22px;
  padding: 1.4rem 1.35rem;
}

.decision-card h3 {
  font-size: clamp(1.7rem, 2.9vw, 1.9rem);
  margin-bottom: 0.7rem;
}

.decision-card p {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.15rem);
  color: #1c2228;
}

.decision-card--book {
  background: #f8f8f8;
}

.decision-card--consult {
  background: #deebcc;
}

.decision-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0.25rem 1rem;
  margin-bottom: 0.75rem;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.decision-tag--book {
  background: #dde2ec;
  color: #28354b;
}

.decision-tag--consult {
  background: #c2dd92;
  color: #264e1b;
}

.decision-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.decision-actions .btn {
  min-height: 46px;
  min-width: 220px;
  padding: 0.58rem 1.3rem;
  font-size: 1rem;
}

.decision-card--book .btn {
  background: #ffffff;
  border-color: #85c341;
  color: #121417;
}

.decision-card--book .btn--ghost {
  background: #ffffff;
  border-color: #85c341;
  color: #1f2530;
}

.final-book-wrap {
  margin: 1.8rem 0 4rem;
}

.final-book {
  display: block;
  width: min(300px, calc(100% - 2.6rem));
  margin: 0 auto;
  opacity: 1;
  transform: translateX(var(--final-book-shift, -55vw));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .final-book {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 700px) {
  .final-book {
    width: min(200px, 72vw);
  }
}
.footer {
  background: #534741;
  color: #9b999a;
  font-family: "Source Sans 3", sans-serif;
}

.footer-top {
  background: #736357;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-social-title {
  margin: 0;
  color: #9b999a;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.footer-fb {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.footer-fb img {
  display: block;
  width: 32px;
  height: 32px;
}

.footer-fb .footer-fb-active {
  display: none;
}

.footer-fb:hover .footer-fb-default,
.footer-fb:focus .footer-fb-default,
.footer-fb:focus-visible .footer-fb-default,
.footer-fb:active .footer-fb-default {
  display: none;
}

.footer-fb:hover .footer-fb-active,
.footer-fb:focus .footer-fb-active,
.footer-fb:focus-visible .footer-fb-active,
.footer-fb:active .footer-fb-active {
  display: block;
}

.footer-main {
  text-align: center;
}

.footer-main .container {
  display: grid;
  justify-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  margin: 0.5rem 0 0.7rem;
  color: #f3f3f2;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.6;
}

.footer-info {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #9b999a;
}

.footer-nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-nav a {
  color: #9b999a;
  text-decoration: none;
  padding: 0 0.55rem;
  position: relative;
  white-space: nowrap;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-nav a:focus-visible,
.footer-nav a:active {
  color: #7fbe3f;
}

.footer-nav a.is-current {
  color: #7fbe3f;
}

.footer-nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.15rem;
  color: #9b999a;
}

.footer-bottom {
  margin: 0.9rem auto 0;
  width: 100%;
  border-top: 1px solid #7a695d;
  padding-top: 0.8rem;
  font-size: 1rem;
  color: #9b999a;
}

.footer .footer-tel,
.footer .footer-tel:visited,
.footer a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none;
  font: inherit;
}

.footer .footer-tel:hover,
.footer .footer-tel:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(145deg, #7fbe3f, #4f9c34);
  box-shadow: 0 10px 24px rgba(46, 98, 33, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(46, 98, 33, 0.42);
}

.back-to-top:focus-visible {
  outline: 3px solid #c8e89e;
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.7s ease, transform 1.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

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

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "intro"
      "media"
      "offer";
  }

  .hero-intro,
  .hero-offer {
    text-align: left;
  }

  .hero-intro .lead {
    margin-left: 0;
  }

  .price-row,
  .cta-row {
    justify-content: flex-start;
  }


  .book-shell {
    margin: 0 auto;
    max-width: 360px;
  }

  .card-list--two {
    grid-template-columns: 1fr;
  }

  .author-photo-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-top-inner {
    min-height: 48px;
  }

  .footer-fb,
  .footer-fb img {
    width: 30px;
    height: 30px;
  }

  .footer-main .container {
    padding-top: 1.75rem;
    padding-bottom: 1.6rem;
  }

  .footer-nav {
    gap: 0.3rem 0;
  }
}

@media (max-width: 700px) {
  :root {
    --anchor-offset: 96px;
  }

  h2 {
    margin-bottom: 0.2rem;
  }

  h2 + .section-intro {
    margin-top: 0rem;
    margin-bottom: 2rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-wrap > .btn--sm {
    display: none;
  }

  .hero-grid {
    gap: 1.2rem;
    grid-template-areas:
      "intro"
      "media"
      "offer";
  }

  .hero-intro,
  .hero-offer {
    text-align: left;
  }

  .hero-intro h1 {
    font-size: clamp(1.7rem, 5.3vw, 1.9rem);
    line-height: 1.09;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-wrap: pretty;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-intro .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .price-row,
  .cta-row {
    justify-content: center;
  }

  .mini {
    text-align: center;
  }


  .brand {
    white-space: normal !important;
    line-height: 1.06;
  }

  .brand-salud {
    display: block;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 2.6rem 0;
  }

  .footer-info {
    color: #b5b3b2;
    font-size: 0.84rem;
    line-height: 1.3;
    max-width: 100%;
    text-wrap: pretty;
  }

  .footer-nav {
    margin-top: 1.05rem;
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.9rem;
  }

  .footer-nav a {
    padding: 0;
    text-align: center;
    font-size: 0.94rem;
    line-height: 1.25;
    color: #b5b3b2;
  }

  .footer-nav a:not(:last-child)::after {
    content: none;
  }

  .footer-bottom {
    margin-top: 1.15rem;
    padding-top: 0.9rem;
    font-size: 0.82rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    white-space: nowrap;
    word-break: keep-all;
    color: #b5b3b2;
  }
}

.buy-title {
  margin-bottom: 0.6rem;
}

.buy-price {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
}

.buy-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 40px rgba(16, 18, 22, 0.08);
}

.buy-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.buy-form input,
.buy-form select,
.buy-form textarea {
  width: 100%;
  border: 1px solid #cdd3c7;
  border-radius: 10px;
  min-height: 44px;
  padding: 0.52rem 0.75rem;
  font: inherit;
  background: #fbfcfa;
}

.buy-form select,
.buy-form select option {
  color: #101216;
  font-weight: 400;
  -webkit-text-fill-color: #101216;
}

.buy-form select:invalid {
  color: #101216;
  -webkit-text-fill-color: #101216;
}

.buy-form textarea {
  min-height: 104px;
  resize: vertical;
}

.buy-form input:focus,
.buy-form select:focus,
.buy-form textarea:focus {
  outline: 2px solid #aad46f;
  border-color: #8fc257;
}

.buy-form .full {
  grid-column: 1 / -1;
}

.captcha-box {
  border: 1px dashed #bcd7a0;
  border-radius: 12px;
  padding: 0.8rem;
  background: #f6fbef;
}

.captcha-title {
  margin: 0 0 0.15rem;
  font-weight: 900;
}

.captcha-box p {
  margin: 0.1rem 0;
}

.captcha-prompt {
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-actions .btn {
  font-size: 1.02rem;
}

.form-error {
  margin: 0;
  color: #af2d2d;
  font-weight: 700;
  min-height: 1.2rem;
}

.consult-card {
  margin-top: 0.95rem;
}

.consult-card > h2 {
  margin-bottom: 1rem;
}

.consult-card h3 {
  margin: 1.2rem 0 0.45rem;
  line-height: 1.2;
}

.consult-card h3:first-of-type {
  margin-top: 0.85rem;
}

.consult-card p {
  margin: 0.45rem 0 0.95rem;
  line-height: 1.5;
}

.consult-card .consult-list--columns {
  margin-top: 0.55rem;
}

.consult-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.consult-list--columns {
  column-count: 2;
  column-gap: 1.4rem;
  display: block;
}

.consult-list--columns li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.appointment-date-field {
  grid-column: 1 / -1;
}

.calendar-field {
  display: grid;
  gap: 0.45rem;
}

.calendar-label {
  margin: 0;
  font-weight: 700;
}

.calendar-picker {
  border: 1px solid #cdd9bf;
  border-radius: 14px;
  padding: 0.75rem;
  background: #fbfcfa;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.calendar-month {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  text-transform: none;
}

.calendar-nav {
  min-width: 38px;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #b8c6aa;
  background: #eef4e6;
  color: #1a1f25;
  font-size: 1.7rem;
  line-height: 2;
  cursor: pointer;
}

.calendar-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  border-color: #8ebe5c;
  background: #f4faeb;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
  color: #596168;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar-spacer {
  min-height: 44px;
}

.calendar-day {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #c3cfb8;
  background: #ffffff;
  color: #11161c;
  font-weight: 700;
  cursor: pointer;
}

.calendar-day:hover {
  border-color: #8ebe5c;
  background: #f4faeb;
}

.calendar-day.is-selected {
  border-color: #6ea838;
  background: #c5ec92;
}

.calendar-day.is-disabled {
  background: #f1f3ef;
  color: #a0a6ad;
  border-color: #d6dcd0;
  cursor: not-allowed;
}

.calendar-help {
  margin: 0.55rem 0 0;
  color: #4e575f;
}

.time-field {
  display: grid;
  gap: 0.45rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.time-btn {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #c3cfb8;
  background: #ffffff;
  color: #11161c;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.time-btn:hover {
  border-color: #8ebe5c;
  background: #f4faeb;
}

.time-btn.is-selected {
  border-color: #6ea838;
  background: #c5ec92;
}

@media (max-width: 820px) {
  .consult-list--columns {
    column-count: 1;
  }

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

@media (max-width: 820px) {
  .buy-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 44px;
    height: 44px;
  }
}

.opinion-note {
  margin-top: 0.1rem;
}

.opinion-intro-main {
  margin-bottom: 3rem;
}

.opinion-intro-main + .opinion-note {
  margin-top: 0;
  margin-bottom: 1rem;
}

.consult-highlight {
  margin-top: 1.2rem;
  border: 2px solid #9ecf70;
  background: linear-gradient(160deg, #f3fbe8, #eaf7da);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(85, 141, 58, 0.10);
}

.consult-highlight p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: #24321c;
  line-height: 1.45;
}

.legal-disclaimer {
  margin-top: 1.2rem;
}

.consult-main-title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.consult-meta-line {
  margin-top: 0;
  margin-bottom: 0;
}

.consult-meta-line + .consult-meta-line {
  margin-top: 0;
}

.consult-meta-gap {
  margin-bottom: 1rem;
}

.process-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.process-page main {
  flex: 1 0 auto;
}

.process-page .footer {
  margin-top: auto;
}
