:root {
    /* Identidade visual da marca */
    --white:        #FFFFFF;
    --yellow:       #FFCE00;        /* amarelo da marca */
    --yellow-deep:  #F5BE00;
    --yellow-soft:  #FFF7D1;
    --gray:         #6E6E6E;        /* CINZA do logo — cor primária de texto */
    --gray-dark:    #4F4F4F;        /* cabeçalhos */
    --gray-soft:    #A0A0A0;        /* secundário */
    --gray-pale:    #F5F5F5;        /* fundo claro */
    --rule:         #ECECEC;
    --rule-soft:    #F2F2F2;

    --font:         "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

    --container:    1240px;
    --gutter:       clamp(20px, 4vw, 56px);

    /* Padrão geométrico da marca, em SVG (pequeno e tileável) */
    --pattern: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'><rect width='80' height='40' fill='%23FFCE00'/><g fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round'><path d='M0 20 L20 0 L40 20 L20 40 Z'/><path d='M40 20 L60 0 L80 20 L60 40 Z'/><path d='M10 20 L20 10 L30 20 L20 30 Z'/><path d='M50 20 L60 10 L70 20 L60 30 Z'/><path d='M20 0 L20 40'/><path d='M60 0 L60 40'/></g></svg>");
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--white);
    color: var(--gray);
    font-family: var(--font);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  .hero-portrait-wrap > img,
  .prof-photo > img,
  .post .thumb > img,
  .gallery img,
  .blog-list article .thumb-wrap img,
  .office-feature .pic img,
  .sobre-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  /* Faixa do padrão da marca — usada como assinatura visual */
  .pattern-strip {
    height: 28px;
    background-image: var(--pattern);
    background-size: 80px 40px;
    background-repeat: repeat-x;
    background-position: center;
  }
  .pattern-strip.thin { height: 18px; background-size: 56px 28px; }

  /* ─────────────────────────────────────  HEADER */
  header.site {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
  }
  header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    gap: 32px;
  }
  .brand img { height: 75px; width: auto; display: block; }
  nav.primary {
    display: flex;
    gap: 38px;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gray);
  }
  nav.primary a {
    position: relative;
    padding: 6px 0;
    transition: color .25s;
  }
  nav.primary a:hover { color: var(--gray-dark); }
  nav.primary a::after {
    content: "";
    position: absolute; left: 50%; bottom: -2px;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width .3s ease, left .3s ease;
  }
  nav.primary a:hover::after { width: 100%; left: 0; }

  /* ── Hamburger button */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    border-radius: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    background: var(--yellow);
    color: var(--gray-dark);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: 0;
    transition: background .2s, transform .2s;
  }
  .wa-btn:hover { background: var(--yellow-deep); transform: translateY(-1px); }
  .wa-btn svg { width: 14px; height: 14px; }

  /* ─────────────────────────────────────  HERO */
  .hero {
    padding: 96px 0 0;
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
  }
  .hero-left .kicker {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-left .kicker::before {
    content: "";
    width: 36px; height: 2px;
    background: var(--yellow);
  }
  .hero h1 {
    font-weight: 200;
    font-size: clamp(44px, 6vw, 86px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    color: var(--gray-dark);
  }
  .hero h1 strong {
    display: block;
    font-weight: 600;
    color: var(--gray-dark);
  }
  .hero h1 em {
    font-style: normal;
    color: var(--yellow-deep);
    font-weight: 300;
    position: relative;
    display: inline-block;
  }
  .hero-lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray);
    max-width: 520px;
    margin: 0 0 40px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

  .btn-line {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gray-dark);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gray-soft);
    transition: color .2s, border-color .2s;
  }
  .btn-line:hover { color: var(--gray-dark); border-color: var(--yellow); }

  /* Hero portrait + yellow caption card overlap */
  .hero-portrait-wrap {
    position: relative;
    aspect-ratio: 4/5;
  }
  .hero-portrait-wrap > img { width: 100%; height: 100%; display: block; }
  .hero-caption {
    position: absolute;
    left: -28px;
    bottom: 32px;
    background: var(--yellow);
    padding: 22px 26px 26px;
    max-width: 78%;
    z-index: 2;
    box-shadow: 0 18px 48px -28px rgba(0,0,0,0.22);
  }
  .hero-caption::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 10px;
    background-image: var(--pattern);
    background-size: 48px 24px;
    background-position: center bottom;
    background-repeat: repeat-x;
  }
  .hero-caption .hc-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.75;
  }
  .hero-caption h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.18;
    margin: 0 0 4px;
    color: var(--gray-dark);
    letter-spacing: -0.005em;
  }
  .hero-caption h3 span {
    display: block;
    font-weight: 300;
    font-size: 14px;
    color: var(--gray-dark);
    margin-top: 4px;
  }
  .hero-caption .crm {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(79,79,79,0.22);
    font-size: 11px;
    color: var(--gray-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  /* faixa de padrão depois do hero */
  .hero-divider { margin-top: 110px; }

  /* ─────────────────────────────────────  SECTION GENÉRICO */
  section.section { padding: 120px 0; }
  section.section.tight { padding: 96px 0; }

  .section-head { max-width: 760px; margin-bottom: 64px; }
  .section-head .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 500;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-head .eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    background: var(--yellow);
  }
  .section-head h2 {
    font-weight: 200;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--gray-dark);
  }
  .section-head h2 strong { font-weight: 600; }
  .section-head h2 em {
    font-style: normal;
    color: var(--yellow-deep);
    font-weight: 300;
  }
  .section-head p {
    margin: 22px 0 0;
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    max-width: 640px;
  }

  /* ─────────────────────────────────────  A PROFISSIONAL */
  .prof {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .prof-photo {
    aspect-ratio: 4/5;
    background: var(--gray-pale);
    position: relative;
    overflow: hidden;
  }
  .prof-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg,
        rgba(110,110,110,0.06) 0 1px,
        transparent 1px 18px);
  }
  .prof-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
  .prof-photo .corner {
    position: absolute;
    width: 32px; height: 4px;
    background: var(--yellow);
    z-index: 3;
  }
  .prof-photo .corner.tl { top: -2px; left: 24px; height: 4px; }
  .prof-photo .corner.br { bottom: -2px; right: 24px; height: 4px; }

  .prof-bio .lead {
    font-size: 22px;
    line-height: 1.45;
    color: var(--gray-dark);
    font-weight: 300;
    margin: 0 0 28px;
    letter-spacing: -0.005em;
  }
  .prof-bio .lead strong { font-weight: 500; color: var(--gray-dark); }
  .prof-bio p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.75;
    margin: 0 0 20px;
    font-weight: 300;
  }

  .creds-list {
    list-style: none;
    padding: 0; margin: 36px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 40px;
  }
  .creds-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--gray);
    font-weight: 400;
  }
  .creds-list li::before {
    content: "";
    margin-top: 8px;
    width: 8px; height: 8px;
    background: var(--yellow);
    transform: rotate(45deg);
    align-self: start;
  }
  .creds-list li strong { color: var(--gray-dark); font-weight: 600; }

  .prof-links {
    display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
  }

  /* ─────────────────────────────────────  SERVIÇOS (split white + yellow) */
  .serv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
  }
  .serv-card {
    padding: 56px 48px;
    background: var(--white);
    position: relative;
  }
  .serv-card.yellow {
    background: var(--yellow);
    color: var(--gray-dark);
  }
  .serv-card .tag {
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 600;
    margin-bottom: 28px;
  }
  .serv-card.yellow .tag { color: var(--gray-dark); opacity: 0.65; }
  .serv-card h3 {
    font-weight: 200;
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 28px;
    color: var(--gray-dark);
    letter-spacing: -0.01em;
  }
  .serv-card h3 strong { font-weight: 600; }
  .serv-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    font-weight: 300;
    margin: 0 0 16px;
  }
  .serv-card.yellow p { color: var(--gray-dark); }
  .serv-card .tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
  }
  .serv-card.yellow .tags { border-top-color: rgba(79,79,79,0.18); }
  .serv-card .tags span {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-pale);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-dark);
    font-weight: 500;
  }
  .serv-card.yellow .tags span {
    background: rgba(255,255,255,0.55);
    color: var(--gray-dark);
  }

  .serv-note {
    margin-top: 36px;
    font-size: 13px;
    color: var(--gray-soft);
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .serv-note strong { color: var(--gray-dark); font-weight: 600; }

  /* ─────────────────────────────────────  INDICAÇÕES — listas limpas */
  .indic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 56px;
  }
  .indic-block .label {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .indic-block h4 {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 22px;
    color: var(--gray-dark);
    letter-spacing: -0.005em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
  }
  .indic-block h4 strong { font-weight: 600; }
  .indic-block ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .indic-block ul li {
    font-size: 14.5px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.6;
  }

  /* Galeria do espaço */
  .gallery {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .gallery .g-tall {
    aspect-ratio: 3/4;
    position: relative;
  }
  .gallery .g-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
  }
  .gallery .g-cell {
    aspect-ratio: 16/9;
    position: relative;
  }
  .gallery .g-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .gallery .g-bottom .g-cell { aspect-ratio: 16/9; }
  .gallery img { width: 100%; height: 100%; display: block; }


  .office {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
  .office-info {
    background: var(--yellow);
    padding: 56px 48px;
    color: var(--gray-dark);
    position: relative;
  }
  .office-info::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 14px;
    background-image: var(--pattern);
    background-size: 56px 28px;
    background-position: center bottom;
    background-repeat: repeat-x;
  }
  .office-info .title {
    font-weight: 300;
    font-size: 32px;
    color: var(--gray-dark);
    line-height: 1.15;
    margin: 0 0 36px;
    letter-spacing: -0.01em;
  }
  .office-info .title strong { font-weight: 600; }
  .office-info .row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(79,79,79,0.2);
    align-items: start;
  }
  .office-info .row:last-of-type { padding-bottom: 26px; }
  .office-info .row .ic {
    width: 30px; height: 30px;
    background: var(--gray-dark);
    color: var(--yellow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .office-info .row .ic svg { width: 14px; height: 14px; }
  .office-info .row .label {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 2px;
  }
  .office-info .row .val {
    font-size: 15.5px;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.45;
  }
  .office-info .row a.val:hover { text-decoration: underline; }

  .office-map {
    background:
      linear-gradient(var(--rule-soft) 1px, transparent 1px) 0 0 / 100% 36px,
      linear-gradient(90deg, var(--rule-soft) 1px, transparent 1px) 0 0 / 36px 100%,
      var(--white);
    position: relative;
    min-height: 480px;
    border: 1px solid var(--rule);
    border-left: 0;
  }
  .office-map .pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px;
    background: var(--gray-dark);
    border: 3px solid var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255,206,0,0.25);
  }
  .office-map .pin::after {
    content: "";
    position: absolute;
    width: 36px; height: 36px;
    border: 1px solid var(--yellow);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2.5s infinite;
  }
  @keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
  }
  .office-map .map-label {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 18px;
    border: 1px solid var(--rule);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
  }

  /* ─────────────────────────────────────  BLOG */
  .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .post {
    display: flex; flex-direction: column;
    gap: 18px;
    cursor: pointer;
  }
  .post .thumb {
    aspect-ratio: 16/10;
    background: var(--gray-pale);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease;
  }
  .post:hover .thumb { transform: translateY(-3px); }
  .post .thumb::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg,
      rgba(110,110,110,0.06) 0 1px,
      transparent 1px 16px);
  }
  .post .thumb::after {
    content: "[ IMAGEM DO ARTIGO ]";
    position: absolute;
    inset: 50% 0 auto 0;
    transform: translateY(-50%);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--gray-soft);
  }
  .post .thumb > img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
  .post .thumb .pin-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--yellow);
    color: var(--gray-dark);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    z-index: 3;
  }
  .post .meta {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 500;
  }
  .post h4 {
    font-weight: 400;
    font-size: 21px;
    line-height: 1.25;
    margin: 0;
    color: var(--gray-dark);
    letter-spacing: -0.005em;
  }
  .post:hover h4 { color: var(--gray); }
  .post .read {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-dark);
    font-weight: 600;
    display: inline-flex; gap: 8px;
  }
  .post .read::after {
    content: "→";
    transition: transform .25s;
  }
  .post:hover .read::after { transform: translateX(4px); }

  /* ─────────────────────────────────────  CONTACT */
  .contact-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .contact-side .big {
    font-weight: 200;
    font-size: 38px;
    line-height: 1.15;
    color: var(--gray-dark);
    margin: 0 0 32px;
    letter-spacing: -0.015em;
  }
  .contact-side .big strong { font-weight: 600; }
  .contact-side .big em { font-style: normal; color: var(--yellow-deep); font-weight: 300; }
  .contact-side .item {
    padding: 20px 0;
    border-top: 1px solid var(--rule);
  }
  .contact-side .item:last-child { border-bottom: 1px solid var(--rule); }
  .contact-side .item .l {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .contact-side .item .v { font-size: 15px; color: var(--gray-dark); font-weight: 500; }
  .contact-side .item .v a:hover { color: var(--yellow-deep); }

  form.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  form.contact-form .full { grid-column: 1 / -1; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 600;
  }
  .field input, .field textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
    color: var(--gray-dark);
    font: inherit;
    font-size: 15.5px;
    transition: border-color .25s;
    font-family: var(--font);
  }
  .field input:focus, .field textarea:focus {
    outline: none;
    border-bottom-color: var(--yellow);
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .submit {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 14px 28px;
    background: var(--yellow);
    color: var(--gray-dark);
    border: 0;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background .2s, transform .2s;
    margin-top: 8px;
  }
  .submit:hover { background: var(--yellow-deep); transform: translateY(-1px); }

  /* ─────────────────────────────────────  FOOTER — UMA LINHA */
  footer.site {
    border-top: 1px solid var(--rule);
    padding: 24px 0;
    font-size: 12px;
    color: var(--gray-soft);
    background: var(--white);
  }
  footer.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  footer.site .left {
    display: flex; align-items: center; gap: 12px;
  }
  footer.site .dot {
    width: 6px; height: 6px;
    background: var(--yellow);
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  footer.site .right {
    display: flex; align-items: center; gap: 24px;
  }
  footer.site a:hover { color: var(--gray-dark); }

  /* ─────────────────────────────────────  RESPONSIVE */
  @media (max-width: 980px) {
    .gallery { grid-template-columns: 1fr; gap: 16px; }
    .hero { padding-top: 64px; }
    .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
    .prof, .office, .contact-block { grid-template-columns: 1fr; gap: 48px; }
    .serv-split { grid-template-columns: 1fr; }
    .indic { grid-template-columns: 1fr 1fr; gap: 36px; }
    .posts { grid-template-columns: 1fr; }
    section.section { padding: 80px 0; }
    .creds-list { grid-template-columns: 1fr; }
    .office-map { border-left: 1px solid var(--rule); min-height: 360px; }
    .office-info { padding: 40px 32px; }
    .hero-divider { margin-top: 80px; }
    /* ── Header mobile layout */
    header.site .brand { flex: 1; }
    .nav-toggle { display: flex; }
    /* ── Mobile nav como overlay fixo — header não se move */
    nav.primary { display: none; }
    nav.primary a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(79,79,79,0.08);
      font-size: 15px;
      letter-spacing: 0.05em;
    }
    nav.primary a::after { display: none; }
    body.nav-open nav.primary {
      display: flex;
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: var(--white);
      border-bottom: 1px solid var(--rule);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      padding: 8px var(--gutter) 24px;
      gap: 0;
      z-index: 59;
    }
  }
  @media (max-width: 600px) {
    header.site .wrap { height: 72px; }
    .brand img { height: 52px; }
    body.nav-open nav.primary { top: 72px; }
    .wa-btn { padding: 9px 14px; font-size: 10px; }
    .indic { grid-template-columns: 1fr; }
    form.contact-form { grid-template-columns: 1fr; }
    .serv-card { padding: 40px 28px; }
    .hero h1 { font-size: 44px; }
    .hero-card { padding: 32px 28px; }
  }

/* ─────────────────────────────────────  SCROLL REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1),
              transform 1.1s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translate3d(-36px, 0, 0); }
[data-reveal="right"] { transform: translate3d(36px, 0, 0); }
[data-reveal="scale"] { transform: scale(0.965); transform-origin: center; }
[data-reveal].is-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* hero entrance — runs once on load */
.hero-left, .hero-portrait-wrap {
  animation: heroIn 1s cubic-bezier(.2,.6,.2,1) both;
}
.hero-portrait-wrap { animation-delay: .15s; }
.hero-left .kicker { animation: fadeUp .9s cubic-bezier(.2,.6,.2,1) .1s both; }
.hero-left h1 { animation: fadeUp 1s cubic-bezier(.2,.6,.2,1) .2s both; }
.hero-lede { animation: fadeUp 1s cubic-bezier(.2,.6,.2,1) .35s both; }
.hero-actions { animation: fadeUp 1s cubic-bezier(.2,.6,.2,1) .5s both; }
.hero-caption { animation: captionIn 1s cubic-bezier(.2,.6,.2,1) .7s both; }
@keyframes heroIn {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes captionIn {
  from { opacity: 0; transform: translate3d(-18px, 18px, 0); }
  to { opacity: 1; transform: none; }
}
.hero-left, .hero-portrait-wrap,
.hero-left .kicker, .hero-left h1, .hero-lede,
.hero-actions, .hero-caption { opacity: 0; }

/* nav active state */
nav.primary a.is-active { color: var(--gray-dark); font-weight: 600; }
nav.primary a.is-active::after { width: 100%; left: 0; }

/* ─────────────────────────────────────  SEO BAND  ───────────── */
.seo-band {
  background: var(--gray-pale);
  border-top: 1px solid var(--rule);
  padding: 84px 0 72px;
  text-align: center;
  position: relative;
}
.seo-band::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: var(--yellow);
}
.seo-band .seo-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.seo-band .seo-eyebrow::before,
.seo-band .seo-eyebrow::after {
  content: "";
  width: 18px; height: 1px;
  background: var(--gray-soft);
  opacity: 0.5;
}
.seo-band h3 {
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  color: var(--gray-dark);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  max-width: 740px;
  margin-left: auto; margin-right: auto;
}
.seo-band h3 strong { font-weight: 600; }
.seo-band h3 em { font-style: normal; color: var(--yellow-deep); font-weight: 300; }
.seo-band p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.seo-band .seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  padding: 14px 26px;
  color: var(--gray-dark);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.seo-band .seo-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.seo-band .seo-cta svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────  PAGE HERO  (subpages) */
.page-hero {
  padding: 110px 0 80px;
  background: var(--white);
  position: relative;
}
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 500;
  margin-bottom: 32px;
}
.page-hero .breadcrumb a:hover { color: var(--gray-dark); }
.page-hero .breadcrumb .sep { opacity: 0.5; }
.page-hero .breadcrumb .current { color: var(--gray-dark); font-weight: 600; }
.page-hero h1 {
  font-weight: 200;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--gray-dark);
  max-width: 920px;
}
.page-hero h1 strong { font-weight: 600; }
.page-hero h1 em { font-style: normal; color: var(--yellow-deep); font-weight: 300; }
.page-hero p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  max-width: 640px;
  margin: 0;
}
.page-hero .ph-stripe {
  position: absolute !important;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background-image: var(--pattern);
  background-size: 56px 28px;
  background-repeat: repeat-x;
  background-position: center;
}

/* ─────────────────────────────────────  AREAS (Serviços page) */
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 56px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 44px 40px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.area-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.area-card .area-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--yellow);
  margin-bottom: 24px;
}
.area-card h3 {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.18;
  margin: 0 0 18px;
  color: var(--gray-dark);
  letter-spacing: -0.005em;
}
.area-card h3 strong { font-weight: 600; }
.area-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* ─────────────────────────────────────  SERVIÇOS LIST (Serviços page) */
.serv-list {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.serv-list li {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.serv-list li:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--rule); }
.serv-list li:nth-child(even) { padding-left: 36px; }
.serv-list li .ord {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--yellow-deep);
  font-weight: 600;
  padding-top: 4px;
}
.serv-list li .txt {
  font-size: 15px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.55;
}
.serv-list li .txt strong { color: var(--gray-dark); font-weight: 600; display: block; margin-bottom: 4px; }

/* ─────────────────────────────────────  POST INTERNO (artigo completo) */
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.post-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-dark);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
}
.post-meta-info {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 500;
}
.post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 0 100px;
}
.post-featured-img {
  margin: 0 0 48px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 26px;
  font-weight: 300;
}
.post-body h2 {
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  color: var(--gray-dark);
  margin: 56px 0 22px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  letter-spacing: -0.01em;
}
.post-body h2 strong { font-weight: 600; }
.post-body blockquote {
  border-left: 3px solid var(--yellow);
  margin: 36px 0;
  padding: 20px 28px;
  background: var(--gray-pale);
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-dark);
  font-weight: 300;
  font-style: italic;
}
.post-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-body ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  align-items: start;
}
.post-body ul li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
  margin-top: 9px;
  flex-shrink: 0;
}
.post-body .reasons {
  list-style: none;
  padding: 0;
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: reasons;
}
.post-body .reasons li {
  counter-increment: reasons;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.post-body .reasons li::before {
  content: counter(reasons, decimal-leading-zero);
  font-size: 28px;
  font-weight: 200;
  color: var(--yellow-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}
.post-body .reasons li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.post-body .reasons li span {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}
.post-body strong { color: var(--gray-dark); font-weight: 600; }
.post-source {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--gray-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.post-cta {
  background: var(--yellow);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
}
.post-cta-text {
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.post-cta-text strong { font-weight: 600; }
.post-nav {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.post-nav a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}
.post-nav a:hover { color: var(--yellow-deep); }
@media (max-width: 980px) {
  .post-body { padding: 48px 0 72px; }
  .post-cta { padding: 40px 28px; }
}

/* ─────────────────────────────────────  BLOG LIST (Blog page) */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.blog-list article {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.blog-list article .thumb-wrap {
  aspect-ratio: 4/3;
  position: relative;
}
.blog-list article .thumb-wrap img { width: 100%; height: 100%; display: block; }
.blog-list article .badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.blog-list article h3 {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--gray-dark);
  letter-spacing: -0.005em;
}
.blog-list article p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 14px;
  font-weight: 300;
  max-width: 560px;
}
.blog-list article .meta-row {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 500;
}
.blog-list article .arrow-cta {
  width: 56px; height: 56px;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-dark);
  font-size: 18px;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.blog-list article:hover .arrow-cta {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateX(4px);
}

/* ─────────────────────────────────────  CONSULTÓRIO PAGE  */
.office-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.office-feature .pic {
  aspect-ratio: 4/3;
  position: relative;
}
.office-feature .pic img { width: 100%; height: 100%; display: block; }
.office-feature h2 {
  font-weight: 200;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--gray-dark);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.office-feature h2 strong { font-weight: 600; }
.office-feature h2 em { font-style: normal; color: var(--yellow-deep); font-weight: 300; }
.office-feature p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 18px;
}

.office-points {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: grid; gap: 14px;
}
.office-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  font-size: 14.5px;
  color: var(--gray);
  align-items: start;
}
.office-points li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
  margin-top: 9px;
}

/* iframe map */
.gmaps-frame {
  width: 100%;
  height: 480px;
  border: 1px solid var(--rule);
  display: block;
}

/* INDICAÇÕES page extras */
.indic-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 740px;
  margin: 0 0 64px;
}
.indic-intro strong { color: var(--gray-dark); font-weight: 500; }

/* responsiveness for new components */
@media (max-width: 980px) {
  .areas, .office-feature { grid-template-columns: 1fr; gap: 32px; }
  .serv-list { grid-template-columns: 1fr; }
  .serv-list li:nth-child(odd) { border-right: 0; padding-right: 0; }
  .serv-list li:nth-child(even) { padding-left: 0; }
  .blog-list article { grid-template-columns: 1fr; gap: 20px; }
  .blog-list article .arrow-cta { justify-self: start; }
  .page-hero { padding: 80px 0 56px; }
}


/* ─────────────────────────────────────  SOBRE PAGE  */
.sobre-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.sobre-photo {
  position: relative;
  aspect-ratio: 3/4;
}
.sobre-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; z-index: 1;
}
.sobre-photo .corner {
  position: absolute;
  width: 40px; height: 4px;
  background: var(--yellow);
  z-index: 3;
}
.sobre-photo .corner.tl { top: -2px; left: 24px; }
.sobre-photo .corner.br { bottom: -2px; right: 24px; }
.sobre-photo-tag {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--yellow);
  padding: 18px 22px 24px;
  z-index: 4;
  max-width: 78%;
  box-shadow: 0 18px 48px -28px rgba(0,0,0,0.22);
}
.sobre-photo-tag::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background-image: var(--pattern);
  background-size: 48px 24px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
.sobre-photo-tag .t-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-dark);
  opacity: 0.7;
  margin-bottom: 6px;
}
.sobre-photo-tag .t-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}
.sobre-photo-tag .t-crm {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  padding-top: 8px;
  border-top: 1px solid rgba(79,79,79,0.22);
}

.eyebrow-line {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 500;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line .bar {
  width: 28px; height: 2px;
  background: var(--yellow);
}

.sobre-text h2 {
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  color: var(--gray-dark);
  margin: 0 0 32px;
  letter-spacing: -0.015em;
}
.sobre-text h2 strong { font-weight: 600; }
.sobre-text h2 em { font-style: normal; color: var(--yellow-deep); font-weight: 300; }
.sobre-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 18px;
}
.sobre-text p strong { color: var(--gray-dark); font-weight: 500; }
.sobre-links {
  display: flex; gap: 32px; margin-top: 28px;
  flex-wrap: wrap;
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  counter-reset: tl;
}
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  counter-increment: tl;
}
.timeline li .t-year {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 600;
  padding-top: 18px;
  border-top: 2px solid var(--yellow);
  position: relative;
}
.timeline li .t-year::before {
  content: counter(tl, decimal-leading-zero);
  display: block;
  font-size: 28px;
  font-weight: 200;
  color: var(--gray-dark);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.timeline li .t-card {
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.timeline li .t-card h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--gray-dark);
}
.timeline li .t-card .t-org {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 8px;
}
.timeline li .t-card .t-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-soft);
  font-weight: 500;
}

/* Filiações */
.filia {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.filia-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: border-color .25s, transform .25s;
}
.filia-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.filia-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 5px 10px;
  background: var(--yellow);
  margin-bottom: 18px;
}
.filia-name {
  font-size: 17px;
  line-height: 1.3;
  color: var(--gray-dark);
  font-weight: 400;
}

/* Pull quote — seção com foto de fundo */
.pq-bg {
  position: relative;
  background:
    linear-gradient(
      160deg,
      rgba(79,79,79,0.90) 0%,
      rgba(79,79,79,0.78) 50%,
      rgba(79,79,79,0.93) 100%
    ),
    url('mariana-almeida.webp') center 18% / cover no-repeat;
}

/* Pull quote */
.pull-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  color: #FFFFFF;
}
.pull-quote .pq-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 0.7;
  color: var(--yellow);
  margin-bottom: 24px;
  display: block;
}
.pull-quote p {
  font-weight: 200;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.32;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin: 0 0 36px;
}
.pull-quote p em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 300;
}
.pull-quote .pq-author {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  display: inline-flex; gap: 14px; align-items: center;
}
.pull-quote .pq-author .line {
  width: 28px; height: 1px;
  background: var(--yellow);
  display: inline-block;
}

@media (max-width: 980px) {
  .sobre-intro { grid-template-columns: 1fr; gap: 48px; }
  .sobre-photo-tag { right: 12px; bottom: -20px; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .filia { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sobre-photo-tag { right: 0; left: 12px; max-width: calc(100% - 24px); }
}


/* ─────────────────────────────────────  PAGE HERO with aesthetic bg image */
.page-hero.has-bg {
  position: relative;
  overflow: hidden;
  padding: 130px 0 96px;
}
.page-hero.has-bg .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: grayscale(0.5) contrast(0.92);
  z-index: 0;
  pointer-events: none;
}
.page-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.82) 0%,
      rgba(255,255,255,0.72) 45%,
      rgba(255,255,255,0.90) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero.has-bg > .wrap,
.page-hero.has-bg > .ph-stripe { position: relative; z-index: 2; }
.page-hero.has-bg .ph-photo-credit {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-soft);
  opacity: 0.7;
  z-index: 3;
}

/* ─────────────────────────────────────  IMAGE BREAKER (full-bleed) */
.image-breaker {
  position: relative;
  height: clamp(360px, 48vw, 560px);
  overflow: hidden;
  background: var(--gray-pale);
}
.image-breaker .ib-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) contrast(0.95);
}
.image-breaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(79,79,79,0.45) 0%,
      rgba(79,79,79,0.25) 50%,
      rgba(79,79,79,0.55) 100%);
}
.image-breaker .ib-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter);
  color: #FFFFFF;
}
.image-breaker .ib-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.image-breaker .ib-eyebrow::before,
.image-breaker .ib-eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--yellow);
}
.image-breaker h3 {
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  max-width: 880px;
}
.image-breaker h3 strong { font-weight: 600; }
.image-breaker h3 em { font-style: normal; color: var(--yellow); font-weight: 300; }
.image-breaker p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  margin: 0;
  max-width: 560px;
}

/* ─────────────────────────────────────  CONTACT CTA (sem formulário) */
.contact-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--rule);
}
.contact-cta .cc-main {
  padding: 64px 56px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-cta .cc-main .cc-tag {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.contact-cta .cc-main .cc-tag::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--yellow);
}
.contact-cta .cc-main .cc-phone {
  font-weight: 200;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  color: var(--gray-dark);
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.contact-cta .cc-main .cc-phone strong { font-weight: 600; }
.contact-cta .cc-main p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  max-width: 460px;
  margin: 0 0 32px;
}
.contact-cta .cc-main .cc-buttons {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.contact-cta .cc-main .cc-buttons .wa-btn {
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.contact-cta .cc-main .cc-buttons .wa-btn svg { width: 16px; height: 16px; }

.contact-cta .cc-side {
  background: var(--yellow);
  padding: 56px 44px;
  color: var(--gray-dark);
  position: relative;
}
.contact-cta .cc-side::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 14px;
  background-image: var(--pattern);
  background-size: 56px 28px;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.contact-cta .cc-side .cc-side-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 22px;
}
.contact-cta .cc-side .cc-side-title {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--gray-dark);
  letter-spacing: -0.005em;
}
.contact-cta .cc-side .cc-side-title strong { font-weight: 600; }
.contact-cta .cc-side .cc-row {
  padding: 14px 0;
  border-top: 1px solid rgba(79,79,79,0.22);
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.5;
}
.contact-cta .cc-side .cc-row:last-of-type { padding-bottom: 22px; }
.contact-cta .cc-side .cc-row .l {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-cta .cc-side .cc-row .v {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-dark);
}
.contact-cta .cc-side .cc-row a.v:hover { text-decoration: underline; }
.contact-cta .cc-side .cc-socials {
  margin-top: 8px;
  display: flex; gap: 14px;
}

@media (max-width: 980px) {
  .contact-cta { grid-template-columns: 1fr; }
  .contact-cta .cc-main { padding: 48px 32px; }
  .contact-cta .cc-side { padding: 40px 32px; }
  .page-hero.has-bg { padding: 96px 0 72px; }
}


/* ── FIX: phone display in .contact-cta (reduzido e sem quebra) ── */
.contact-cta .cc-main .cc-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  line-height: 1.05 !important;
  color: var(--gray-dark);
  letter-spacing: -0.015em;
  margin: 0 0 22px !important;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s;
}
.contact-cta .cc-main .cc-phone:hover { color: var(--yellow-deep); }
.contact-cta .cc-main .cc-phone .dial {
  font-size: 0.65em;
  color: var(--gray-soft);
  font-weight: 300;
  letter-spacing: 0;
}
.contact-cta .cc-main .cc-phone strong { font-weight: 600; }

@media (max-width: 600px) {
  .contact-cta .cc-main .cc-phone { font-size: 30px !important; }
}

/* ─────────────────────────────────────  QUOTE BAND (substitui image-breaker) */
.quote-band {
  position: relative;
  background:
    linear-gradient(
      160deg,
      rgba(79,79,79,0.90) 0%,
      rgba(79,79,79,0.78) 50%,
      rgba(79,79,79,0.93) 100%
    ),
    url('mariana-almeida.webp') center 18% / cover no-repeat;
  color: #FFFFFF;
  padding: 110px 0 100px;
  text-align: center;
  overflow: hidden;
}
.quote-band .qb-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background-image: var(--pattern);
  background-size: 56px 28px;
  background-position: center;
  background-repeat: repeat-x;
}
.quote-band .qb-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote-band .qb-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  transform: rotate(45deg);
  display: inline-block;
}
.quote-band .qb-text {
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.18;
  margin: 0 0 28px;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.quote-band .qb-text strong { font-weight: 600; }
.quote-band .qb-text em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 300;
}
.quote-band .qb-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .quote-band { padding: 80px 0 70px; }
}

/* ─────────────────────────────────────  BOTÃO FLUTUANTE WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}
.wa-float .waf-label {
  background: #128C7E;
  color: #ffffff;
  font-family: var(--font);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 18px 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  box-shadow: 0 8px 28px -8px rgba(0,0,0,0.28);
}
.wa-float:hover .waf-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-float .waf-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s, transform .2s;
  box-shadow: 0 8px 28px -8px rgba(0,0,0,0.32);
  border-radius: 50%;
}
.wa-float .waf-btn svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.wa-float .waf-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.6s ease-out infinite;
  z-index: 0;
}
.wa-float:hover .waf-btn {
  background: #1da851;
  transform: translateY(-2px);
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  65% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float .waf-label { display: none; }
  .wa-float .waf-btn { width: 52px; height: 52px; }
}
