/* ================================================
   GPG ELEVARY — SISTEMA DE DESIGN CORPORATIVO
   ================================================ */

/* 1. VARIÁVEIS */
:root {
  --c-bg: #F9F8F5;
  --c-surface: #FFFFFF;
  --c-dark: #1A1A1A;
  --c-dark-2: #2E2E30;
  --c-accent: #1E5C7B;
  --c-accent-dim: #164A65;
  --c-accent-light: #EBF3F8;
  --c-muted: #747474;
  --c-muted-light: #A8A8A8;
  --c-border: #DDDBD5;
  --c-border-light: #EEECEA;
  --c-amber: #B8872A;

  --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1rem;
  --t-md: 1.125rem;
  --t-lg: 1.25rem;
  --t-xl: 1.5rem;
  --t-2xl: 2rem;
  --t-3xl: 2.75rem;
  --t-4xl: 3.5rem;
  --t-hero: clamp(2.6rem, 5.5vw, 5rem);

  --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-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --container: 1200px;
  --container-narrow: 860px;
  --radius: 2px;
  --transition: 0.2s ease;
  --header-h: 72px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background-color: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.7;
  font-size: var(--t-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* 3. TIPOGRAFIA */
h1, h2, h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-dark);
}
h4, h5, h6 {
  font-family: var(--f-sans);
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-dark);
}
h1 { font-size: var(--t-hero); }
h2 { font-size: clamp(var(--t-2xl), 3vw, var(--t-4xl)); }
h3 { font-size: clamp(var(--t-xl), 2vw, var(--t-2xl)); }
h4 { font-size: var(--t-lg); }
p { max-width: 68ch; }
p + p { margin-top: var(--sp-4); }

.label {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-family: var(--f-sans);
  display: block;
}
.text-muted { color: var(--c-muted); }
.text-accent { color: var(--c-accent); }
.text-sm { font-size: var(--t-sm); }
.text-center { text-align: center; }

/* 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--sp-24) 0; }
.section--sm { padding: var(--sp-16) 0; }
.section--lg { padding: var(--sp-32) 0; }
.section--alt { background-color: var(--c-surface); }
.section--dark {
  background-color: var(--c-dark);
  color: #F9F8F5;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #F9F8F5; }
.section--dark .label { color: #7EAEC4; }
.section--dark .text-muted { color: #8A8A8A; }

/* 5. CABEÇALHO */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--f-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-dark);
}
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.site-nav { display: flex; align-items: center; gap: var(--sp-8); }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-link {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-dark-2);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--c-accent); }
.nav-cta {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-6);
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--c-dark);
  color: var(--c-bg);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-dark);
  transition: all var(--transition);
}

/* 6. RODAPÉ */
.site-footer {
  background-color: var(--c-dark);
  color: #C8C8C8;
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-name { font-family: var(--f-serif); font-size: 1.3rem; font-weight: 500; color: #F9F8F5; }
.footer-logo-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: #5A5A5A; }
.footer-desc {
  margin-top: var(--sp-4);
  font-size: var(--t-sm);
  color: #5A5A5A;
  line-height: 1.75;
  max-width: 30ch;
}
.footer-col-title {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F9F8F5;
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a { font-size: var(--t-sm); color: #5A5A5A; transition: color var(--transition); }
.footer-links a:hover { color: #F9F8F5; }
.footer-contact-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-ci { font-size: var(--t-sm); color: #5A5A5A; line-height: 1.6; }
.footer-ci a { color: #5A5A5A; }
.footer-ci a:hover { color: #F9F8F5; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-cr { font-size: 0.7rem; color: #3A3A3A; line-height: 1.6; }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a { font-size: 0.7rem; color: #3A3A3A; transition: color var(--transition); }
.footer-legal a:hover { color: #767676; }

/* 7. BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-8);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--c-dark);
  color: var(--c-bg);
  border: 1px solid var(--c-dark);
}
.btn-primary:hover { background: var(--c-dark-2); color: white; }
.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
}
.btn-outline:hover { border-color: var(--c-dark); }
.btn-accent {
  background: var(--c-accent);
  color: white;
  border: 1px solid var(--c-accent);
}
.btn-accent:hover { background: var(--c-accent-dim); }
.btn-white {
  background: white;
  color: var(--c-dark);
  border: 1px solid white;
}
.btn-white:hover { background: var(--c-bg); }
.btn-lg { padding: var(--sp-4) var(--sp-10); font-size: var(--t-sm); }

/* 8. HERO */
.hero {
  padding: var(--sp-20) 0;
  min-height: calc(88vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(150deg, var(--c-accent-light) 0%, rgba(30,92,123,0.04) 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
  width: 100%;
}
.hero-label { margin-bottom: var(--sp-5); }
.hero-title {
  font-family: var(--f-serif);
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-dark);
  margin-bottom: var(--sp-8);
}
.hero-title em {
  font-style: italic;
  color: var(--c-accent);
}
.hero-sub {
  font-size: var(--t-md);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: var(--sp-10);
}
.hero-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero-aside { display: flex; flex-direction: column; gap: var(--sp-5); }
.stat-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: var(--sp-6) var(--sp-8);
  position: relative;
}
.stat-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-accent);
}
.stat-num {
  font-family: var(--f-serif);
  font-size: var(--t-3xl);
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label { font-size: var(--t-sm); color: var(--c-muted); }

/* 9. SEÇÃO INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.intro-text h2 { margin-bottom: var(--sp-6); }
.intro-text p { color: var(--c-muted); }
.intro-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.intro-link:hover { border-bottom-color: var(--c-accent); }
.intro-aside {}
.intro-quote {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 300;
  line-height: 1.45;
  color: var(--c-dark);
  border-left: 3px solid var(--c-accent);
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-8);
  max-width: none;
}
.intro-detail { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.85; max-width: none; }
.intro-cnpj {
  display: inline-block;
  margin-top: var(--sp-6);
  font-size: var(--t-xs);
  letter-spacing: 0.05em;
  color: var(--c-muted-light);
  border: 1px solid var(--c-border-light);
  padding: var(--sp-2) var(--sp-4);
}

/* 10. SERVIÇOS */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: end;
  margin-bottom: var(--sp-12);
}
.services-header h2 { margin-bottom: 0; }
.services-header-right p { font-size: var(--t-sm); color: var(--c-muted); max-width: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
.service-item {
  background: var(--c-surface);
  padding: var(--sp-10) var(--sp-8);
  transition: background var(--transition);
}
.service-item:hover { background: var(--c-accent-light); }
.service-num {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-6);
  transition: color var(--transition);
}
.service-item:hover .service-num { color: var(--c-accent); }
.service-title {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}
.service-desc {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: none;
}

/* 11. DIFERENCIAIS */
.diffs-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--sp-16);
  align-items: start;
}
.diffs-intro h2 { margin-bottom: var(--sp-4); }
.diffs-intro p { font-size: var(--t-sm); color: var(--c-muted); }
.diffs-list {}
.diff-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--c-border-light);
}
.diff-row:first-child { border-top: 1px solid var(--c-border-light); }
.diff-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.diff-icon svg { width: 17px; height: 17px; stroke: var(--c-accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.diff-text h4 { font-size: var(--t-base); margin-bottom: var(--sp-1); }
.diff-text p { font-size: var(--t-sm); color: var(--c-muted); max-width: none; }

/* 12. PROCESSO */
.process-header { text-align: center; max-width: 52ch; margin: 0 auto var(--sp-16); }
.process-header .label { margin-bottom: var(--sp-4); }
.process-header h2 { margin-bottom: var(--sp-4); }
.process-header p { font-size: var(--t-sm); color: var(--c-muted); max-width: none; }
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--sp-3);
}
.process-circle {
  width: 80px;
  height: 80px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--c-accent);
}
.process-title { font-size: var(--t-base); font-weight: 600; margin-bottom: var(--sp-2); }
.process-desc { font-size: var(--t-xs); color: var(--c-muted); line-height: 1.65; letter-spacing: 0; text-transform: none; max-width: none; }

/* 13. FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--header-h) + var(--sp-8)); }
.faq-intro .label { margin-bottom: var(--sp-4); }
.faq-intro h2 { margin-bottom: var(--sp-4); }
.faq-intro p { font-size: var(--t-sm); color: var(--c-muted); }
.faq-list {}
.faq-item { border-bottom: 1px solid var(--c-border-light); }
.faq-item:first-child { border-top: 1px solid var(--c-border-light); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--c-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--f-sans);
}
.faq-btn:hover { color: var(--c-accent); }
.faq-cross {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.faq-cross::before, .faq-cross::after {
  content: '';
  position: absolute;
  background: var(--c-muted);
  transition: transform 0.2s, opacity 0.2s;
}
.faq-cross::before { width: 12px; height: 1px; top: 9px; left: 4px; }
.faq-cross::after { width: 1px; height: 12px; top: 4px; left: 9px; }
.faq-item.open .faq-cross::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  max-width: none;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--sp-5);
}

/* 14. CTA BLOCK */
.cta-block {
  background: var(--c-dark);
  padding: var(--sp-12) var(--sp-12);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-8);
}
.cta-block h2 { color: white; font-size: clamp(var(--t-xl), 2.5vw, var(--t-3xl)); margin-bottom: var(--sp-3); }
.cta-block p { color: #5A5A5A; font-size: var(--t-sm); }
.cta-actions { display: flex; gap: var(--sp-3); flex-shrink: 0; flex-wrap: wrap; }

/* 15. FORMULÁRIO */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-dark);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--t-sm);
  color: var(--c-dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--c-accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-muted-light); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: var(--t-xs); color: var(--c-muted); margin-top: var(--sp-3); max-width: none; }

/* 16. PAGE HEADER */
.page-header {
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.page-header--dark {
  background: var(--c-dark);
  border-bottom: none;
}
.page-header--dark h1 { color: white; }
.page-header--dark p { color: #5A5A5A; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  color: var(--c-muted);
  margin-bottom: var(--sp-5);
  letter-spacing: 0;
  text-transform: none;
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-accent); }
.bc-sep { opacity: 0.4; }
.page-header .label { margin-bottom: var(--sp-4); }
.page-header h1 { margin-bottom: var(--sp-4); }
.page-header p { color: var(--c-muted); max-width: 52ch; }

/* 17. SOBRE — seções específicas */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.about-story-text h2 { margin-bottom: var(--sp-6); }
.about-story-text p { color: var(--c-muted); }
.about-pull {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-dark);
  border-left: 3px solid var(--c-accent);
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-8);
  max-width: none;
}
.about-detail { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.85; max-width: none; }

.timeline {
  position: relative;
  padding-left: var(--sp-10);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--c-border);
}
.tl-item {
  position: relative;
  padding-bottom: var(--sp-10);
}
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-10));
  top: 8px;
  width: 9px; height: 9px;
  border: 2px solid var(--c-accent);
  background: var(--c-bg);
  border-radius: 50%;
}
.tl-year {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.tl-title { font-size: var(--t-base); font-weight: 600; margin-bottom: var(--sp-2); }
.tl-desc { font-size: var(--t-sm); color: var(--c-muted); max-width: none; }

.mvv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.mvv-card {
  padding: var(--sp-8);
  border-top: 3px solid var(--c-accent);
  background: var(--c-surface);
}
.mvv-card-title {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  margin-bottom: var(--sp-4);
}
.mvv-card-text { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.85; max-width: none; }

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.value-box {
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--c-border-light);
  background: var(--c-surface);
  text-align: center;
}
.value-letter {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.value-name { font-size: var(--t-base); font-weight: 600; margin-bottom: var(--sp-2); }
.value-desc { font-size: var(--t-xs); color: var(--c-muted); letter-spacing: 0; text-transform: none; max-width: none; line-height: 1.65; }

/* 18. CONTATO */
.contact-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--sp-8); }
.ci-block {}
.ci-label {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
  display: block;
}
.ci-value {
  font-size: var(--t-md);
  color: var(--c-dark);
  font-weight: 400;
  display: block;
}
.ci-value a { color: var(--c-dark); transition: color var(--transition); }
.ci-value a:hover { color: var(--c-accent); }
.ci-sub { font-size: var(--t-sm); color: var(--c-muted); margin-top: var(--sp-1); display: block; }
.contact-address-block {
  margin-top: var(--sp-8);
  padding: var(--sp-8);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.address-label {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
  display: block;
}
.address-text { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.85; max-width: none; }
.contact-hours {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border-light);
}
.hours-title {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  display: block;
}
.hours-row { display: flex; justify-content: space-between; font-size: var(--t-sm); color: var(--c-muted); padding: var(--sp-2) 0; border-bottom: 1px solid var(--c-border-light); }
.hours-row:last-child { border-bottom: none; }

/* 19. PÁGINAS LEGAIS */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-16);
  align-items: start;
  padding: var(--sp-12) 0;
}
.legal-sidebar { position: sticky; top: calc(var(--header-h) + var(--sp-8)); }
.legal-sidebar-title {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}
.legal-nav { display: flex; flex-direction: column; }
.legal-nav a {
  font-size: var(--t-sm);
  color: var(--c-muted);
  padding: var(--sp-2) var(--sp-3);
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}
.legal-nav a:hover {
  color: var(--c-accent);
  border-left-color: var(--c-accent);
  padding-left: var(--sp-4);
}
.legal-update {
  display: inline-block;
  font-size: var(--t-xs);
  color: var(--c-muted);
  background: var(--c-border-light);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-10);
  letter-spacing: 0;
  text-transform: none;
}
.legal-body { max-width: 70ch; }
.legal-section { margin-bottom: var(--sp-12); scroll-margin-top: calc(var(--header-h) + var(--sp-8)); }
.legal-section h2 {
  font-family: var(--f-sans);
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border-light);
  color: var(--c-dark);
}
.legal-section h3 {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  font-weight: 600;
  letter-spacing: 0;
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--c-dark);
}
.legal-section p { font-size: var(--t-sm); color: #4A4A4A; line-height: 1.9; margin-bottom: var(--sp-4); max-width: none; }
.legal-section ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-section ul li { font-size: var(--t-sm); color: #4A4A4A; line-height: 1.8; margin-bottom: var(--sp-2); }
.legal-section ol { list-style: decimal; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-section ol li { font-size: var(--t-sm); color: #4A4A4A; line-height: 1.8; margin-bottom: var(--sp-2); }
.legal-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); margin-bottom: var(--sp-6); }
.legal-table th {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-border-light);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--c-border);
  color: var(--c-dark);
}
.legal-table td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border);
  color: #4A4A4A;
  vertical-align: top;
  line-height: 1.65;
}
.highlight-box {
  background: var(--c-accent-light);
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}
.highlight-box p { font-size: var(--t-sm); color: var(--c-dark); margin-bottom: 0; }

/* 20. DIVIDER ACCENT */
.divider-accent {
  height: 2px;
  width: 48px;
  background: var(--c-accent);
  margin: var(--sp-6) 0;
}
.divider-accent--center { margin: var(--sp-6) auto; }
.divider-line {
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-12) 0;
}

/* 21. RESPONSIVIDADE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
  .process-row::before { display: none; }
  .mvv-row { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 180px 1fr; gap: var(--sp-8); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .site-nav.open { position: relative; }
  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--c-bg);
    padding: var(--sp-8) var(--sp-6) var(--sp-6);
    border-bottom: 1px solid var(--c-border);
    gap: var(--sp-4);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .site-nav.open .nav-cta { display: inline-flex; margin-top: var(--sp-2); width: fit-content; }
  .hero { min-height: auto; padding: var(--sp-16) 0; }
  .hero-bg-accent { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-aside { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .services-header { grid-template-columns: 1fr; gap: var(--sp-4); }
  .services-grid { grid-template-columns: 1fr; }
  .diffs-wrap { grid-template-columns: 1fr; gap: var(--sp-8); }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .faq-wrap { grid-template-columns: 1fr; gap: var(--sp-8); }
  .faq-intro { position: static; }
  .cta-block { grid-template-columns: 1fr; gap: var(--sp-6); padding: var(--sp-8); }
  .about-story { grid-template-columns: 1fr; gap: var(--sp-8); }
  .mvv-row { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: var(--sp-8); }
  .form-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: var(--sp-16) 0; }
  .section--lg { padding: var(--sp-20) 0; }
}

@media (max-width: 480px) {
  .values-row { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.3rem; }
}
