/* ============================================================
   Matrix Print — Política de Privacidade
   Arquivo: mp-privacidade.css
   Prefixo: mppp- (mp política privacidade)
   ============================================================ */

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  --mppp-bg:          #F4F4F4;
  --mppp-white:       #ffffff;
  --mppp-dark:        #090b12;
  --mppp-dark-2:      #0f1220;
  --mppp-dark-text:   #1a1f35;
  --mppp-orange:      #FF6B1A;
  --mppp-orange-dim:  rgba(255, 107, 26, 0.08);
  --mppp-orange-bdr:  rgba(255, 107, 26, 0.20);
  --mppp-gray:        #6b7280;
  --mppp-gray-light:  #e5e7eb;
  --mppp-border:      rgba(0, 0, 0, 0.07);
  --mppp-font-d:      'Syne', sans-serif;
  --mppp-font-b:      'Space Grotesk', sans-serif;
}

/* ============================================================
   01. HERO DA PÁGINA
   ============================================================ */
.mppp-hero {
  background: var(--mppp-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) 0 clamp(50px, 7vw, 90px);  /* ← reduziu só o topo */
  text-align: center;
}

/* Grade técnica */
.mppp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Glow */
.mppp-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.mppp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.mppp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mppp-font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mppp-orange);
  background: rgba(255,107,26,0.10);
  border: 1px solid var(--mppp-orange-bdr);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.mppp-hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mppp-orange);
  border-radius: 50%;
}

.mppp-hero-title {
  font-family: var(--mppp-font-d);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.mppp-hero-sub {
  font-family: var(--mppp-font-b);
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(160,168,192,0.9);
  line-height: 1.7;
  margin: 0 0 28px;
}

.mppp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mppp-hero-meta-item {
  font-family: var(--mppp-font-b);
  font-size: 12px;
  color: rgba(160,168,192,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mppp-hero-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--mppp-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   02. CORPO DA PÁGINA
   ============================================================ */
.mppp-body {
  background: var(--mppp-bg);
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
}

.mppp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

/* ============================================================
   03. ÍNDICE LATERAL (STICKY)
   ============================================================ */
.mppp-sidebar {
  position: sticky;
  top: 100px;
}

.mppp-sidebar-box {
  background: var(--mppp-white);
  border: 1px solid var(--mppp-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.mppp-sidebar-title {
  font-family: var(--mppp-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mppp-gray);
  margin: 0 0 16px;
}

.mppp-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mppp-sidebar-nav li a {
  display: block;
  font-family: var(--mppp-font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--mppp-gray);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.3;
}

.mppp-sidebar-nav li a:hover,
.mppp-sidebar-nav li a.active {
  background: var(--mppp-orange-dim);
  color: var(--mppp-orange);
  text-decoration: none;
}

.mppp-sidebar-divider {
  height: 1px;
  background: var(--mppp-border);
  margin: 16px 0;
}

.mppp-sidebar-contact {
  background: var(--mppp-orange-dim);
  border: 1px solid var(--mppp-orange-bdr);
  border-radius: 10px;
  padding: 14px;
}

.mppp-sidebar-contact-text {
  font-family: var(--mppp-font-b);
  font-size: 12px;
  color: var(--mppp-dark-text);
  line-height: 1.5;
  margin: 0 0 10px;
}

.mppp-sidebar-contact-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mppp-font-b);
  font-size: 12px;
  font-weight: 600;
  color: var(--mppp-dark);
  background: var(--mppp-orange);
  border-radius: 7px;
  padding: 8px 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mppp-sidebar-contact-btn:hover {
  opacity: 0.88;
  color: var(--mppp-dark) !important;
  text-decoration: none;
}

.mppp-sidebar-contact-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--mppp-dark);
  flex-shrink: 0;
}

/* ============================================================
   04. CONTEÚDO PRINCIPAL
   ============================================================ */
.mppp-content {
  min-width: 0;
}

/* Card de seção */
.mppp-section {
  background: var(--mppp-white);
  border: 1px solid var(--mppp-border);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 48px);
  margin-bottom: clamp(16px, 2vw, 24px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  scroll-margin-top: 100px;
}

/* Cabeçalho da seção */
.mppp-sec-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mppp-border);
}

.mppp-sec-num {
  width: 36px;
  height: 36px;
  background: var(--mppp-orange-dim);
  border: 1px solid var(--mppp-orange-bdr);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mppp-font-d);
  font-size: 13px;
  font-weight: 800;
  color: var(--mppp-orange);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.mppp-sec-title {
  font-family: var(--mppp-font-d);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--mppp-dark-text);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  padding-top: 5px;
}

/* Tipografia do conteúdo */
.mppp-section p {
  font-family: var(--mppp-font-b);
  font-size: clamp(13.5px, 1vw, 15px);
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px;
  text-align: justify;
}

.mppp-section p:last-child {
  margin-bottom: 0;
}

.mppp-section strong {
  color: var(--mppp-dark-text);
  font-weight: 600;
}

.mppp-section a {
  color: var(--mppp-orange);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--mppp-orange-bdr);
  transition: border-color 0.2s;
}

.mppp-section a:hover {
  border-color: var(--mppp-orange);
}

/* Listas */
.mppp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mppp-list li {
  font-family: var(--mppp-font-b);
  font-size: clamp(13.5px, 1vw, 15px);
  color: #374151;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mppp-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mppp-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* Destaque / caixa de info */
.mppp-info-box {
  background: var(--mppp-orange-dim);
  border: 1px solid var(--mppp-orange-bdr);
  border-left: 3px solid var(--mppp-orange);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}

.mppp-info-box p {
  margin: 0 !important;
  color: var(--mppp-dark-text) !important;
  font-weight: 500 !important;
}

/* Tabela de dados */
.mppp-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 10px;
  border: 1px solid var(--mppp-border);
}

.mppp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mppp-font-b);
  font-size: 13.5px;
}

.mppp-table th {
  background: var(--mppp-orange-dim);
  color: var(--mppp-dark-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--mppp-orange-bdr);
}

.mppp-table td {
  padding: 12px 16px;
  color: #374151;
  border-bottom: 1px solid var(--mppp-border);
  line-height: 1.5;
  vertical-align: top;
}

.mppp-table tr:last-child td {
  border-bottom: none;
}

.mppp-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.015);
}

/* Subtítulo interno */
.mppp-subtitle-inner {
  font-family: var(--mppp-font-d);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--mppp-dark-text);
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mppp-subtitle-inner::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--mppp-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Card de contato final */
.mppp-contact-card {
  background: var(--mppp-dark);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(16px, 2vw, 24px);
  position: relative;
  overflow: hidden;
}

.mppp-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mppp-orange), transparent);
}

.mppp-contact-card-title {
  font-family: var(--mppp-font-d);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.mppp-contact-card-title em {
  color: var(--mppp-orange);
  font-style: normal;
}

.mppp-contact-card-sub {
  font-family: var(--mppp-font-b);
  font-size: 14px;
  color: rgba(160,168,192,0.85);
  margin: 0;
  line-height: 1.6;
}

.mppp-contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mppp-font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--mppp-dark);
  background: var(--mppp-orange);
  border: 2px solid var(--mppp-orange);
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}

.mppp-contact-card-btn:hover {
  background: transparent;
  color: var(--mppp-orange);
  text-decoration: none;
}

/* ============================================================
   05. RESPONSIVIDADE
   ============================================================ */
@media (max-width: 900px) {
  .mppp-container {
    grid-template-columns: 1fr;
  }
  .mppp-sidebar {
    position: static;
    order: -1;
  }
  .mppp-sidebar-box {
    padding: 16px;
  }
  .mppp-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .mppp-sidebar-nav li a {
    font-size: 12px;
    padding: 5px 10px;
  }
}

@media (max-width: 600px) {
  .mppp-contact-card {
    grid-template-columns: 1fr;
  }
  .mppp-contact-card-btn {
    width: 100%;
    justify-content: center;
  }
  .mppp-table {
    font-size: 12px;
  }
  .mppp-table th,
  .mppp-table td {
    padding: 10px 12px;
  }
}
