:root {
      --cream: #f7f3ed;
      --paper: #fffdf9;
      --sage: #9aa68f;
      --sage-dark: #63705e;
      --rose: #c99d93;
      --rose-soft: #ead7d1;
      --ink: #2e302c;
      --muted: #6f726d;
      --line: rgba(46,48,44,.12);
      --shadow: 0 24px 70px rgba(54, 57, 49, .10);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; }
    :focus-visible { outline: 3px solid #7a4d45; outline-offset: 4px; }
    .skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 12px 16px; border-radius: 8px; background: #151713; color: #fff; transform: translateY(-180%); transition: transform .2s ease; }
    .skip-link:focus { transform: translateY(0); }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    body {
      margin: 0;
      font-family: "DM Sans", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
    }

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

    .container {
      width: min(1160px, calc(100% - 40px));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .75rem;
      font-weight: 700;
      color: var(--sage-dark);
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    h1, h2, h3 { margin: 0; line-height: 1.12; }
    h1, h2 { font-family: "Playfair Display", serif; }
    h1 { font-size: clamp(3.1rem, 7vw, 6.8rem); font-weight: 600; }
    h2 { font-size: clamp(2.2rem, 4.3vw, 4.2rem); font-weight: 600; }
    h3 { font-size: 1.25rem; }
    p { margin: 0; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 700;
      transition: .25s ease;
      cursor: pointer;
    }
    .btn-primary { background: var(--ink); color: white; }
    .btn-primary:hover { transform: translateY(-2px); background: #151713; }
    .btn:focus-visible, .faq-question:focus-visible, .menu-btn:focus-visible { outline-color: #7a4d45; }
    .btn-outline { border-color: var(--ink); }
    .btn-outline:hover { background: var(--ink); color: white; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: rgba(247,243,237,.83);
      border-bottom: 1px solid rgba(46,48,44,.07);
    }
    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      font-family: "Playfair Display", serif;
      font-size: 1.5rem;
      font-weight: 600;
    }
    .brand small {
      display: block;
      font-family: "DM Sans", sans-serif;
      font-size: .66rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #5f625d;
      margin-top: 2px;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
    .nav-links a:hover { color: var(--sage-dark); }
    .menu-btn { display: none; border: 0; background: none; font-size: 1.6rem; }

    .hero {
      min-height: calc(100svh - 82px);
      display: grid;
      align-items: center;
      padding: 72px 0 82px;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      align-items: center;
      gap: clamp(40px, 7vw, 100px);
    }
    .hero-copy p {
      max-width: 640px;
      margin: 28px 0 34px;
      color: var(--muted);
      font-size: 1.12rem;
    }
    .hero h1 em { color: var(--rose); font-weight: 500; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .microcopy { margin-top: 18px; color: var(--muted); font-size: .83rem; }

    .portrait-wrap {
      position: relative;
      min-height: 610px;
    }
    .portrait {
      position: absolute;
      inset: 24px 0 0 48px;
      width: calc(100% - 48px);
      height: calc(100% - 24px);
      object-fit: cover;
      object-position: center 24%;
      border-radius: 210px 210px 28px 28px;
      box-shadow: var(--shadow);
      filter: saturate(.78) sepia(.05);
    }
    .blob {
      position: absolute;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: var(--rose-soft);
      right: -70px;
      top: -35px;
      z-index: -1;
    }
    .quote-card {
      position: absolute;
      left: 0;
      bottom: 18px;
      width: 250px;
      padding: 24px;
      background: var(--paper);
      box-shadow: var(--shadow);
      border-radius: 20px;
    }
    .quote-card strong { display: block; font-family: "Playfair Display", serif; font-size: 1.35rem; line-height: 1.2; }
    .quote-card span { color: var(--muted); font-size: .8rem; }

    section { padding: 110px 0; }
    .section-head { max-width: 780px; margin-bottom: 52px; }
    .section-head h2 { margin-top: 18px; }
    .section-head p { margin-top: 20px; color: var(--muted); font-size: 1.04rem; }

    .pain-section { background: var(--paper); }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .pain-card {
      min-height: 220px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(180deg, #fffefa, #f8f4ee);
      transition: .25s ease;
    }
    .pain-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(46,48,44,.08); }
    .icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--rose-soft);
      margin-bottom: 34px;
      font-size: 1.2rem;
    }
    .pain-card p { margin-top: 10px; color: var(--muted); }

    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(50px, 8vw, 110px);
      align-items: center;
    }
    .about-art {
      min-height: 570px;
      border-radius: 28px;
      position: relative;
      background: var(--sage);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .about-art img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; object-position: center 24%; }
    .about-art::after {
      content: "escuta • vínculo • profundidade";
      position: absolute;
      left: 28px;
      bottom: 28px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(30,32,29,.72);
      color: white;
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .72rem;
    }
    .about-copy p { color: var(--muted); margin-top: 20px; }
    .credentials {
      margin: 30px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .credential {
      border-top: 1px solid var(--line);
      padding-top: 14px;
      font-size: .9rem;
    }
    .credential strong { display: block; font-size: 1.1rem; }

    .services { background: #343a33; color: white; }
    .services .section-head p, .services .eyebrow { color: #cad0c4; }
    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .service-card {
      position: relative;
      min-height: 390px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 22px;
      overflow: hidden;
      background: rgba(255,255,255,.045);
    }
    .service-card::before {
      content: attr(data-number);
      position: absolute;
      top: 22px;
      right: 26px;
      font-family: "Playfair Display", serif;
      font-size: 5rem;
      color: rgba(255,255,255,.06);
    }
    .service-card p { color: #c8cec2; margin: 12px 0 24px; }
    .service-card a { font-weight: 700; font-size: .9rem; }

    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .step { padding: 24px 18px; border-top: 1px solid var(--ink); }
    .step-number { font-family: "Playfair Display", serif; font-size: 3.5rem; color: var(--rose); }
    .step p { color: var(--muted); margin-top: 10px; font-size: .92rem; }

    .cta {
      padding-top: 0;
    }
    .cta-box {
      padding: clamp(42px, 7vw, 86px);
      border-radius: 30px;
      text-align: center;
      background: var(--rose-soft);
      position: relative;
      overflow: hidden;
    }
    .cta-box::before, .cta-box::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(46,48,44,.12);
    }
    .cta-box::before { width: 260px; height: 260px; left: -120px; top: -100px; }
    .cta-box::after { width: 340px; height: 340px; right: -170px; bottom: -180px; }
    .cta-box h2 { max-width: 760px; margin-inline: auto; }
    .cta-box p { max-width: 620px; margin: 22px auto 30px; color: #5f5c58; }

    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      border: 0;
      background: none;
      color: var(--ink);
      font-weight: 700;
      cursor: pointer;
    }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); }
    .faq-answer p { padding: 0 50px 24px 0; }
    .faq-item.open .faq-answer { max-height: 220px; }
    .faq-item.open .plus { transform: rotate(45deg); }
    .plus { transition: .2s ease; font-size: 1.4rem; }

    footer { padding: 70px 0 28px; background: var(--ink); color: white; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 50px; }
    footer p, footer a { color: #bfc2ba; }
    footer h3 { margin-bottom: 16px; }
    .footer-brand { font-family: "Playfair Display", serif; font-size: 2rem; }
    .footer-bottom {
      margin-top: 56px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      color: #969b92;
      font-size: .8rem;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #253129;
      color: white;
      box-shadow: 0 15px 40px rgba(0,0,0,.22);
      z-index: 30;
      font-size: 1.4rem;
    }

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

    @media (max-width: 920px) {
      .nav-links { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 24px; background: var(--paper); flex-direction: column; align-items: flex-start; }
      .nav-links.open { display: flex; }
      .menu-btn { display: block; }
      .nav .btn { display: none; }
      .hero-grid, .about-grid { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .portrait-wrap { min-height: 540px; max-width: 620px; width: 100%; }
      .pain-grid, .service-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 28px, 1160px); }
      section { padding: 78px 0; }
      h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
      .hero { padding-top: 52px; }
      .portrait-wrap { min-height: 450px; }
      .portrait { inset: 20px 0 0 20px; width: calc(100% - 20px); height: calc(100% - 20px); }
      .quote-card { width: 220px; padding: 18px; }
      .pain-grid, .service-grid, .steps-grid, .footer-grid, .credentials { grid-template-columns: 1fr; }
      .service-card { min-height: 310px; }
      .footer-bottom { flex-direction: column; gap: 8px; }
    }

a:hover, a:focus, a:active, a:visited { text-decoration: none; }
