/* ============================================================
   ATITUDE TI — design tokens
   Ancorado no navy da marca (#002262). Sinal teal + amber como
   os dois únicos acentos: teal para dado/movimento, amber para ação.
   ============================================================ */
@font-face {
  font-family: 'Aileron';
  src: url('../font/Aileron-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aileron';
  src: url('../font/Aileron-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aileron';
  src: url('../font/Aileron-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #041333;
  --navy-800: #0A2A62;
  --navy-700: #123B82;
  --signal: #22E6C5;
  --signal-dim: #22E6C540;
  --amber: #FFB238;
  --amber-ink: #2B1600;
  --paper: #EEF2F6;
  --paper-raised: #FFFFFF;
  --ink: #0B1220;
  --ink-soft: #4A5568;
  --line: #D7DEE7;
  --line-dark: #1C3466;

  --font-display: 'Aileron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius-s: 3px;
  --radius-m: 6px;
  --radius-l: 14px;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; }
section { position: relative; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: '';
  width: 1.3em;
  height: 1px;
  background: var(--signal);
  display: inline-block;
}
[data-on-light] .eyebrow,
.on-light .eyebrow { color: #0E8F79; }
[data-on-light] .eyebrow::before,
.on-light .eyebrow::before { background: #0E8F79; }

h1 { font-size: clamp(2.35rem, 1.4rem + 4.4vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem); }
.lede { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
  padding: 0.88em 1.55em;
  border-radius: var(--radius-m);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-cta {
  background: var(--amber);
  color: var(--amber-ink);
  box-shadow: 0 10px 24px -10px #FFB23866;
}
.btn-cta:hover { box-shadow: 0 14px 28px -10px #FFB2388f; }
.btn-ghost-dark {
  background: transparent;
  border-color: #ffffff33;
  color: #fff;
}
.btn-ghost-dark:hover { border-color: var(--signal); color: var(--signal); }
.btn-ghost-light {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--navy-800);
}
.btn-ghost-light:hover { border-color: var(--navy-800); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: #041333cc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ffffff14;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 30px; height: auto; color: #fff; flex: none; }
.brand-word { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1rem; }
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.94rem;
  color: #C7D2E6;
}
.nav-links a { transition: color .15s; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--signal);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid #ffffff2a;
  border-radius: var(--radius-s);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--navy-950);
  z-index: 90;
  display: none;
  flex-direction: column;
  padding: 2rem var(--gutter);
  gap: 1.6rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.mobile-menu a[aria-current="page"] { color: var(--signal); }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 15% 0%, #0A2A62 0%, #041333 55%, #030D26 100%);
  color: #fff;
  padding: 168px 0 96px;
  overflow: clip;
}
/* horizon glow — echoes the "attitude" (aircraft horizon) reference from the About page */
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 90%; /* subiu de 94% para 90% para ficar mais visível e alto */
  width: 3200px; /* aumentou de 2600px para 3200px */
  height: 3200px;
  transform: translateX(-50%);
  border-radius: 50%;
  border-top: 1.5px solid #22E6C559; /* aumentou levemente a espessura e opacidade da linha */
  box-shadow:
    0 -3px 120px 0 #22E6C544, /* brilho mais denso e amplo */
    0 -3px 280px 80px #22E6C51A;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 720px; /* aumentou de 560px para 720px */
  height: 720px;
  background: radial-gradient(circle, #22E6C536 0%, transparent 70%); /* levemente mais intenso */
  filter: blur(15px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.hero-copy h1 { margin: 1rem 0 1.4rem; color: #fff; }
.hero-copy h1 .accent { color: var(--signal); }
.hero-copy .lede { color: #B9C4DC; max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.signal-wrap { width: 100%; }
.signal-wrap svg { width: 100%; height: auto; }
.signal-path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.6s var(--ease) 0.3s forwards;
}
.signal-node { fill: var(--navy-950); stroke: var(--signal); stroke-width: 3; opacity: 0; animation: pop .5s var(--ease) forwards; }
.signal-node.n1 { animation-delay: .5s; }
.signal-node.n2 { animation-delay: .85s; }
.signal-node.n3 { animation-delay: 1.15s; }
.signal-node.n4 { animation-delay: 1.5s; }
.signal-node.n4 { fill: var(--signal); }
.signal-label { font-family: var(--font-mono); font-size: 11px; fill: #8FA2C4; letter-spacing: .04em; }
.signal-label.hot { fill: var(--signal); }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* trust strip */
.trust-strip {
  background: var(--navy-950);
  border-top: 1px solid #ffffff14;
  padding: 1.4rem 0;
  overflow: hidden;
}
.trust-strip .marquee {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.trust-strip .marquee span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: .04em;
  color: #7C8BAE;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trust-strip .marquee { animation: none; }
}

/* ============================================================
   SECTIONS shared
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { margin-top: 0.9rem; }
.section-dark { background: var(--navy-950); color: #fff; }
.section-dark .lede { color: #B9C4DC; }

html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .signal-path { animation: none; stroke-dashoffset: 0; }
  .signal-node { animation: none; opacity: 1; }
}

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service-card:hover { border-color: var(--navy-700); transform: translateY(-4px); box-shadow: 0 20px 34px -22px #0A2A6244; }
.service-node {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.service-node span { width: 8px; height: 8px; border-radius: 50%; background: var(--navy-800); }
.service-card:hover .service-node { border-color: var(--signal); }
.service-card:hover .service-node span { background: var(--signal); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-m);
  object-fit: cover;
  box-shadow: 0 4px 10px -4px #00000033;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 16px -4px #00000044;
}

.service-block-icon {
  width: 110px; height: 110px;
  border-radius: var(--radius-l);
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 24px -12px #00000044;
}

.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }
.service-card .card-link { margin-top: auto; font-family: var(--font-mono); font-size: 0.8rem; color: var(--navy-800); display: inline-flex; align-items: center; gap: .4em; }
.service-card:hover .card-link { color: var(--navy-700); }
.service-card .card-link svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- service detail blocks (servicos.html) ---------- */
.service-block {
  scroll-margin-top: 100px;
  border-top: 1px solid var(--line);
  padding: 4.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.service-block:first-of-type { border-top: none; }

.service-block-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 840px;
}
.service-block-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--navy-700);
  letter-spacing: .08em;
  font-weight: 600;
}
.service-block h3 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem); margin: 0; }
.service-block-header .lede { margin: 0.5rem 0 0; color: var(--ink); }

.service-block-body {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .service-block-body {
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.service-block-showcase img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 300px;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: 0 14px 30px -10px rgba(8, 25, 64, 0.22);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-block-showcase img:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(8, 25, 64, 0.3);
}

.service-block-details ul { margin-top: 0; display: flex; flex-direction: column; gap: .7rem; }
.service-block-details ul li { display: flex; gap: .6rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.5; }
.service-block-details ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); margin-top: .6em; flex: none; }
.service-block-details .btn { margin-top: 1.8rem; }
.service-block .btn { margin-top: 1.8rem; }

/* ---------- offer tracks ---------- */
.tracks {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .tracks { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.track {
  border: 1px solid #ffffff22;
  border-radius: var(--radius-l);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: #08194099;
}
.track-featured { border-color: var(--signal); background: #0B255499; position: relative; }
.track-featured::before {
  content: 'MAIS PROCURADO';
  position: absolute;
  top: -12px; left: 2rem;
  background: var(--signal);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: .08em;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}
.track-phase { font-family: var(--font-mono); font-size: 0.75rem; color: var(--signal); letter-spacing: .08em; }
.track h3 { margin: .6rem 0; color: #fff; }
.track p { color: #A9B7D4; font-size: 0.95rem; flex: 1; }
.track .btn { margin-top: 1.6rem; }

/* ---------- authority & impact stats ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
@media (min-width: 640px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.impact-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.impact-card:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
  box-shadow: 0 14px 30px -10px #0413331a;
}
.impact-card .stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.impact-card .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 2rem + 1.5vw, 3.2rem);
  color: var(--navy-800);
  line-height: 1;
}
.impact-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- final CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}
@media (min-width: 860px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
  .cta-band .lede { margin-bottom: 0; }
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #B9C4DC; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: #C7D2E6; padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid;
  gap: 2.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand .brand-mark { width: 28px; color: #fff; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; color: #fff; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: #7C8BAE; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; font-size: 0.94rem; }
.footer-col a:hover { color: var(--signal); }
.footer-col .muted { color: #7C8BAE; max-width: 34ch; font-size: 0.92rem; }
.social-row { display: flex; gap: .8rem; margin-top: 1.3rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid #ffffff22;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, color .18s;
}
.social-row a:hover { border-color: var(--signal); color: var(--signal); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid #ffffff14;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #5E6E90;
}

/* whatsapp floating button */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.45);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- page intro (inner pages) ---------- */
.page-intro {
  background: var(--navy-950);
  color: #fff;
  padding: 160px 0 4.5rem;
}
.page-intro .lede { color: #B9C4DC; max-width: 60ch; margin-top: 1rem; }
.page-intro h1 { color: #fff; }

.liftoff-grid { display: grid; align-items: center; gap: 2rem; }
.liftoff-rocket { display: none; }
@media (min-width: 860px) {
  .liftoff-grid { grid-template-columns: 1.2fr 0.8fr; }
  .liftoff-rocket { display: block; justify-self: end; width: 100%; max-width: 320px; filter: drop-shadow(0 30px 40px #00000055); }
}

/* ---------- about page ---------- */
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 700px) { .about-stats { grid-template-columns: repeat(4,1fr); } }
.stat { border-left: 2px solid var(--signal); padding-left: 1rem; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem,1.3rem+1vw,2.1rem); }
.stat .label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft); letter-spacing: .04em; }

.industries { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.industries span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border: 1px solid var(--line-dark);
  padding: 0.45em 0.9em;
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ---------- contact page ---------- */
.contact-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-card svg { width: 24px; height: 24px; color: var(--navy-800); }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.94rem; }
.contact-card a.value { font-family: var(--font-mono); font-size: 0.95rem; color: var(--navy-800); margin-top: .2rem; }
.contact-card a.value:hover { color: var(--navy-700); }
.map-panel {
  margin-top: 3rem;
  border-radius: var(--radius-l);
  border: 1px solid var(--line-dark);
  background: radial-gradient(140% 160% at 15% 20%, #123B82 0%, #041333 60%);
  color: #fff;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.map-panel:hover { transform: translateY(-3px); border-color: var(--signal); }
.map-panel svg { width: 40px; height: 40px; flex: none; color: var(--signal); }
.map-panel strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.map-panel span { font-family: var(--font-mono); font-size: 0.85rem; color: #A9B7D4; }
