/* ============================================================
   PAMPZZ — Sistema de Design Corporativo
   Versão 1.0 | pampzz.online
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Paleta Principal */
  --obsidian:       #1C1C1E;
  --graphite:       #2C2C2E;
  --slate:          #3A3A3C;
  --iron:           #4A4A4C;
  --mist:           #8A8A8E;
  --silver:         #C2C0BC;
  --ash:            #E4E2DD;
  --pearl:          #F0EEE9;
  --ivory:          #F9F8F5;
  --white:          #FFFFFF;

  /* Cor de Destaque */
  --amber:          #A07828;
  --amber-hover:    #B98B35;
  --amber-muted:    #D4AA60;
  --amber-subtle:   #F5ECD8;

  /* Cor Institucional */
  --petroleum:      #1B3A4B;
  --petroleum-dark: #122736;
  --petroleum-mid:  #2D5470;
  --petroleum-pale: #E8F0F5;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Escala Tipográfica */
  --text-xs:   0.6875rem;   /* 11px */
  --text-sm:   0.8125rem;   /* 13px */
  --text-base: 0.9375rem;   /* 15px */
  --text-md:   1.0625rem;   /* 17px */
  --text-lg:   1.1875rem;   /* 19px */
  --text-xl:   1.375rem;    /* 22px */
  --text-2xl:  1.75rem;     /* 28px */
  --text-3xl:  2.25rem;     /* 36px */
  --text-4xl:  3rem;        /* 48px */
  --text-5xl:  4rem;        /* 64px */
  --text-6xl:  5.25rem;     /* 84px */

  /* Peso Tipográfico */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;

  /* Espaçamento */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-14:  3.5rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-28:  7rem;
  --sp-32:  8rem;
  --sp-40:  10rem;

  /* Layout */
  --container:        1240px;
  --container-narrow: 820px;
  --container-text:   680px;

  /* Bordas */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --border-1:   1px solid var(--ash);
  --border-2:   1px solid var(--silver);
  --border-dark: 1px solid var(--slate);

  /* Sombras */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);

  /* Transições */
  --ease-fast:  180ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base:  280ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:  460ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Line Heights */
  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Letter Spacing */
  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.1em;
  --tracking-widest:  0.15em;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--graphite);
  background-color: var(--ivory);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  line-height: var(--leading-tight);
  color: var(--obsidian);
  letter-spacing: var(--tracking-tight);
}


/* ============================================================
   CONTAINER & GRID
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--text {
  max-width: var(--container-text);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.grid-asym {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
}

.grid-asym-rev {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}


/* ============================================================
   TIPOGRAFIA
   ============================================================ */

.display-xl {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-light);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--obsidian);
}

.display-lg {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-light);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-regular);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-regular);
  line-height: 1.2;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
  line-height: 1.3;
}

.heading-md {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

.body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--iron);
}

.body-md {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--iron);
}

.body-sm {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--mist);
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--mist);
}

.label--amber {
  color: var(--amber);
}

.label--petroleum {
  color: var(--petroleum-mid);
}

.italic {
  font-style: italic;
}


/* ============================================================
   HEADER & NAVEGAÇÃO
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(249, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-1);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-semi);
  letter-spacing: 0.08em;
  color: var(--obsidian);
  line-height: 1;
}

.logo-descriptor {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--mist);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--iron);
  text-decoration: none;
  transition: color var(--ease-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-base);
}

.nav-link:hover {
  color: var(--obsidian);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--obsidian);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: var(--obsidian);
  color: var(--ivory) !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-sm);
  transition: background var(--ease-fast);
  text-decoration: none;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--slate);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--graphite);
  transition: transform var(--ease-base), opacity var(--ease-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-bottom: var(--border-1);
  padding: var(--sp-6);
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--text-base);
  border-bottom: var(--border-1);
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--obsidian);
  color: var(--silver);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-10);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer-brand .logo-mark {
  color: var(--white);
  margin-bottom: var(--sp-4);
  display: block;
}

.footer-brand .logo-descriptor {
  color: var(--mist);
  margin-bottom: var(--sp-6);
  display: block;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--silver);
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--silver);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}

.footer-contact-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--mist);
}

.footer-contact-value {
  font-size: var(--text-sm);
  color: var(--silver);
}

.footer-contact-value a {
  color: var(--silver);
  transition: color var(--ease-fast);
}

.footer-contact-value a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--slate);
  margin-bottom: var(--sp-8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}

.footer-legal strong {
  color: var(--mist);
  font-weight: var(--weight-medium);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: var(--iron);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-legal-links a:hover {
  color: var(--silver);
}


/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease-fast);
  white-space: nowrap;
  line-height: 1;
  height: 44px;
}

.btn-primary {
  background: var(--obsidian);
  color: var(--white);
  border-color: var(--obsidian);
}

.btn-primary:hover {
  background: var(--graphite);
  border-color: var(--graphite);
}

.btn-secondary {
  background: transparent;
  color: var(--obsidian);
  border-color: var(--silver);
}

.btn-secondary:hover {
  border-color: var(--obsidian);
  background: var(--pearl);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.btn-amber:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--mist);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--obsidian);
}

.btn-lg {
  height: 52px;
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--text-base);
}

.btn-sm {
  height: 36px;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}

.btn-icon .arrow {
  transition: transform var(--ease-base);
}

.btn-icon:hover .arrow {
  transform: translateX(4px);
}


/* ============================================================
   SEÇÕES
   ============================================================ */

section {
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
}

.section-sm {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
}

.section-xl {
  padding-top: var(--sp-32);
  padding-bottom: var(--sp-32);
}

.section-dark {
  background: var(--obsidian);
  color: var(--silver);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-charcoal {
  background: var(--graphite);
  color: var(--silver);
}

.section-charcoal h2,
.section-charcoal h3,
.section-charcoal h4 {
  color: var(--white);
}

.section-petroleum {
  background: var(--petroleum);
  color: rgba(255,255,255,0.8);
}

.section-petroleum h2,
.section-petroleum h3 {
  color: var(--white);
}

.section-pearl {
  background: var(--pearl);
}

.section-amber-subtle {
  background: var(--amber-subtle);
}

.section-header {
  margin-bottom: var(--sp-16);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-16);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}

.section-label--light {
  color: var(--amber-muted);
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: var(--sp-6);
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   HERO — INDEX
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ivory);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--pearl);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ash);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  width: 100%;
}

.hero-content {
  padding-right: var(--sp-8);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--weight-light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--obsidian);
  margin-bottom: var(--sp-8);
}

.hero-headline em {
  font-style: italic;
  font-weight: var(--weight-light);
}

.hero-subtext {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--iron);
  max-width: 480px;
  margin-bottom: var(--sp-12);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) 0;
}

.hero-data-block {
  background: var(--white);
  border: var(--border-1);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
}

.hero-data-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--amber);
}

.hero-stat {
  margin-bottom: var(--sp-8);
}

.hero-stat:last-child {
  margin-bottom: 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: var(--obsidian);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--mist);
  letter-spacing: var(--tracking-wide);
}

.hero-stat-divider {
  width: 100%;
  height: 1px;
  background: var(--ash);
  margin: var(--sp-6) 0;
}

.hero-badge {
  position: absolute;
  bottom: var(--sp-16);
  right: -var(--sp-6);
  background: var(--obsidian);
  color: var(--white);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}


/* ============================================================
   CARDS & PAINEIS
   ============================================================ */

.card {
  background: var(--white);
  border: var(--border-1);
  padding: var(--sp-8);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

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

.card-elevated {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-8);
  transition: box-shadow var(--ease-base);
}

.card-elevated:hover {
  box-shadow: var(--shadow-md);
}

.card-dark {
  background: var(--graphite);
  color: var(--silver);
  padding: var(--sp-8);
  border: 1px solid var(--slate);
}

.card-dark h3 {
  color: var(--white);
}

.card-service {
  border: var(--border-1);
  padding: var(--sp-10) var(--sp-8);
  background: var(--white);
  position: relative;
  transition: border-color var(--ease-base);
}

.card-service:hover {
  border-color: var(--silver);
}

.card-service-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: var(--ash);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-6);
}

.card-service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-6);
  color: var(--amber);
}

.card-service h3 {
  margin-bottom: var(--sp-4);
}

.card-service p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}

.card-service-tag {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--mist);
}

.card-differential {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  border-bottom: var(--border-1);
}

.card-differential:last-child {
  border-bottom: none;
}

.card-differential-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--amber-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-differential-icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.card-differential-content h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  margin-bottom: var(--sp-2);
  color: var(--obsidian);
}

.card-differential-content p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   PROCESSO / STEPS
   ============================================================ */

.process-track {
  position: relative;
  padding-top: var(--sp-8);
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 24px;
  bottom: 0;
  width: 1px;
  background: var(--ash);
}

.process-step {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ash);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--obsidian);
  position: relative;
  z-index: 1;
}

.process-step-number.active {
  background: var(--obsidian);
  color: var(--white);
  border-color: var(--obsidian);
}

.process-step-content {
  padding-top: var(--sp-3);
}

.process-step-content h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  margin-bottom: var(--sp-2);
  color: var(--obsidian);
}

.process-step-content p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  border-top: var(--border-1);
}

.faq-item {
  border-bottom: var(--border-1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: var(--obsidian);
  transition: color var(--ease-fast);
}

.faq-question:hover {
  color: var(--graphite);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--mist);
  transition: transform var(--ease-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  transition: transform var(--ease-base), opacity var(--ease-base);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding-bottom: var(--sp-6);
  font-size: var(--text-base);
  color: var(--iron);
  line-height: var(--leading-relaxed);
  max-width: 680px;
}

.faq-item.open .faq-answer {
  display: block;
}


/* ============================================================
   FORMULÁRIO
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--iron);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border: var(--border-1);
  border-radius: var(--radius-sm);
  color: var(--obsidian);
  font-size: var(--text-base);
  transition: border-color var(--ease-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--iron);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--silver);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238A8A8E' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--mist);
}

.form-submit {
  margin-top: var(--sp-6);
}


/* ============================================================
   CONTACT PAGE ELEMENTS
   ============================================================ */

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--mist);
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: var(--obsidian);
  line-height: var(--leading-snug);
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

.contact-info-value a:hover {
  color: var(--amber);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border: var(--border-1);
  text-decoration: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-base);
  margin-bottom: var(--sp-3);
}

.contact-channel:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-xs);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 18px;
  height: 18px;
  color: var(--iron);
}

.contact-channel-content {
  flex: 1;
}

.contact-channel-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-bottom: var(--sp-1);
}

.contact-channel-value {
  font-size: var(--text-base);
  color: var(--obsidian);
  font-weight: var(--weight-medium);
}

.contact-channel-arrow {
  color: var(--silver);
  transition: transform var(--ease-base), color var(--ease-fast);
}

.contact-channel:hover .contact-channel-arrow {
  transform: translateX(4px);
  color: var(--iron);
}


/* ============================================================
   SOBRE — TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding-left: var(--sp-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--amber), var(--ash));
}

.timeline-entry {
  position: relative;
  margin-bottom: var(--sp-10);
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: calc(var(--sp-10) * -1);
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateX(-3px);
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-wider);
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.timeline-entry h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--obsidian);
  margin-bottom: var(--sp-2);
}

.timeline-entry p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   VALORES / MISSÃO / VISÃO
   ============================================================ */

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border-1);
}

.mvv-item {
  padding: var(--sp-10) var(--sp-8);
  border-right: var(--border-1);
  position: relative;
}

.mvv-item:last-child {
  border-right: none;
}

.mvv-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-5);
}

.mvv-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  color: var(--obsidian);
  margin-bottom: var(--sp-5);
}

.mvv-item p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-1);
}

.value-item {
  background: var(--pearl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--amber);
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--obsidian);
  margin-bottom: var(--sp-3);
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-hero {
  background: var(--obsidian);
  color: var(--white);
  padding-top: calc(72px + var(--sp-16));
  padding-bottom: var(--sp-16);
}

.legal-hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.legal-hero p {
  color: var(--mist);
  font-size: var(--text-base);
}

.legal-meta {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-6);
}

.legal-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.legal-meta-label {
  font-size: var(--text-xs);
  color: var(--iron);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.legal-meta-value {
  font-size: var(--text-sm);
  color: var(--silver);
}

.legal-body {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-24);
}

.legal-toc {
  position: sticky;
  top: calc(72px + var(--sp-8));
  background: var(--pearl);
  padding: var(--sp-6);
  border-left: 2px solid var(--amber);
}

.legal-toc-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: var(--sp-4);
}

.legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-toc-list a {
  font-size: var(--text-sm);
  color: var(--iron);
  text-decoration: none;
  transition: color var(--ease-fast);
  line-height: var(--leading-normal);
}

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

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
  color: var(--obsidian);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-5);
  padding-top: var(--sp-12);
  border-top: var(--border-1);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--obsidian);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--iron);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-5);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-6);
}

.legal-content ul li,
.legal-content ol li {
  font-size: var(--text-base);
  color: var(--iron);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-2);
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content strong {
  color: var(--obsidian);
  font-weight: var(--weight-semi);
}

.legal-highlight {
  background: var(--amber-subtle);
  border-left: 3px solid var(--amber);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: var(--text-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-6);
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  border: var(--border-1);
  color: var(--iron);
}

.legal-table th {
  background: var(--pearl);
  color: var(--obsidian);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
  text-transform: uppercase;
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--obsidian);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--petroleum);
  opacity: 0.4;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.cta-content p {
  font-size: var(--text-base);
  color: var(--silver);
  max-width: 480px;
  line-height: var(--leading-relaxed);
}

.cta-actions {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--obsidian);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}


/* ============================================================
   STRIP / BREADCRUMB
   ============================================================ */

.page-hero {
  background: var(--pearl);
  padding-top: calc(72px + var(--sp-16));
  padding-bottom: var(--sp-16);
  border-bottom: var(--border-1);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: var(--weight-light);
  letter-spacing: -0.025em;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.page-hero p {
  font-size: var(--text-lg);
  color: var(--iron);
  max-width: 560px;
  line-height: var(--leading-relaxed);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.breadcrumb-item {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--mist);
}

.breadcrumb-sep {
  color: var(--silver);
  font-size: var(--text-xs);
}

.breadcrumb-item.current {
  color: var(--iron);
}

.breadcrumb-item a {
  text-decoration: none;
  transition: color var(--ease-fast);
}

.breadcrumb-item a:hover {
  color: var(--obsidian);
}


/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--pearl);
  border-top: var(--border-1);
  border-bottom: var(--border-1);
  padding: var(--sp-6) 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  justify-content: center;
}

.trust-item:not(:last-child) {
  border-right: var(--border-1);
  padding-right: var(--sp-8);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

.trust-item-text {
  font-size: var(--text-sm);
  color: var(--iron);
  font-weight: var(--weight-medium);
}


/* ============================================================
   NÚMERO / DESTAQUE
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border-1);
}

.stat-cell {
  padding: var(--sp-10) var(--sp-8);
  border-right: var(--border-1);
  text-align: center;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-light);
  color: var(--obsidian);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--iron);
  line-height: var(--leading-normal);
}

.stat-sub {
  font-size: var(--text-xs);
  color: var(--mist);
  margin-top: var(--sp-1);
}


/* ============================================================
   QUOTE / DESTAQUES
   ============================================================ */

.pull-quote {
  border-left: 3px solid var(--amber);
  padding-left: var(--sp-8);
  margin: var(--sp-8) 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  font-style: italic;
  color: var(--obsidian);
  line-height: var(--leading-snug);
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--mist);
  margin-top: var(--sp-4);
  font-family: var(--font-body);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}


/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */

.highlight-box {
  background: var(--petroleum);
  color: var(--white);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
  overflow: hidden;
}

.highlight-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-left: 60px solid transparent;
  border-bottom: 60px solid var(--petroleum-dark);
}

.highlight-box h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  margin-bottom: var(--sp-4);
}

.highlight-box p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   UTILITIES
   ============================================================ */

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-10 { margin-bottom: var(--sp-10); }
.mb-12 { margin-bottom: var(--sp-12); }
.mb-16 { margin-bottom: var(--sp-16); }

.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden { @extend .sr-only; }

.color-amber { color: var(--amber); }
.color-mist { color: var(--mist); }
.color-obsidian { color: var(--obsidian); }
.color-white { color: var(--white); }

.pt-0 { padding-top: 0 !important; }


/* ============================================================
   PAGE PADDING TOP (FIXED HEADER)
   ============================================================ */

.has-page-hero {
  padding-top: 0;
}

.page-content-start {
  padding-top: 72px;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --text-6xl: 4rem;
    --text-5xl: 3rem;
    --text-4xl: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }

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

  .grid-asym,
  .grid-asym-rev {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-item {
    border-right: none;
    border-bottom: var(--border-1);
  }

  .mvv-item:last-child {
    border-bottom: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(3) {
    border-right: var(--border-1);
    border-top: var(--border-1);
  }

  .stat-cell:nth-child(4) {
    border-right: none;
    border-top: var(--border-1);
  }

  .trust-strip-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

  section {
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-16);
  }

  .section-xl {
    padding-top: var(--sp-20);
    padding-bottom: var(--sp-20);
  }

  .container {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

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

  .footer-legal-links {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .legal-hero h1 {
    font-size: var(--text-3xl);
  }

  .legal-meta {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .grid-asym-legal {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: var(--text-3xl);
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }

  .trust-item {
    justify-content: flex-start;
  }
}


/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .mobile-menu-toggle {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
