/* ============================================
   PORTAL CNH BRASIL — Design System Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #1a1208;
  --ink-mid: #3d3020;
  --ink-light: #6b5e4a;
  --paper: #f5f0e8;
  --paper-dark: #ede6d6;
  --paper-deep: #e0d8c8;
  --accent: #b8621a;
  --accent-dark: #8f4a10;
  --accent-light: #d4874a;
  --teal: #1a6b6e;
  --teal-light: #2a9096;
  --cream: #faf6ee;
  --rule: #c8b89a;
  --rule-light: #ddd0bc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --max-w: 1240px;
  --col-gap: 2rem;
  --section-pad: 5rem 1.5rem;
  --radius: 3px;
  --shadow: 0 2px 20px rgba(26,18,8,0.08);
  --shadow-md: 0 6px 40px rgba(26,18,8,0.13);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.22;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.22rem;
  line-height: 1.65;
  color: var(--ink-mid);
  font-weight: 300;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding: 0.8rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-mid);
  background: var(--paper-dark);
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--col-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.top-bar {
  background: var(--accent);
  padding: 0.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-bar span { opacity: 0.85; }
.top-bar .disclaimer-tag {
  background: rgba(255,255,255,0.18);
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 26px; height: 26px; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-text .tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--accent-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-links .nav-cta a {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1rem;
}

.nav-links .nav-cta a:hover {
  background: var(--accent-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ── HERO SECTION ── */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-content {
  padding: 4.5rem 3rem 4.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero .lead {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.hero-meta .dot { color: var(--accent); }

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.9);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 40%);
  z-index: 1;
}

/* ── DISCLAIMER BAR ── */
.disclaimer-bar {
  background: var(--teal);
  padding: 1rem 1.5rem;
  text-align: center;
}

.disclaimer-bar p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.5;
}

.disclaimer-bar strong { color: #fff; font-weight: 600; }

/* ── SECTION STYLES ── */
section { padding: var(--section-pad); }

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.rule-line {
  width: 3rem;
  height: 3px;
  background: var(--accent);
  margin-top: 1rem;
}

/* ── FEATURE SECTION ── */
.feature-section {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.feature-main h2 { margin-bottom: 1.5rem; }

.feature-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-block {
  background: var(--paper-dark);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 0.35rem;
  display: block;
}

.stat-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── EDITORIAL CARDS ── */
.cards-section {
  background: var(--paper-dark);
}

.editorial-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--paper-deep);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.editorial-card:hover .card-img img {
  transform: scale(1.04);
}

.card-category {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.card-body p { font-size: 0.92rem; color: var(--ink-mid); flex: 1; }

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--rule-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--ink-light);
}

.read-more {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.read-more:hover { gap: 0.6rem; }

/* ── DEEP DIVE SECTION ── */
.deep-section {
  background: var(--paper);
}

.deep-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.deep-content h2 { margin-bottom: 1.5rem; }
.deep-content h3 { margin: 2rem 0 1rem; color: var(--ink-mid); }

.sidebar-widget {
  background: var(--paper-dark);
  padding: 1.75rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.info-list { list-style: none; }
.info-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  color: var(--ink-mid);
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--font-sans);
}

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--ink);
  padding: 5rem 1.5rem;
  text-align: center;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--paper);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}

.pull-quote em {
  font-style: normal;
  color: var(--accent-light);
}

.quote-source {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ── TOPICS GRID ── */
.topics-section { background: var(--paper-dark); }

.topic-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  transition: transform 0.2s;
}

.topic-card:hover { transform: translateY(-3px); }

.topic-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
}

.topic-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.topic-card p {
  font-size: 0.88rem;
  color: var(--ink-mid);
}

/* ── ALERT BOX ── */
.alert-box {
  background: #fffbf0;
  border: 1px solid #e8d49a;
  border-left: 4px solid #c9a227;
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.alert-box p { font-size: 0.9rem; color: #5a4a1a; margin: 0; }
.alert-box strong { color: #3d3210; }

/* ── PAGE CONTENT ── */
.page-hero {
  background: var(--ink);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 620px; margin: 0 auto; }

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.page-content h2 { margin: 2.5rem 0 1.2rem; padding-top: 2rem; border-top: 1px solid var(--rule-light); }
.page-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.page-content h3 { margin: 1.75rem 0 0.8rem; color: var(--ink-mid); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.9rem 1.5rem;
  background: var(--paper-dark);
  border-bottom: 1px solid var(--rule-light);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 0.78rem;
}

.breadcrumb li { color: var(--ink-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.5; }
.breadcrumb a { color: var(--accent); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.contact-info p { font-size: 0.92rem; color: var(--ink-mid); }

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-light);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--paper-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.2rem;
}

.contact-text span { font-size: 0.95rem; color: var(--ink-mid); }

.message-box {
  background: var(--paper-dark);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.message-box h3 { margin-bottom: 1rem; }
.message-box p { font-size: 0.92rem; margin-bottom: 1.5rem; }
.email-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.email-link:hover { background: var(--accent-dark); color: #fff; }

/* ── FOOTER ── */
.site-footer {
  background: #120f08;
  color: rgba(255,255,255,0.6);
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text .name { font-size: 1.2rem; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-company {
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-disclaimer {
  background: rgba(184,98,26,0.12);
  border: 1px solid rgba(184,98,26,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.color-accent { color: var(--accent); }

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .deep-grid { grid-template-columns: 1fr; }
  .deep-grid .sidebar { order: -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links .nav-cta { margin-top: 0.5rem; }

  .site-header { position: relative; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { height: 260px; order: -1; }
  .hero-image::before { background: linear-gradient(to bottom, transparent, var(--ink)); }
  .hero-content { padding: 3rem 1.25rem; margin: 0; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar { flex-direction: column; gap: 0.25rem; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .pull-quote { font-size: 1.3rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.cookie-banner a { color: var(--accent-light); }

.cookie-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--accent-dark); }
.cookie-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}
.cookie-btn.secondary:hover { background: rgba(255,255,255,0.08); }

/* Ad placeholder zones (for Google Ads integration) */
.ad-zone {
  background: var(--paper-dark);
  border: 1px dashed var(--rule);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin: 2rem 0;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--rule);
  letter-spacing: 0.08em;
}

/* Section divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--rule-light);
  margin: 0;
}
