/* ═══════════════════════════════════════════
   ZENPURE — privacidade.css
   ═══════════════════════════════════════════ */

/* ══════════════════════════════
   HERO STRIP
══════════════════════════════ */
.privacy-hero {
  background: var(--navy);
  padding: 140px 8% 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.privacy-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.privacy-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 12px 0 20px;
}
.privacy-hero__title em {
  font-style: italic;
  color: var(--green-light);
}
.privacy-hero__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
  max-width: 480px;
}
.privacy-hero__updated {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 50px;
}
.privacy-hero__updated span {
  color: var(--green-light);
  font-weight: 500;
}

.privacy-hero__deco {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 300;
  color: rgba(255, 255, 255, .03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 5% 100px;
  align-items: start;
}

/* ══════════════════════════════
   SIDEBAR / TABLE OF CONTENTS
══════════════════════════════ */
.privacy-sidebar {
  position: sticky;
  top: 92px;
  padding-right: 40px;
}

.privacy-sidebar__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.privacy-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privacy-toc a {
  display: block;
  font-size: 13px;
  color: var(--navy-mid);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all .2s;
  line-height: 1.4;
}
.privacy-toc a:hover {
  background: rgba(74,124,89,.07);
  color: var(--green-dark);
  border-left-color: var(--green-mid);
}
.privacy-toc a.active {
  background: rgba(74,124,89,.1);
  color: var(--green-dark);
  border-left-color: var(--green-dark);
  font-weight: 500;
}

/* ══════════════════════════════
   CONTENT AREA
══════════════════════════════ */
.privacy-content {
  min-width: 0;
}

.privacy-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.privacy-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(74,124,89,.15);
}

.privacy-section__num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.privacy-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.privacy-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
}

.privacy-content ul,
.privacy-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-content li {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
}

.privacy-content strong {
  color: var(--navy);
  font-weight: 500;
}

.privacy-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-content a:hover {
  color: var(--green-mid);
}

/* Callout box */
.privacy-callout {
  background: rgba(200,219,192,.15);
  border: 1px solid rgba(74,124,89,.25);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}
.privacy-callout p {
  font-size: 14px !important;
  color: var(--navy-mid) !important;
  margin: 0 !important;
}

/* Warning callout */
.privacy-callout--warn {
  background: rgba(255,235,200,.2);
  border-color: rgba(200,140,60,.3);
  border-left-color: #c88c3c;
}
.privacy-callout--warn p {
  color: #6b4510 !important;
}

/* Table */
.privacy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,124,89,.15);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.privacy-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.privacy-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.privacy-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.privacy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(74,124,89,.1);
  color: #3a3a3a;
  vertical-align: top;
  line-height: 1.6;
}

.privacy-table tr:last-child td { border-bottom: none; }
.privacy-table tr:nth-child(even) td { background: rgba(200,219,192,.06); }

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.right-card {
  background: var(--white);
  border: 1px solid rgba(74,124,89,.2);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color .25s, box-shadow .25s;
}
.right-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 20px rgba(74,124,89,.1);
}
.right-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.right-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.right-card__desc {
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ══════════════════════════════
   FOOTER STRIP
══════════════════════════════ */
.privacy-footer-strip {
  background: var(--navy);
  padding: 60px 8%;
  text-align: center;
}
.privacy-footer-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.privacy-footer-strip h2 em {
  font-style: italic;
  color: var(--green-light);
}
.privacy-footer-strip p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}
.privacy-footer-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background .25s;
}
.privacy-footer-strip a:hover { background: var(--green-dark); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    padding: 40px 6% 80px;
  }
  .privacy-sidebar {
    position: static;
    padding-right: 0;
    margin-bottom: 48px;
  }
  .privacy-toc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .privacy-toc a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
  }
  .privacy-toc a:hover,
  .privacy-toc a.active {
    border-left-color: transparent;
    border-bottom-color: var(--green-mid);
  }
}

@media (max-width: 620px) {
  .privacy-hero {
    padding: 120px 6% 60px;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .privacy-table th,
  .privacy-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
