    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --verde: #006b5f;
      --turquesa: #47ead4;
      --texto: #1a1c1c;
      --texto2: #526160;
      --branco: #ffffff;
      --fundo1: #f4f3f3;
      --fundo2: #f9f9f9;
      --borda: #e2e2e2;
      --black: #1a1a1a;
      --grey-bg: #f4f5f6;
      --grey-mid: #5a6470;
      --grey-light: #d0d5d8;
      --teal-dark: #1a7a6e;
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Manrope', sans-serif;
      --font-ui: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--texto);
      background: var(--branco);
      line-height: 1.6;
      padding-top: 80px;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 80px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--borda);
    }

    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 42px; width: auto; display: block; object-fit: contain; }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(26,28,28,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--turquesa); }
    .nav-links a.active { color: var(--turquesa); padding-bottom: 2px; }

    .search-box {
      width: 205px; height: 40px;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      display: flex; align-items: center; gap: 10px;
      padding: 0 14px;
      background: #fff;
    }
    .search-box input {
      width: 100%; border: none; outline: none; background: transparent;
      font-family: var(--font-ui); font-size: 14px; color: rgb(82,97,96);
    }
    .search-box input::placeholder { color: rgb(82,97,96); opacity: 1; }

    /* ── HERO ── */
    .category-hero {
      position: relative;
      height: 340px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background: #0d2b28;
    }

    .category-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0d2b28 0%, #1a4a42 50%, #006b5f 100%);
      opacity: 0.9;
    }

    .category-hero-content {
      position: relative;
      z-index: 1;
      padding: 0 40px 48px;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
    }

    .category-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -2px;
      color: var(--branco);
      margin-bottom: 16px;
    }

    .category-hero h1 .accent { color: var(--turquesa); }

    .category-hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      max-width: 600px;
    }

    /* ── INTRO ── */
    .intro-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 72px 40px 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      border-bottom: 1px solid var(--borda);
    }

    .intro-section h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1.15;
      color: var(--black);
      margin-bottom: 20px;
    }

    .intro-section h2 span { color: var(--verde); }

    .intro-section p {
      font-size: 16px;
      color: var(--texto2);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .valor-card {
      background: var(--grey-bg);
      border-radius: 12px;
      padding: 24px;
    }

    .valor-icon {
      width: 40px; height: 40px;
      background: rgba(0,107,95,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }

    .valor-card h4 {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 8px;
    }

    .valor-card p {
      font-size: 14px;
      color: var(--texto2);
      line-height: 1.6;
    }

    /* ── OFERTAS ── */
    .ofertas-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 72px 40px;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }

    .section-header h2 {
      font-family: var(--font-display);
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--black);
    }

    .section-header p {
      font-size: 15px;
      color: var(--texto2);
      max-width: 400px;
      text-align: right;
    }

    .ofertas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .oferta-card {
      border: 1px solid var(--borda);
      border-radius: 14px;
      padding: 32px;
      background: var(--branco);
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .oferta-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    .oferta-dept {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--verde);
      margin-bottom: 14px;
    }

    .oferta-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .oferta-card p {
      font-size: 14px;
      color: var(--texto2);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .oferta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .oferta-tag {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      background: var(--grey-bg);
      color: var(--grey-mid);
    }

    .oferta-tag.tag-local { background: rgba(0,107,95,0.08); color: var(--verde); }

    .btn-candidatar {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 11px 20px;
      border: 2px solid var(--black);
      background: transparent;
      color: var(--black);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }

    .btn-candidatar:hover {
      background: var(--black);
      color: var(--branco);
    }

    /* ── CTA ESPONTÂNEA ── */
    .cta-section {
      background: var(--grey-bg);
      border-top: 1px solid var(--borda);
      border-bottom: 1px solid var(--borda);
    }

    .cta-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 72px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--black);
      margin-bottom: 10px;
    }

    .cta-inner p {
      font-size: 15px;
      color: var(--texto2);
      max-width: 500px;
    }

    .btn-cta-primary {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 15px 32px;
      background: var(--teal-dark);
      color: var(--branco);
      border: 2px solid var(--teal-dark);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.2s;
    }

    .btn-cta-primary:hover { background: var(--verde); border-color: var(--verde); }

    /* ── FOOTER ── */
    .footer {
      background: #f5f6f7;
      padding-top: 70px;
      border-top: 1px solid rgba(0,0,0,0.04);
    }

    .footer-container {
      width: 100%; max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px 70px;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 70px;
    }

    .footer-logo { width: 56px; height: auto; margin-bottom: 32px; }

    .footer-brand p {
      max-width: 240px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 34px;
    }

    .footer-socials { display: flex; gap: 16px; }
    .footer-socials a {
      width: 40px; height: 40px;
      border: 1px solid #dfe3e6;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      background: white;
      transition: 0.2s ease;
    }
    .footer-socials a:hover { border-color: var(--teal-dark); }

    .footer-column h4 {
      text-transform: uppercase;
      margin-bottom: 28px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--teal-dark);
    }

    .footer-column a, .footer-column p {
      display: block;
      margin-bottom: 18px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      text-decoration: none;
    }
    .footer-column a:hover { color: var(--teal-dark); }

    .newsletter-form { margin-top: 22px; }
    .newsletter-form input {
      width: 100%; height: 54px;
      box-sizing: border-box;
      border: 1px solid #d9dfe3;
      border-bottom: none;
      border-radius: 10px 10px 0 0;
      padding: 0 16px; outline: none;
      background: white;
      font-family: var(--font-ui); font-size: 15px; color: rgb(82,97,96);
    }
    .newsletter-form input::placeholder { color: rgb(82,97,96); }
    .newsletter-form button {
      width: 100%; height: 50px;
      border: none; border-radius: 0 0 10px 10px;
      background: var(--teal-dark);; color: white;
      font-family: var(--font-ui); font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      cursor: pointer; transition: background .2s;
    }
    .newsletter-form button:hover { background: #00574d; }

    .footer-bottom {
      border-top: 1px solid #dde3e5;
      padding: 26px 32px;
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1280px; margin: 0 auto;
    }
    .footer-bottom p, .footer-bottom a {
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--verde); }

    .footer-bottom-links {
      display: flex; align-items: center; gap: 24px;
    }

    .livro-reclamacoes-link {
      display: flex; align-items: center; gap: 8px;
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
      transition: color 0.2s;
    }
    .livro-reclamacoes-link:hover { color: var(--verde) !important; }

    .livro-reclamacoes-link svg { flex-shrink: 0; }


/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #1a1c1c;
  border-radius: 2px;
  transition: all .25s;
}

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
  z-index: 490;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 72px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f4f4f4;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1a1c1c;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

.mobile-link {
  display: block;
  padding: 17px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #1a1c1c;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color .2s, padding-left .2s;
}
.mobile-link:hover, .mobile-link.active {
  color: #006b5f;
  padding-left: 32px;
}

.mobile-bottom {
  padding: 20px 22px 28px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: #006b5f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-cta-btn:hover { background: #00574d; }

.mobile-contact {
  text-align: center;
  font-size: 13px;
  color: #6b7a84;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { padding-top: 72px; }
  nav { height: 72px; padding: 0 20px; }
  nav .nav-links, nav .search-box { display: none !important; }
  .nav-hamburger { display: flex !important; }

  .category-hero { height: 260px; }
  .category-hero-content { padding: 0 20px 36px; }
  .category-hero h1 { font-size: clamp(36px, 9vw, 56px); letter-spacing: -1.5px; margin-bottom: 12px; }
  .category-hero p { font-size: 15px; }

  .intro-section { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .valores-grid { grid-template-columns: 1fr 1fr; }

  .ofertas-section { padding: 56px 20px; }
  .ofertas-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header p { text-align: left; max-width: 100%; }

  .cta-inner { flex-direction: column; align-items: flex-start; padding: 56px 20px; gap: 28px; }

  .footer { padding-top: 40px; }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    padding: 0 20px 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 14px; max-width: 100%; margin-bottom: 18px; }
  .footer-logo { width: 44px; margin-bottom: 18px; }
  .footer-column h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-column a, .footer-column p { font-size: 13px; margin-bottom: 10px; }
  .newsletter-form input { height: 46px; font-size: 14px; }
  .newsletter-form button { height: 42px; font-size: 11px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 20px;
  }
  .footer-bottom p, .footer-bottom a { font-size: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
  nav { height: 68px; padding: 0 18px; }
  .nav-logo img { height: 36px; }

  .category-hero { height: 220px; }
  .category-hero h1 { font-size: clamp(30px, 9vw, 42px); }

  .intro-section { padding: 48px 18px; }
  .valores-grid { grid-template-columns: 1fr; }
  .valor-card { padding: 18px; }

  .ofertas-section { padding: 48px 18px; }

  .cta-inner { padding: 48px 18px; }
  .btn-cta-primary { width: 100%; text-align: center; }

  .footer-container { grid-template-columns: 1fr; }
}

