    *, *::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;
      --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(--verde); }

    .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 svg path { stroke: rgb(82,97,96); }
    .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 {
      padding: 72px 80px 56px;
      max-width: 1280px;
      margin: 0 auto;
      background:#fff
    }

    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--texto);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

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

    .hero-underline {
      width: 72px;
      height: 4px;
      background: var(--verde);
      border-radius: 2px;
    }

    /* ── LAYOUT ── */
    .content-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 56px 80px 56px;
    }

    /* ── SECTION BLOCK ── */
    .policy-section {
      margin-bottom: 20px;
      position: relative;
    }

    .section-num {
      position: absolute;
      top: -16px;
      left: -20px;
      font-family: var(--font-display);
      font-size: 96px;
      font-weight: 700;
      color: var(--fundo1);
      line-height: 1;
      z-index: 0;
      user-select: none;
    }

    .section-inner {
      position: relative;
      z-index: 1;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .section-bar {
      width: 4px;
      height: 20px;
      background: var(--verde);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .section-header h2 {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--texto);
    }

    /* ── PRIVACY TEXT ── */
    .policy-text p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--texto2);
      margin-bottom: 20px;
    }

    .policy-text p:last-child { margin-bottom: 0; }

    .policy-text strong {
      color: var(--texto);
      font-weight: 600;
    }

    /* ── COOKIES GRID ── */
    .cookies-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }

    .cookie-card {
      background: var(--fundo2);
      border: 1px solid var(--borda);
      border-radius: 8px;
      padding: 28px 28px;
    }

    .cookie-card.full { grid-column: 1 / -1; }

    .cookie-card h3 {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--verde);
      margin-bottom: 14px;
    }

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

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--fundo1);
      padding: 64px 80px;
      margin-top: 0;
    }

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

    .cta-left h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--texto);
      margin-bottom: 10px;
    }

    .cta-left p {
      font-size: 15px;
      color: var(--texto2);
    }

    .btn-solid {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      background: var(--verde);
      color: var(--branco);
      padding: 16px 28px;
      border-radius: 5px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
    }
    .btn-solid:hover { background: #00574d; }

    .btn-solid svg { flex-shrink: 0; }

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

    .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(--verde)}

    .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(--verde);; 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; }

  .page-hero { padding: 48px 24px 36px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.2px; }

  .content-wrap { padding: 40px 24px 64px; }

  .section-num { font-size: 64px; left: -8px; }

  .cookies-grid { grid-template-columns: 1fr; }
  .cookie-card.full { grid-column: 1; }

  .cta-band { padding: 48px 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btn-solid { width: 100%; justify-content: center; }

  .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 { padding: 40px 18px 28px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 38px); }

  .content-wrap { padding: 32px 18px 48px; }
  .policy-text p { font-size: 14px; }
  .section-num { font-size: 52px; }

  .cta-band { padding: 40px 18px; }

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

