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

    :root {
      --bg-cream:     #EDE5D6;
      --bg-cream-2:   #F2EBDD;
      --bg-light:     #F5F0E4;
      --bg-white:     #FAF6EC;
      --gold:         #B08A4A;
      --gold-dark:    #8F6E37;
      --gold-light:   #C9A467;
      --brown-deep:   #2B1F11;
      --text-dark:    #1F1810;
      --text-medium:  #4A3F33;
      --text-soft:    #6B5F50;
      --white:        #FFFFFF;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Jost', sans-serif;

      /* Padding lateral compartilhado — nav alinha com o texto do hero */
      --page-pad: 80px;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--bg-cream);
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

    h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; font-weight: 500; color: var(--text-dark); }
    p { color: var(--text-soft); line-height: 1.7; font-size: 0.92rem; }

    .eyebrow {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-medium);
      margin-bottom: var(--space-md, 24px);
      display: block;
    }

    /* ─── Botões ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 32px;
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      min-height: 50px;
    }

    .btn-primary { background: var(--gold); color: var(--white); }
    .btn-primary:hover { background: var(--gold-dark); }

    .btn-link {
      background: none;
      color: var(--text-dark);
      padding: 16px 0;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      gap: 12px;
    }
    .btn-link::after {
      content: '';
      display: inline-block;
      width: 30px;
      height: 1px;
      background: var(--text-dark);
      transition: width 0.3s;
    }
    .btn-link:hover::after { width: 45px; }

    .container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

    /* ═══ NAV ═══ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 28px 0;
      transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    }

    nav.scrolled {
      background: rgba(237, 229, 214, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 16px 0;
      box-shadow: 0 2px 20px rgba(44, 31, 14, 0.08);
    }

    .nav-inner {
      max-width: none;
      margin: 0 auto;
      padding: 0 var(--page-pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 52px; width: auto; }

    .nav-links { display: flex; gap: 44px; list-style: none; }
    .nav-links a {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dark);
      transition: color 0.25s ease;
      padding: 8px 0;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta { padding: 14px 24px; font-size: 0.65rem; letter-spacing: 0.18em; min-height: 44px; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      background: none;
      border: none;
      min-height: 44px;
      min-width: 44px;
      justify-content: center;
    }

    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg-cream);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 80px 24px;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-dark); padding: 14px; }
    .nav-mobile a.mobile-legal { font-family: var(--font-body); font-size: 1.00rem; letter-spacing: 0.12em; color: var(--text-soft); padding: 8px 14px; font-style: normal; }
    .nav-mobile .btn { font-family: var(--font-body); font-size: 0.75rem; margin-top: 24px; }

    /* ═══ HERO ═══ */
    #hero {
      background: var(--bg-cream);
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
    }

    /* Coluna de texto — alinhada verticalmente, com padding próprio */
    .hero-content {
      padding: 160px 56px 80px var(--page-pad);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: clamp(2.2rem, 4.2vw, 3.4rem);
      font-weight: 500;
      line-height: 1.12;
      margin-bottom: 24px;
    }

    .hero-subtitle {
      font-size: 0.92rem;
      color: var(--text-medium);
      line-height: 1.7;
      margin-bottom: 48px;
      max-width: 420px;
    }

    .hero-actions { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }

    /* Foto — full-bleed: ocupa todo o lado direito até a borda da viewport */
    .hero-image {
      position: relative;
      /* sem padding nem margin — vai até a borda */
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* Desfoque só na borda esquerda — mesma lógica de "O Espaço" */
    .hero-image::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to right,
        var(--bg-cream) 0%,
        rgba(237,229,214,0.6) 12%,
        transparent 30%
      );
      pointer-events: none;
    }

    /* Desfoque inferior — transição para a próxima seção */
    /* hero-image::after removido — sem desfoque na base */

    /* ═══ DESAFIOS ═══ */
    #desafios {
      background: var(--bg-white);
      padding: 80px 0;
      text-align: center;
    }

    .desafios-lead {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-medium);
      margin-bottom: 16px;
    }

    #desafios h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.4rem);
      max-width: 620px;
      margin: 0 auto 80px;
      line-height: 1.2;
    }

    .desafios-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      margin-bottom: 48px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .desafio-item { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 8px; }
    .desafio-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.8rem; }
    .desafio-item p { font-size: 0.78rem; color: var(--text-soft); text-align: center; line-height: 1.5; max-width: 150px; }

    .desafios-encerramento { max-width: 580px; margin: 48px auto 0; font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }

    /* ═══ ABORDAGEM ═══ */
    #abordagem {
      background: var(--bg-cream-2);
      padding: 0;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr 0.9fr;
      min-height: 480px;
    }

    /* Colunas de texto — com padding interno */
    .abordagem-text {
      padding: 80px 40px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .abordagem-checklist-col {
      padding: 80px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .abordagem-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); line-height: 1.2; margin-bottom: 24px; }
    .abordagem-text p { font-size: 0.85rem; line-height: 1.7; }

    .abordagem-checklist { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .abordagem-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.85rem;
      color: var(--text-medium);
      line-height: 1.5;
    }
    .abordagem-checklist li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 600;
      flex-shrink: 0;
      font-size: 0.9rem;
      margin-top: 2px;
    }

    /* Foto — full-bleed na borda direita, mesma lógica de "O Espaço" */
    .abordagem-image {
      position: relative;
    }
    .abordagem-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    /* Desfoque só na borda esquerda */
    .abordagem-image::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      /* Apenas fade na borda esquerda, sem base nem outras bordas */
      background: linear-gradient(
        to right,
        var(--bg-cream-2) 0%,
        rgba(242,235,221,0.5) 10%,
        transparent 28%
      );
      pointer-events: none;
    }

    /* ═══ SOBRE ═══ */
    #sobre {
      background: var(--bg-cream);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
      overflow: hidden;
    }

    .sobre-photo {
      position: relative;
      min-height: 600px;
    }
    .sobre-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    /* Desfoque na borda direita para transição suave */
    .sobre-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to left, var(--bg-cream) 0%, transparent 20%),
        linear-gradient(to top, var(--bg-cream) 0%, transparent 8%);
      pointer-events: none;
    }

    .sobre-content {
      padding: 80px 80px 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 640px;
    }

    .sobre-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 24px; }
    .sobre-content p { font-size: 0.88rem; margin-bottom: 24px; }

    .credenciais-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 24px;
    }

    .credencial-item { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
    .credencial-icon { width: 36px; height: 36px; color: var(--gold); display: flex; align-items: center; font-size: 1.3rem; }
    .credencial-text { font-size: 0.72rem; color: var(--text-soft); line-height: 1.4; }
    .credencial-text strong { display: block; color: var(--text-dark); font-size: 0.78rem; font-weight: 500; margin-bottom: 2px; }

    /* ═══ FASES DA VIDA ═══ */
    #fases-da-vida {
      background: var(--bg-cream-2);
      padding: 80px 0;
    }

    .fases-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 56px;
    }
    .fases-header h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      line-height: 1.2;
      font-style: italic;
    }
    .fases-divider {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 28px auto;
    }
    .fases-subtitle {
      max-width: 640px;
      margin: 0 auto;
      font-size: 0.9rem;
      color: var(--text-soft);
      line-height: 1.7;
    }

    .fases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .fase-card {
      background: var(--bg-white);
      border: 1px solid rgba(176,138,74,0.14);
      border-radius: 12px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .fase-card:hover {
      border-color: rgba(176,138,74,0.32);
      box-shadow: 0 12px 32px rgba(44, 31, 14, 0.07);
    }

    .fase-card-icon {
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      line-height: 1;
    }
    .fase-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .fase-card p {
      font-size: 0.86rem;
      line-height: 1.75;
      flex: 1 1 auto;
    }

    .fase-card-cta {
      width: 100%;
      justify-content: center;
      text-align: center;
      line-height: 1.4;
      margin-top: 32px;
    }

    @media (max-width: 860px) {
      #fases-da-vida { padding: 64px 0; }
      .fases-header { margin-bottom: 40px; }
      .fases-grid { grid-template-columns: 1fr; gap: 20px; }
      .fase-card { padding: 32px 24px; }
      .fase-card p { font-size: 0.88rem; }
    }

    @media (max-width: 600px) {
      .fase-card { padding: 28px 22px; }
      .fase-card-cta {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
        padding: 14px 18px;
      }
    }

    /* ═══ COMO FUNCIONA ═══ */
    #como-funciona {
      background: var(--bg-white);
      padding: 80px 0;
    }

    .como-grid {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: flex-start;
      margin-bottom: 48px;
    }

    .como-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); line-height: 1.25; }

    .como-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
    .como-card-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; font-size: 2rem; }
    .como-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .como-card p { font-size: 0.82rem; line-height: 1.6; }

    .como-nota {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-soft);
      font-style: italic;
      padding: 0 24px;
    }

    /* ═══ ESPAÇO ═══ */
    #espaco {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      min-height: 460px;
      overflow: hidden;
    }

    .espaco-box {
      background: var(--brown-deep);
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .espaco-box .eyebrow { color: rgba(245,240,228,0.55); }
    .espaco-box h2 {
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      color: var(--bg-cream);
      margin-bottom: 24px;
      line-height: 1.2;
    }
    .espaco-box p {
      color: rgba(245,240,228,0.7);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 48px;
    }

    .espaco-box .btn {
      align-self: flex-start;
      background: transparent;
      color: var(--bg-cream);
      border: 1px solid rgba(245,240,228,0.45);
      padding: 14px 28px;
    }
    .espaco-box .btn:hover { background: rgba(245,240,228,0.08); border-color: var(--bg-cream); }

    .espaco-image {
      position: relative;
      min-height: 460px;
    }
    .espaco-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Desfoque na borda esquerda */
    .espaco-image::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to right, var(--brown-deep) 0%, transparent 20%);
      pointer-events: none;
    }

    /* ═══ PARA QUEM ═══ */
    #para-quem {
      background: var(--bg-white);
      padding: 80px 0;
      text-align: center;
    }

    #para-quem h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 80px; }

    .para-quem-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .pq-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .pq-icon { width: 44px; height: 44px; color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
    .pq-item p { font-size: 0.78rem; color: var(--text-soft); text-align: center; line-height: 1.5; max-width: 170px; }

    /* ═══ CTA FINAL ═══ */
    #cta-final {
      background: var(--brown-deep);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-decoration {
      position: absolute;
      right: -40px; bottom: 0;
      width: 280px; height: 100%;
      opacity: 0.18;
      pointer-events: none;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .cta-decoration svg { width: 100%; height: 80%; }

    #cta-final h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      color: var(--bg-cream);
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    #cta-final .subtitle {
      color: rgba(245,240,228,0.65);
      font-size: 0.9rem;
      margin-bottom: 48px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }

    .cta-final-actions {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .cta-tel {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--bg-cream);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 16px 24px;
    }

    .cta-tel-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(176,138,74,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-light);
    }
    .cta-tel-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ═══ FOOTER ═══ */
    footer {
      background: var(--brown-deep);
      padding: 48px 0 24px;
      border-top: 1px solid rgba(176,138,74,0.12);
    }

    .footer-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
    }

    .footer-logo img { height: 52px; width: auto; }

    .footer-nav { display: flex; gap: 48px; list-style: none; }
    .footer-nav a {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,228,0.55);
      transition: color 0.25s;
      padding: 8px 0;
    }
    .footer-nav a:hover { color: var(--gold-light); }

    .footer-social { display: flex; gap: 16px; }
    .footer-social a {
      width: 38px; height: 38px;
      border: 1px solid rgba(245,240,228,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(245,240,228,0.7);
      transition: all 0.25s;
      font-size: 15px;
    }
    .footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

    .footer-credits {
      width: 100%;
      text-align: center;
      font-size: 0.7rem;
      color: rgba(245,240,228,0.3);
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(245,240,228,0.06);
    }

    /* Rodapé Cravo */
    .cravo-footer {
      background: #1c160d;
      padding: 5px 0;
      text-align: center;
    }
    .cravo-footer span {
      font-family: 'Jost', sans-serif;
      font-size: 0.68rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.14em;
    }

    /* ─── WhatsApp fixo ─── */
    .wa {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 300;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      animation: waPulse 2.5s ease-in-out infinite;
    }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
    }
    .wa svg { width: 28px; height: 28px; fill: white; }


    .ms {
      font-family: 'Material Symbols Outlined';
      font-weight: normal;
      font-style: normal;
      font-size: 2.6rem;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      display: inline-block;
      white-space: nowrap;
      word-wrap: normal;
      direction: ltr;
      font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
      color: var(--gold);
      user-select: none;
    }
    .ms-sm {
      font-size: 1.8rem;
      font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
    }
    .ms-nav {
      font-size: 1.5rem;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
      color: var(--text-dark);
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ═══ RESPONSIVO ═══ */
    @media (max-width: 1024px) {
      .nav-links { gap: 28px; }
      .nav-links a { font-size: 0.65rem; }
      /* abordagem: foto vai para baixo em tablet */
      #abordagem { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
      .abordagem-text { grid-column: 1; grid-row: 1; padding: 64px 32px 32px 48px; }
      .abordagem-checklist-col { grid-column: 2; grid-row: 1; padding: 64px 48px 32px 32px; }
      .abordagem-image { grid-column: 1 / -1; grid-row: 2; height: 320px; }
      .abordagem-image::before {
        /* foto em largura total — sem desfoque de base ou laterais */
        background: none;
      }
      .sobre-content { padding: 80px 48px 80px 40px; }
    }

    @media (max-width: 860px) {
      nav { padding: 20px 0; }
      .nav-inner { padding: 0 24px; }
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }

      /* Hero: empilha verticalmente */
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-content { padding: 120px 24px 40px; }
      .hero-image { height: 320px; }
      .hero-image::before {
        background: linear-gradient(to bottom, var(--bg-cream) 0%, transparent 20%);
      }
      /* hero base: sem desfoque */
      .hero-image::after { display: none; }

      .container, .como-grid, .footer-inner { padding-left: 24px; padding-right: 24px; }

      .desafios-grid { grid-template-columns: repeat(3, 1fr); }

      /* abordagem: tudo em coluna única */
      #abordagem { grid-template-columns: 1fr; grid-template-rows: auto; }
      .abordagem-text { grid-column: 1; grid-row: 1; padding: 56px 24px 24px; }
      .abordagem-checklist-col { grid-column: 1; grid-row: 2; padding: 0 24px 40px; }
      .abordagem-image { grid-column: 1; grid-row: 3; height: 280px; }
      .abordagem-image::before { background: none; }

      #sobre { grid-template-columns: 1fr; }
      .sobre-photo { min-height: 420px; }
      .sobre-photo::after {
        background: linear-gradient(to top, var(--bg-cream) 0%, transparent 15%);
      }
      .sobre-content { padding: 48px 24px; max-width: 100%; }
      .credenciais-row { grid-template-columns: 1fr 1fr; }
      /* Sobre Mim mobile: centraliza e aumenta */
      .credencial-item { align-items: center; text-align: center; }
      .credencial-icon { width: 44px; height: 44px; }
      .credencial-icon svg { width: 36px; height: 36px; }
      .credencial-text { font-size: 0.82rem; }
      .credencial-text strong { font-size: 0.88rem; }

      .como-grid { grid-template-columns: 1fr; gap: 24px; }
      .como-cards { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
      /* Como Funciona mobile: centraliza e aumenta */
      .como-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
      .como-card-icon { width: 56px; height: 56px; }
      .como-card-icon svg { width: 50px; height: 50px; }
      .como-card h3 { font-size: 1.25rem; }
      .como-card p { font-size: 0.88rem; }

      #espaco { grid-template-columns: 1fr; }
      .espaco-box { padding: 60px 24px; }
      .espaco-image { min-height: 300px; height: 300px; }
      .espaco-image::before {
        background: linear-gradient(to bottom, var(--brown-deep) 0%, transparent 15%);
      }

      .para-quem-grid { grid-template-columns: repeat(3, 1fr); /* tablet */ }

      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
      .footer-nav { flex-wrap: wrap; justify-content: center; gap: 24px; }
    }

    @media (max-width: 600px) {
      .hero-title { font-size: 2rem; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
      .hero-actions .btn, .hero-actions .btn-link { width: 100%; justify-content: center; }
      .btn-link::after { display: none; }

      .desafios-grid { grid-template-columns: repeat(2, 1fr); }
      .credenciais-row { grid-template-columns: 1fr; }
      .como-cards { grid-template-columns: 1fr; }
      .para-quem-grid { grid-template-columns: repeat(2, 1fr); }

      .cta-final-actions { flex-direction: column; gap: 16px; width: 100%; padding: 0 24px; }
      .cta-final-actions .btn { width: 100%; }

      .wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    }

    /* ═══ SEÇÃO ESCUTA / TRANSFORMAÇÃO ═══ */
    #escuta {
      background: var(--bg-cream-2);
      padding: 96px 0;
      text-align: center;
    }
    #escuta h2 {
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      max-width: 720px;
      margin: 0 auto 32px;
      line-height: 1.2;
      font-style: italic;
    }
    .escuta-divider {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 32px;
    }
    #escuta .escuta-texto {
      max-width: 640px;
      margin: 0 auto;
      font-size: 0.96rem;
      color: var(--text-medium);
      line-height: 1.85;
    }
    #escuta .escuta-texto p + p { margin-top: 20px; }

    /* ═══ CARROSSEL DEPOIMENTOS ═══ */
    #depoimentos {
      background: var(--bg-white);
      padding: 80px 0;
      text-align: center;
    }
    #depoimentos h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      margin-bottom: 16px;
    }
    .dep-stars-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-bottom: 48px;
      color: var(--gold);
      font-size: 1rem;
    }
    .dep-stars-header span {
      font-family: var(--font-body);
      font-size: 0.78rem;
      color: var(--text-soft);
      font-weight: 400;
      margin-left: 4px;
    }
    .dep-carousel-wrap {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .dep-carousel {
      overflow: hidden;
    }
    .dep-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .dep-card {
      flex: 0 0 calc(33.333% - 16px);
      margin: 0 8px;
      background: var(--bg-cream-2);
      border-radius: 12px;
      padding: 32px 28px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: 1px solid rgba(176,138,74,0.12);
    }
    .dep-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .dep-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      flex-shrink: 0;
    }
    .dep-name {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.3;
    }
    .dep-date {
      font-size: 0.72rem;
      color: var(--text-light);
      font-weight: 400;
    }
    .dep-stars {
      display: flex;
      gap: 2px;
      color: #F9A825;
      font-size: 0.85rem;
    }
    .dep-text {
      font-size: 0.84rem;
      color: var(--text-medium);
      line-height: 1.7;
      flex: 1;
    }
    .dep-google {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      color: var(--text-light);
      margin-top: 4px;
    }
    .dep-google i { font-size: 0.85rem; color: #4285F4; }

    /* Setas */
    .dep-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid rgba(176,138,74,0.35);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
      z-index: 10;
      font-size: 0.9rem;
    }
    .dep-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .dep-arrow.prev { left: 0; }
    .dep-arrow.next { right: 0; }
    .dep-arrow:disabled { opacity: 0.3; cursor: default; }
    .dep-arrow:disabled:hover { background: var(--white); color: var(--gold); border-color: rgba(176,138,74,0.35); }

    /* Dots */
    .dep-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .dep-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(176,138,74,0.3);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }
    .dep-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    /* Botão Ver Todas */
    .dep-footer {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid var(--gold);
      padding: 13px 28px;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 500;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn-outline-gold:hover { background: var(--gold); color: var(--white); }
    .btn-outline-gold:hover .ms { color: var(--white); }

    @media (max-width: 860px) {
      .dep-carousel-wrap { padding: 0 48px; }
      .dep-card {
        flex: 0 0 calc(50% - 12px);
        margin: 0 6px;
      }
    }
    @media (max-width: 600px) {
      .dep-card {
        flex: 0 0 calc(100% - 12px);
        margin: 0 6px;
      }
      .dep-carousel-wrap { padding: 0 40px; }
    }

    /* ═══ LOCALIZAÇÃO / MAPA ═══ */
    #localizacao {
      background: var(--bg-cream);
      padding: 0;
      overflow: hidden;
    }
    .loc-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      min-height: 460px;
    }
    .loc-text {
      padding: 64px 56px 64px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .loc-text h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 24px; }
    .loc-text p { font-size: 0.88rem; margin-bottom: 20px; }
    .loc-address {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 24px;
      background: var(--bg-white);
      border-radius: 10px;
      border: 1px solid rgba(176,138,74,0.2);
      margin-bottom: 24px;
    }
    .loc-address .ms { color: var(--gold); font-size: 1.7rem; margin-top: 2px; flex-shrink: 0; }
    .loc-address-text {
      font-size: 0.85rem;
      color: var(--text-medium);
      line-height: 1.6;
    }
    .loc-address-text strong { display: block; color: var(--text-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 2px; }
    /* Mapa: ocupa toda a altura do grid, colado na borda */
    .loc-map {
      position: relative;
      min-height: 460px;
    }
    .loc-map iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    @media (max-width: 860px) {
      .loc-grid { grid-template-columns: 1fr; }
      .loc-text { padding: 56px 24px 32px; }
      .loc-map { min-height: 300px; position: relative; }
    }

    /* ═══ LINKS LEGAIS NO FOOTER ═══ */
    .footer-legal {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 16px;
      flex-wrap: wrap;
    }
    .footer-legal a {
      font-size: 0.65rem;
      color: rgba(245,240,228,0.35);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.25s;
    }
    .footer-legal a:hover { color: var(--gold-light); }

    /* ═══ PÁGINAS LEGAIS ═══ */
    .legal-hero {
      background: var(--bg-cream);
      padding: 140px 0 64px;
    }
    .legal-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 8px;
    }
    .legal-hero .legal-date {
      font-size: 0.78rem;
      color: var(--text-light);
      letter-spacing: 0.1em;
    }
    .legal-body {
      background: var(--bg-white);
      padding: 64px 0 80px;
    }
    .legal-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .legal-content h2 {
      font-size: 1.3rem;
      margin: 40px 0 16px;
      color: var(--text-dark);
    }
    .legal-content h2:first-child { margin-top: 0; }
    .legal-content p {
      font-size: 0.9rem;
      color: var(--text-medium);
      line-height: 1.8;
      margin-bottom: 12px;
    }
    .legal-content .legal-item {
      padding-left: 16px;
      border-left: 2px solid var(--border);
      margin-bottom: 12px;
    }
    .legal-content .legal-item p { margin-bottom: 0; }
    .legal-back {
      background: var(--bg-cream);
      padding: 40px 0;
      text-align: center;
      border-top: 1px solid rgba(176,138,74,0.12);
    }

    @media (max-width: 600px) {
      .legal-content { padding: 0 24px; }
      .legal-hero { padding: 120px 24px 48px; }
    }

    .cravo-link {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.25s;
    }
    .cravo-link:hover { color: #00aeff; }
