    *, *::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 ── */
    .page-hero {
      position: relative;
      height: 340px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background: #0d2b28;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0a1f1d 0%, #1a4a42 60%, #006b5f 100%);
      opacity: 0.95;
    }

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

    .page-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;
    }

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

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

    /* ── FILTROS ── */
    .filters-bar {
      padding: 20px 40px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--borda);
      flex-wrap: wrap;
      background: var(--branco);
    }

    .filter-btn {
      font-family: var(--font-ui);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 8px 20px;
      border: none;
      border-radius: 4px;
      background: #e8e8e8;
      color: #526160;
      cursor: pointer;
      transition: all .2s;
    }
    .filter-btn:hover { background: #d0d5d8; color: var(--teal-dark); }
    .filter-btn.active { background: var(--teal-dark); color: var(--branco); }

    /* ── DESTAQUE ── */
    .news-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 56px 40px 80px;
    }

    .news-destaque {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 32px;
      margin-bottom: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--borda);
    }

    .card-destaque {
      background: var(--grey-bg);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .card-destaque:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }

    .card-destaque-img {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, #1a4a42, #006b5f);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .card-destaque-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .card-destaque-img .img-placeholder-icon {
      opacity: 0.3;
    }

    .card-destaque-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }

    .card-destaque-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* ── CARD NORMAL ── */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .news-card {
      background: var(--branco);
      border: 1px solid var(--borda);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

    .news-card-img {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, #1a3a38, #1a7a6e);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .news-card-img img { width: 100%; height: 100%; object-fit: cover; }

    .news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

    /* ── CARD LATERAL (destaque lado) ── */
    .card-side {
      background: var(--branco);
      border: 1px solid var(--borda);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      gap: 0;
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .card-side:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }

    .card-side-img {
      width: 110px;
      flex-shrink: 0;
      background: linear-gradient(135deg, #1a3a38, #006b5f);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-side-body { padding: 20px; flex: 1; }

    /* ── ELEMENTOS COMUNS ── */
    .news-cat {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: inline-block;
    }

    .cat-feiras      { color: #7b5ea7; }
    .cat-entregas    { color: var(--verde); }
    .cat-maquinas    { color: #1a7a6e; }
    .cat-artigos     { color: #b07a2a; }

    .cat-tag {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 12px;
    }
    .cat-tag-feiras   { background: rgba(123,94,167,0.1); color: #7b5ea7; }
    .cat-tag-entregas { background: rgba(0,107,95,0.1);   color: var(--verde); }
    .cat-tag-maquinas { background: rgba(26,122,110,0.1); color: #1a7a6e; }
    .cat-tag-artigos  { background: rgba(176,122,42,0.1); color: #b07a2a; }

    .news-title {
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--black);
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .news-title-lg { font-size: clamp(18px, 2vw, 26px); margin-bottom: 14px; }
    .news-title-md { font-size: 17px; }
    .news-title-sm { font-size: 14px; }

    .news-excerpt {
      font-size: 14px;
      color: var(--texto2);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 20px;
    }

    .news-excerpt-sm { font-size: 13px; margin-bottom: 12px; }

    .news-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: auto;
    }

    .news-date {
      font-family: var(--font-ui);
      font-size: 12px;
      color: #9aacab;
      font-weight: 600;
    }

    .news-read-more {
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--verde);
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── LOAD MORE ── */
    .load-more-wrap {
      display: flex;
      justify-content: center;
      padding: 48px 0 80px;
    }

    .btn-load-more {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: 2px solid var(--black);
      background: transparent;
      color: var(--black);
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
    }
    .btn-load-more:hover { background: var(--black); color: var(--branco); }

    /* ── 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; }



/* ── MOBILE CATEGORY SELECT ── */
.mobile-cat-select {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
}
.mobile-cat-select label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #5a6470;
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile-cat-select select {
  flex: 1;
  height: 42px;
  padding: 0 32px 0 12px;
  border: 1.5px solid #1a7a6e;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a7a6e;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a7a6e' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
/* ── 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; }

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

  .filters-bar { display: none !important; }
  .mobile-cat-select { display: flex !important; }

  .news-section { padding: 40px 20px 60px; }

  .news-destaque {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .card-destaque-img { height: 220px; }
  .card-destaque-body { padding: 20px 22px 24px; }
  .card-destaque-side { gap: 14px; }
  .card-side-img { width: 88px; }
  .card-side-body { padding: 16px; }

  .news-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .news-card-img { height: 150px; }
  .news-card-body { padding: 18px; }
  .news-title-md { font-size: 15px; }

  .load-more-wrap { padding: 32px 0 56px; }

  .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; }

  .page-hero { height: 220px; }
  .page-hero h1 { font-size: clamp(28px, 9vw, 40px); }



  .news-section { padding: 32px 18px 48px; }

  .news-destaque { grid-template-columns: 1fr; }
  .card-destaque-img { height: 190px; }

  .news-grid { grid-template-columns: 1fr; gap: 14px; }

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

