/* Tecnocod — Landing campanha Google Ads */

:root {
  --bg: #0a0e17;
  --bg-elevated: #111827;
  --bg-muted: #0f1629;
  --surface: #151d2e;
  --text: #e8ecf4;
  --text-muted: #94a3b8;
  --accent: #22d3ee;
  --accent-dim: rgba(34, 211, 238, 0.15);
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
  --border: rgba(148, 163, 184, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --max: 1120px;
  --narrow: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #67e8f9;
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo__icon {
  flex-shrink: 0;
  width: auto;
  height: 46px;
  max-width: 38px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.logo__textblock {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.15;
  min-width: 0;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.logo__word-part {
  color: var(--text);
}

.logo__word-accent {
  background: linear-gradient(115deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo--footer {
  margin-bottom: 0.75rem;
}

.logo--footer .logo__icon {
  height: 38px;
  max-width: 32px;
}

.logo--footer .logo__wordmark {
  font-size: 1.1rem;
}

.logo--footer .logo__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.nav__list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav__list a:hover {
  color: var(--text);
}

.nav {
  position: relative;
}

.nav__toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .header__cta {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--xl {
  padding: 1rem 1.75rem;
  font-size: 1.0625rem;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff !important;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted) !important;
  border: 1px solid var(--border);
  text-decoration: none;
}

.btn--ghost:hover {
  color: var(--text) !important;
  border-color: var(--text-muted);
}

.icon-whatsapp {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.18), transparent),
    var(--bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.text-gradient {
  background: linear-gradient(120deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__primary-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 22rem;
}

.hero__urgency {
  margin: 0;
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-row li {
  position: relative;
  padding-left: 1.25rem;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.hero__badge strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.hero__badge span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sticky bar */
.sticky-cta {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 90;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.65rem 0;
}

.sticky-cta.is-visible {
  display: block;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section--dark {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
}

.section__head--light h2 {
  color: var(--text);
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section__head--wide {
  max-width: 640px;
}

.section--portfolio {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-muted) 40%, var(--bg) 100%);
}

.portfolio__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.portfolio__tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.portfolio__item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.portfolio__item:hover {
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-3px);
}

.portfolio__shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.portfolio__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  padding: 1.1rem 1.15rem 0.35rem;
}

.portfolio__desc {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.portfolio__footnote {
  text-align: center;
  margin: 2.25rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.portfolio__footnote a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.portfolio__footnote a:hover {
  text-decoration: underline;
}

/* Prova social (números + casos + depoimentos) */
.social-proof {
  margin-bottom: 2.75rem;
}

.social-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
}

@media (max-width: 768px) {
  .social-proof__stats {
    grid-template-columns: 1fr;
  }
}

.social-proof__stats > li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  text-align: center;
}

.social-proof__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.social-proof__stat-label {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.social-proof__subhead {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.social-proof__cases {
  margin-bottom: 2.25rem;
}

.case-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-list > li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.case-list__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-list strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.case-list__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-proof__quotes .quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .social-proof__quotes .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  padding: 0;
}

.quote-card blockquote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}

.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8125rem;
}

.quote-card__name {
  font-weight: 600;
  color: var(--text);
}

.quote-card__role {
  color: var(--text-muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
}

.card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}

@media (max-width: 900px) {
  .card--wide {
    flex-direction: column;
  }
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__image--ai {
  flex: 1;
  min-height: 220px;
  aspect-ratio: auto;
}

.card__body-wide {
  flex: 1;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  padding: 1.25rem 1.25rem 0;
}

.card p {
  margin: 0;
  padding: 0.75rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.card__list {
  margin: 0;
  padding: 0 1.25rem 1.25rem 1.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card__list li {
  margin-bottom: 0.35rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__image img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
}

.split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.feature-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.25rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 0;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* CTA final */
.cta-final {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(99, 102, 241, 0.12), transparent),
    radial-gradient(ellipse 50% 60% at 0% 80%, rgba(34, 211, 238, 0.1), transparent),
    var(--bg-muted);
  border-top: 1px solid var(--border);
}

.cta-final__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.cta-final p {
  margin: 0;
  color: var(--text-muted);
  max-width: 420px;
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer__locations {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__bottom p {
  margin: 0;
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-wa:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .fab-wa {
    bottom: 5.5rem;
  }
}
