    :root {
      --bg: #f7f7f5;
      --surface: #ffffff;
      --surface-soft: #f2f3f1;
      --text: #1f252b;
      --muted: #6E6E6E;
      --line: #e6e8e5;
      --accent: #F58220;
      --accent-dark: #ba5820;
      --accent-2: #2FB34A;
      --max: 1160px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow: 0 10px 30px rgba(24, 31, 38, 0.06);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(247, 247, 245, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(230, 232, 229, 0.8);
    }

    .topbar-inner {
      min-height: 78px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }
	
	.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;     /* Mantém circular se quiseres */
    object-fit: cover;      /* Preenche sem distorcer */
    flex: 0 0 auto;
    image-rendering: -webkit-optimize-contrast;  /* Nítido */
}

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
    }

    .brand-mark::before { top: 10px; left: 9px; }
    .brand-mark::after { right: 9px; bottom: 10px; }

    .brand-copy strong {
      display: block;
      font-size: 0.98rem;
      letter-spacing: 0.02em;
      color: var(--muted);
    }

    .brand-copy span {
      display: block;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .nav {
      display: flex;
      justify-content: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .nav a {
      padding: 10px 14px;
      border-radius: 50px;
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--accent);
      transition: 0.18s ease;
    }

    .nav a:hover {
      background: var(--accent);
      color: var(--surface);
    }

    .lang-switcher {
      display: inline-flex;
      gap: 6px;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--surface);
    }

    .lang-switcher button {
      border: 0;
      background: transparent;
      color: var(--accent-2);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 9px 11px;
      border-radius: 999px;
      cursor: pointer;
    }

    .lang-switcher button.active {
      background: #2FB34A;
      color: white;
    }

    .hero {
      padding: 80px 0 40px;
    }

    .hero-grid {
	  display: grid;
      grid-template-columns: 1fr 0.85fr;
      gap: 40px;
      align-items: start;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 14px;
      background: var(--surface);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--muted);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem) !important;  /* Reduz max para 3.8rem */
    line-height: 1.05;
    max-width: 18ch;        /* Quebra melhor */
    margin-bottom: 20px;
    color: var(--accent-2);
    }

    .hero-copy p.lead {
      margin: 0;
      max-width: 60ch;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .btn {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.18s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: white;
    }

    .btn-primary:hover { background: var(--accent-dark); }

    .btn-secondary {
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--accent);
    }

    .hero-notes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .note {
      padding: 16px 18px;
      border: 1px solid var(--surface);
      border-radius: var(--radius-sm);
      background: var(--accent-2);
      color: var(--surface);
    }

    .note strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.96rem;
    }

    .note span {
      display: block;
      color: var(--surface);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .hero-visual {
      display: grid;
      gap: 20px;
    }

    .visual-main,
    .visual-row > div {
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .visual-main img,
    .visual-row img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .visual-main {
      height: 380px;
    }

    .visual-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .visual-row > div {
      height: 170px;
    }

    section {
      padding: 28px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: end;
      margin-bottom: 20px;
    }

    .section-head .label {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      font-weight: 800;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: var(--muted);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      max-width: 68ch;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 18px;
    }

    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.16rem;
      letter-spacing: -0.02em;
      color: var(--accent-2);
    }
.card h2 {
  color: var(--accent);
}

    .card p,
    .card li {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .card ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .icon-box {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--surface-soft);
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      font-weight: 900;
      color: var(--accent-2);
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      align-items: start;
      background: var(--surface);
      border: 1px solid var(--accent-2);
      border-radius: var(--radius-md);
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .step-index {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--accent-2);
      display: grid;
      place-items: center;
      font-weight: 800;
      color: var(--surface);
    }

    .step h3 {
      margin: 0 0 8px;
      letter-spacing: -0.02em;
      color: var(--accent-2);
    }

    .sector-box {
      background: var(--accent-2);
      color: white;
      border-radius: 28px;
      padding: 30px;
    }

    .sector-box .section-head p,
    .sector-box .section-head h2,
    .sector-box .section-head .label {
      color: white;
    }

    .sector-box .label {
      color: rgba(255,255,255,0.72);
    }

    .sector-card {
      background: rgba(255,255,255,0.50);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md);
      padding: 22px;
    }

    .sector-card h3 {
      margin: 0 0 10px;
    }

    .sector-card p {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
    }

    details {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    details + details { margin-top: 12px; }

    summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 800;
      color: var(--accent);
    }

    summary::-webkit-details-marker { display: none; }

    details p {
      margin: 0;
      padding: 0 22px 20px;
      color: var(--muted);
      line-height: 1.75;
    }

    .contact-grid {
      display: grid;
      /*! grid-template-columns: 1.1fr 0.9fr; */
      gap: 18px;
    }

    .contact-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: var(--surface-soft);
      margin-top: 12px;
      font-weight: 700;
      color: var(--accent-2);
    }

    .footer {
      padding: 34px 0 52px;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

    @media (max-width: 1100px) {
      .topbar-inner,
      .hero-grid,
      .section-head,
      .grid-4,
      .grid-3,
      .grid-2,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .topbar-inner {
        padding: 12px 0 16px;
        justify-items: center;
      }

      .nav { justify-content: center; }
    }

    @media (max-width: 780px) {
      .container { width: min(var(--max), calc(100% - 20px)); }
      .nav { display: none; }
      h1 { max-width: none; }
      .hero-notes { grid-template-columns: 1fr; }
      .visual-main { height: 260px; }
      .visual-row { grid-template-columns: 1fr; }
      .visual-row > div { height: 180px; }
      .lang-switcher { width: 100%; justify-content: center; }
      .topbar-inner { gap: 12px; }
    }