  :root {
    /* Brand: lilás + dourado champanhe + branco (default) */
    --bg:        #FBF6FA;  /* warm white with subtle lilac tint */
    --bg-soft:   #EFE2EE;  /* soft lilac wash */
    --bg-deep:   #4A3556;  /* deep aubergine */
    --paper:     #FFFFFF;
    --ink:       #2D1F36;  /* very dark plum */
    --ink-soft:  #6B5775;
    --ink-mute:  #9A8AA3;
    --rule:      #E5D5E2;
    --accent:    #C9A8D9;  /* brand lilac (logo) */
    --accent-2:  #9376A8;  /* deeper lilac */
    --moss:      #B89BCC;  /* soft mid lilac */
    --gold:      #C9A95C;  /* brand champagne gold */
    --gold-deep: #A88842;
  }
  [data-palette="lilac-light"] {
    /* lighter, airier */
    --bg:        #FFFFFF;
    --bg-soft:   #F5EAF3;
    --bg-deep:   #6A4F7E;
    --paper:     #FBF6FA;
    --ink:       #3A2A45;
    --ink-soft:  #7A6685;
    --ink-mute:  #B0A2B8;
    --rule:      #ECDEEA;
    --accent:    #D6B6E0;
    --accent-2:  #A98BBC;
    --moss:      #C9A8D9;
    --gold:      #D4B570;
    --gold-deep: #B8964F;
  }
  [data-palette="lilac-deep"] {
    /* mais saturada, contraste maior */
    --bg:        #F7EEF6;
    --bg-soft:   #E5CFE2;
    --bg-deep:   #3A2548;
    --paper:     #FFFFFF;
    --ink:       #241830;
    --ink-soft:  #5A4569;
    --ink-mute:  #8E7B98;
    --rule:      #DBC5D8;
    --accent:    #B58FCB;
    --accent-2:  #7C5A93;
    --moss:      #A983BE;
    --gold:      #C9A95C;
    --gold-deep: #9C7E36;
  }
  [data-palette="lilac-mono"] {
    /* monocromático lilás sem dourado */
    --bg:        #FAF4F9;
    --bg-soft:   #EBD8E8;
    --bg-deep:   #4A3556;
    --paper:     #FFFFFF;
    --ink:       #2D1F36;
    --ink-soft:  #6B5775;
    --ink-mute:  #9A8AA3;
    --rule:      #E5D5E2;
    --accent:    #C9A8D9;
    --accent-2:  #9376A8;
    --moss:      #B89BCC;
    --gold:      #9376A8;
    --gold-deep: #6B4F80;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
  .italic { font-style: italic; }

  /* ---------------- LAYOUT ---------------- */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
  .wrap-narrow { max-width: 1040px; margin: 0 auto; padding: 0 40px; }

  /* ---------------- NAV ---------------- */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--bg) 88%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent);
  }
  nav.top .row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--ink);
  }
  .brand-mark {
    width: 46px; height: 36px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .brand-name {
    line-height: 1.1;
  }
  .brand-name .name {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-2);
  }
  .brand-name .role {
    font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink-mute); margin-top: 4px;
    font-weight: 400;
  }
  nav.top ul { display: flex; gap: 32px; list-style: none; padding: 0; margin: 0; }
  nav.top ul a {
    color: var(--ink-soft); text-decoration: none;
    font-size: 14px;
    transition: color .2s;
  }
  nav.top ul a:hover { color: var(--accent-2); }
  nav.top .cta-link {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink); color: var(--paper);
    padding: 11px 20px; border-radius: 999px;
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: background .2s;
  }
  nav.top .cta-link:hover { background: var(--accent-2); }
  @media (max-width: 880px) {
    nav.top ul { display: none; }
  }

  /* ---------------- BUTTONS ---------------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 26px; border-radius: 999px;
    font-size: 15px; font-weight: 500;
    text-decoration: none; cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s ease;
  }
  .btn-primary {
    background: var(--ink); color: var(--paper);
  }
  .btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border-color: var(--ink-soft);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .btn-wa {
    background: #1F8F4E; color: #fff;
  }
  .btn-wa:hover { background: #176B3A; }

  /* ---------------- HERO ---------------- */
  section.hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 500;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--accent-2);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
    color: var(--ink);
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent-2);
  }
  .hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 0 40px;
    text-wrap: pretty;
  }
  .hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

  /* Hero portrait card */
  .portrait {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-soft);
    border-radius: 280px 280px 12px 12px;
    overflow: hidden;
  }
  .portrait-img {
    position: absolute; inset: 0;
    background-image: url('assets/bruna-hero.jpg');
    background-size: cover;
    background-position: center 20%;
  }
  .portrait-img::after { display: none; }
  .portrait .badge {
    position: absolute;
    bottom: 24px; right: -24px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 18px 22px;
    width: 230px;
    box-shadow: 0 18px 40px -20px rgba(40,20,10,0.25);
  }
  .portrait .badge .num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 38px;
    line-height: 1;
    color: var(--gold-deep);
  }
  .portrait .badge .lbl {
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.35;
  }
  .portrait .seal {
    position: absolute;
    top: -20px; left: -28px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--bg-deep);
    color: var(--paper);
    display: grid; place-items: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    padding: 14px;
    transform: rotate(-8deg);
    box-shadow: 0 12px 30px -12px rgba(74, 53, 86, 0.5);
    border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  }
  .portrait .seal::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px dashed color-mix(in oklab, var(--gold) 50%, transparent);
  }
  .seal small { display: block; font-family: 'Cinzel', 'DM Sans', sans-serif; font-style: normal; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; color: var(--gold); }

  /* Trust strip */
  .trust {
    display: flex; gap: 56px; flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    max-width: 520px;
  }
  .trust .stat .n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px; line-height: 1;
    color: var(--ink);
  }
  .trust .stat .l {
    font-size: 12px; letter-spacing: 0.1em;
    color: var(--ink-soft); margin-top: 6px;
    text-transform: uppercase;
  }

  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .portrait .seal { left: 12px; }
    .portrait .badge { right: 12px; }
  }

  /* ---------------- MANIFESTO ---------------- */
  section.manifesto {
    background: var(--bg-deep);
    color: var(--paper);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  section.manifesto::before {
    content: ''; position: absolute;
    top: -200px; right: -100px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in oklab, var(--accent) 50%, transparent), transparent 65%);
    opacity: 0.4;
  }
  .manifesto-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: end;
  }
  .manifesto h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.08;
    margin: 0;
    text-wrap: balance;
  }
  .manifesto h2 em { font-style: italic; color: color-mix(in oklab, var(--accent) 75%, white); }
  .manifesto p {
    font-size: 17px;
    color: color-mix(in oklab, var(--paper) 75%, transparent);
    margin: 0;
    max-width: 460px;
  }
  .manifesto .sig {
    margin-top: 24px;
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: color-mix(in oklab, var(--paper) 60%, transparent);
  }
  .manifesto .sig::before {
    content: ''; width: 32px; height: 1px;
    background: color-mix(in oklab, var(--paper) 50%, transparent);
  }
  @media (max-width: 880px) {
    .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ---------------- SOBRE ---------------- */
  section.sobre {
    padding: 120px 0;
  }
  .sobre-grid {
    display: grid; grid-template-columns: 0.85fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .sobre-portrait {
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
    background-image: url('assets/bruna-sobre.jpg');
    background-size: cover;
    background-position: center 20%;
  }
  .sobre-portrait::after { display: none; }
  .section-label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 500;
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 22px;
  }
  .section-label::before {
    content: ''; width: 28px; height: 1px; background: var(--accent-2);
  }
  .sobre h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .sobre h2 em { font-style: italic; color: var(--accent-2); }
  .sobre p {
    color: var(--ink-soft);
    margin: 0 0 18px;
    max-width: 540px;
  }
  .credentials {
    margin-top: 36px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 4px;
  }
  .credentials .row {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 10px 0;
  }
  .credentials .row + .row { border-top: 1px solid color-mix(in oklab, var(--rule) 60%, transparent); }
  .credentials .ic {
    width: 32px; height: 32px; border-radius: 50%;
    background: color-mix(in oklab, var(--accent) 14%, var(--paper));
    color: var(--accent-2);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 16px;
  }
  .credentials .t { font-size: 15px; font-weight: 500; color: var(--ink); }
  .credentials .s { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
  @media (max-width: 920px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-portrait { max-width: 420px; }
  }

  /* ---------------- PILARES ---------------- */
  section.pilares {
    background: var(--bg-soft);
    padding: 120px 0;
  }
  .pilares-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: end;
    margin-bottom: 64px;
  }
  .pilares h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }
  .pilares h2 em { font-style: italic; color: var(--accent-2); }
  .pilares-head p {
    color: var(--ink-soft);
    margin: 0;
    max-width: 420px;
  }
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .pilar {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 32px 28px;
    display: flex; flex-direction: column;
    min-height: 320px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
  }
  .pilar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -24px rgba(40,20,10,0.2);
  }
  .pilar .num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 36px;
    color: var(--gold-deep);
    line-height: 1;
    margin-bottom: 80px;
  }
  .pilar h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--ink);
  }
  .pilar p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0;
    flex: 1;
  }
  .pilar .arrow {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink);
  }
  @media (max-width: 1020px) {
    .pilares-grid { grid-template-columns: repeat(2, 1fr); }
    .pilares-head { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 560px) {
    .pilares-grid { grid-template-columns: 1fr; }
  }

  /* ---------------- PARA QUEM ---------------- */
  section.paraquem {
    padding: 120px 0;
  }
  .paraquem-grid {
    display: grid; grid-template-columns: 0.9fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .paraquem h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .paraquem h2 em { font-style: italic; color: var(--accent-2); }
  .paraquem .intro {
    color: var(--ink-soft);
    margin: 0 0 32px;
  }
  .paraquem .closing {
    margin-top: 28px;
    padding: 24px;
    background: var(--paper);
    border-left: 3px solid var(--accent);
    border-radius: 0 4px 4px 0;
  }
  .paraquem .closing p {
    margin: 0; font-size: 15px; color: var(--ink); font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; line-height: 1.35;
  }
  .checklist {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .checklist .item {
    padding: 20px 24px 20px 0;
    border-bottom: 1px solid var(--rule);
    display: flex; gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
  }
  .checklist .item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--rule); }
  .checklist .item:nth-child(even) { padding-left: 24px; }
  .checklist .item .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
  }
  @media (max-width: 880px) {
    .paraquem-grid { grid-template-columns: 1fr; gap: 48px; }
    .checklist { grid-template-columns: 1fr; }
    .checklist .item:nth-child(odd) { padding-right: 0; border-right: none; }
    .checklist .item:nth-child(even) { padding-left: 0; }
  }

  /* ---------------- ASSOALHO (educativo) ---------------- */
  section.educ {
    background: var(--bg-deep);
    color: var(--paper);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .educ-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .educ .section-label { color: color-mix(in oklab, var(--accent) 70%, white); }
  .educ .section-label::before { background: color-mix(in oklab, var(--accent) 70%, white); }
  .educ h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.02;
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .educ h2 em { font-style: italic; color: color-mix(in oklab, var(--accent) 80%, white); }
  .educ p {
    color: color-mix(in oklab, var(--paper) 78%, transparent);
    margin: 0 0 18px;
    max-width: 480px;
  }
  .funcoes {
    margin-top: 36px;
    display: grid; gap: 14px;
  }
  .funcao {
    display: flex; align-items: center; gap: 18px;
    padding: 14px 0;
    border-top: 1px solid color-mix(in oklab, var(--paper) 12%, transparent);
    font-size: 15px;
  }
  .funcao .n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: color-mix(in oklab, var(--accent) 75%, white);
    font-size: 22px; width: 40px;
  }
  .funcao .t { color: var(--paper); }

  /* Anatomic diagram */
  .diagram {
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
  }
  .diagram svg { width: 100%; height: 100%; display: block; }

  @media (max-width: 920px) {
    .educ-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  /* ---------------- MODALIDADES ---------------- */
  section.modalidades {
    padding: 120px 0;
  }
  .mod-head {
    text-align: center; margin-bottom: 64px;
  }
  .mod-head .section-label { justify-content: center; }
  .mod-head .section-label::before { display: none; }
  .mod-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
    margin: 0 auto 18px;
    max-width: 760px;
    text-wrap: balance;
  }
  .mod-head h2 em { font-style: italic; color: var(--accent-2); }
  .mod-head p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

  .mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .mod-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
  }
  .mod-card.feature {
    background: var(--ink);
    color: var(--paper);
    grid-column: span 2;
    display: grid; grid-template-columns: 1fr auto;
    gap: 32px; align-items: end;
  }
  .mod-card:hover { transform: translateY(-3px); }
  .mod-card .ic {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: color-mix(in oklab, var(--accent) 14%, var(--paper));
    color: var(--accent-2);
    margin-bottom: 28px;
  }
  .mod-card.feature .ic {
    background: color-mix(in oklab, var(--accent) 25%, var(--ink));
    color: color-mix(in oklab, var(--accent) 60%, white);
  }
  .mod-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 10px;
    color: inherit;
  }
  .mod-card.feature h3 { font-size: 38px; max-width: 380px; }
  .mod-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0;
  }
  .mod-card.feature p {
    color: color-mix(in oklab, var(--paper) 72%, transparent);
    font-size: 15px;
    max-width: 360px;
  }
  .mod-card .price {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px dashed var(--rule);
    font-size: 13px; color: var(--ink-mute);
    letter-spacing: 0.04em;
  }
  .mod-card.feature .visual {
    width: 200px; aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(circle at 40% 40%, color-mix(in oklab, var(--accent) 60%, white) 0%, var(--accent) 45%, transparent 75%);
    position: relative;
    display: grid; place-items: center;
  }
  .mod-card.feature .visual img {
    width: 70%; height: 70%; object-fit: contain;
    filter: brightness(1.4) saturate(0.6);
  }
  @media (max-width: 920px) {
    .mod-grid { grid-template-columns: repeat(2, 1fr); }
    .mod-card.feature { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .mod-grid { grid-template-columns: 1fr; }
    .mod-card.feature { grid-column: auto; grid-template-columns: 1fr; }
    .mod-card.feature .visual { width: 140px; }
  }

  /* ---------------- RECURSOS ---------------- */
  section.recursos {
    background: var(--bg-soft);
    padding: 120px 0;
  }
  .rec-head {
    display: grid; grid-template-columns: 0.7fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
  }
  .rec-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }
  .rec-head h2 em { font-style: italic; color: var(--accent-2); }
  .rec-head p {
    color: var(--ink-soft);
    margin: 0;
    max-width: 460px;
  }
  .rec-list {
    border-top: 1px solid var(--rule);
  }
  .rec-item {
    display: grid;
    grid-template-columns: 80px 1.1fr 2fr 60px;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    align-items: center;
    cursor: pointer;
    transition: padding .2s ease;
  }
  .rec-item:hover { padding-left: 12px; }
  .rec-item .num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 24px;
    color: var(--gold-deep);
  }
  .rec-item .name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    line-height: 1.1;
    color: var(--ink);
  }
  .rec-item .desc {
    color: var(--ink-soft);
    font-size: 14.5px;
  }
  .rec-item .arrow {
    text-align: right;
    color: var(--accent-2);
    font-size: 18px;
    transition: transform .2s ease;
  }
  .rec-item:hover .arrow { transform: translateX(4px); }
  @media (max-width: 880px) {
    .rec-head { grid-template-columns: 1fr; gap: 20px; }
    .rec-item { grid-template-columns: 50px 1fr; gap: 16px; }
    .rec-item .desc, .rec-item .arrow { grid-column: 1 / -1; padding-left: 66px; }
    .rec-item .arrow { display: none; }
  }

  /* ---------------- LOCAIS ---------------- */
  section.locais {
    padding: 120px 0;
  }
  .locais-head { text-align: center; margin-bottom: 64px; }
  .locais-head .section-label { justify-content: center; }
  .locais-head .section-label::before { display: none; }
  .locais-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 58px);
    margin: 0; text-wrap: balance;
  }
  .locais-head h2 em { font-style: italic; color: var(--accent-2); }
  .locais-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .local {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
  }
  .local-map {
    aspect-ratio: 16/9;
    background:
      linear-gradient(45deg, color-mix(in oklab, var(--moss) 18%, var(--bg-soft)), color-mix(in oklab, var(--accent) 12%, var(--bg-soft)));
    position: relative;
  }
  .local-map::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .local-map .pin {
    position: absolute; top: 45%; left: 50%;
    transform: translate(-50%, -100%);
    width: 32px; height: 32px;
    background: var(--accent-2);
    border-radius: 50% 50% 50% 0;
    transform-origin: bottom;
    rotate: -45deg;
    display: grid; place-items: center;
    box-shadow: 0 8px 20px -6px rgba(40,20,10,0.4);
  }
  .local-map .pin::before {
    content: ''; width: 12px; height: 12px; border-radius: 50%;
    background: var(--paper);
  }
  .local-body { padding: 32px; }
  .local-tag {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 8px;
  }
  .local-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 32px; line-height: 1;
    margin: 0 0 16px;
  }
  .local-body address {
    font-style: normal;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .local-body .row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 18px; border-top: 1px solid var(--rule);
  }
  .local-body .link {
    color: var(--ink); text-decoration: none;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .local-body .link:hover { color: var(--accent-2); }
  @media (max-width: 880px) {
    .locais-grid { grid-template-columns: 1fr; }
  }

  /* ---------------- DEPOIMENTOS ---------------- */
  section.depo {
    padding: 120px 0;
    background: var(--bg-soft);
  }
  .depo-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
  .depo-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0; max-width: 600px;
    text-wrap: balance;
  }
  .depo-head h2 em { font-style: italic; color: var(--accent-2); }
  .depo-google {
    display: flex; align-items: center; gap: 14px;
    background: var(--paper); border: 1px solid var(--rule);
    padding: 14px 22px; border-radius: 999px;
    text-decoration: none; color: var(--ink);
    font-size: 14px;
  }
  .depo-google .stars { color: #F4B400; letter-spacing: 2px; font-size: 14px; }
  .depo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .depo-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 32px;
    display: flex; flex-direction: column;
    min-height: 280px;
  }
  .depo-card .quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 68px;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .depo-card p {
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.55;
    flex: 1;
    margin: 0 0 24px;
  }
  .depo-card .who {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px; border-top: 1px solid var(--rule);
  }
  .depo-card .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: color-mix(in oklab, var(--accent) 25%, var(--bg-soft));
    color: var(--accent-2);
    display: grid; place-items: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 18px;
  }
  .depo-card .nome { font-size: 14px; font-weight: 500; }
  .depo-card .sub { font-size: 12px; color: var(--ink-mute); }
  @media (max-width: 880px) {
    .depo-grid { grid-template-columns: 1fr; }
  }

  /* ---------------- CTA FINAL ---------------- */
  section.cta-final {
    padding: 140px 0;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  section.cta-final::before {
    content: ''; position: absolute;
    bottom: -220px; left: -120px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in oklab, var(--accent) 50%, transparent), transparent 60%);
    opacity: 0.35;
  }
  section.cta-final::after {
    content: ''; position: absolute;
    top: -180px; right: -100px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in oklab, var(--moss) 60%, transparent), transparent 60%);
    opacity: 0.25;
  }
  .cta-inner {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 720px; margin: 0 auto;
  }
  .cta-inner .section-label {
    justify-content: center;
    color: color-mix(in oklab, var(--accent) 70%, white);
  }
  .cta-inner .section-label::before { background: color-mix(in oklab, var(--accent) 70%, white); }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(46px, 6vw, 80px);
    line-height: 1; letter-spacing: -0.01em;
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .cta-inner h2 em {
    font-style: italic;
    color: color-mix(in oklab, var(--accent) 75%, white);
  }
  .cta-inner p {
    font-size: 18px;
    color: color-mix(in oklab, var(--paper) 75%, transparent);
    margin: 0 0 40px;
    max-width: 540px; margin-left: auto; margin-right: auto;
  }
  .cta-inner .actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }
  .cta-inner .btn-primary { background: var(--paper); color: var(--ink); }
  .cta-inner .btn-primary:hover { background: var(--accent); color: var(--paper); }

  /* ---------------- FOOTER ---------------- */
  footer {
    background: var(--bg-deep);
    color: color-mix(in oklab, var(--paper) 70%, transparent);
    padding: 80px 0 32px;
    border-top: 1px solid color-mix(in oklab, var(--paper) 10%, transparent);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
  }
  .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .footer-brand .brand-mark {
    /* keep lilac+gold on dark bg; slight brightness boost */
    filter: brightness(1.15);
  }
  .footer-brand .brand-name .name { color: var(--paper); }
  .footer-brand .brand-name .role { color: color-mix(in oklab, var(--paper) 55%, transparent); }
  footer h4 {
    color: var(--paper); font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400; font-size: 18px;
    margin: 0 0 18px; font-style: italic;
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: 10px; font-size: 14px; }
  footer a { color: inherit; text-decoration: none; }
  footer a:hover { color: var(--paper); }
  footer .desc { font-size: 14px; max-width: 320px; margin: 0 0 24px; }
  .foot-bottom {
    border-top: 1px solid color-mix(in oklab, var(--paper) 10%, transparent);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
    color: color-mix(in oklab, var(--paper) 50%, transparent);
    flex-wrap: wrap; gap: 12px;
  }
  .socials { display: flex; gap: 12px; }
  .socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
    display: grid; place-items: center;
    transition: all .2s;
  }
  .socials a:hover {
    background: var(--paper); color: var(--ink); border-color: var(--paper);
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  /* Floating whatsapp */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px;
    z-index: 60;
    width: 60px; height: 60px; border-radius: 50%;
    background: #1F8F4E;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px -8px rgba(31, 143, 78, 0.6);
    text-decoration: none;
    transition: transform .2s ease;
  }
  .wa-float:hover { transform: scale(1.06); }

  /* small helpers */
  .icon { width: 18px; height: 18px; stroke-width: 1.6; }
