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

    :root {
      --bg: #000000;
      --text: #fff5e0;
      --accent: #dd5800;
      --text-muted: rgba(255, 245, 224, 0.55);
    }

    html, body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 72px;
      background: #000;
      border-bottom: 1px solid rgba(255,245,224,0.07);
    }

    nav::after { display: none; }

    .logo img {
      height: 48px;
      filter: invert(0);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
    }

    nav ul li a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav ul li a:hover { color: var(--text); }

    .nav-cta {
      font-size: 13px;
      font-weight: 500;
      color: var(--accent) !important;
      border: 1px solid var(--accent);
      padding: 9px 22px;
      border-radius: 2px;
      letter-spacing: 0.06em;
      transition: background 0.2s, color 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--accent) !important;
      color: #000 !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    /* subtle grain overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── LEFT: TEXT SIDE ── */
    .hero-text {
      padding: 100px 72px 100px 72px;
      padding-top: 120px;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 44px;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(42px, 4.2vw, 68px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 32px;
      text-wrap: pretty;
    }

    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .subheadline {
      font-size: clamp(15px, 1.15vw, 18px);
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 56px;
      text-wrap: pretty;
    }

    .subheadline strong {
      color: var(--text);
      font-weight: 500;
    }

    .cta-group {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #fff5e0;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 16px 32px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: #f06010;
      transform: translateY(-1px);
    }

    .btn-primary svg {
      transition: transform 0.2s;
    }

    .btn-primary:hover svg {
      transform: translateX(3px);
    }

    .btn-secondary {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.04em;
      border-bottom: 1px solid rgba(255,245,224,0.2);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-secondary:hover {
      color: var(--text);
      border-color: rgba(255,245,224,0.6);
    }

    /* ── BOTTOM METRICS ── */
    .metrics {
      display: flex;
      gap: 48px;
      margin-top: 80px;
      padding-top: 44px;
      border-top: 1px solid rgba(255,245,224,0.08);
    }

    .metric-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .metric-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }

    .metric-num span {
      color: var(--accent);
    }

    .metric-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── RIGHT: IMAGE SIDE ── */
    .hero-image {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 0;
      z-index: 1;
      overflow: hidden;
    }



    /* vertical line accent */
    .hero-image::after {
      content: '';
      position: absolute;
      left: 0;
      top: 15%;
      bottom: 15%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(221,88,0,0.3) 40%, rgba(221,88,0,0.3) 60%, transparent);
    }

    .polaroid-wrap {
      position: relative;
      width: 420px;
      /* float upward slightly so it bleeds top */
      margin-bottom: -20px;
      animation: floatUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
      animation-delay: 0.2s;
    }

    @keyframes floatUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .polaroid-wrap img {
      width: 100%;
      height: auto;
      display: block;
      /* warm tone treatment */
      filter: contrast(1.05) saturate(0.92) sepia(0.08);
      drop-shadow: 0 40px 80px rgba(0,0,0,0.8);
    }

    /* orange dot accent - matches logo language */
    .dot-accent {
      position: absolute;
      top: 60px;
      right: 60px;
      width: 12px;
      height: 12px;
      background: var(--accent);
      border-radius: 50%;
    }

    /* ── SCROLL HINT ── */
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 72px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      z-index: 2;
    }

    .scroll-line {
      width: 40px;
      height: 1px;
      background: rgba(255,245,224,0.2);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: var(--accent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0%   { left: -100%; }
      50%  { left: 0%; }
      100% { left: 100%; }
    }

    /* ── TEXT ENTRANCE ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .eyebrow     { animation: fadeUp 0.6s ease both; animation-delay: 0.0s; }
    h1           { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
    .subheadline { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
    .cta-group   { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
    .metrics     { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
      }
      .hero-text {
        padding: 140px 32px 48px;
        text-align: center;
      }
      .eyebrow { justify-content: center; }
      .subheadline { margin-left: auto; margin-right: auto; }
      .cta-group { justify-content: center; }
      .metrics { justify-content: center; }
      .hero-image {
        height: 60vw;
        min-height: 340px;
      }
      .polaroid-wrap { width: 280px; }
      nav { padding: 24px 32px; }
      nav ul { display: none; }
      .scroll-hint { left: 32px; }
    }
  

    .section-dor {
      background: #fff5e0;
      padding: 120px 72px 100px;
    }
    .dor-container {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }
    .dor-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      margin-bottom: 28px;
    }
    .dor-titulo h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 2.2vw, 38px);
      font-weight: 700;
      line-height: 1.25;
      color: #1a1008;
      letter-spacing: -0.02em;
    }
    .dor-intro {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      color: #3a2a14;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .dor-lista {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
    }
    .dor-lista li {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: #5a4030;
      line-height: 1.5;
      padding-left: 24px;
      position: relative;
    }
    .dor-lista li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: #dd5800;
    }
    .dor-fechamento {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: #3a2a14;
      font-style: italic;
      margin-bottom: 48px;
    }
    .virada {
      border-left: 2px solid #dd5800;
      padding: 20px 24px;
      background: rgba(221,88,0,0.05);
    }
    .virada p {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: #3a2a14;
      line-height: 1.6;
    }
    .virada-destaque {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: #1a1008;
      margin-top: 6px;
    }
    #gtx-trans { display: none !important; }
    .virada-destaque em { font-style: italic; color: #dd5800; }

    .section-pilares {
      background: linear-gradient(160deg, #0a0a0a 0%, #111111 100%);
      padding: 100px 0 80px;
      overflow: hidden;
    }
    .pilares-header {
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 0 72px;
    }
    .pilares-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      margin-bottom: 20px;
    }
    .pilares-titulo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 3.2vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      color: #fff5e0;
      letter-spacing: -0.02em;
    }
    .carousel-outer {
      padding: 0 72px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .carousel-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-bottom: 48px;
    }
    .pilar-card {
      background: #0d0d0d;
      border: 1px solid rgba(255,245,224,0.05);
      padding: 48px 40px;
      cursor: pointer;
      transition: background 0.35s, border-color 0.35s;
      position: relative;
      overflow: hidden;
    }
    .pilar-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #dd5800;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .pilar-card.active {
      background: #111;
      border-color: rgba(221,88,0,0.18);
    }
    .pilar-card.active::after { transform: scaleX(1); }
    .card-top {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
    }
    .card-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: #dd5800;
    }
    .card-bar {
      flex: 1;
      height: 1px;
      background: rgba(255,245,224,0.08);
      transition: background 0.35s;
    }
    .pilar-card.active .card-bar { background: rgba(221,88,0,0.25); }
    .card-nome {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 2vw, 38px);
      font-weight: 700;
      color: rgba(255,245,224,0.35);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      line-height: 1.1;
      transition: color 0.35s;
    }
    .pilar-card.active .card-nome { color: #fff5e0; }
    .card-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,245,224,0.6);
      line-height: 1.8;
      margin-bottom: 16px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.35s ease;
    }
    .pilar-card.active .card-desc { max-height: 200px; opacity: 1; }
    .card-detalhe {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: #dd5800;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease 0.05s, opacity 0.35s ease 0.05s;
    }
    .pilar-card.active .card-detalhe { max-height: 60px; opacity: 1; }
    .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 20px;
    }
    .nav-btn {
      width: 44px; height: 44px;
      border: 1px solid rgba(255,245,224,0.15);
      background: transparent;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .nav-btn:hover { border-color: #dd5800; background: rgba(221,88,0,0.08); }
    .carousel-dots { display: flex; gap: 8px; }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,245,224,0.2);
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      padding: 0;
    }
    .dot.active { background: #dd5800; transform: scale(1.5); }
    .pilares-progress {
      max-width: 1200px;
      margin: 32px auto 0;
      padding: 0 72px;
      height: 1px;
      background: rgba(255,245,224,0.06);
    }
    .progress-bar {
      height: 100%;
      background: #dd5800;
      width: 33.33%;
      transition: width 0.4s cubic-bezier(0.22,1,0.36,1), margin-left 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    @media (max-width: 900px) {
      .section-dor { padding: 80px 32px; }
      .dor-container { grid-template-columns: 1fr; gap: 40px; }
      .pilares-header { padding: 0 32px; }
      .carousel-outer { padding: 0 32px; }
      .carousel-track { grid-template-columns: 1fr; gap: 2px; }
      .card-desc, .card-detalhe { max-height: none !important; opacity: 1 !important; }
      .carousel-nav { display: none; }
      .pilares-progress { padding: 0 32px; }
    }
  

    /* theme variables */
    #servicosSection[data-theme="dark"] {
      --sv-bg: #0e0b07;
      --sv-title: #fff5e0;
      --sv-sub: rgba(255,245,224,0.55);
      --sv-num: #dd5800;
      --sv-acc-title: rgba(255,245,224,0.4);
      --sv-acc-title-open: #fff5e0;
      --sv-sep: rgba(255,245,224,0.1);
      --sv-desc: rgba(255,245,224,0.6);
      --sv-tag: #dd5800;
      --sv-frase: rgba(255,245,224,0.85);
      --sv-icon-stroke: #dd5800;
      --sv-icon-open-stroke: #fff5e0;
      --sv-label: #dd5800;
    }
    #servicosSection[data-theme="cream"] {
      --sv-bg: #faf4ec;
      --sv-title: #1a0a00;
      --sv-sub: #6a4020;
      --sv-num: #dd5800;
      --sv-acc-title: rgba(26,10,0,0.4);
      --sv-acc-title-open: #1a0a00;
      --sv-sep: rgba(0,0,0,0.1);
      --sv-desc: #4a2a10;
      --sv-tag: #dd5800;
      --sv-frase: #1a0a00;
      --sv-icon-stroke: #dd5800;
      --sv-icon-open-stroke: #fff5e0;
      --sv-label: #dd5800;
    }
    #servicosSection[data-theme="terracotta"] {
      --sv-bg: #1c0e06;
      --sv-title: #fff5e0;
      --sv-sub: rgba(255,245,224,0.5);
      --sv-num: #e06820;
      --sv-acc-title: rgba(255,245,224,0.35);
      --sv-acc-title-open: #fff5e0;
      --sv-sep: rgba(255,245,224,0.08);
      --sv-desc: rgba(255,245,224,0.6);
      --sv-tag: #e06820;
      --sv-frase: rgba(255,245,224,0.8);
      --sv-icon-stroke: #e06820;
      --sv-icon-open-stroke: #fff5e0;
      --sv-label: #e06820;
    }

    .section-servicos {
      background: var(--sv-bg);
      padding: 120px 72px 100px;
      transition: background 0.5s ease;
    }

    .servicos-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      max-width: 1200px;
      margin: 0 auto 72px;
    }
    .servicos-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sv-label);
      margin-bottom: 20px;
    }
    .servicos-titulo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 2.4vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--sv-title);
      letter-spacing: -0.02em;
      transition: color 0.4s;
    }
    .servicos-sub p {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: var(--sv-sub);
      line-height: 1.7;
      transition: color 0.4s;
    }

    .accordion {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid var(--sv-sep);
    }
    .acc-item { border-bottom: 1px solid var(--sv-sep); }
    .acc-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 32px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }
    .acc-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--sv-num);
      min-width: 28px;
      flex-shrink: 0;
      transition: color 0.4s;
    }
    .acc-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 1.7vw, 28px);
      font-weight: 700;
      color: var(--sv-acc-title);
      flex: 1;
      letter-spacing: -0.01em;
      transition: color 0.3s;
    }
    .acc-item.open .acc-title { color: var(--sv-acc-title-open); }
    .acc-icon {
      flex-shrink: 0;
      width: 38px; height: 38px;
      border: 1px solid var(--sv-sep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sv-icon-stroke);
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .acc-icon svg { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
    .acc-item.open .acc-icon {
      background: #dd5800;
      border-color: #dd5800;
      color: var(--sv-icon-open-stroke);
    }
    .acc-item.open .acc-icon svg { transform: rotate(180deg); }
    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .acc-item.open .acc-body { max-height: 220px; }
    .acc-inner {
      padding: 0 0 36px 56px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .acc-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: var(--sv-desc);
      line-height: 1.8;
      max-width: 640px;
      transition: color 0.4s;
    }
    .acc-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--sv-tag);
      transition: color 0.4s;
    }
    .acc-tag::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
    }
    .servicos-frase {
      max-width: 1200px;
      margin: 72px auto 0;
      padding-top: 56px;
      text-align: center;
    }
    .servicos-frase p {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 1.8vw, 28px);
      font-weight: 400;
      color: var(--sv-frase);
      line-height: 1.6;
      transition: color 0.4s;
    }
    .servicos-frase em { font-style: italic; color: #dd5800; }

    @media (max-width: 900px) {
      .section-servicos { padding: 80px 32px; }
      .servicos-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
      .acc-inner { padding-left: 36px; }
    }
  

    .section-fundadora {
      background: #fff5e0;
      padding: 120px 72px 100px;
    }
    .fundadora-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .fundadora-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      margin-bottom: 40px;
    }
    .fundadora-nome-bloco {
      margin-bottom: 48px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .fundadora-nome {
      font-family: 'Playfair Display', serif;
      font-size: clamp(44px, 4vw, 72px);
      font-weight: 900;
      line-height: 1.0;
      color: #1a0a00;
      letter-spacing: -0.03em;
    }
    .fundadora-nome em {
      font-style: italic;
      color: #dd5800;
    }
    .fundadora-headline {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(16px, 1.3vw, 20px);
      font-weight: 300;
      color: #4a2a10;
      line-height: 1.5;
    }
    .hl-num {
      font-weight: 700;
      color: #dd5800;
    }
    .fundadora-bio {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 44px;
    }
    .fundadora-bio p {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: #3a1a06;
      line-height: 1.85;
    }
    .fundadora-fechamento {
      border-left: 2px solid #dd5800;
      padding: 18px 24px;
      background: rgba(221,88,0,0.04);
    }
    .fundadora-fechamento p {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 400;
      color: #1a0a00;
      line-height: 1.6;
    }
    .fundadora-fechamento em {
      font-style: italic;
      color: #dd5800;
    }

    /* imagem */
    .fundadora-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .fundadora-img-frame {
      position: relative;
      width: 100%;
      max-width: 460px;
    }
    .fundadora-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 2px;
      filter: contrast(1.04) saturate(0.9) sepia(0.05);
    }
    .fundadora-badge {
      position: absolute;
      bottom: -24px;
      left: -24px;
      background: #dd5800;
      color: #fff5e0;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      border-radius: 2px;
    }
    .badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .badge-txt {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.4;
    }

    @media (max-width: 900px) {
      .section-fundadora { padding: 80px 32px 100px; }
      .fundadora-grid { grid-template-columns: 1fr; gap: 60px; }
      .fundadora-img-frame { max-width: 340px; margin: 0 auto; }
    }
  

      background: #0a0a0a;
      padding: 80px 72px 72px;
    }

    .crencas-header {
      max-width: 1200px;
      margin: 0 auto 56px;
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      gap: 0 64px;
      align-items: start;
    }
    .crencas-label {
      grid-column: 1 / -1;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      display: block;
      margin-bottom: 16px;
    }
    .crencas-titulo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 900;
      color: #fff5e0;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .crencas-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,245,224,0.45);
      line-height: 1.6;
      padding-top: 16px;
      align-self: end;
    }

    /* blocos */
    .crencas-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(255,245,224,0.07);
    }

    .crenca-bloco {
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      align-items: center;
      gap: 32px;
      padding: 32px 0;
      border-bottom: 1px solid rgba(255,245,224,0.07);
      cursor: default;
      transition: background 0.3s;
      border-radius: 2px;
    }

    .crenca-bloco:hover,
    .crenca-bloco:focus { outline: none; }

    .crenca-antes {
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: opacity 0.35s ease;
    }

    .crenca-marcador {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,245,224,0.5);
    }

    .crenca-frase-antes {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 1.8vw, 30px);
      font-weight: 700;
      color: rgba(255,245,224,0.5);
      letter-spacing: -0.01em;
      line-height: 1.2;
      transition: color 0.35s, opacity 0.35s;
      text-decoration: line-through;
      text-decoration-color: rgba(255,245,224,0.25);
    }

    .crenca-seta {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.4;
      transition: opacity 0.35s;
    }

    .crenca-depois {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .crenca-marcador-depois {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #dd5800;
    }

    .crenca-frase-depois {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 1.8vw, 30px);
      font-weight: 700;
      color: #fff5e0;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .crenca-frase-depois em {
      font-style: italic;
      color: #dd5800;
    }

    /* hover: realça o "depois", apaga o "antes" */
    .crenca-bloco:hover .crenca-antes,
    .crenca-bloco:focus .crenca-antes {
      opacity: 0.3;
    }

    .crenca-bloco:hover .crenca-seta,
    .crenca-bloco:focus .crenca-seta {
      opacity: 1;
    }

    .crenca-bloco:hover .crenca-frase-depois,
    .crenca-bloco:focus .crenca-frase-depois {
      text-shadow: 0 0 40px rgba(221,88,0,0.2);
    }

    /* fechamento */
    .crencas-fechamento {
      max-width: 1200px;
      margin: 52px auto 0;
      text-align: center;
    }
    .crencas-fechamento p {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 1.8vw, 28px);
      font-weight: 400;
      color: rgba(255,245,224,0.65);
      line-height: 1.6;
    }
    .crencas-fechamento em {
      font-style: italic;
      color: #dd5800;
    }

    @media (max-width: 900px) {
      .section-crencas { padding: 80px 32px; }
      .crencas-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 56px; }
      .crencas-sub { padding-top: 0; }
      .crenca-bloco { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
      .crenca-seta { transform: rotate(90deg); }
    }
  

    .section-dep {
      background: #faf4ec;
      padding: 70px 72px 40px;
    }

    .dep-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      max-width: 1200px;
      margin: 0 auto 72px;
      gap: 40px;
      text-align: left;
    }
    .dep-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      margin-bottom: 16px;
    }
    .dep-titulo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 2.8vw, 48px);
      font-weight: 700;
      color: #1a0a00;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    .dep-impacto {
      text-align: right;
      padding-bottom: 4px;
    }
    .dep-impacto p {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 1.5vw, 22px);
      font-weight: 400;
      color: rgba(26,10,0,0.45);
      line-height: 1.5;
    }
    .dep-impacto em {
      font-style: italic;
      color: #dd5800;
    }

    /* card destaque */
    .dep-destaque {
      max-width: 1200px;
      margin: 0 auto 56px;
      background: #fff;
      border-radius: 3px;
      padding: 56px 64px;
      position: relative;
      box-shadow: 0 2px 40px rgba(0,0,0,0.04);
      text-align: left;
    }
    .dep-aspas {
      font-family: 'Playfair Display', serif;
      font-size: 96px;
      line-height: 0.6;
      color: #dd5800;
      opacity: 0.18;
      position: absolute;
      top: 40px;
      left: 48px;
      pointer-events: none;
      user-select: none;
    }
    .dep-frase-grande {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 2.2vw, 36px);
      font-weight: 700;
      color: #1a0a00;
      line-height: 1.25;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
      max-width: 780px;
    }
    .dep-frase-grande em {
      font-style: italic;
      color: #dd5800;
    }
    .dep-texto-destaque {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: #4a2a10;
      line-height: 1.8;
      max-width: 700px;
      margin-bottom: 40px;
    }
    .dep-autor-destaque {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .dep-estrelas {
      color: #dd5800;
      font-size: 14px;
      letter-spacing: 2px;
    }
    .dep-nome-destaque {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #1a0a00;
    }
    .dep-cargo-destaque {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgb(169, 169, 169);
    }

    /* grid cards */
    .dep-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .dep-card {
      background: #fff;
      border-radius: 3px;
      padding: 32px;
      box-shadow: 0 1px 20px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .dep-card:hover {
      box-shadow: 0 4px 32px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }
    .dep-texto {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #3a1a06;
      line-height: 1.8;
      flex: 1;
    }
    .dep-autor { margin-top: auto; }
    .dep-nome {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #1a0a00;
    }

    /* selo */
    .dep-selo {
      max-width: 1200px;
      margin: 48px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .dep-estrelas-selo {
      color: #dd5800;
      font-size: 16px;
      letter-spacing: 3px;
    }
    .dep-selo-txt {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(26,10,0,0.35);
    }

    @media (max-width: 900px) {
      .section-dep { padding: 72px 32px; }
      .dep-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .dep-impacto { text-align: left; }
      .dep-destaque { padding: 40px 32px; }
      .dep-grid { grid-template-columns: 1fr; }
    }
  

    .section-cta {
      background: #100c07;
      padding: 120px 72px 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* glow laranja suave ao fundo */
    .section-cta::after {
      content: '';
      position: absolute;
      bottom: -100px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(221,88,0,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-line-top {
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(221,88,0,0.3), transparent);
    }

    .cta-inner {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-label {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #dd5800;
      margin-bottom: 32px;
    }

    .cta-titulo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 2.8vw, 46px);
      font-weight: 700;
      line-height: 1.3;
      color: #fff5e0;
      letter-spacing: -0.02em;
      margin-bottom: 40px;
    }

    .cta-titulo em {
      font-style: italic;
      color: #dd5800;
    }

    .cta-sep {
      width: 48px;
      height: 2px;
      background: #dd5800;
      margin: 0 auto 40px;
      opacity: 0.4;
    }

    .cta-apoio {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(15px, 1.2vw, 17px);
      font-weight: 300;
      color: rgba(255,245,224,0.6);
      line-height: 1.85;
      margin-bottom: 56px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-botoes {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #dd5800;
      color: #fff5e0;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 17px 36px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .cta-btn-primary:hover {
      background: #c44d00;
      transform: translateY(-1px);
    }

    .cta-btn-primary svg { transition: transform 0.2s; }
    .cta-btn-primary:hover svg { transform: translateX(3px); }

    .cta-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25d366;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 17px 32px;
      border-radius: 2px;
      border: none;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .cta-btn-secondary:hover {
      background: #1ebe59;
      transform: translateY(-1px);
    }

    /* footer */
    .site-footer {
      background: #000;
      padding: 56px 72px 32px;
    }
    .footer-top {
      max-width: 1200px;
      margin: 0 auto 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,245,224,0.07);
    }
    .footer-logo {
      height: 80px;
      opacity: 0.85;
    }
    .footer-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .footer-nav a {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,245,224,0.45);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: #fff5e0; }
    .footer-ig {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,245,224,0.6);
      text-decoration: none;
      border: 1px solid rgba(255,245,224,0.12);
      padding: 9px 18px;
      border-radius: 2px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .footer-ig:hover { color: #fff5e0; border-color: rgba(255,245,224,0.3); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .footer-txt {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,245,224,0.2);
      letter-spacing: 0.06em;
    }

    @media (max-width: 900px) {
      .section-cta { padding: 80px 32px; }
      .cta-botoes { flex-direction: column; }
      .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
      .site-footer { padding: 48px 32px 28px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-nav { gap: 16px; }
    }
  
    /* ══════════════════════════════════════
       MOBILE RESPONSIVO — breakpoints extras
       ══════════════════════════════════════ */

    /* ── NAV MOBILE ── */
    @media (max-width: 768px) {
      nav {
        padding: 14px 20px;
        flex-wrap: nowrap;
        gap: 12px;
      }
      .logo img { height: 36px; }
      nav ul { display: none; }
      .nav-cta {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
      }
    }

    /* ── HERO MOBILE ── */
    @media (max-width: 768px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px;
      }
      .hero-text {
        padding: 40px 24px 32px !important;
        text-align: center;
        order: 2;
      }
      .eyebrow { justify-content: center; }
      h1 { font-size: clamp(32px, 9vw, 48px) !important; }
      .subheadline {
        font-size: 15px !important;
        margin-left: auto;
        margin-right: auto;
      }
      .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 14px;
      }
      .btn-primary { width: 100%; justify-content: center; padding: 15px 24px; }
      .metrics {
        gap: 28px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        padding-top: 28px;
      }
      .hero-image {
        order: 1;
        height: 55vw;
        min-height: 260px;
        max-height: 400px;
        width: 100% !important;
      }
      .polaroid-wrap {
        width: 60vw;
        max-width: 280px;
        margin-bottom: 0;
      }
      .polaroid-wrap img { height: auto !important; object-fit: contain !important; }
      .scroll-hint { display: none; }
    }

    /* ── DOR MOBILE ── */
    @media (max-width: 768px) {
      .section-dor { padding: 60px 24px 56px; }
      .dor-container { grid-template-columns: 1fr; gap: 32px; }
      .dor-titulo h2 { font-size: clamp(22px, 6vw, 32px); }
      .dor-intro { font-size: 15px; }
      .dor-lista li { font-size: 15px; }
      .virada-destaque { font-size: 18px !important; }
    }

    /* ── PILARES MOBILE ── */
    @media (max-width: 768px) {
      .section-pilares { padding: 64px 0 56px; }
      .pilares-header { padding: 0 24px; margin-bottom: 40px; }
      .carousel-outer { padding: 0 24px; }
      .carousel-track { grid-template-columns: 1fr; gap: 2px; }
      .pilar-card { padding: 32px 28px; }
      .card-desc, .card-detalhe { max-height: none !important; opacity: 1 !important; }
      .carousel-nav { display: none; }
      .pilares-progress { padding: 0 24px; }
      .pilares-titulo { font-size: clamp(28px, 8vw, 42px); }
    }

    /* ── SERVIÇOS MOBILE ── */
    @media (max-width: 768px) {
      .section-servicos { padding: 60px 24px 56px !important; }
      .servicos-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
      .servicos-titulo { font-size: clamp(22px, 6vw, 32px); }
      .acc-trigger { padding: 24px 0; gap: 16px; }
      .acc-title { font-size: clamp(18px, 5vw, 22px); }
      .acc-inner { padding-left: 0; padding-bottom: 28px; }
      .servicos-frase p { font-size: clamp(16px, 5vw, 22px); }
    }

    /* ── FUNDADORA MOBILE ── */
    @media (max-width: 768px) {
      .section-fundadora { padding: 60px 24px 80px; }
      .fundadora-grid { grid-template-columns: 1fr; gap: 48px; }
      .fundadora-nome { font-size: clamp(44px, 12vw, 64px); }
      .fundadora-img-frame { max-width: 280px; margin: 0 auto; }
      .fundadora-badge { left: -8px; bottom: -16px; padding: 14px 18px; }
      .badge-num { font-size: 28px; }
      .fundadora-fechamento { padding: 14px 18px; }
      .fundadora-fechamento p { font-size: 15px; }
    }

    /* ── CRENÇAS MOBILE ── */
    @media (max-width: 768px) {
      .section-crencas { padding: 60px 24px 56px; }
      .crencas-header { margin-bottom: 40px; }
      .crencas-titulo { font-size: clamp(28px, 8vw, 40px); }
      .crenca-bloco {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
      }
      .crenca-seta { transform: rotate(90deg); justify-content: flex-start; }
      .crenca-frase-antes,
      .crenca-frase-depois { font-size: clamp(18px, 5vw, 24px); }
      .crencas-fechamento p { font-size: clamp(16px, 5vw, 22px); }
    }

    /* ── DEPOIMENTOS MOBILE ── */
    @media (max-width: 768px) {
      .section-dep { padding: 60px 24px 48px !important; }
      .dep-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
      .dep-impacto { text-align: left; }
      .dep-titulo { font-size: clamp(24px, 7vw, 36px); }
      .dep-destaque { padding: 32px 24px; }
      .dep-frase-grande { font-size: clamp(18px, 5vw, 26px); }
      .dep-autor-destaque { flex-direction: column; align-items: flex-start; gap: 8px; }
      .dep-grid { grid-template-columns: 1fr; gap: 12px; }
      .dep-card { padding: 24px; }
    }

    /* ── CTA MOBILE ── */
    @media (max-width: 768px) {
      .section-cta { padding: 72px 24px 64px; }
      .cta-titulo { font-size: clamp(22px, 6vw, 34px); }
      .cta-apoio { font-size: 14px; }
      .cta-botoes { flex-direction: column; gap: 12px; }
      .cta-btn-primary,
      .cta-btn-secondary { width: 100%; justify-content: center; padding: 16px 24px; }
    }

    /* ── FOOTER MOBILE ── */
    @media (max-width: 768px) {
      .site-footer { padding: 48px 24px 28px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; }
      .footer-logo { height: 52px; }
      .footer-nav { gap: 14px; flex-wrap: wrap; }
      .footer-nav a { font-size: 12px; }
      .footer-ig { font-size: 12px; }
      .footer-bottom { text-align: left; }
    }

    /* ── TIPOGRAFIA GLOBAL MOBILE ── */
    @media (max-width: 480px) {
      body { font-size: 15px; }
      h1 { font-size: clamp(28px, 9vw, 42px) !important; }
    }

  
