*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a1628;
      --blue:   #16376e;
      --mid:    #1d4fa0;
      --sky:    #e8f0fe;
      --gold:   #b8952a;
      --white:  #ffffff;
      --off:    #f7f9fc;
      --line:   #e4e9f0;
      --text:   #111827;
      --muted:  #6b7280;
      --light:  #9ca3af;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── UTILS ─── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

    /* ─── NAVBAR ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .35s, box-shadow .35s, transform .35s;
}
header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(10,22,40,.08);
}
nav {
  max-width: 1140px; margin: 0 auto;
  padding: 0 2rem; height: 92px;
  display: flex; align-items: center; justify-content: space-between;
  transition: height .35s, padding .35s, background .35s, border-color .35s, box-shadow .35s, margin-top .35s;
}
    .logo {
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0;
    }
    .logo img { height: 64px; object-fit: contain; }
    .logo-white img { filter: brightness(0) invert(1); }

    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500; letter-spacing: .02em;
      text-decoration: none; transition: color .2s;
    }
header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.8); }
header:not(.scrolled) .nav-links a:hover { color: #fff; }
header.scrolled .nav-links a { color: var(--muted); }
header.scrolled .nav-links a:hover { color: var(--navy); }
header.scrolled nav {
  height: 78px;
  margin-top: 0.7rem;
  padding: 0 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
header.scrolled .logo img { height: 56px; }
header.scrolled .nav-links {
  gap: 2rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245,248,252,.95), rgba(238,243,249,.95));
  box-shadow: inset 0 0 0 1px rgba(10,22,40,.05);
}
header.scrolled .nav-links a {
  position: relative;
  color: #5c687d;
  font-weight: 600;
}
header.scrolled .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(22,55,110,.9));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
header.scrolled .nav-links a:hover::after { transform: scaleX(1); }

    .btn-nav {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.55rem 1.2rem; border-radius: 6px;
      font-size: 0.85rem; font-weight: 600; text-decoration: none;
      transition: all .2s;
    }
    header:not(.scrolled) .btn-nav {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
    }
    header:not(.scrolled) .btn-nav:hover { background: rgba(255,255,255,.25); }
header.scrolled .btn-nav {
  background: linear-gradient(135deg, #2bdc6d, #20bc5a);
  color: #fff;
  border: 1px solid rgba(16,122,55,.12);
  border-radius: 999px;
  padding: 0.78rem 1.45rem;
  box-shadow: 0 12px 24px rgba(37,211,102,.22);
}
header.scrolled .btn-nav:hover {
  background: linear-gradient(135deg, #30e576, #1faf55);
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(37,211,102,.28);
}

    /* ─── HERO ─── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      background: var(--navy);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80');
      background-size: cover; background-position: center;
      opacity: .18;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(110deg, rgba(10,22,40,.98) 40%, rgba(22,55,110,.7) 100%);
    }
    /* subtle grid texture */
    .hero-grid {
      position: absolute; inset: 0; opacity: .04;
      background-image:
        linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* gold accent line */
    .hero-line {
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    }

    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1140px; margin: 0 auto; padding: 8rem 2rem 5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .hero-eyebrow-line {
      width: 32px; height: 1px; background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--gold);
    }
    .hero-inner h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 600; line-height: 1.08;
      color: var(--white);
      max-width: 780px;
      margin-bottom: 1.75rem;
    }
    .hero-inner h1 em {
      font-style: italic;
      color: rgba(255,255,255,.55);
    }
    .hero-desc {
      color: rgba(255,255,255,.55);
      font-size: 1.05rem; line-height: 1.8;
      max-width: 520px; margin-bottom: 3rem;
      font-weight: 300;
    }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--gold); color: var(--white);
      padding: 1rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 600;
      text-decoration: none; letter-spacing: .02em;
      transition: background .2s, transform .15s;
    }
    .btn-gold:hover { background: #a67f22; transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.6rem;
      border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
      padding: 1rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 500;
      text-decoration: none;
      transition: border-color .2s, color .2s, background .2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.05); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,.35); font-size: 0.7rem; letter-spacing: .1em;
      text-transform: uppercase; cursor: default;
    }
    .hero-scroll-bar {
      width: 1px; height: 48px;
      background: linear-gradient(180deg, rgba(255,255,255,.25), transparent);
    }

    /* ─── STATS STRIP ─── */
    #stats {
      background: var(--blue);
      padding: 0;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      position: relative;
      padding: 2.7rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0) 60%);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      width: 44px; height: 2px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(184,149,42,.95), transparent);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 4vw, 4rem); font-weight: 700;
      color: var(--white); line-height: 1;
      text-shadow: 0 10px 24px rgba(0,0,0,.18);
    }
    .stat-label {
      font-size: 0.82rem; color: rgba(255,255,255,.72);
      margin-top: 0.55rem; letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* ─── SECTION HEADER ─── */
    .sec-header { margin-bottom: 4rem; }
    .sec-header.center { text-align: center; }
    .sec-eyebrow {
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .sec-header.center .sec-eyebrow { justify-content: center; }
    .sec-eyebrow-line { width: 24px; height: 1px; background: var(--gold); }
    .sec-eyebrow span {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--gold);
    }
    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 600; line-height: 1.2;
      color: var(--navy);
    }
    .sec-sub {
      color: #69758a; font-size: 1.02rem;
      line-height: 1.8; max-width: 620px;
      margin-top: 1rem; font-weight: 400;
    }
    .sec-header.center .sec-sub { margin-left: auto; margin-right: auto; }

    /* ─── PILARES ─── */
    #pilares { padding: 6rem 2rem; background: var(--white); }
    .pilares-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
      background: var(--line); border: 1px solid var(--line);
      border-radius: 18px; overflow: hidden;
      box-shadow: 0 24px 60px rgba(10,22,40,.08);
    }
    .pilar {
      position: relative;
      background:
        radial-gradient(circle at top left, rgba(232,240,254,.8), transparent 38%),
        linear-gradient(180deg, #ffffff, #f8fbff);
      padding: 2.75rem 2rem 2.5rem;
      transition: transform .22s, box-shadow .22s, background .22s;
    }
    .pilar:hover {
      background:
        radial-gradient(circle at top left, rgba(184,149,42,.12), transparent 38%),
        linear-gradient(180deg, #ffffff, #f4f8ff);
      transform: translateY(-6px);
      box-shadow: inset 0 0 0 1px rgba(29,79,160,.08);
    }
    .pilar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), rgba(22,55,110,.85));
      opacity: .9;
    }
    .pilar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 700;
      color: #d8e4fb; line-height: 1;
      margin-bottom: 1.4rem;
    }
    .pilar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.85rem;
      line-height: 1.12;
      letter-spacing: -.01em;
    }
    .pilar p {
      color: #59657b; font-size: 1rem;
      line-height: 1.8; font-weight: 400;
    }

    /* ─── PROCESSO ─── */
    #processo { padding: 6rem 2rem; background: var(--off); }
    .processo-steps {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1.25rem;
    }
    .step {
      position: relative;
      padding: 2.2rem 1.6rem 2rem;
      border-right: none;
      border: 1px solid #e2e8f2;
      border-radius: 18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,253,.96)),
        var(--white);
      box-shadow: 0 18px 40px rgba(15,30,55,.05);
      overflow: hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
    }
    .step:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 52px rgba(15,30,55,.09);
      border-color: rgba(184,149,42,.35);
    }
    .step::before {
      content: '';
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, var(--gold), rgba(22,55,110,.85));
    }
    .step:last-child { padding-right: 1.6rem; }
    .step:not(:first-child) { padding-left: 1.6rem; }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.6rem; font-weight: 700;
      color: #d6e1f3; line-height: 1;
      margin-bottom: 1.15rem;
    }
    .step-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 0.7rem;
      text-transform: uppercase; letter-spacing: .08em;
    }
    .step p { color: #5d6a80; font-size: 0.98rem; line-height: 1.8; font-weight: 400; }

    /* ─── ÁREAS ─── */
    #areas { padding: 6rem 2rem; background: var(--navy); }
    #areas .sec-title { color: var(--white); }
    #areas .sec-sub { color: rgba(255,255,255,.4); }

    .areas-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 8px; overflow: hidden;
    }
    .area {
      background: var(--navy);
      padding: 2rem 1.75rem;
      display: flex; gap: 1rem; align-items: flex-start;
      transition: background .2s;
      cursor: default;
    }
    .area:hover { background: rgba(255,255,255,.04); }
    .area-icon {
      font-size: 1.4rem;
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(255,255,255,.06);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
    }
    .area h4 {
      font-size: 0.9rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.35rem;
    }
    .area p { color: rgba(255,255,255,.38); font-size: 0.8rem; line-height: 1.55; font-weight: 300; }

    /* ─── SOBRE ─── */
    #sobre { padding: 7rem 2rem; background: var(--white); }
    .sobre-wrap {
      display: grid; grid-template-columns: 5fr 6fr;
      gap: 6rem; align-items: center;
    }
    .sobre-img-wrap { position: relative; }
    .sobre-img-frame {
      aspect-ratio: 3/4;
      background: var(--sky);
      border-radius: 4px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .sobre-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1; }
    .sobre-accent-box {
      position: absolute;
      bottom: -24px; right: -24px;
      width: 120px; height: 120px;
      background: var(--gold); opacity: .12;
      border-radius: 4px; z-index: -1;
    }
    .sobre-accent-line {
      position: absolute; top: 32px; left: -32px;
      width: 2px; height: 80px;
      background: var(--gold);
    }
    .sobre-content .sec-header { margin-bottom: 1.5rem; }
    .sobre-content p {
      color: var(--muted); line-height: 1.85;
      font-size: 0.94rem; font-weight: 300;
      margin-bottom: 0.85rem;
    }
    .sobre-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0 2.5rem; }
    .tag {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: .05em; text-transform: uppercase;
      padding: 0.4rem 0.85rem; border-radius: 2px;
      border: 1px solid var(--line); color: var(--muted);
    }
    .btn-blue {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--blue); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 4px;
      font-size: 0.875rem; font-weight: 600;
      text-decoration: none; transition: background .2s, transform .15s;
    }
    .btn-blue:hover { background: var(--mid); transform: translateY(-2px); }

    /* EQUIPE */
    #equipe { padding: 0 2rem 6.5rem; background: var(--white); }
    .equipe-lead {
      max-width: 720px;
      margin: 0 auto 3rem;
      text-align: center;
    }
    .equipe-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .membro-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,253,.98)),
        var(--white);
      box-shadow: 0 22px 50px rgba(10,22,40,.06);
      transition: transform .22s, box-shadow .22s, border-color .22s;
    }
    .membro-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(10,22,40,.1);
      border-color: rgba(184,149,42,.35);
    }
    .membro-foto {
      position: relative;
      aspect-ratio: 4 / 4.6;
      background:
        linear-gradient(135deg, rgba(10,22,40,.96), rgba(22,55,110,.88)),
        var(--navy);
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 1.5rem;
      overflow: hidden;
    }
    .membro-foto::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(184,149,42,.28), transparent 30%),
        linear-gradient(180deg, transparent, rgba(0,0,0,.22));
    }
    .membro-foto::after {
      content: '';
      position: absolute;
      right: -28px;
      top: 24px;
      width: 110px;
      height: 110px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50%;
    }
    .membro-foto img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .membro-foto { position: relative; }

    /* ─── ESCRITÓRIO FOTO ─── */
    #escritorio-foto {
      height: 420px;
      overflow: hidden;
      position: relative;
    }
    #escritorio-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    #escritorio-foto::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,22,40,.35) 0%, rgba(10,22,40,.1) 50%, rgba(10,22,40,.5) 100%);
    }
    @media (max-width: 480px) {
      #escritorio-foto { height: 260px; }
    }

    .membro-iniciais {
      position: relative;
      z-index: 1;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(3px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      box-shadow: 0 12px 28px rgba(0,0,0,.18);
    }
    .membro-conteudo { padding: 1.7rem 1.5rem 1.8rem; }
    .membro-funcao {
      display: inline-block;
      margin-bottom: 0.8rem;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .membro-conteudo h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 0.7rem;
    }
    .membro-conteudo p {
      color: #5d6a80;
      font-size: 0.98rem;
      line-height: 1.8;
      font-weight: 400;
    }

    /* ─── DEPOIMENTOS ─── */
    #depoimentos { padding: 6rem 2rem; background: var(--off); }
    .dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
    .dep-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 2rem;
      transition: box-shadow .25s;
    }
    .dep-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.06); }
    .dep-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; color: var(--line);
      line-height: 1; margin-bottom: 0.5rem;
    }
    .dep-text {
      font-size: 0.875rem; line-height: 1.75;
      color: var(--muted); font-weight: 300;
      margin-bottom: 1.5rem; font-style: italic;
    }
    .dep-divider { width: 32px; height: 1px; background: var(--gold); margin-bottom: 1.25rem; }
    .dep-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
    .dep-role { font-size: 0.75rem; color: var(--light); margin-top: 0.15rem; }

    /* ─── CTA STRIP ─── */
    #cta-strip {
      padding: 5rem 2rem;
      background: var(--blue);
      text-align: center;
    }
    #cta-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 600; color: var(--white);
      max-width: 640px; margin: 0 auto 0.75rem;
      line-height: 1.2;
    }
    #cta-strip p {
      color: rgba(255,255,255,.5); font-size: 0.95rem;
      max-width: 480px; margin: 0 auto 2.5rem; font-weight: 300;
    }
    .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
    .btn-wpp-lg {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: #25d366; color: #fff;
      padding: 1rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 600;
      text-decoration: none; transition: background .2s;
    }
    .btn-wpp-lg:hover { background: #1fba5a; }
    .btn-white-outline {
      display: inline-flex; align-items: center; gap: 0.6rem;
      border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
      padding: 1rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 500;
      text-decoration: none; transition: all .2s;
    }
    .btn-white-outline:hover { border-color: #fff; color: #fff; }

    /* ─── BLOG ─── */
    #blog { padding: 6rem 2rem; background: var(--white); }
    .blog-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
    }
    .btn-text-link {
      font-size: 0.85rem; font-weight: 600; color: var(--mid);
      text-decoration: none; border-bottom: 1px solid var(--mid);
      padding-bottom: 1px; transition: opacity .2s;
      white-space: nowrap;
    }
    .btn-text-link:hover { opacity: .7; }
    .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
    .blog-card { cursor: pointer; }
    .blog-thumb {
      aspect-ratio: 16/9;
      background: var(--sky);
      border-radius: 4px; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; margin-bottom: 1.25rem;
      transition: opacity .2s;
    }
    .blog-card:hover .blog-thumb { opacity: .85; }
    .blog-tag-pill {
      display: inline-block;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--mid); margin-bottom: 0.5rem;
    }
    .blog-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 600;
      color: var(--navy); line-height: 1.35;
      margin-bottom: 0.5rem;
    }
    .blog-card:hover h4 { color: var(--mid); }
    .blog-card p { color: var(--muted); font-size: 0.825rem; line-height: 1.6; font-weight: 300; }
    .blog-meta { margin-top: 0.85rem; font-size: 0.75rem; color: var(--light); }

    /* ─── CONTATO ─── */
    #contato { padding: 7rem 2rem; background: var(--off); }
    .contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; }
    .contato-info .sec-header { margin-bottom: 1.5rem; }
    .contato-info > p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }

    .ci-list { display: flex; flex-direction: column; gap: 1.25rem; }
    .ci-item { display: flex; gap: 1rem; align-items: flex-start; }
    .ci-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0; margin-top: 5px;
    }
    .ci-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
    .ci-item span { font-size: 0.85rem; color: var(--muted); font-weight: 300; }

    /* form */
    .form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 2.5rem; }
    form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .field { display: flex; flex-direction: column; gap: 0.35rem; }
    label { font-size: 0.75rem; font-weight: 600; color: var(--navy); letter-spacing: .03em; text-transform: uppercase; }
    input, textarea, select {
      width: 100%;
      padding: 0.75rem 0.85rem;
      border: 1px solid var(--line); border-radius: 4px;
      font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
      color: var(--text); background: var(--white);
      transition: border-color .2s, box-shadow .2s;
    }
    input:focus, textarea:focus, select:focus {
      outline: none; border-color: var(--mid);
      box-shadow: 0 0 0 3px rgba(29,79,160,.08);
    }
    textarea { min-height: 110px; resize: vertical; }
    .btn-submit {
      background: var(--blue); color: var(--white);
      padding: 0.9rem; border: none; border-radius: 4px;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
      cursor: pointer; transition: background .2s;
      width: 100%;
    }
    .btn-submit:hover { background: var(--mid); }
    .form-or { display: flex; align-items: center; gap: 1rem; }
    .form-or span { font-size: 0.75rem; color: var(--light); white-space: nowrap; }
    .form-or::before, .form-or::after {
      content: ''; flex: 1; height: 1px; background: var(--line);
    }
    .btn-wpp-form {
      display: flex; align-items: center; justify-content: center; gap: 0.6rem;
      background: #25d366; color: #fff;
      padding: 0.9rem; border-radius: 4px;
      font-size: 0.875rem; font-weight: 600; text-decoration: none;
      transition: background .2s;
    }
    .btn-wpp-form:hover { background: #1fba5a; }

    /* ─── FOOTER ─── */
    footer { background: var(--navy); padding: 5rem 2rem 2rem; }
    .footer-top {
      display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 3.5rem;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-logo img { height: 44px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1rem; }
    .footer-desc { color: rgba(255,255,255,.3); font-size: 0.8rem; line-height: 1.75; font-weight: 300; }
    .footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
    .soc {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.35); font-size: 0.75rem; font-weight: 700;
      text-decoration: none; transition: all .2s;
    }
    .soc:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h5 {
      font-size: 0.7rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.4);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-col a {
      font-size: 0.83rem; color: rgba(255,255,255,.45);
      text-decoration: none; transition: color .2s; font-weight: 300;
    }
    .footer-col a:hover { color: rgba(255,255,255,.85); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.2); font-weight: 300; }

    /* ─── FLOAT WPP ─── */
    .float-wpp {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
      width: 54px; height: 54px;
      background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .float-wpp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
    .float-wpp svg { width: 26px; height: 26px; fill: #fff; }

    /* ─── SVG WPP ─── */
    .wpp-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 4px;
      transition: background 0.2s;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    header:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.85); }
    header.scrolled .hamburger span { background: var(--navy); }

    /* ─── MOBILE NAV DRAWER ─── */
    .mobile-nav {
      position: fixed;
      top: 0; right: 0;
      width: min(300px, 82vw);
      height: 100dvh;
      background: var(--navy);
      z-index: 900;
      display: flex;
      flex-direction: column;
      transform: translateX(110%);
      transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
      overflow-y: auto;
    }
    .mobile-nav.open { transform: translateX(0); }

    .mobile-nav-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      flex-shrink: 0;
    }
    .mobile-nav-head .logo img { height: 42px; filter: brightness(0) invert(1); }

    .mobile-nav-close {
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      width: 38px; height: 38px;
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      -webkit-tap-highlight-color: transparent;
      flex-shrink: 0;
    }
    .mobile-nav-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

    .mobile-nav-links {
      list-style: none;
      padding: 0.75rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .mobile-nav-links li a {
      display: flex;
      align-items: center;
      padding: 1.05rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s, padding-left 0.2s;
      letter-spacing: 0.02em;
    }
    .mobile-nav-links li:last-child a { border-bottom: none; }
    .mobile-nav-links li a:hover { color: #fff; padding-left: 0.4rem; }

    .mobile-nav-footer {
      padding: 1.25rem 1.5rem 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      flex-shrink: 0;
    }
    .mobile-nav-wpp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      background: #25d366;
      color: #fff;
      padding: 0.95rem;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .mobile-nav-wpp:hover { background: #1fba5a; }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 850;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s;
    }
    .mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

    /* ─── RESPONSIVE 860px ─── */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .stats-inner, .pilares-grid, .processo-steps,
  .dep-grid, .blog-grid, .equipe-grid { grid-template-columns: 1fr; }
  .sobre-wrap, .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { height: 84px; }
  .logo img { height: 56px; }
  header.scrolled nav {
    height: 72px;
    margin-top: 0.55rem;
    padding: 0 1rem;
  }
  header.scrolled .logo img { height: 50px; }
  .step { padding: 1.75rem 1.35rem; }
  .step:last-child { padding-right: 1.35rem; }
  .step:not(:first-child) { padding-left: 1.35rem; }
  #equipe { padding: 0 2rem 5rem; }
  .sobre-accent-line { display: none; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

    /* ─── RESPONSIVE 480px ─── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  nav { height: 72px; padding: 0 1.25rem; }
  .logo img { height: 48px; }
  .btn-nav { display: none; }

  /* Centralização de cabeçalhos de seção */
  .sec-header { text-align: center; margin-bottom: 2.5rem; }
  .sec-header .sec-eyebrow { justify-content: center; }
  .sec-header .sec-sub { margin-left: auto; margin-right: auto; }
  .sec-header.center .sec-sub { margin-left: auto; margin-right: auto; }

  /* Hero */
  .hero-inner { padding: 6.5rem 1.25rem 3.5rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-inner h1 { text-align: center; font-size: 2.5rem; }
  .hero-inner h1 br { display: none; }
  .hero-desc { text-align: center; max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }

  /* Pilares */
  #pilares { padding: 4rem 0; }
  .pilares-grid { border-radius: 10px; }
  .pilar { text-align: center; }
  .pilar-num { text-align: center; }

  /* Processo */
  #processo { padding: 4rem 0; }
  .step { text-align: center; padding: 1.75rem 1.5rem; }
  .step::before { display: none; }

  /* Áreas */
  #areas { padding: 4rem 0; }
  .areas-grid { grid-template-columns: 1fr; }
  .area { flex-direction: column; align-items: center; text-align: center; }

  /* Sobre */
  #sobre { padding: 4rem 0; }
  .sobre-wrap { gap: 2rem; }
  .sobre-img-frame { max-width: 300px; margin: 0 auto; }
  .sobre-content { text-align: center; }
  .sobre-tags { justify-content: center; }
  .sobre-content .btn-blue { width: 100%; justify-content: center; }

  /* Equipe */
  #equipe { padding: 0 0 4rem; }
  .equipe-lead { padding: 0 1.25rem; }
  .membro-conteudo { text-align: center; }

  /* Depoimentos */
  #depoimentos { padding: 4rem 0; }

  /* CTA */
  #cta-strip { padding: 3.5rem 1.25rem; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-wpp-lg, .btn-white-outline { justify-content: center; }

  /* Blog */
  #blog { padding: 4rem 0; }
  .blog-header { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }

  /* Contato */
  #contato { padding: 4rem 0; }
  .contato-grid { gap: 2rem; }
  .contato-info { text-align: center; }
  .contato-info > p { text-align: center; }
  .ci-item { text-align: left; }
  .form-wrap { padding: 1.5rem; }

  /* Footer */
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top > div:first-child { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { gap: 0.5rem; text-align: center; justify-content: center; }

  .float-wpp { bottom: 1.25rem; right: 1.25rem; }
}
