  :root {
    /* Natural / organic palette — warm bone, olive, terracotta */
    --bg: #F4F0E8;          /* warm bone */
    --bg-soft: #ECE6D8;     /* deeper bone */
    --bg-deep: #2B2D24;     /* near-black with olive undertone */
    --text: #2B2D24;
    --text-muted: #6B6E5A;
    --olive: #6F7B4C;       /* sage olive */
    --olive-deep: #4F5A35;
    --terracotta: #B86A4B;  /* terracotta accent */
    --line: #D9D2BF;
    --whatsapp: #128C7E;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .display {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    letter-spacing: -0.005em;
    line-height: 1.04;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============= NAV ============= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 24px;
    background: rgba(244, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .nav-brand .mark {
    width: 28px; height: 28px;
    border: 1px solid var(--olive);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 14px;
    color: var(--olive);
  }
  .nav-brand em { font-style: italic; color: var(--olive); }

  .nav-links {
    display: none;
    gap: 22px;
    list-style: none;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
  }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--olive); }

  .nav-cta {
    display: none;
    padding: 11px 20px;
    background: var(--olive);
    color: var(--bg);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
  }
  .nav-cta:hover { background: var(--olive-deep); }

  .menu-btn {
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; padding: 8px;
  }
  .menu-btn span {
    display: block; width: 24px; height: 1px;
    background: var(--bg-deep);
    transition: all 0.3s ease;
  }
  .menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-btn.open span:nth-child(2) { opacity: 0; }
  .menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100dvh;
    min-height: 100svh;
    background: var(--bg);
    z-index: 99;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
      visibility 0s linear 0.4s;
    padding: 100px 24px 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .mobile-menu ul {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 24px;
  }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
  }
  .mobile-menu .cta-mobile {
    display: inline-block;
    background: var(--olive);
    color: var(--bg);
    padding: 18px 28px;
    border-radius: 100px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 24px;
  }

  /* ============= HERO ============= */
  .hero {
    min-height: 100svh;
    padding: 120px 0 60px;
    display: grid;
    align-items: center;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  .hero-text { padding: 0 4px; }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--olive);
  }
  .hero h1 {
    font-size: clamp(48px, 11vw, 104px);
    margin-bottom: 32px;
    text-wrap: pretty;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--olive);
  }
  .hero-lead {
    font-size: clamp(16px, 2.2vw, 19px);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-deep);
    color: var(--bg);
    padding: 18px 28px;
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .btn-primary:hover { background: var(--olive); transform: translateY(-2px); }
  .btn-primary svg { width: 16px; height: 16px; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 4px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--bg-deep);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { color: var(--olive); border-color: var(--olive); }

  .hero-image {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-soft);
    border-radius: 2px;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }
  .hero-image::after {
    /* subtle warm wash to harmonize with palette */
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(244,240,232,0.04) 0%, rgba(111,123,76,0.06) 100%);
    pointer-events: none;
  }
  .welcome-trigger {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 12px 14px 12px 12px;
    border: 1px solid rgba(250,246,240,0.55);
    border-radius: 100px;
    background: rgba(28,16,8,0.72);
    color: var(--bg);
    box-shadow: 0 16px 42px rgba(0,0,0,0.18);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .welcome-trigger--inline {
    display: none;
  }
  .welcome-trigger strong,
  .welcome-trigger small {
    display: block;
    text-align: left;
  }
  .welcome-trigger strong {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .welcome-trigger small {
    margin-top: 2px;
    color: rgba(250,246,240,0.72);
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .welcome-play {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--olive);
  }
  .welcome-play svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }
  .welcome-modal[hidden] { display: none; }
  .welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
  }
  .welcome-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28,16,8,0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .welcome-modal-panel {
    position: relative;
    z-index: 1;
    width: min(430px, calc(100vw - 36px));
    border: 1px solid rgba(250,246,240,0.18);
    background: #111;
    box-shadow: 0 24px 80px rgba(0,0,0,0.38);
  }
  .welcome-video-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
  }
  .welcome-video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .welcome-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--bg-deep);
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 10px 32px rgba(0,0,0,0.22);
    cursor: pointer;
  }
  .welcome-unmute {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(250,246,240,0.92);
    color: var(--bg-deep);
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    cursor: pointer;
  }

  .hero-meta {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .hero-meta strong { color: var(--text); font-weight: 500; }

  .online-stamp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: 26px;
    padding: 12px 18px 12px 16px;
    border: 1px solid rgba(119, 132, 83, 0.42);
    border-radius: 100px;
    background: rgba(250, 246, 240, 0.72);
    color: var(--olive);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }
  .online-stamp:hover {
    border-color: var(--olive);
    background: rgba(250, 246, 240, 0.96);
    transform: translateY(-1px);
  }
  .online-stamp--home {
    margin-top: 0;
  }
  .online-stamp--home-photo {
    display: none;
  }
  .online-stamp-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(119, 132, 83, 0.36);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--olive);
    flex: 0 0 auto;
  }
  .online-stamp-copy {
    display: grid;
    gap: 3px;
    line-height: 1;
  }
  .online-stamp-copy strong {
    color: var(--text);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
  }
  .online-stamp-copy span {
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ============= SECTION BASE ============= */
  section { padding: 80px 0; position: relative; }
  section[id] { scroll-margin-top: 96px; }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--olive);
  }
  .section-title {
    font-size: clamp(34px, 6vw, 60px);
    margin-bottom: 24px;
    max-width: 760px;
    text-wrap: pretty;
  }
  .section-title em { font-style: italic; color: var(--olive); }
  .section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 56px;
    line-height: 1.65;
  }

  /* ============= PARA QUEM ============= */
  .para-quem { background: var(--bg-soft); }
  .audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .audience-card {
    background: var(--bg-soft);
    padding: 36px 28px;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .audience-card:hover { background: var(--bg); }
  .audience-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--olive);
    margin-bottom: 8px;
  }
  .audience-card h3 {
    font-size: 28px;
  }
  .audience-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }
  .lpf-loop-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: contain;
    object-position: center center;
    background: #f7f1e8;
  }
  .audience-card--lpf .lpf-loop-video {
    width: min(100%, 320px);
    aspect-ratio: 9 / 16;
    justify-self: center;
  }

  /* ============= GALLERY ============= */
  .gallery {
    background: var(--bg);
    padding: 0 0 60px;
  }
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-strip .g-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .gallery-strip .g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .gallery-strip .g-item:hover img { transform: scale(1.04); }
  .gallery-strip .g-item.tall { grid-row: span 1; }
  @media (min-width: 720px) {
    .gallery-strip { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  }

  /* ============= SOBRE ============= */
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-image {
    aspect-ratio: 3/4;
    background: var(--bg-soft);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .sobre-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .sobre-image .sig {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(244,240,232,0.94);
    backdrop-filter: blur(6px);
    padding: 14px 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--text);
    border-left: 2px solid var(--olive);
  }
  .sobre-image .sig small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .sobre-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.7;
  }
  .sobre-text p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 28px;
    text-wrap: pretty;
  }
  .sobre-text p.lead em { color: var(--olive); }

  .credentials {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .credentials dt {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .credentials dd {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
  }

  .specs {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .specs span {
    font-size: 12px;
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--text-muted);
    background: var(--bg);
  }

  /* ============= COMO FUNCIONA ============= */
  .como-funciona {
    background: var(--bg-deep);
    color: var(--bg);
  }
  .como-funciona .section-eyebrow { color: #C4B89A; }
  .como-funciona .section-eyebrow::before { background: #C4B89A; }
  .como-funciona .section-title em { color: #C4B89A; }
  .como-funciona .section-lead { color: #A8A992; }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 24px;
  }
  .step {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 28px;
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 52px;
    font-weight: 300;
    color: #C4B89A;
    margin-bottom: 16px;
    line-height: 1;
  }
  .step h3 {
    font-size: 25px;
    margin-bottom: 12px;
    color: var(--bg);
  }
  .step p {
    font-size: 15px;
    color: #A8A992;
    line-height: 1.7;
  }

  /* ============= SERVICOS (Pilates / Fisio) ============= */
  .servicos {
    background: var(--bg);
  }
  .serv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 16px;
  }
  .serv-card {
    background: var(--bg-soft);
    padding: 40px 32px;
    border-radius: 2px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    position: relative;
  }
  .serv-card .label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--olive);
    margin-bottom: 16px;
  }
  .serv-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .serv-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .serv-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .serv-card .meta b { font-weight: 500; color: var(--olive); }

  /* ============= FAQ ============= */
  .faq-list {
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.6vw, 24px);
    font-weight: 400;
    color: var(--text);
  }
  .faq-q::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--olive);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-a-inner {
    padding-bottom: 28px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 740px;
  }
  .faq-item.open .faq-a { max-height: 500px; }

  /* ============= CONTATO ============= */
  .contato { background: var(--bg-soft); }
  .contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contato-card {
    background: var(--bg);
    padding: 32px 28px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contato-card h3 {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .contato-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  .contato-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-deep);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
    align-self: flex-start;
  }
  .contato-link:hover { color: var(--olive); border-color: var(--olive); }
  .contato-link svg { width: 16px; height: 16px; }

  .horarios-block {
    margin-top: 56px;
    background: var(--bg-deep);
    color: var(--bg);
    padding: 40px 32px;
    border-radius: 2px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .horarios-block h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .horarios-block .horarios-info {
    font-size: 14px;
    color: #A8A992;
    line-height: 1.7;
  }
  .horarios-block .h-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: #C4B89A;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .horarios-block .h-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #A8A992;
  }

  /* ============= FOOTER ============= */
  footer {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 70px 0 40px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  footer .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1;
  }
  footer .brand em { color: #C4B89A; font-style: italic; }
  footer .brand-line {
    font-size: 13px;
    color: #A8A992;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  footer p {
    color: #A8A992;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.6;
  }
  footer .foot-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C4B89A;
    margin-bottom: 14px;
    font-weight: 500;
  }
  footer .foot-col a {
    display: block;
    font-size: 14px;
    color: var(--bg);
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  footer .foot-col a:hover { color: #C4B89A; }
  footer .crefito {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A8A75;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  /* ============= WHATSAPP FLOAT ============= */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--whatsapp);
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
  .wa-float svg { width: 30px; height: 30px; fill: white; }

  /* ============= TABLET / DESKTOP ============= */
  @media (min-width: 720px) {
    .container { padding: 0 40px; }
    section { padding: 120px 0; }
    .hero { padding: 140px 0 80px; }
    .hero-grid {
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
    }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .sobre-grid {
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: start;
    }
    .credentials { grid-template-columns: 1fr 1fr; gap: 28px; }
    .steps { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
    .serv-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contato-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .horarios-block { grid-template-columns: 1.4fr 1fr 1fr; padding: 56px; gap: 40px; align-items: center; }
    .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  }

  @media (min-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  }

  @media (min-width: 1180px) {
    .nav-links, .nav-cta { display: flex; }
    .menu-btn { display: none; }
  }

  /* ============= ANIMATIONS ============= */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ============= SUBPAGE / SERVICE PAGES ============= */
  .page-hero {
    min-height: 86svh;
    padding: 130px 0 70px;
    display: grid;
    align-items: center;
  }
  .page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: center;
  }
  .page-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .page-kicker::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--olive);
  }
  .page-hero h1 {
    font-size: clamp(46px, 9vw, 92px);
    max-width: 760px;
    margin-bottom: 28px;
  }
  .online-page-hero h1 {
    font-size: clamp(44px, 7vw, 78px);
  }
  .page-hero h1 em { color: var(--olive); font-style: italic; font-weight: 400; }
  .page-lead {
    color: var(--text-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 36px;
  }
  .page-hero-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-soft);
    border-radius: 2px;
  }
  .page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

  .online-hero-card {
    min-height: 520px;
    padding: 28px;
    display: grid;
    align-content: center;
    background:
      linear-gradient(145deg, rgba(250,246,240,0.86), rgba(224,217,199,0.72)),
      var(--bg-soft);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
  }
  .online-hero-card::before {
    content: '';
    position: absolute;
    inset: 38px;
    border: 1px solid rgba(119,132,83,0.18);
    pointer-events: none;
  }
  .online-window {
    position: relative;
    z-index: 1;
    background: rgba(250,246,240,0.82);
    border: 1px solid rgba(119,132,83,0.22);
    box-shadow: 0 24px 60px rgba(28,16,8,0.08);
  }
  .online-window-top {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(119,132,83,0.16);
  }
  .online-window-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(119,132,83,0.42);
  }
  .online-window-body {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    padding: 32px;
    text-align: center;
  }
  .online-window-body strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 62px);
    font-style: italic;
    font-weight: 400;
    line-height: 0.95;
    color: var(--olive);
  }
  .online-window-body span {
    margin-top: 18px;
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .online-hero-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    box-shadow: 0 28px 70px rgba(28,16,8,0.08);
  }
  .online-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250,246,240,0.03), rgba(111,123,76,0.08));
    pointer-events: none;
  }
  .online-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }
  .online-note-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .online-note {
    background: var(--bg-soft);
    padding: 30px 26px;
  }
  .online-note h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .online-note p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .mini-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }
  .mini-nav a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 14px;
    background: rgba(244,240,232,0.45);
    transition: all 0.2s ease;
  }
  .mini-nav a:hover, .mini-nav a.active { color: var(--bg); background: var(--olive); border-color: var(--olive); }

  .split-section { background: var(--bg); }
  .split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  .split-media {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 14px;
    align-items: end;
  }
  .split-media figure {
    overflow: hidden;
    background: var(--bg-soft);
    border-radius: 2px;
  }
  .split-media figure:first-child { aspect-ratio: 3/4; }
  .split-media figure:last-child { aspect-ratio: 3/4; transform: translateY(32px); }
  .split-media img { width: 100%; height: 100%; object-fit: cover; }
  .idosos-care-section .split-media {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .idosos-care-section .split-media figure,
  .idosos-care-section .split-media figure:first-child,
  .idosos-care-section .split-media figure:last-child {
    aspect-ratio: auto;
    transform: none;
    background: transparent;
  }
  .idosos-care-section .split-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .lpf-results .split-media {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .lpf-results .split-media figure:first-child {
    aspect-ratio: 1 / 1.06;
  }
  .lpf-results .split-media figure:last-child {
    aspect-ratio: 4 / 3;
  }
  .lpf-results .split-media figure:last-child img {
    object-position: center bottom;
  }
  .metric-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin: 28px 0 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(108,150,122,0.28);
    border-bottom: 1px solid rgba(108,150,122,0.28);
    max-width: 100%;
  }
  .metric-highlight strong {
    color: var(--olive);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(46px, 5.4vw, 62px);
    font-style: italic;
    font-weight: 400;
    line-height: 0.9;
    white-space: nowrap;
  }
  .metric-highlight span {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1.7;
    max-width: 260px;
    text-transform: uppercase;
  }
  @media (max-width: 719px) {
    .audience-card--lpf {
      grid-template-columns: 1fr !important;
      gap: 1.25rem !important;
    }
    .welcome-trigger {
      right: 12px;
      bottom: 12px;
      min-width: 0;
      padding: 10px 12px 10px 10px;
    }
    .welcome-trigger--inline {
      position: static;
      display: inline-flex;
      width: fit-content;
      margin-top: 18px;
      background: rgba(28,16,8,0.9);
    }
    .hero-image .welcome-trigger {
      display: none;
    }
    .welcome-play {
      flex-basis: 34px;
      width: 34px;
      height: 34px;
    }
    .welcome-trigger strong { font-size: 11px; }
    .welcome-trigger small { font-size: 10px; }
    .welcome-modal { padding: 18px; }
    .welcome-close {
      top: 10px;
      right: 10px;
    }
    .metric-highlight {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .online-stamp {
      width: 100%;
      max-width: 340px;
      justify-content: flex-start;
      margin-top: 22px;
      padding-right: 14px;
    }
    .online-stamp-copy strong,
    .online-stamp-copy span {
      white-space: normal;
      line-height: 1.2;
    }
  }
  .body-copy p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .body-copy p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.25;
    color: var(--text);
    text-wrap: pretty;
  }
  .body-copy p.lead em { color: var(--olive); font-style: italic; }

  .care-section { background: var(--bg-soft); }
  .care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .care-card {
    background: var(--bg-soft);
    padding: 34px 28px;
  }
  .care-card .label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--olive);
    margin-bottom: 14px;
  }
  .care-card h3 { font-size: 28px; margin-bottom: 12px; }
  .care-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

  .evolution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
  }
  .evolution-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
  }
  .evolution-card figure {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .evolution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .evolution-card .content {
    padding: 26px 24px 28px;
  }
  .evolution-card .tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 10px;
  }
  .evolution-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .evolution-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .technique-section {
    background: var(--bg-deep);
    color: var(--bg);
  }
  .technique-section .section-eyebrow { color: #C4B89A; }
  .technique-section .section-eyebrow::before { background: #C4B89A; }
  .technique-section .section-title em { color: #C4B89A; }
  .technique-section .section-lead { color: #A8A992; }
  .technique-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .technique-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 32px;
  }
  .technique-card figure {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
  }
  .technique-card img { width: 100%; height: 100%; object-fit: cover; }
  .technique-card h3 {
    color: var(--bg);
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 14px;
  }
  .technique-card p {
    color: #A8A992;
    font-size: 16px;
    line-height: 1.75;
    max-width: 620px;
  }
  .technique-note {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C4B89A;
  }

  .page-gallery { background: var(--bg); padding-top: 0; }
  .page-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .page-gallery-grid figure {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .page-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .page-gallery-grid figure:hover img { transform: scale(1.04); }

  .story-section {
    background: var(--bg);
    padding-top: 40px;
  }
  .story-list {
    display: grid;
    gap: 72px;
    margin-top: 20px;
  }
  .story-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }
  .story-copy {
    max-width: 560px;
  }
  .story-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--olive);
    margin-bottom: 14px;
  }
  .story-copy h3 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 16px;
  }
  .story-copy p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
  }
  .story-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    background: var(--bg-soft);
  }
  .story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ============= CASO CLINICO / RMN ============= */
  .caso-clinico {
    padding: clamp(64px, 9vw, 110px) 0;
    background:
      radial-gradient(ellipse at top, rgba(108,150,122,0.06) 0%, transparent 60%),
      var(--bg);
  }
  .rmn-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3.5vw, 56px);
    max-width: 880px;
    margin: clamp(36px, 6vw, 68px) auto 0;
  }
  .rmn-frame {
    display: flex;
    flex-direction: column;
  }
  .rmn-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #0d0f12;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .rmn-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .rmn-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d0f12 0%, #1c1f24 100%);
  }
  .rmn-placeholder span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .rmn-placeholder small {
    font-family: ui-monospace, monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.32);
  }
  .rmn-corner {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    pointer-events: none;
  }
  .rmn-tag {
    position: absolute;
    top: 12px;
    right: 14px;
    padding: 4px 10px;
    background: rgba(220,80,80,0.85);
    color: rgba(255,255,255,0.95);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .rmn-tag--after {
    background: rgba(95,138,110,0.85);
  }
  .rmn-marker {
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(220,90,90,0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rmn-pulse 3s ease-in-out infinite;
  }
  .rmn-marker--after {
    border-color: rgba(120,180,135,0.8);
  }
  @keyframes rmn-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
    50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.85; }
  }
  .rmn-frame figcaption {
    margin-top: 18px;
    padding: 0 4px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
  }
  .rmn-frame figcaption strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .rmn-context {
    max-width: 880px;
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding-top: clamp(32px, 4vw, 48px);
    border-top: 1px solid rgba(26,25,21,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
  }
  .rmn-context h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
  }
  .rmn-context p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.75;
  }
  .rmn-context a {
    color: var(--olive);
    border-bottom: 1px solid rgba(108,150,122,0.4);
  }
  .rmn-context a:hover {
    border-bottom-color: var(--olive);
  }
  .rmn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(26,25,21,0.2);
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap 0.25s, color 0.2s;
  }
  .rmn-cta:hover {
    gap: 14px;
    color: var(--olive);
  }
  .caso-clinico--compact .section-lead {
    margin-bottom: 0;
  }
  .caso-clinico--compact .rmn-compare {
    margin-top: clamp(28px, 5vw, 48px);
  }
  .case-note {
    max-width: 880px;
    margin: 28px auto 0;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
  }
  @media (max-width: 720px) {
    .rmn-compare,
    .rmn-context {
      grid-template-columns: 1fr;
    }
  }

  /* ============= PROGRAMA POS-PARTO ============= */
  .program-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--olive);
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
  }
  .program-pill::before {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(108,150,122,0.45);
  }
  .program-callout {
    padding: clamp(54px, 7vw, 86px) 0;
    background: #F3F0E7;
  }
  .program-callout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
  }
  .program-callout .section-title {
    max-width: 680px;
  }
  .program-callout-card {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(26,25,21,0.08);
    background: rgba(255,255,255,0.48);
  }
  .program-callout-card h3,
  .program-step h3,
  .referral-box h3 {
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 400;
  }
  .program-callout-card p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
  }
  .program-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: clamp(34px, 5vw, 58px);
    background: rgba(26,25,21,0.08);
  }
  .program-summary div {
    min-height: 150px;
    padding: clamp(22px, 3vw, 32px);
    background: var(--bg);
  }
  .program-summary span {
    display: block;
    margin-bottom: 18px;
    color: var(--olive);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .program-summary strong {
    display: block;
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1;
  }
  .program-timeline {
    max-width: 980px;
    margin: clamp(36px, 6vw, 70px) auto 0;
    border-top: 1px solid rgba(26,25,21,0.08);
  }
  .program-step {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: clamp(20px, 4vw, 52px);
    padding: clamp(26px, 4vw, 44px) 0;
    border-bottom: 1px solid rgba(26,25,21,0.08);
  }
  .program-step-num {
    color: var(--olive);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 6vw, 64px);
    font-style: italic;
    line-height: 0.9;
  }
  .program-step p {
    max-width: 660px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
  }
  .program-step ul {
    display: grid;
    gap: 8px;
    max-width: 720px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
  }
  .program-step li {
    list-style: none;
    position: relative;
    padding-left: 18px;
  }
  .program-step li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--olive);
  }
  .referral-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(26,25,21,0.08);
    background: #F7F4EC;
  }
  .referral-box p,
  .referral-box li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
  }
  .referral-box ul {
    display: grid;
    gap: 10px;
  }
  @media (max-width: 820px) {
    .program-callout-grid,
    .program-summary,
    .referral-box {
      grid-template-columns: 1fr;
    }
    .program-step {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .program-step-num {
      font-size: 42px;
    }
  }

  .cta-band {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 88px 0;
  }
  .cta-band .section-eyebrow { color: #C4B89A; }
  .cta-band .section-eyebrow::before { background: #C4B89A; }
  .cta-band .section-title em { color: #C4B89A; }
  .cta-band p { color: #A8A992; }
  .cta-band .btn-primary { background: var(--bg); color: var(--bg-deep); }
  .cta-band .btn-primary:hover { background: #C4B89A; }

  .audience-card.more-link { cursor: pointer; }
  .audience-card.more-link .read-more {
    margin-top: auto;
    padding-top: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
  }

  @media (min-width: 720px) {
    .page-hero { padding: 150px 0 90px; }
    .page-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 66px; }
    .online-stamp--home-inline { display: none; }
    .online-stamp--home-photo {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 3;
      display: inline-flex;
      background: rgba(250, 246, 240, 0.88);
      box-shadow: 0 16px 42px rgba(28,16,8,0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .split-grid { grid-template-columns: 0.9fr 1fr; gap: 72px; }
    .care-grid { grid-template-columns: repeat(3, 1fr); }
    .online-note-grid { grid-template-columns: repeat(3, 1fr); }
    .evolution-grid { grid-template-columns: repeat(3, 1fr); }
    .technique-card { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
    .technique-card:nth-child(even) figure { order: 2; }
    .page-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .story-row {
      grid-template-columns: 1fr 1fr;
      gap: 70px;
    }
    .story-row:nth-child(even) .story-copy { order: 2; }
    .story-row:nth-child(even) .story-photo { order: 1; }
  }

  .idosos-care-section {
    padding-top: clamp(56px, 8vw, 104px);
    padding-bottom: clamp(42px, 7vw, 84px);
  }
  .idosos-care-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 7vw, 84px);
    align-items: center;
  }
  .idosos-image-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 30px);
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .idosos-image-stack figure {
    overflow: hidden;
    background: var(--bg-soft);
    border-radius: 3px;
  }
  .idosos-image-stack img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .idosos-care-section .body-copy {
    max-width: 680px;
  }
  .idosos-care-section .section-title {
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 1.02;
  }
  .idosos-care-section .body-copy .lead {
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.72;
  }
  .idosos-care-section .body-copy p:not(.lead) {
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.85;
  }
  @media (min-width: 900px) {
    .idosos-care-grid {
      grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
      gap: clamp(64px, 8vw, 116px);
    }
    .idosos-image-stack {
      max-width: 600px;
      margin: 0;
    }
    .idosos-image-stack figure:last-child {
      width: 88%;
      transform: translateX(10%);
    }
  }
