:root {
  --msnh-cream: #fbf7ef;
  --msnh-warm: #f2e8d9;
  --msnh-white: #fffdf8;
  --msnh-sage: #cddfcb;
  --msnh-mint: #e7f1e3;
  --msnh-deep: #29483a;
  --msnh-forest: #173226;
  --msnh-rose: #f3cfc6;
  --msnh-peach: #f8dcc7;
  --msnh-gold: #e7c76f;
  --msnh-text: #24362d;
  --msnh-muted: #69776f;
  --msnh-border: rgba(41, 72, 58, 0.14);
  --msnh-shadow: 0 24px 70px rgba(35, 57, 45, 0.13);
  --msnh-radius: 22px;
  --msnh-radius-sm: 14px;
  --msnh-container: 1120px;
  --msnh-section: clamp(4rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--msnh-text);
  background: var(--msnh-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--msnh-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 8.6vw, 2.55rem);
  line-height: 1.06;
  max-width: 12.5ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--msnh-forest);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--msnh-muted);
}

.msnh-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--msnh-forest);
  color: white;
  border-radius: 999px;
  transform: translateY(-150%);
}

.msnh-skip-link:focus {
  transform: translateY(0);
}

.msnh-container {
  width: min(100% - 2rem, var(--msnh-container));
  margin-inline: auto;
}

.msnh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 239, 0.84);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.msnh-header.msnh-scrolled {
  border-color: var(--msnh-border);
  box-shadow: 0 12px 30px rgba(35, 57, 45, 0.08);
}

.msnh-nav {
  width: min(100% - 1rem, 1180px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.msnh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.msnh-brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.msnh-brand strong,
.msnh-brand small {
  display: block;
}

.msnh-brand strong {
  color: var(--msnh-forest);
  font-size: 1rem;
  line-height: 1.05;
}

.msnh-brand small {
  color: var(--msnh-muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.msnh-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-bottom: 1px solid var(--msnh-border);
  background: rgba(251, 247, 239, 0.98);
  box-shadow: var(--msnh-shadow);
  transform: translateY(-130%);
  transition: transform 220ms ease;
}

.msnh-menu a {
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: var(--msnh-text);
  font-size: 0.92rem;
}

.msnh-menu a:hover,
.msnh-menu a:focus-visible {
  background: var(--msnh-mint);
  outline: none;
}

.msnh-menu.msnh-open {
  transform: translateY(0);
}

.msnh-menu-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--msnh-border);
  border-radius: 50%;
  background: var(--msnh-white);
  color: var(--msnh-forest);
  cursor: pointer;
}

.msnh-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.msnh-menu-button em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.msnh-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.msnh-button:hover {
  transform: translateY(-2px);
}

.msnh-button:focus-visible {
  outline: 3px solid rgba(231, 199, 111, 0.62);
  outline-offset: 3px;
}

.msnh-button-primary {
  background: var(--msnh-deep);
  color: white;
  box-shadow: 0 14px 28px rgba(41, 72, 58, 0.2);
}

.msnh-button-primary:hover {
  background: var(--msnh-forest);
}

.msnh-button-secondary {
  border-color: rgba(41, 72, 58, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--msnh-deep);
}

.msnh-button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.msnh-header-cta {
  display: none !important;
}

.msnh-hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 var(--msnh-section);
  overflow: hidden;
}

.msnh-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.msnh-hero-copy p {
  max-width: 44rem;
  font-size: 1.04rem;
}

.msnh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--msnh-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.msnh-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--msnh-gold);
}

.msnh-price-box {
  width: min(100%, 440px);
  margin: 1.7rem 0;
  padding: 1rem;
  display: grid;
  gap: 0.15rem;
  border: 1px solid var(--msnh-border);
  border-radius: var(--msnh-radius-sm);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 45px rgba(35, 57, 45, 0.08);
}

.msnh-price-box span,
.msnh-price-box small {
  color: var(--msnh-muted);
}

.msnh-price-box strong {
  color: var(--msnh-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.msnh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.msnh-actions .msnh-button {
  width: 100%;
}

.msnh-hero-media {
  position: relative;
}

.msnh-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: clamp(24px, 5vw, 44px);
  box-shadow: var(--msnh-shadow);
}

.msnh-floating-card {
  width: min(86%, 290px);
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(35, 57, 45, 0.16);
}

.msnh-floating-card strong,
.msnh-floating-card span {
  display: block;
}

.msnh-floating-card strong {
  color: var(--msnh-forest);
}

.msnh-floating-card span {
  color: var(--msnh-muted);
  font-size: 0.9rem;
}

.msnh-section {
  padding: var(--msnh-section) 0;
}

.msnh-soft-section {
  background: var(--msnh-white);
}

.msnh-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.msnh-section-heading p {
  font-size: 1.03rem;
}

.msnh-card-grid {
  display: grid;
  gap: 1rem;
}

.msnh-card,
.msnh-pillar,
.msnh-check-card,
.msnh-step {
  border: 1px solid var(--msnh-border);
  border-radius: var(--msnh-radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 45px rgba(35, 57, 45, 0.06);
}

.msnh-card {
  padding: 1.25rem;
}

.msnh-card p {
  margin-bottom: 0;
}

.msnh-editorial-grid,
.msnh-benefit-layout,
.msnh-two-column,
.msnh-faq-layout {
  display: grid;
  gap: 2rem;
}

.msnh-valeria-section {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(243, 207, 198, 0.24), rgba(231, 241, 227, 0.5));
}

.msnh-valeria-grid,
.msnh-pillar-intro,
.msnh-benefit-visual-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.msnh-benefit-visual-grid {
  align-items: start;
}

.msnh-valeria-photo {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: var(--msnh-radius);
  background: linear-gradient(145deg, var(--msnh-peach), var(--msnh-mint));
}

.msnh-valeria-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  position: absolute;
  inset: auto 0 0;
  object-fit: contain;
  object-position: center bottom;
}

.msnh-pillar-intro {
  margin-bottom: 2rem;
}

.msnh-pillar-image img,
.msnh-benefit-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--msnh-radius);
  box-shadow: var(--msnh-shadow);
}

.msnh-pillar-image img {
  aspect-ratio: 4 / 3;
}

.msnh-benefit-image img {
  aspect-ratio: 1;
}

.msnh-benefit-image {
  width: min(100%, 470px);
  margin-inline: auto;
}

.msnh-benefit-copy .msnh-section-heading {
  margin-bottom: 1.25rem;
}

.msnh-benefit-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 4.4vw, 3.7rem);
}

blockquote {
  margin: 1.7rem 0 0;
  padding: 1.2rem;
  border-left: 3px solid var(--msnh-gold);
  border-radius: 0 var(--msnh-radius-sm) var(--msnh-radius-sm) 0;
  background: rgba(231, 199, 111, 0.15);
  color: var(--msnh-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.28;
}

.msnh-pillar-grid {
  display: grid;
  gap: 1rem;
}

.msnh-pillar {
  padding: 1.35rem;
}

.msnh-pillar span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--msnh-gold);
  font-weight: 800;
}

.msnh-pillar p {
  margin-bottom: 0;
}

.msnh-check-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem;
  color: var(--msnh-forest);
  font-weight: 750;
}

.msnh-check-card span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--msnh-sage);
  box-shadow: inset 0 0 0 6px var(--msnh-white);
}

.msnh-benefits {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.msnh-benefits li {
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--msnh-border);
  color: var(--msnh-forest);
  font-weight: 700;
}

.msnh-benefits li::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 1rem;
  top: 1.42rem;
  border-radius: 50%;
  background: var(--msnh-rose);
}

.msnh-auriculo {
  background: linear-gradient(135deg, var(--msnh-mint), var(--msnh-warm));
}

.msnh-auriculo-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--msnh-radius);
  box-shadow: var(--msnh-shadow);
}

.msnh-auriculo-copy {
  align-self: center;
}

.msnh-auriculo p {
  color: var(--msnh-text);
  font-size: 1.08rem;
}

.msnh-auriculo small {
  display: block;
  margin-top: 1rem;
  color: var(--msnh-muted);
}

.msnh-promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.4rem, 5vw, 3rem);
  border: 1px solid rgba(41, 72, 58, 0.18);
  border-radius: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(243, 207, 198, 0.42), rgba(231, 241, 227, 0.72)),
    var(--msnh-white);
  box-shadow: var(--msnh-shadow);
}

.msnh-promo-card > * {
  position: relative;
  z-index: 1;
}

.msnh-promo-valeria {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(41, 72, 58, 0.12);
  border-radius: var(--msnh-radius);
  background: var(--msnh-warm);
}

.msnh-promo-valeria img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center bottom;
}

.msnh-promo-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
}

.msnh-promo-card p,
.msnh-promo-card small {
  margin-bottom: 0;
}

.msnh-promo-price strong {
  display: block;
  color: var(--msnh-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 13vw, 6rem);
  line-height: 0.95;
}

.msnh-promo-price span {
  color: var(--msnh-muted);
  text-decoration: line-through;
}

.msnh-steps {
  display: grid;
  gap: 1rem;
}

.msnh-step {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--msnh-forest);
  font-weight: 750;
}

.msnh-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--msnh-deep);
  color: white;
}

.msnh-centered-actions {
  justify-content: center;
  margin-top: 2rem;
}

.msnh-testimonials {
  overflow: hidden;
  background: var(--msnh-white);
}

.msnh-testimonial-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.msnh-testimonial-controls {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.msnh-testimonial-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--msnh-border);
  border-radius: 50%;
  background: var(--msnh-cream);
  color: var(--msnh-forest);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.msnh-testimonial-controls button:hover,
.msnh-testimonial-controls button:focus-visible {
  background: var(--msnh-deep);
  color: white;
  outline: none;
}

.msnh-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.msnh-testimonial-track::-webkit-scrollbar {
  display: none;
}

.msnh-testimonial-card {
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--msnh-border);
  border-radius: var(--msnh-radius);
  background: white;
  box-shadow: 0 16px 40px rgba(35, 57, 45, 0.07);
}

.msnh-testimonial-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.92;
  object-fit: cover;
}

.msnh-testimonial-note {
  display: block;
  margin-top: 0.8rem;
  color: var(--msnh-muted);
}

.msnh-location-content {
  margin-bottom: 0;
  max-width: 760px;
}

#ubicacion.msnh-section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.msnh-location-content .msnh-kicker {
  margin-bottom: 0.65rem;
}

.msnh-location-content h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
}

.msnh-location-content p {
  max-width: 700px;
  margin-bottom: 1.2rem;
}

.msnh-faq-list {
  display: grid;
  gap: 0.8rem;
}

.msnh-faq-list details {
  border: 1px solid var(--msnh-border);
  border-radius: var(--msnh-radius-sm);
  background: var(--msnh-white);
  overflow: hidden;
}

.msnh-faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--msnh-forest);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.msnh-faq-list summary::-webkit-details-marker {
  display: none;
}

.msnh-faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--msnh-mint);
}

.msnh-faq-list details[open] summary::after {
  content: "-";
}

.msnh-faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.msnh-final-cta {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  background: var(--msnh-deep);
}

.msnh-final-cta-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.msnh-final-copy span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--msnh-gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.msnh-final-cta h2 {
  margin-bottom: 0.35rem;
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.msnh-final-cta p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.msnh-final-price strong,
.msnh-final-price small {
  display: block;
}

.msnh-final-price strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 4.8rem);
  line-height: 0.9;
}

.msnh-final-price small {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.68);
}

.msnh-final-cta .msnh-actions {
  margin: 0;
}

.msnh-final-cta .msnh-button-primary {
  background: white;
  color: var(--msnh-forest);
  box-shadow: none;
}

.msnh-final-cta .msnh-button-primary:hover {
  background: var(--msnh-warm);
}

.msnh-final-cta .msnh-button-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.msnh-footer {
  padding: 1.5rem 0 5.5rem;
  background: var(--msnh-forest);
  color: white;
}

.msnh-footer address,
.msnh-footer p,
.msnh-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.msnh-footer-grid {
  display: grid;
  gap: 1rem;
}

.msnh-footer .msnh-brand img {
  width: auto;
  height: 48px;
  filter: none;
}

.msnh-footer .msnh-brand span {
  display: block;
}

.msnh-footer .msnh-brand strong {
  color: white;
}

.msnh-footer .msnh-brand small {
  color: rgba(255, 255, 255, 0.65);
}

.msnh-footer address {
  font-style: normal;
}

.msnh-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.msnh-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.msnh-mobile-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 38px rgba(35, 57, 45, 0.2);
  backdrop-filter: blur(16px);
  transform: translateY(130%);
  transition: transform 220ms ease;
}

.msnh-mobile-cta.msnh-show {
  transform: translateY(0);
}

.msnh-mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.msnh-mobile-cta a:first-child {
  background: var(--msnh-deep);
  color: white;
}

.msnh-mobile-cta a:last-child {
  color: var(--msnh-deep);
}

.msnh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 560px) {
  .msnh-actions .msnh-button {
    width: auto;
  }

  .msnh-card-grid-4,
  .msnh-pillar-grid,
  .msnh-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .msnh-brand img {
    height: 54px;
  }

  .msnh-menu-button {
    display: none;
  }

  .msnh-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .msnh-menu a {
    padding: 0.55rem 0.72rem;
    font-size: 0.84rem;
  }

  .msnh-header-cta {
    display: inline-flex !important;
  }

  h1 {
    font-size: clamp(2.9rem, 4vw, 3.55rem);
    line-height: 1.04;
    max-width: 14.5ch;
  }

  .msnh-hero {
    padding-top: 2.6rem;
  }

  .msnh-hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }

  .msnh-editorial-grid,
  .msnh-benefit-layout,
  .msnh-two-column,
  .msnh-faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .msnh-valeria-grid,
  .msnh-pillar-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .msnh-benefit-visual-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .msnh-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .msnh-testimonial-track {
    grid-auto-columns: calc(50% - 0.5rem);
  }

  .msnh-hero-media img {
    aspect-ratio: 0.86;
  }

  .msnh-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .msnh-promo-card {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    grid-template-areas:
      "copy visual"
      "price visual"
      "actions visual"
      "note visual";
    align-items: start;
    column-gap: clamp(2rem, 4vw, 4rem);
  }

  .msnh-promo-copy {
    grid-area: copy;
  }

  .msnh-promo-price {
    grid-area: price;
  }

  .msnh-promo-card .msnh-actions {
    grid-area: actions;
  }

  .msnh-promo-card > small {
    grid-area: note;
  }

  .msnh-promo-valeria {
    grid-area: visual;
    min-height: 100%;
    align-self: stretch;
  }

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

  .msnh-final-cta-grid {
    grid-template-columns: minmax(0, 1.35fr) auto minmax(300px, 0.8fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .msnh-final-cta .msnh-actions {
    display: grid;
  }

  .msnh-final-cta .msnh-actions .msnh-button {
    width: 100%;
  }

  .msnh-footer {
    padding: 1.35rem 0;
  }

  .msnh-footer-grid {
    grid-template-columns: 1.05fr 1.55fr 1.15fr;
    align-items: center;
    gap: 1.5rem;
  }

  .msnh-footer-grid p {
    grid-column: 1 / -1;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
  }
}

@media (min-width: 1080px) {
  .msnh-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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