:root {
  --navy: #0c3652;
  --navy-dark: #082438;
  --blue: #1793b8;
  --blue-light: #4fc3de;
  --sand: #f4efe6;
  --sand-deep: #e9e0cd;
  --accent: #d97a45;
  --accent-dark: #b85f31;
  --accent-light: #f0a879;
  --ink: #1c2b33;
  --white: #ffffff;
  --whats: #25d366;
  --whats-dark: #1ebc59;
  --radius: 14px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Karla", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  margin: 0 0 .5em;
  line-height: 1.15;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(23,147,184,.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tag-light { background: rgba(255,255,255,.14); color: #cdeef7; }

.section-lead {
  max-width: 640px;
  color: #46596a;
  font-size: 1.05rem;
  margin-bottom: 2.4rem;
}
.section-lead-light { color: #cfe3ec; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-whats {
  background: var(--whats);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
}
.btn-whats:hover { background: var(--whats-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}
.btn-ghost:hover { background: var(--navy-dark); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(12,54,82,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 24px rgba(12,54,82,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  transition: padding .25s ease;
}
.site-header.scrolled .header-inner { padding: 8px 24px; }
.brand img { height: 46px; width: auto; border-radius: 8px; transition: height .25s ease; }
.site-header.scrolled .brand img { height: 38px; }
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { font-size: .9rem; padding: 10px 18px; }
.header-cta svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6,32,48,.88) 15%, rgba(6,32,48,.55) 55%, rgba(6,32,48,.35) 100%);
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 90px 24px;
  max-width: 940px;
}
.hero .eyebrow {
  color: var(--blue-light);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .92rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  max-width: 27ch;
}
.hero-lead {
  font-size: 1.15rem;
  color: #e4eef2;
  max-width: 54ch;
  margin: 18px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.hero-actions .btn-ghost:hover { background: #fff; color: var(--navy-dark); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* Emergency bar */
.emergency-bar {
  background: #fbeae9;
  border-bottom: 1px solid rgba(164,48,46,.15);
}
.emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
}
.emergency-label {
  font-weight: 700;
  color: #a4302e;
  font-size: .92rem;
}
.emergency-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.emergency-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  color: #a4302e;
  border: 1px solid rgba(164,48,46,.35);
  border-radius: 999px;
  padding: 6px 14px;
  transition: background .2s ease, color .2s ease;
}
.emergency-links a:hover {
  background: #a4302e;
  color: #fff;
}

/* Stats strip */
.stats-strip {
  background: var(--navy);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-light);
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-light);
}
.stat-item p {
  margin: 4px 0 0;
  color: #cfe3ec;
  font-size: .95rem;
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--sand); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue, .whats-ring { display: none; }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12,54,82,.08);
  box-shadow: 0 10px 30px rgba(12,54,82,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(12,54,82,.12); }
.service-card img { height: 190px; width: 100%; object-fit: cover; }
.service-body { padding: 22px; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-body p { color: #46596a; margin: 0; }
.service-card-wide {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
}
.service-card-wide h3 { color: #fff; }
.service-card-wide p { color: #cfe3ec; }
.service-card-wide .service-body { padding: 32px; }
.link-arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-light);
  font-weight: 700;
  text-decoration: none;
}
.link-arrow:hover { text-decoration: underline; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.about-photo img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(12,54,82,.15); }
.about-text p { color: #384c5c; font-size: 1.03rem; }
.quote {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  font-style: italic;
  color: var(--navy-dark) !important;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img { cursor: zoom-in; }

/* Social proof */
.social-proof {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: var(--sand);
  border-radius: var(--radius);
}
.social-proof-stat strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin-right: 8px;
}
.social-proof-stat span {
  color: #46596a;
  font-size: .95rem;
}

/* Condomínios de Itatiba */
.condo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.condo-chip {
  background: #fff;
  border: 1px solid rgba(12,54,82,.12);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(12,54,82,.05);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.condo-chip:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}
.condo-note {
  color: #46596a;
  font-size: .95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(12,54,82,.08);
  box-shadow: 0 10px 26px rgba(12,54,82,.05);
  padding: 24px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 16px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: .92rem;
}
.testimonial-author small {
  font-weight: 400;
  color: #8296a3;
}

/* Weather */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.weather-card {
  background: #fff;
  border: 1px solid rgba(12,54,82,.08);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(12,54,82,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.weather-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(12,54,82,.1); }
.weather-card h3 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #46596a;
  margin: 0 0 10px;
}
.weather-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: var(--blue);
}
.weather-icon.is-sunny,
.tool-day-icon.is-sunny {
  color: var(--accent);
}
.weather-icon svg { width: 100%; height: 100%; }
.weather-temp {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}
.weather-desc {
  margin: 4px 0 0;
  font-size: .85rem;
  color: #6b7d8c;
}
.weather-extra {
  margin: 6px 0 0;
  font-size: .78rem;
  color: #8296a3;
}
.weather-extra .uv-high { color: var(--accent-dark); font-weight: 700; }
.weather-card.is-loading .weather-icon {
  border-radius: 50%;
  background: linear-gradient(90deg, #eef3f6 25%, #f8fafb 37%, #eef3f6 63%);
  background-size: 400% 100%;
  animation: weatherShimmer 1.4s ease infinite;
}
@keyframes weatherShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* Tools */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.tool-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(12,54,82,.08);
  box-shadow: 0 10px 30px rgba(12,54,82,.06);
  padding: 28px;
}
.tool-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.tool-sub { color: #6b7d8c; font-size: .92rem; margin: 0 0 20px; }

.tool-toggle {
  display: inline-flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}
.tool-toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  color: #46596a;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.tool-toggle-btn.active { background: var(--navy); color: #fff; }

.tool-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.tool-fields[hidden] { display: none; }
.tool-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.tool-fields input[type="number"] {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(12,54,82,.18);
  background: #fbfcfd;
  color: var(--ink);
}
.tool-fields input[type="number"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,147,184,.15);
}

.tool-range-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.tool-range-value { color: var(--blue); font-family: var(--font-head); font-size: 1.05rem; }
.tool-range {
  width: 100%;
  accent-color: var(--blue);
  margin: 2px 0 4px;
}

.tool-hint {
  font-size: .8rem;
  color: #8296a3;
  margin: 0 0 18px;
}

.tool-result {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(12,54,82,.15);
  text-align: center;
}
.tool-result-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: center;
}
.tool-result-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
}
.tool-result-unit {
  display: block;
  font-size: .82rem;
  color: #6b7d8c;
  margin-top: 2px;
}

.tool-day-result { text-align: center; }
.tool-day-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 6px;
  color: var(--blue);
}
.tool-day-icon svg { width: 100%; height: 100%; }
.tool-day-result .tool-result-num { display: inline; font-size: 1.6rem; }
.tool-day-result .tool-result-unit { display: inline; margin-left: 6px; }
.tool-day-verdict {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
}
.tool-day-verdict.good { background: rgba(37,211,102,.12); color: #1a7a3d; }
.tool-day-verdict.ok { background: rgba(255,184,0,.14); color: #8a6300; }
.tool-day-verdict.bad { background: rgba(220,60,60,.1); color: #a4302e; }

.tool-card-wide { grid-column: 1 / -1; }
.tool-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.tool-fields select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(12,54,82,.18);
  background: #fbfcfd;
  color: var(--ink);
}
.tool-fields select:focus,
.tool-textarea-label textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,147,184,.15);
}
.tool-textarea-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.tool-textarea-label textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(12,54,82,.18);
  background: #fbfcfd;
  color: var(--ink);
  resize: vertical;
}

/* FAQ */
.faq-wrap { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(12,54,82,.1);
  border-radius: 10px;
  padding: 16px 20px;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: #46596a; margin: 12px 0 0; }

/* Contact */
.contact-section {
  background: var(--navy-dark);
  color: #fff;
}
.contact-section h2 { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 50px;
}
.social-row { display: flex; gap: 22px; margin-top: 26px; }
.social-row a {
  color: #cfe3ec;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
.social-row a:hover { border-color: var(--blue-light); }
.contact-area {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-area h3 { color: #fff; font-size: 1.1rem; }
.contact-area ul { list-style: none; padding: 0; margin: 0; color: #cfe3ec; }
.contact-area li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-area li:last-child { border-bottom: none; }

/* Footer */
.site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  color: #9fb8c6;
  font-size: .88rem;
}
.footer-logo { height: 34px; border-radius: 6px; }

/* Floating WhatsApp */
.floating-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: var(--whats);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 60;
}
.floating-whats svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 2; }
.floating-whats:hover { background: var(--whats-dark); }
.whats-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: whatsPulse 2.4s ease-out infinite;
}
@keyframes whatsPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,20,30,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-figure { margin: 0; text-align: center; }
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-figure figcaption {
  color: #e4eef2;
  margin-top: 14px;
  font-size: .95rem;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    transform: translateY(-130%);
    transition: transform .25s ease;
    border-bottom: 1px solid rgba(12,54,82,.08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(12,54,82,.06); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .hero-content { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
}
