  :root {
    --cream: #FBF6F0;
    --sand: #F0E4D8;
    --nude: #E3CBB4;
    --clay: #C9A07E;
    --terracotta: #B97A56;
    --orange: #E08A4B;
    --orange-deep: #C96B2E;
    --brown-deep: #4A362A;
    --ink: #362A22;
    --ink-soft: #6B5A4C;
    --white: #FFFFFF;
    --line: #E7D9CA;
    --radius: 20px;
    --max-w: 1120px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, .display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--brown-deep);
  }

  .wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
  }

  a { color: inherit; }

  /* ---------- NAV ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 246, 240, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }

  nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
  }

  .brand {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown-deep);
    text-decoration: none;
    letter-spacing: -0.01em;
  }

  .brand-block .tagline {
    font-size: 0.74rem;
    color: var(--orange-deep);
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-links a:hover { color: var(--terracotta); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brown-deep);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }

  .menu-toggle { display: none; }

  /* ---------- HERO ---------- */
  .hero {
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-deep);
    background: var(--sand);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--orange-deep);
  }

  .hero p.lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--brown-deep);
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--line);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .btn-ghost:hover { border-color: var(--clay); background: var(--sand); }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    background: linear-gradient(155deg, var(--nude) 0%, var(--sand) 55%, var(--cream) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    overflow: hidden;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 25% 20%, rgba(255,255,255,0.5), transparent 45%),
      radial-gradient(circle at 80% 85%, rgba(185,122,86,0.18), transparent 50%);
    z-index: 1;
  }

  .visual-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-visual .visual-photo { z-index: 0; }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(74,54,42,0.55) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 18px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px -12px rgba(74, 54, 42, 0.25);
  }

  .hero-card .dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fraunces', serif;
    font-weight: 600;
  }

  .hero-card .label { font-size: 0.78rem; color: var(--ink-soft); }
  .hero-card .value { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--brown-deep); font-weight: 600; }

  /* ---------- SECTION SHARED ---------- */
  section { padding: 100px 0; }

  .section-head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
  }

  .section-head .eyebrow { display: inline-flex; margin-left: auto; margin-right: auto; }

  .section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-top: 14px;
    margin-bottom: 16px;
  }

  .section-head p { color: var(--ink-soft); font-size: 1.02rem; }

  /* ---------- SOBRE ---------- */
  .sobre { background: var(--white); }

  .sobre .wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
  }

  .sobre-visual {
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: var(--sand);
    position: relative;
    overflow: hidden;
  }

  .sobre-visual .visual-photo { object-position: center; }

  .sobre-visual::after {
    content: "“";
    position: absolute;
    font-family: 'Fraunces', serif;
    font-size: 12rem;
    color: var(--nude);
    right: -10px;
    bottom: -60px;
    line-height: 1;
  }

  .sobre h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 20px; }

  .sobre p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }

  .sobre-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .pill {
    background: var(--sand);
    color: var(--brown-deep);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 100px;
  }

  /* ---------- MÉTODO ---------- */
  .metodo { background: var(--cream); }

  .metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .metodo-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .metodo-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px -22px rgba(74,54,42,0.18);
  }

  .metodo-card .num {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    color: var(--orange-deep);
    font-weight: 600;
    margin-bottom: 16px;
  }

  .metodo-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
  .metodo-card p { color: var(--ink-soft); font-size: 0.95rem; }

  /* ---------- SERVIÇOS ---------- */
  .servicos { background: var(--white); }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .plano {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .plano:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(74,54,42,0.2); }

  .plano.destaque {
    background: var(--brown-deep);
    color: var(--white);
    position: relative;
  }

  .plano.destaque .plano-tag {
    position: absolute;
    top: -13px;
    right: 28px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 100px;
  }

  .plano h3 { font-size: 1.3rem; margin-bottom: 6px; }
  .plano.destaque h3 { color: var(--white); }

  .plano .sub { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 22px; }
  .plano.destaque .sub { color: var(--sand); }

  .plano ul { list-style: none; margin-bottom: 28px; flex-grow: 1; }

  .plano li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    margin-bottom: 13px;
    color: var(--ink-soft);
  }

  .plano.destaque li { color: rgba(255,255,255,0.85); }

  .plano li::before {
    content: "✓";
    color: var(--orange-deep);
    font-weight: 700;
    flex-shrink: 0;
  }

  .plano.destaque li::before { color: var(--nude); }

  .plano-btn {
    text-align: center;
    text-decoration: none;
    padding: 13px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid var(--brown-deep);
    color: var(--brown-deep);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .plano-btn:hover { background: var(--brown-deep); color: var(--white); }

  .plano.destaque .plano-btn {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }

  .plano.destaque .plano-btn:hover { background: var(--white); color: var(--brown-deep); border-color: var(--white); }

  /* ---------- COMO FUNCIONA ---------- */
  .passos { background: var(--sand); }

  .passos-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .passo {
    text-align: center;
    padding: 10px;
  }

  .passo .circ {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--clay);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--orange-deep);
    margin: 0 auto 16px;
  }

  .passo h3 { font-size: 1.02rem; margin-bottom: 8px; }
  .passo p { font-size: 0.88rem; color: var(--ink-soft); }

  /* ---------- DEPOIMENTOS ---------- */
  .depoimentos { background: var(--white); }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .depo {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .depo:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(74,54,42,0.18);
  }

  .depo .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.9rem; }
  .depo p.quote { font-size: 0.96rem; color: var(--ink); margin-bottom: 20px; font-style: italic; }

  .depo .who { display: flex; align-items: center; gap: 12px; }

  .depo .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--nude);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--brown-deep);
    font-size: 0.85rem;
  }

  .depo .name { font-size: 0.88rem; font-weight: 600; color: var(--brown-deep); }
  .depo .tag { font-size: 0.78rem; color: var(--ink-soft); }

  .depo-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 30px;
  }

  /* ---------- CTA FINAL ---------- */
  .cta-final {
    background: linear-gradient(155deg, var(--brown-deep), #3a2c22);
    color: var(--white);
    border-radius: var(--radius);
    margin: 0 28px;
    padding: 70px 40px;
    text-align: center;
  }

  .cta-final-inner { max-width: 640px; margin: 0 auto; }

  .cta-final h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 16px; }
  .cta-final p { color: var(--sand); margin-bottom: 32px; font-size: 1.02rem; }

  .cta-final .btn-primary { background: var(--orange); }
  .cta-final .btn-primary:hover { background: var(--white); color: var(--brown-deep); }

  /* ---------- FOOTER ---------- */
  footer { padding: 60px 0 40px; }

  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand { display: flex; flex-direction: column; gap: 6px; }
  .footer-brand .brand { font-size: 1.1rem; }
  .footer-brand span { font-size: 0.85rem; color: var(--ink-soft); }

  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { text-decoration: none; font-size: 0.88rem; color: var(--ink-soft); }
  .footer-links a:hover { color: var(--terracotta); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 0.8rem;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
  .reveal-group .reveal:nth-child(2) { transition-delay: 0.08s; }
  .reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
  .reveal-group .reveal:nth-child(4) { transition-delay: 0.24s; }
  .reveal-group .reveal:nth-child(5) { transition-delay: 0.32s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ---------- WAVE DIVIDERS ---------- */
  .wave { width: 100%; overflow: hidden; line-height: 0; }
  .wave svg { display: block; width: 100%; height: 64px; }
  .wave-cream { background: var(--cream); }
  .wave-sand { background: var(--sand); }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--orange);
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px -6px rgba(74,54,42,0.4);
    z-index: 60;
    transition: transform 0.2s ease;
  }

  .wa-float:hover { transform: scale(1.08); }

  /* ---------- BLOG: LISTAGEM ---------- */
  .blog-hero {
    padding: 70px 0 60px;
    text-align: center;
  }

  .blog-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 14px 0 16px; }
  .blog-hero p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; font-size: 1.02rem; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 100px;
  }

  .blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(74,54,42,0.2); }

  .blog-card-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(155deg, var(--nude), var(--sand));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-card-img .play {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-deep);
  }

  .blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.9);
    color: var(--orange-deep);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 100px;
  }

  .blog-card-body { padding: 22px 22px 26px; flex-grow: 1; display: flex; flex-direction: column; }
  .blog-card-body h3 { font-size: 1.12rem; margin-bottom: 10px; line-height: 1.3; }
  .blog-card-body p { color: var(--ink-soft); font-size: 0.92rem; flex-grow: 1; margin-bottom: 16px; }

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }

  .blog-card-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }

  .blog-card-read {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-deep);
  }

  /* ---------- BLOG: POST ---------- */
  .post-header { padding: 60px 0 40px; }

  .post-header .back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    text-decoration: none;
    margin-bottom: 28px;
  }

  .post-header .back:hover { color: var(--orange-deep); }

  .post-header h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    max-width: 760px;
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--ink-soft);
  }

  .post-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }

  .post-cover {
    max-width: var(--max-w);
    margin: 0 auto 50px;
    padding: 0 28px;
  }

  .post-cover-inner {
    aspect-ratio: 21 / 9;
    border-radius: var(--radius);
    background: linear-gradient(155deg, var(--nude), var(--sand));
  }

  .post-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 28px 90px;
    font-size: 1.06rem;
    color: var(--ink);
  }

  .post-body p { margin-bottom: 22px; }
  .post-body h2 { font-size: 1.4rem; margin: 40px 0 16px; }
  .post-body ul { margin: 0 0 22px 22px; color: var(--ink); }
  .post-body li { margin-bottom: 10px; }

  .post-quote {
    border-left: 3px solid var(--orange);
    padding: 4px 0 4px 22px;
    font-style: italic;
    color: var(--ink-soft);
    margin: 32px 0;
    font-size: 1.05rem;
  }

  .post-cta {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin-top: 50px;
  }

  .post-cta p { color: var(--ink-soft); margin-bottom: 20px; font-size: 0.98rem; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px) {
    .nav-links, .nav-cta { display: none; }
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
    .sobre .wrap { grid-template-columns: 1fr; }
    .sobre-visual { max-width: 320px; margin: 0 auto; }
    .metodo-grid, .servicos-grid, .depo-grid { grid-template-columns: 1fr; }
    .passos-list { grid-template-columns: repeat(2, 1fr); }
    section { padding: 70px 0; }
    .cta-final { margin: 0 16px; padding: 50px 24px; }
    .blog-grid { grid-template-columns: 1fr; }
  }
