:root {
  --loki: #27594F;
  --odin: #00616D;
  --thor: #C97F38;
  --freyja: #C1C0AC;
  --cream: #E8E7DF;
  --dark: #1e4840;
  --darkest: #13302a;
  --card-border: #d8d7cf;
  --font-display: 'Libre Caslon Text', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --surface: #fcfae5;
  --on-surface: #1c1c10;
  --radius-sm: 8px; /* Slightly more rounded for modern look */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px; 
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Tipografia e Globais */
h1, h2, .rune, .stat-number, .case-result {
  font-family: var(--font-display);
}

.text-white { color: #fff; }
.text-red { color: var(--thor); }
.bg-dark { 
  background-color: var(--dark); 
  background-image: url('patterns/Patterns_Runa%20(1).webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  color: white; 
}
.bg-darkest { 
  background-color: var(--darkest); 
  background-image: url('patterns/Patterns_Runa%20(2).webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  color: white; 
}
.bg-cream { background-color: var(--cream); color: var(--on-surface); }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container-narrow {
  max-width: 1080px;
  margin: 0 auto;
}

.center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Botões */
.btn-primary {
  background: var(--thor);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 15px;
}

.btn-primary:hover {
  background: #b06b29; /* Darker thor */
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1.5px solid var(--thor);
  color: var(--thor);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 15px;
}

.btn-secondary:hover {
  background: var(--thor);
  color: white;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* Sections Globais */
section {
  padding: 120px 80px; 
}

.section-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #777;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.badge-red {
  color: var(--thor);
}

.section-title-modern {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: var(--font-body); /* Using sans for modern look on these specific sections */
  letter-spacing: -1px;
}

.section-desc {
  font-size: 17px;
  color: #5a5a52;
  line-height: 1.6;
}

.desc-white {
  color: #a0a0a0;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--card-border);
  padding: 0 80px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: box-shadow 0.2s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  font-size: 14px;
  color: var(--darkest);
  font-weight: 600;
}

.nav-center a:hover { color: var(--thor); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--darkest);
  cursor: pointer;
}

.mobile-btn { display: none; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding: 140px 80px 80px;
  gap: 60px;
}

.hero-left, .hero-right {
  min-width: 0;
}

.tag {
  border: 1px solid var(--thor);
  color: var(--thor);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.headline {
  font-size: 74px;
  line-height: 1.05;
  color: var(--darkest);
  margin-top: 20px;
}

.decorative-rule {
  width: 80px;
  height: 2px;
  background: var(--thor);
  margin: 20px 0;
}

.hero-left .subtitle {
  font-size: 17px;
  color: #5a5a52;
  line-height: 1.65;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* MARQUEE SERVIÇOS (HERO) */
.services-ticker {
  margin-top: 40px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 8px 0;
}

.marquee-content {
  display: inline-block;
  font-size: 13px;
  color: var(--darkest);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}

.dot {
  color: var(--thor);
  margin: 0 12px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-right { position: relative; }

.hero-img {
  width: 100%;
  border-radius: var(--radius-sm); 
  display: block;
}

/* ANIMATED HERO BOX */
.hero-animated-box {
  width: 100%;
  aspect-ratio: 560/460;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.animated-title {
  font-size: 15px;
  color: var(--freyja);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.animated-words {
  height: 60px;
  overflow: hidden;
  margin-bottom: 40px;
}

.animated-words span {
  display: block;
  font-size: 44px;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  line-height: 60px;
  animation: spinWords 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes spinWords {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-60px); }
  40%, 55% { transform: translateY(-120px); }
  60%, 75% { transform: translateY(-180px); }
  80%, 95% { transform: translateY(-240px); }
  100% { transform: translateY(-300px); }
}

.animated-footer {
  font-size: 18px;
  color: var(--thor);
  font-weight: 700;
  background: rgba(201, 127, 56, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm); 
  padding: 16px 20px;
  border: 1px solid var(--card-border); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bottom-left { bottom: -24px; left: -32px; }
.top-right { top: -20px; right: -20px; }

.card-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-line .label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
}

.floating-card .number {
  font-size: 28px;
  color: var(--thor);
  font-weight: 700;
  margin-top: 4px;
}

.card-text {
  font-size: 15px;
  color: var(--darkest);
  font-weight: 600;
  margin-bottom: 12px;
}

.avatars { display: flex; }

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar:not(:first-child) {
  margin-left: -8px;
  border: 1.5px solid white;
}

/* MARQUEE CLIENTES (LOGOS) */
.logos-section {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}

.logos-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logos-marquee-content {
  display: inline-block;
  animation: marquee-logos 30s linear infinite;
  display: flex;
  align-items: center;
  gap: 60px;
}

.client-logo {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes marquee-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); } /* adjusting for gap */
}


/* SOBRE */
.sobre {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: center;
}

.sobre-img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* O QUE FAZEMOS (Stacked Cards) */
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-header-split .section-desc {
  max-width: 350px;
  margin-bottom: 8px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-card {
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sc-number {
  font-size: 40px;
  font-family: var(--font-display);
  color: rgba(0,0,0,0.15);
  transition: color 0.3s;
  font-weight: 700;
  min-width: 60px;
}

.sc-icon {
  background: rgba(0,0,0,0.05);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thor);
  transition: all 0.3s;
}

.sc-content {
  flex: 1;
}

.sc-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--darkest);
  transition: color 0.3s;
}

.sc-content p {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s;
}

.sc-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--thor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s;
}

.stacked-card:hover {
  background-color: var(--thor);
  transform: scale(1.01);
}

.stacked-card:hover .sc-number {
  color: rgba(255,255,255,0.4);
}

.stacked-card:hover .sc-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.stacked-card:hover .sc-content h3,
.stacked-card:hover .sc-content p {
  color: white;
}

.stacked-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* COMO TRABALHAMOS (Method Cards) */
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metodo-card {
  background-color: var(--darkest);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s;
}

.metodo-card:hover {
  transform: translateY(-8px);
}

.mc-header {
  margin-bottom: 24px;
}

.mc-num {
  background: var(--thor);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(201, 127, 56, 0.4);
}

.mc-icon {
  margin-bottom: 20px;
}

.metodo-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.metodo-card p {
  font-size: 14px;
  color: var(--freyja);
  line-height: 1.6;
}


/* FUNDADOR */
.founder-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  align-items: center;
}

.founder-img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
}

.founder-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.f-tag {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: white;
}


/* DEPOIMENTOS */
.depoimentos {
  background: linear-gradient(to bottom, #ffffff, #fdf6f5);
  text-align: center;
}

.quote-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.quote-text {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--darkest);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 40px;
  letter-spacing: -1px;
  transition: opacity 0.4s;
}

.quote-author {
  font-size: 16px;
  color: var(--darkest);
  margin-bottom: 60px;
  transition: opacity 0.4s;
}

.quote-author span {
  font-size: 14px;
  color: #777;
}

.avatars-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.avatar-item {
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.avatar-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.avatar-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.avatar-item.active img {
  border-color: var(--thor);
}

.active-indicator {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--thor);
  opacity: 0;
  transition: opacity 0.3s;
}

.avatar-item.active .active-indicator {
  opacity: 1;
}

/* PORTFOLIO */
.portfolio {
  padding: 120px 0;
  overflow: hidden;
}

.portfolio-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0 60px;
}

.portfolio-marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: marquee-portfolio 40s linear infinite;
  padding-left: 40px;
}

.portfolio-marquee-content:hover {
  animation-play-state: paused;
}

.portfolio-item {
  width: 480px;
  flex-shrink: 0;
  cursor: pointer;
}

.portfolio-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  position: relative;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img-wrap img {
  transform: scale(1.05);
}

.portfolio-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 72, 64, 0.95);
  color: white;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: normal;
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.portfolio-item:hover .portfolio-tooltip {
  transform: translateY(0);
}

.portfolio-tooltip h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--thor);
}

.portfolio-tooltip p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--freyja);
}

@keyframes marquee-portfolio {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 20px)); }
}

/* CTA */
.cta {
  background: var(--thor);
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 58px;
  color: white;
  line-height: 1.1;
  font-family: var(--font-display);
}

.cta-subtitle {
  font-size: 17px;
  opacity: 0.9;
  max-width: 560px;
  margin: 20px auto 0;
}

.btn-cta {
  background: white;
  color: var(--thor);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 48px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  margin-top: 40px;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
  padding: 80px 80px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: white;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a:hover { color: var(--thor); }

.footer-slogan {
  margin-top: 16px;
  color: #a0a0a0;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a svg {
  transition: stroke 0.2s;
}

.social-icons a:hover svg {
  stroke: var(--thor);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 30px;
  margin-top: 60px;
  padding-top: 32px;
}

.footer-seals {
  margin: 60px 0 20px 0;
  text-align: center;
  background-color: white;
  padding: 40px 20px;
  border-radius: var(--radius-sm);
}

.seals-title {
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.seals-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.seals-grid img {
  max-height: 48px;
  transition: transform 0.3s ease;
}

.seals-grid img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* Responsividade Básica */
@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  .hero {
    padding: 120px 40px 60px;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .sobre, .founder-grid { grid-template-columns: 1fr; }
  .metodo-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 24px; }
  .hero { padding: 100px 24px 40px; }
  .navbar { padding: 0 24px; }
  .nav-center, .nav-right .btn-primary { display: none; }
  .hamburger { display: block; }
  .nav-center.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--card-border);
  }
  .mobile-btn { display: inline-block; margin-top: 16px; text-align: center; }
  
  .metodo-grid, .footer-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stacked-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .sc-arrow { display: none; }
  
  .headline { font-size: 42px; }
  .section-title-modern { font-size: 36px; }
  .quote-text { font-size: 24px; }
  .hero-buttons { flex-direction: column; }
  .floating-card.top-right { top: -10px; right: -10px; }
  .floating-card.bottom-left { bottom: -10px; left: -10px; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .cta-title { font-size: 42px; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 400px;
  background: rgba(15, 30, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--freyja);
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--thor);
  text-decoration: underline;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-banner button {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-accept {
  background: var(--thor);
  color: white;
  border: none;
}

.btn-accept:hover {
  background: #b56e2c;
}

.btn-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
