/* ============================================
   Agendamento Digital — main.css
   Design: São Paulo Industrial / Poster Bold
   Accent: #e62e2e (vermelho), Barlow Condensed
   ============================================ */

:root {
  --bg: #ffffff;
  --bg2: #f5f4f0;
  --bg3: #eeece6;
  --surface: #ffffff;
  --border: #d8d4cc;
  --text: #1a1919;
  --muted: #6b6560;
  --heading: #0d0d0d;
  --hero-bg: #1c1c1e;
  --hero-text: #f5f4f0;
  --accent: #e62e2e;
  --accent2: #c41f1f;
  --accentTxt: #ffffff;
  --gold: #f5a623;
  --green: #1a7a4a;
  --link: #1c4587;
  --max-w: 1100px;
  --radius: 4px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max-w); margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* ---- Disclaimer Bar ---- */
.disclaimer-bar {
  background: var(--accent);
  padding: 10px 20px;
  text-align: center;
  font-size: 12.5px;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
.disclaimer-bar strong { font-weight: 800; }
.disclaimer-bar a { color: #fff; font-weight: 700; text-decoration: underline; }
.disclaimer-bar a:hover { color: #ffe0e0; }

/* ---- Ad Notice ---- */
.ad-notice {
  background: var(--gold);
  padding: 8px 20px;
  text-align: center;
  font-size: 12.5px;
  color: #1a1919;
  line-height: 1.5;
  font-weight: 500;
}
.ad-notice strong { font-weight: 700; }

/* ---- Header ---- */
.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
}
.logo:hover { text-decoration: none; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}
.nav a.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { padding-top: 10px; padding-bottom: 10px; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb ol li { display: flex; align-items: center; gap: 6px; }
.breadcrumb ol li + li::before { content: '›'; color: var(--border); font-size: 16px; }
.breadcrumb ol li a { color: var(--muted); font-weight: 600; }
.breadcrumb ol li a:hover { color: var(--accent); text-decoration: none; }
.breadcrumb ol li .current { color: var(--accent); font-weight: 700; }

/* ---- Hero ---- */
.hero {
  background: var(--hero-bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 80px 20px;
  color: var(--hero-text);
  position: relative;
}
.hero-inner { max-width: 780px; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,46,46,0.35);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--hero-text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-note {
  font-size: 12px;
  color: #8a8680;
  font-style: italic;
}

/* ---- Botões gerais ---- */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-red:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230,46,46,0.3);
  text-decoration: none;
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ---- Sections ---- */
.section { padding: 64px 0; }
.section-alt { background: var(--bg2); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}
.section-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 600px;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

/* ---- Steps (Como Funciona) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s ease;
}
.step-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step-card p { font-size: 15px; color: var(--muted); }

/* ---- Service Cards ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: block;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  text-decoration: none;
  border-left-color: var(--accent2);
}
.service-card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.service-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg2); padding: 64px 0; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg2); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-block.open .faq-q { background: var(--bg2); }
.faq-block.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-block.open .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-a a { color: var(--link); font-weight: 600; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--hero-bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 64px 20px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  color: #c8c4bc;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note { font-size: 12px; color: #8a8680; margin-top: 12px; font-style: italic; }

/* ---- Article ---- */
.article-header {
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  padding: 48px 20px 36px;
}
.article-header-inner { max-width: 820px; margin: 0 auto; }
.article-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.article-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-header .subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 680px;
}
.article-header .meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-header .geo-note {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

/* ---- Info Box (danger) ---- */
.info-box-danger {
  background: #fff0f0;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.info-box-danger h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.info-box-danger p, .info-box-danger li {
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.6;
  margin-bottom: 4px;
}
.info-box-danger ul { padding-left: 18px; margin-top: 6px; }

/* ---- Info Box (tip) ---- */
.info-box-tip {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--link);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box-tip h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 6px;
}
.info-box-tip p, .info-box-tip li {
  font-size: 14px;
  color: #1e3a8a;
  line-height: 1.6;
  margin-bottom: 4px;
}
.info-box-tip ul { padding-left: 18px; margin-top: 6px; }

/* ---- Info Box (success) ---- */
.info-box-ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box-ok h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.info-box-ok p, .info-box-ok li {
  font-size: 14px;
  color: #166534;
  line-height: 1.6;
  margin-bottom: 4px;
}
.info-box-ok ul { padding-left: 18px; margin-top: 6px; }

/* ---- Article Body ---- */
.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.article-body p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
}
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 42px 0 16px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  margin: 28px 0 12px;
}
.article-body ul, .article-body ol {
  margin: 14px 0 18px;
  padding-left: 24px;
}
.article-body li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.65;
}
.article-body a { color: var(--link); font-weight: 600; }
.article-body strong { font-weight: 700; }

/* ---- Procedure Steps ---- */
.proc-steps {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 22px 0;
}
.proc-steps h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.proc-steps ol {
  list-style: none;
  counter-reset: proc;
  padding: 0;
}
.proc-steps li {
  counter-increment: proc;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.proc-steps li:last-child { border-bottom: none; }
.proc-steps li::before {
  content: counter(proc);
  min-width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Table ---- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.tbl th {
  background: var(--bg2);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--heading);
  border-bottom: 2px solid var(--border);
}
.tbl td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.tbl tr:last-child td { border-bottom: none; }

/* ---- Sources ---- */
.ref-section { max-width: 820px; margin: 0 auto; padding: 0 20px 36px; }
.ref-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.ref-list { list-style: none; padding: 0; }
.ref-list li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.ref-list li:last-child { border-bottom: none; }
.ref-list a { color: var(--link); font-weight: 600; }

/* ---- Page / Institutional ---- */
.page-section { max-width: 820px; margin: 0 auto; padding: 52px 20px; }
.page-section h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.page-section h2:first-of-type { border-top: none; padding-top: 0; }
.page-section p { font-size: 15px; color: var(--text); margin-bottom: 14px; line-height: 1.7; }
.page-section ul, .page-section ol { padding-left: 22px; margin: 10px 0 16px; }
.page-section li { font-size: 15px; color: var(--text); margin-bottom: 8px; line-height: 1.65; }
.page-section a { color: var(--link); font-weight: 600; }
.page-section strong { font-weight: 700; }

/* ---- Work Grid (Sobre) ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 20px 0;
}
.work-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
}
.work-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---- Methodology steps ---- */
.method-list { list-style: none; padding: 0; counter-reset: method; margin: 16px 0; }
.method-list li {
  counter-increment: method;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}
.method-list li:last-child { border-bottom: none; }
.method-list li::before {
  content: counter(method);
  min-width: 32px;
  height: 32px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---- Limits list ---- */
.limits-list { list-style: none; padding: 0; margin: 14px 0; }
.limits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.limits-list li:last-child { border-bottom: none; }
.limits-list li::before {
  content: '✕';
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card p { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.contact-card strong { color: var(--text); font-weight: 700; }

/* ---- Form ---- */
.c-form { max-width: 580px; margin: 28px 0; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ---- Legal ---- */
.legal { max-width: 820px; margin: 0 auto; padding: 52px 20px; }
.legal h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; display: block; }
.legal h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 32px 0 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal p { font-size: 15px; color: var(--text); margin-bottom: 12px; line-height: 1.7; }
.legal ul { margin: 10px 0; padding-left: 22px; }
.legal li { font-size: 14px; color: var(--text); margin-bottom: 6px; line-height: 1.65; }
.legal a { color: var(--link); font-weight: 600; }
.legal strong { font-weight: 700; }

/* ---- Footer ---- */
.site-footer {
  background: #1a1919;
  color: #fff;
  padding: 52px 20px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.footer-grid > div > p {
  font-size: 13px;
  color: #9e9a94;
  line-height: 1.65;
}
.site-footer nav h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer nav ul { list-style: none; padding: 0; margin: 0; }
.site-footer nav ul li { margin-bottom: 6px; }
.site-footer nav ul li a {
  font-size: 13px;
  color: #9e9a94;
  transition: color 0.2s;
  display: block;
}
.site-footer nav ul li a:hover { color: #fff; text-decoration: none; }
.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 18px;
  font-size: 12px;
  color: #9e9a94;
  line-height: 1.7;
  text-align: center;
}
.footer-disclaimer strong { color: #fff; }
.footer-disclaimer a { color: #c8c4bc; }
.footer-company {
  text-align: center;
  font-size: 12px;
  color: #6b6660;
  line-height: 1.85;
  margin-bottom: 16px;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #6b6660;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1919;
  color: #f5f4f0;
  padding: 18px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  min-width: 280px;
  margin: 0;
}
.cookie-inner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btns button {
  padding: 9px 16px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent2); }
.cookie-essential { background: #3a3936; color: #f5f4f0; }
.cookie-essential:hover { background: #4a4946; }
.cookie-reject { background: transparent; color: #9e9a94; border: 1px solid #4a4946 !important; }
.cookie-reject:hover { background: #3a3936; color: #f5f4f0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 14px 20px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 99;
    gap: 4px;
  }
  .nav.show { display: flex; }
  .nav a { width: 100%; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .page-section h1 { font-size: 32px; }
  .legal h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 32px; }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}
