/* =============================================
   FIXO CAR — Privacy Policy Styles
   Brand: Red (#001a4d) on White, clean & sharp
   ============================================= */

:root {
  --navy: #001a4d;
  --navy-dark: #001440;
  --navy-light: #f0f3fa;
  --black: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-300: #d4d4d4;
  --gray-100: #f7f7f7;
  --white: #ffffff;
  --border: #e8e8e8;

  --font: 'Inter', sans-serif;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}

.logo-icon {
  font-size: 22px;
}

.logo-accent {
  color: var(--navy);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #001440 100%);
  padding: 56px 32px 52px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero::before {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta strong {
  color: var(--white);
}

/* ── Layout ──────────────────────────────────── */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── TOC ─────────────────────────────────────── */
.toc {
  position: sticky;
  top: 72px;
  background: var(--gray-100);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px 20px 20px 18px;
}

.toc-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: block;
  font-size: 13px;
  color: var(--gray-700);
  padding: 5px 0;
  border-radius: 4px;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: var(--navy);
}

/* ── Policy Body ─────────────────────────────── */
.policy-body {
  min-width: 0;
}

.policy-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.section-num {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

p {
  margin-bottom: 12px;
  color: var(--gray-700);
}
p:last-child {
  margin-bottom: 0;
}
.muted {
  color: var(--gray-500);
}

/* ── Info Cards ──────────────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.info-card {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.info-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.info-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px !important;
}

.info-card-body {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0 !important;
}

/* ── Policy List ─────────────────────────────── */
.policy-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  border-left: 3px solid var(--navy);
  line-height: 1.5;
}

/* ── Highlight Box ───────────────────────────── */
.highlight-box {
  background: var(--navy-light);
  border: 1px solid #c6cfe8;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.highlight-box p {
  margin: 0;
  color: var(--gray-900);
  font-size: 14px;
}
.highlight-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Security Grid ───────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.security-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.security-icon {
  font-size: 24px;
}
.security-item p {
  font-size: 13px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ── Rights List ─────────────────────────────── */
.rights-list {
  list-style: none;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  padding: 4px 0;
}

.right-dot {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.rights-cta {
  font-size: 14px;
  color: var(--gray-700);
}

.link-navy {
  color: var(--navy);
  font-weight: 500;
}
.link-navy:hover {
  text-decoration: underline;
  color: var(--navy-dark);
}

/* ── Contact Card ────────────────────────────── */
.contact-card {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 8px;
}

.contact-card-header {
  background: linear-gradient(135deg, var(--navy), #001440);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card-icon {
  font-size: 22px;
}

.contact-card-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.contact-card-sub {
  padding: 16px 24px 4px;
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
}

.contact-details {
  padding: 8px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  min-width: 72px;
}

.contact-value {
  font-size: 14px;
  color: var(--gray-900);
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 28px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-stores {
  display: flex;
  gap: 10px;
}

.store-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 820px) {
  .content-wrap {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
  }

  .toc {
    position: static;
  }

  .info-cards,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 20px 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 20px;
  }
  .hero-title {
    font-size: 28px;
  }
  .contact-card-sub,
  .contact-details {
    padding-left: 16px;
    padding-right: 16px;
  }
}
