:root {
  --purple: #7b4397;
  --purple-dark: #5f2f78;
  --green: #99cc33;
  --green-dark: #A8E236;
  --blue: #1989B1;
  --blue-dark: #2e6fb8;
  --text: #4a5568;
  --text-dark: #2d3748;
  --muted: #718096;
  --white: #ffffff;
  --gray-bg: #f4f6f8;
  --border: #d9e2ec;
  --teal: #1f6f6f;
  --shadow: 0 12px 30px rgba(45, 55, 72, 0.1);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

a {
  color: inherit;
}

/* Topbar */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.topbar-login {
  flex-shrink: 0;
}

.topbar-help {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.topbar-tagline {
  color: var(--blue);
  font-weight: 600;
}

.topbar-help a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
  color: #034BAD;
  box-shadow: 0 8px 18px rgba(153, 204, 51, 0.35);
}

.btn-green:hover {
  background: var(--green-dark);
  color: #034BAD;
}

.topbar .btn.btn-green.topbar-login {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(123, 67, 151, 0.35);
}

.topbar .btn.btn-green.topbar-login:hover {
  background: var(--purple-dark);
  color: var(--white);
}

.topbar .btn.topbar-login,
.hero-actions .btn {
  border-radius: 10.5px;
  padding: 7px 11px;
}

.btn-outline {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--white);
}

.btn-outline-purple {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.92);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  height: 600px;
  max-height: 600px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: var(--gray-bg);
}

.hero-frame {
  position: relative;
  height: 100%;
  max-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/hero-banner-opt.jpg") 72% center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: center;
  padding: 2.5rem 1rem 2rem 1.5rem;
}

.hero-copy {
  max-width: min(680px, 100%);
  align-self: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4em);
  line-height: 1.12;
  color: var(--white);
  font-weight: normal;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.hero h1 .hero-title-bold {
  font-weight: 700;
}

.text-purple {
  color: var(--purple);
}

.hero h1 .text-purple {
  color: #9C1DC4;
}

.text-blue {
  color: var(--blue);
}

.hero-sub {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-outline-purple {
  border-color: transparent;
  background: var(--white);
  color: var(--purple);
  box-shadow: none;
}

.hero-actions .btn-outline-purple:hover {
  background: var(--white);
  color: var(--purple);
}

.hero-cards {
  position: static;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  z-index: 2;
  align-self: start;
  max-width: min(680px, 100%);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  min-width: 160px;
}

.hero-card strong {
  display: block;
  color: var(--purple);
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Intro */
.intro {
  padding: 3.5rem 0;
  background: var(--white);
}

.intro-inner {
  text-align: center;
  max-width: 900px;
}

.intro-lead {
  margin: 0 0 4rem;
  font-size: clamp(2rem, 2vw, 1.2rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
}

.intro-lead strong {
  color: var(--blue);
  font-weight: 700;
}

.intro-lead {
  margin: 0 0 4rem;
  font-size: clamp(2rem, 2vw, 1.2rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
/* Section titles */
.section-title {
  margin: 0 0 2rem;
  margin-bottom: 2rem;
  font-size: 2.5em;
  color: var(--text-dark);
  font-weight: normal;
  line-height: 1.3;
  text-align: inherit;
  margin-bottom: 2em;
  letter-spacing: 1.2px;
}

.section-title--left {
  text-align: left;
}

.section-title .text-purple,
.section-title .text-blue {
  font-weight: 700;
}

.section-title--features .text-purple,
.section-title--features .text-blue {
  font-weight: 400;
}

/* Features */
.features {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border-radius: 35px;
  box-shadow: 0 0 0.5rem 0.5rem #13131317;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.feature-card__title {
  margin: 0 0 1em;
  font-size: 2em;
  line-height: 1.2;
  font-weight: normal;
  color: var(--text-dark);
}

.feature-card__title .text-blue {
  font-weight: 700;
}

.feature-card__image {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Steps */
.steps {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 12px solid var(--green);
  padding: 0 1.25rem 6.5rem;
  height: 100%;
  text-align: center;
}

.step-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 7.5rem;
  flex-shrink: 0;
}

.step-num {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  margin: 0;
  pointer-events: none;
}

.step-card p {
  width: 100%;
  margin: 0;
  color: #7c7c7c;
  font-weight: 400;
  font-size: 1.8em;
  line-height: 1.3;
  text-align: center;
}

.step-card p strong {
  font-weight: 700;
  color: #7c7c7c;
}

.step-card a {
  color: var(--purple);
  text-decoration: underline;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(45, 55, 72, 0.06);
  padding: 0.25rem 1rem;
  border: 1px solid var(--border);
  border-left-width: 12px;
}

.faq-list .faq-item:nth-child(1) {
  border-left-color: #EC99D1;
}

.faq-list .faq-item:nth-child(2) {
  border-left-color: #9B1EC4;
}

.faq-list .faq-item:nth-child(3) {
  border-left-color: #177DAE;
}

.faq-list .faq-item:nth-child(4) {
  border-left-color: #B3DF58;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.85rem 0 0.85rem 1.5rem;
  list-style: none;
  position: relative;
  font-size: 1.3em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--black);
  font-size: 0.75rem;
  top: 1.05rem;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Account / Checkout */
.account {
  padding: 4rem 0 3rem;
  background: var(--gray-bg);
}

.account-note {
  text-align: left;
  color: black;
  font-size: 1.1em;
}

.account-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.plan-panel,
.form-panel {
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 25px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.plan-panel h3,
.form-panel h3 {
  margin: 0 0 0.75rem;
  color: var(--purple);
  font-size: 1.25rem;
}

.plan-price {
  margin: 0 0 1rem;
}

.plan-price strong {
  display: block;
  font-size: 2rem;
  color: var(--purple);
  line-height: 1.1;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-benefits {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
}

.plan-benefits li {
  margin-bottom: 0.45rem;
}

.account-form {
  display: grid;
  gap: 0.75rem;
}

.account-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.account-form input:not([type="radio"]):not([type="hidden"]),
.account-form select {
  width: 100%;
  border: 1px solid var(--purple);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text-dark);
  background: #fcfdff;
}

.account-form input:not([type="radio"]):not([type="hidden"]):focus,
.account-form select:focus {
  outline: 2px solid rgba(123, 67, 151, 0.25);
  border-color: var(--purple);
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.pay-total {
  margin: 0.25rem 0 0;
  font-weight: 600;
  color: var(--text-dark);
}

.pay-total strong {
  color: var(--purple);
  font-size: 1.1rem;
}

.checkout-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.checkout-status.success {
  color: #166534;
}

.checkout-status.error {
  color: #b91c1c;
}

.plan-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.plan-select-label .plan-select-title {
  font-weight: 600;
}

.plan-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.account-form label.plan-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.plan-radio-label {
  color: var(--text-dark);
}

.plan-radio-price {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

.account-form label.plan-radio input[type="radio"] {
  width: auto;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  accent-color: var(--green);
}

.account-form .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-content {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.page-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
}

.legal-page .entry-title {
  margin-bottom: 1.25rem;
  text-align: left;
}

.legal-content {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 700;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-intro {
  font-size: 1.02rem;
  color: var(--text-dark);
}

.legal-updated {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  padding: 2rem 0 0.5rem;
}

.footer-links__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.footer-links__item {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.footer-links__item:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .footer-links__grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(45, 55, 72, 0.08);
  padding: 1rem 0;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-banner__accept {
  flex-shrink: 0;
  border-radius: 10.5px;
  padding: 7px 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 0.5rem 0.5rem #13131317;
  padding: 1.25rem;
}

.contact-card h2 {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 1rem;
}

.contact-card p,
.contact-list {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.contact-list {
  padding-left: 1rem;
}

.contact-card a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--gray-bg);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 5.5rem;
  }
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.sitemap-group h2 {
  margin: 0 0 0.75rem;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 700;
}

.sitemap-group--wide {
  grid-column: 1 / -1;
}

.sitemap-list {
  margin: 0;
  padding-left: 1.1rem;
}

.sitemap-list li {
  margin-bottom: 0.45rem;
}

.sitemap-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.sitemap-list a:hover {
  text-decoration: underline;
}

.news-archive__header {
  margin-bottom: 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 0.5rem 0.5rem #13131317;
  overflow: hidden;
}

.news-card__thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card__body {
  padding: 1.25rem;
}

.news-card__date {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.news-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.news-card__title a {
  color: var(--text-dark);
  text-decoration: none;
}

.news-card__title a:hover {
  color: var(--purple);
}

.news-card__excerpt {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.news-card__link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.news-card__link:hover {
  text-decoration: underline;
}

.news-pagination {
  margin-top: 2rem;
}

.news-empty {
  padding: 2rem;
  border-radius: 20px;
  background: var(--gray-bg);
  text-align: center;
}

.news-single__date {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.news-single__thumb {
  margin: 0 0 1.5rem;
}

.news-single__thumb img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.news-single__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .sitemap-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--white);
}

.footer-legal {
  padding: 2rem 0 1.5rem;
}

.footer-legal p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

.footer-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand login"
      "help help";
    text-align: center;
    gap: 0.65rem 0.75rem;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .topbar-login {
    grid-area: login;
    justify-self: end;
    font-size: 0.82rem;
  }

  .topbar-help {
    grid-area: help;
    order: unset;
    font-size: 1rem;
  }

  .brand-logo {
    height: 38px;
    max-width: min(200px, 48vw);
  }

  .features-grid,
  .steps-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    background: var(--white);
  }

  .hero .hero-frame {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    min-height: clamp(520px, 92vh, 680px);
    height: auto;
  }

  .hero-bg {
    background:
      url("../images/hero-banner-opt.jpg") 68% center / cover no-repeat;
  }

  .hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.55) 0%,
      rgba(15, 23, 42, 0.25) 42%,
      rgba(15, 23, 42, 0.5) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  .hero-inner {
    min-height: clamp(520px, 92vh, 680px);
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.25rem 1.75rem;
    justify-content: space-between;
    gap: 1.75rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    line-height: 1.18;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  }

  .hero-sub {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .hero-cards {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .hero-card {
    min-width: 0;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 600px) {
  .hero .hero-frame,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 1.75rem 1rem 1.5rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8.5vw, 2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 0.55rem 0;
  }

  .topbar-inner {
    min-height: auto;
  }

  .brand-logo {
    height: 32px;
    max-width: min(170px, 52vw);
  }

  .topbar-help {
    line-height: 1.35;
  }
}
