:root{
      /* Paleta mais “confiável” e suave (verde + neutros) */
      --bg: #f6f8f7;
      --surface: #ffffff;
      --surface2:#f0f4f2;
      --text:#0f1720;
      --muted:#475569;
      --line: rgba(15, 23, 32, .10);

      --brand:#16a34a;       /* verde */
      --brand2:#0f766e;      /* teal */
      --brand3:#14532d;      /* verde escuro */

      --shadow: 0 18px 45px rgba(15, 23, 32, .10);
      --shadow2: 0 10px 25px rgba(15, 23, 32, .08);
      --radius: 18px;
      --max: 1120px;

      --focus: rgba(22,163,74,.22);
    }

    *{ box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      color: var(--text);
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(22,163,74,.10), transparent 55%),
        radial-gradient(900px 500px at 90% 5%, rgba(15,118,110,.10), transparent 55%),
        var(--bg);
      line-height: 1.55;
    }

    a{ color: inherit; text-decoration: none; }
    .container{ width:100%; max-width: var(--max); margin:0 auto; padding: 0 20px; }

    /* Header */
    header{
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(246,248,247,.78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      height: 74px;
      gap: 14px;
    }
    .brand{
      display:flex; align-items:center; gap: 12px;
      min-width: 220px;
    }
    .brand img{
      width: 42px; height: 42px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow2);
      object-fit: cover;
    }
    .brand strong{
      display:block;
      font-size: 15px;
      letter-spacing: .2px;
    }
    .brand small{
      display:block;
      font-weight: 700;
      color: var(--muted);
      margin-top: 2px;
      font-size: 12px;
    }

    nav ul{
      list-style: none;
      display:flex;
      gap: 18px;
      margin:0;
      padding:0;
      align-items:center;
    }
    nav a{
      font-weight: 750;
      font-size: 14px;
      color: var(--muted);
      padding: 10px 12px;
      border-radius: 999px;
      transition: .18s ease;
    }
    nav a:hover,
    nav a.active{
      background: rgba(22,163,74,.10);
      color: #0b1a12;
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--text);
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(15,23,32,.06);
      cursor: pointer;
      transition: .18s ease;
      white-space: nowrap;
      user-select:none;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(15,23,32,.10); }
    .btn.primary{
      border: 0;
      color: #ffffff;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 14px 28px rgba(22,163,74,.20);
    }
    .btn.primary:hover{ filter: brightness(1.02); }

    .hamburger{
      display:none;
      width: 44px; height: 44px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--surface);
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(15,23,32,.06);
    }
    .hamburger span{
      display:block;
      width: 18px; height: 2px;
      margin: 4px auto;
      background: var(--text);
      border-radius: 999px;
    }
    .mobile-menu{
      display:none;
      border-top: 1px solid var(--line);
      background: rgba(246,248,247,.92);
      padding: 10px 0 16px;
    }
    .mobile-menu a{
      display:block;
      margin: 6px 12px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--muted);
      font-weight: 800;
    }
    .mobile-menu a:hover{ background: rgba(22,163,74,.08); color: #0b1a12; }

    /* Hero */
    .hero{ padding: 52px 0 26px; }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }
    .hero h1{
      margin: 0 0 10px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.6px;
      color: #0b1a12;
    }
    .hero p{
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 16px;
      max-width: 70ch;
    }
    .badges{
      display:flex; flex-wrap:wrap; gap: 10px;
      margin: 12px 0 18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(22,163,74,.10);
      border: 1px solid rgba(22,163,74,.18);
      color: #0b1a12;
      font-weight: 850;
      font-size: 12.5px;
    }
    .dot{
      width: 9px; height: 9px; border-radius: 999px;
      background: var(--brand);
      box-shadow: 0 0 0 3px rgba(22,163,74,.18);
    }

    .hero-card{
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset: -180px -120px auto auto;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(22,163,74,.20), transparent 60%);
      transform: rotate(18deg);
      pointer-events:none;
    }
    .hero-card h3{ margin: 0 0 6px; }
    .hero-card p{ margin: 0 0 14px; color: var(--muted); font-size: 14px; }

    .kv{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .kv .item{
      background: var(--surface2);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px;
    }
    .kv .item strong{
      display:block;
      font-size: 11px;
      color: var(--muted);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .7px;
    }
    .kv .item span{
      display:block;
      margin-top: 6px;
      font-weight: 900;
      color: #0b1a12;
      font-size: 13.5px;
    }

    /* Sections */
    section{ padding: 38px 0; }
    .section-title{
      display:flex;
      align-items: end;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -.2px;
      color: #0b1a12;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-size: 14px;
      max-width: 75ch;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: var(--shadow2);
    }
    .card h3{ margin:0 0 8px; font-size: 16px; color:#0b1a12; }
    .card p{ margin:0; color: var(--muted); font-size: 14px; }
    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      margin-top: 12px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,163,74,.18);
      background: rgba(22,163,74,.10);
      font-size: 12px;
      font-weight: 900;
      color: #0b1a12;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .list{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 10px;
    }
    .li{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: var(--surface2);
    }
    .icon{
      width: 30px; height: 30px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(22,163,74,.95), rgba(15,118,110,.95));
      box-shadow: 0 10px 18px rgba(15,23,32,.12);
      flex: 0 0 auto;
    }
    .li b{ display:block; font-size: 14px; color:#0b1a12; }
    .li span{ display:block; font-size: 13px; color: var(--muted); margin-top: 2px; }

    .cta{
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(22,163,74,.10), rgba(15,118,110,.10));
      border: 1px solid rgba(22,163,74,.18);
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      box-shadow: var(--shadow2);
    }
    .cta h3{ margin:0 0 6px; color:#0b1a12; }
    .cta p{ margin:0; color: var(--muted); font-size: 14px; }

    /* Contact */
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }
    .full{ grid-column: 1 / -1; }
    label{ display:block; font-size: 12px; color: var(--muted); font-weight: 900; margin-bottom: 6px; }
    input, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--text);
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
    }
    textarea{ min-height: 120px; resize: vertical; }
    input:focus, textarea:focus{
      border-color: rgba(22,163,74,.55);
      box-shadow: 0 0 0 4px var(--focus);
    }

    .hint{
      color: var(--muted);
      font-size: 12px;
      margin-top: 10px;
    }

    footer{
      border-top: 1px solid var(--line);
      padding: 22px 0;
      color: var(--muted);
      font-size: 13px;
      background: rgba(255,255,255,.55);
    }
    .footer-grid{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap: 12px;
      flex-wrap: wrap;
    }
    .mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

    .toast{
      position: fixed;
      right: 16px;
      bottom: 16px;
      width: min(420px, calc(100% - 32px));
      background: rgba(255,255,255,.92);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
      display:none;
    }
    .toast strong{ display:block; margin-bottom: 2px; color:#0b1a12; }
    .toast p{ margin:0; color: var(--muted); font-size: 13px; }

    /* Responsive */
    @media (max-width: 900px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .list{ grid-template-columns: 1fr; }
      nav ul{ display:none; }
      .hamburger{ display:inline-block; }
    }

/* Subtle compliance/meta line (visible, not flashy) */
.meta-line{
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.78);
  text-align: center;
}

/* Atuações section */
.atuacoes{
  margin: 40px auto;
  max-width: 1000px;
  padding: 24px;
}
.atuacoes h2{
  color: var(--brand-600);
  margin-bottom: 12px;
}
.atuacoes ul{
  margin-top: 12px;
  padding-left: 18px;
}
.atuacoes li{
  margin-bottom: 8px;
}


/* Mobile/responsive hardening */
html, body{ max-width: 100%; overflow-x: hidden; }

/* Prevent long strings from breaking layout (email, addresses, etc.) */
.hint, .kv span, .kv strong, .hero-card, footer, .meta-line, .tech-resp{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Make the "Atendimento completo" card adapt nicely */
.kv{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kv .item{ background: rgba(255,255,255,.55); border: 1px solid rgba(59,130,246,.14); border-radius: 14px; padding: 10px; }
.kv .item strong{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.kv .item span{ display:block; }

/* Place the technical responsible line discreetly under the address */
.tech-resp{ display:inline-block; margin-top: 4px; font-size: 12px; color: var(--muted); }

/* Make Atuações more visible */
.atuacoes-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.atuacoes-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(219,234,254,.85);
  border: 1px solid rgba(59,130,246,.18);
  color: rgba(15,23,42,.82);
  font-size: 12px;
  white-space: nowrap;
}
.atuacoes-lead{ color: var(--muted); margin-top: 6px; }
.atuacoes-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.atuacao-item{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(59,130,246,.14);
  border-radius: 16px;
  padding: 14px;
}
.atuacao-item h3{ margin: 0 0 8px; color: var(--brand); font-size: 16px; }
.atuacoes-cta{ margin-top: 14px; display:flex; gap:10px; flex-wrap: wrap; }

/* Better navbar/hero spacing on small screens */
@media (max-width: 600px){
  .container{ padding: 0 14px; }
  nav{ height: auto; padding: 10px 0; }
  .hero h1{ font-size: 30px; }
  .kv{ grid-template-columns: 1fr; }
  .atuacoes-grid{ grid-template-columns: 1fr; }
  .chip{ white-space: normal; text-align:center; }
}


/* Small legal note inside marketing copy (discreet, readable) */
.legal-note{
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.mini-flow{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15,23,42,.78);
}
