/* ==========================================================================
   GPS Tracker MX — Sistema de diseño (mobile-first, sin frameworks)
   Marca: azul #264198 · verde lima #7cbd1e
   ========================================================================== */

:root {
  --brand:        #1f3a8a;
  --brand-600:    #264198;
  --brand-700:    #1b2f6e;
  --brand-900:    #111d44;
  --accent:       #7cbd1e;
  --accent-600:   #6aa516;
  --accent-700:   #5a8d12;
  --ink:          #11161f;
  --body:         #3b4455;
  --muted:        #6b7280;
  --line:         #e6e9f0;
  --bg:           #ffffff;
  --bg-soft:      #f5f7fb;
  --bg-softer:    #eef2f9;
  --white:        #ffffff;
  --whatsapp:     #25d366;

  --radius:       16px;
  --radius-sm:    10px;
  --shadow-sm:    0 1px 2px rgba(17,29,68,.06), 0 2px 8px rgba(17,29,68,.05);
  --shadow:       0 8px 30px rgba(17,29,68,.10);
  --shadow-lg:    0 20px 50px rgba(17,29,68,.18);
  --container:    1140px;
  --ease:         cubic-bezier(.22,.61,.36,1);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-700); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
ul, ol { padding-left: 1.25rem; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-700); margin-bottom: .75rem;
}
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.section-head p { color: var(--muted); margin-top: .75rem; font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--body); }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--brand-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.6em; border-radius: 999px; font-weight: 700; font-size: 1rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s;
  box-shadow: var(--shadow-sm); line-height: 1.1; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--accent); --btn-fg: #10260a; }
.btn--accent:hover { --btn-bg: var(--accent-600); color: #10260a; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--brand-600); border-color: var(--line); box-shadow: none; }
.btn--outline:hover { border-color: var(--brand-600); color: var(--brand-600); }
.btn--wa { --btn-bg: var(--whatsapp); --btn-fg: #06351b; }
.btn--wa:hover { --btn-bg: #1ebe5a; color: #06351b; }
.btn--lg { padding: 1.05em 2em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ==========================================================================
   Header / Navegación
   ========================================================================== */
.topbar { background: var(--brand-900); color: rgba(255,255,255,.85); font-size: .9rem; }
.topbar__inner { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.9); display: inline-flex; align-items: center; gap: .5rem; }
.topbar a:hover { color: #fff; }
.topbar a:hover .topbar__label { color: var(--accent); }
.topbar__ico { width: 18px; height: 18px; flex: none; opacity: .9; }
.topbar__sub { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .65; line-height: 1; }
.topbar__strong { font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; }
.nav__spacer { flex: 1; }
.nav__menu { display: flex; align-items: center; gap: .25rem; list-style: none; padding: 0; margin: 0; }
.nav__menu > li { position: relative; }
.nav__menu a { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem .9rem; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav__menu a:hover, .nav__menu .is-active > a { color: var(--brand-600); background: var(--bg-softer); }
.nav__menu .caret { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.has-drop:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 232px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: .65rem .8rem; border-radius: 10px; width: 100%; }
.dropdown a:hover { background: var(--bg-soft); }
.dropdown .ico { width: 20px; height: 20px; color: var(--accent-700); flex: none; }
.nav__cta { display: inline-flex; align-items: center; gap: .75rem; }
.nav__login { margin-left: .25rem; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.mobile-nav { display: none; }

/* ==========================================================================
   Hero / Slider
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--brand-900); }
.hero__slides { position: relative; }
.slide { position: relative; display: none; min-height: clamp(440px, 72vh, 620px); }
.slide.is-active { display: block; animation: fade .8s var(--ease); }
@keyframes fade { from { opacity: .4; } to { opacity: 1; } }
.slide__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(17,29,68,.86) 0%, rgba(27,47,110,.74) 45%, rgba(17,29,68,.45) 100%); }
.slide__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: clamp(440px, 72vh, 620px); }
.slide__content { max-width: 680px; color: #fff; padding: 40px 0; }
.slide__content h1 { color: #fff; font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 1rem; }
.slide__content p { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2.5vw, 1.35rem); margin-bottom: 2rem; max-width: 30ch; }
.slide__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: .55rem; }
.hero__dots button { width: 11px; height: 11px; border-radius: 999px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .25s var(--ease); padding: 0; }
.hero__dots button.is-active { background: var(--accent); width: 30px; }

/* Page header (subpáginas) */
.pagehead { position: relative; background: var(--brand-900); color: #fff; overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; }
.pagehead__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,29,68,.65), rgba(17,29,68,.9)); }
.pagehead__inner { position: relative; z-index: 2; padding: clamp(48px, 9vw, 90px) 0; text-align: center; }
.pagehead h1 { color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); }
.breadcrumb { margin-top: .9rem; font-size: .95rem; color: rgba(255,255,255,.75); display: flex; gap: .5rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { opacity: .5; }

/* ==========================================================================
   Tarjetas de servicios
   ========================================================================== */
.cards { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.25rem 1.75rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 64px; height: 64px; margin: 0 auto 1.25rem; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--brand-600), var(--brand)); color: #fff; }
.card__icon.is-accent { background: linear-gradient(135deg, var(--accent), var(--accent-600)); color: #10260a; }
.card__icon svg { width: 32px; height: 32px; }
.card h3 { font-size: 1.25rem; margin-bottom: .65rem; text-transform: uppercase; letter-spacing: .01em; }
.card p { color: var(--muted); flex: 1; margin-bottom: 1.25rem; font-size: 1rem; }

/* Franja CTA con imagen */
.band { position: relative; overflow: hidden; background: var(--brand-900); color: #fff; }
.band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(17,29,68,.92), rgba(27,47,110,.6) 70%, rgba(124,189,30,.25)); }
.band__inner { position: relative; z-index: 2; padding: clamp(56px, 9vw, 100px) 0; max-width: 600px; }
.band h2 { color: #fff; font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: 1rem; }
.band p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 1.75rem; }

/* ==========================================================================
   Features (plataforma)
   ========================================================================== */
.features { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.feature {
  display: flex; gap: 1.1rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-softer); color: var(--brand-600); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.feature p { font-size: .98rem; color: var(--muted); margin-bottom: .35rem; }
.feature ul { margin: .35rem 0 0; color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Blog
   ========================================================================== */
.posts { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); margin-bottom: .6rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.post-card p { color: var(--muted); font-size: .97rem; flex: 1; margin-bottom: 1.2rem; }

/* Artículo */
.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: clamp(1.5rem, 4vw, 3rem); max-width: 820px; margin: 0 auto; }
.article__media { float: right; width: 220px; max-width: 40%; margin: 0 0 1rem 1.5rem; border-radius: var(--radius-sm); }
.article h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 1rem; }
.article h3 { font-size: 1.3rem; margin: 1.75rem 0 .6rem; color: var(--brand-700); }
.article p { margin-bottom: 1rem; }
.article ol, .article ul { margin-bottom: 1rem; }
.article li { margin-bottom: .5rem; }
.article b, .article strong { color: var(--ink); }
.article code, .cmd { font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; background: var(--brand-900); color: #c9f27e; padding: .15em .5em; border-radius: 6px; font-size: .92em; display: inline-block; }
.meta-table { width: auto; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .95rem; }
.meta-table td { border: 1px solid var(--line); padding: .5rem 1rem; }
.meta-table td:first-child { font-weight: 700; color: var(--ink); background: var(--bg-soft); }

/* Tablas de especificaciones */
.spec-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .95rem; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; vertical-align: top; }
.spec-table thead th { background: var(--brand-900); color: #fff; font-weight: 700; }
.spec-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.spec-table td:first-child { font-weight: 600; color: var(--ink); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Producto (subpáginas GPS) */
.product { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
.product__media { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: grid; place-items: center; }
.product__media img { max-height: 320px; width: auto; }
.product__badge { display: inline-block; background: var(--bg-softer); color: var(--brand-700); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .35em .9em; border-radius: 999px; margin-bottom: .75rem; }
.product h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: .75rem; }
.product__intro { color: var(--body); font-size: 1.08rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   Contacto / Formulario
   ========================================================================== */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.5rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .4rem; font-size: .95rem; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--brand-600); background: #fff; box-shadow: 0 0 0 4px rgba(38,65,152,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { display: block; margin-top: .75rem; font-weight: 600; color: var(--accent-700); }
.info-card { background: var(--brand-900); color: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2rem); box-shadow: var(--shadow); }
.info-card h3 { color: #fff; margin-bottom: 1.25rem; }
.info-card .info-row { display: flex; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-card .info-row:last-child { border-bottom: 0; }
.info-card .info-ico { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: .15rem; }
.info-card .info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .65; }
.info-card a { color: #fff; }
.info-card a:hover { color: var(--accent); }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: .85rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.15rem 1.4rem; font: inherit; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--brand-600); }
.faq-q .plus { flex: none; width: 22px; height: 22px; position: relative; transition: transform .25s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent-700); border-radius: 2px; }
.faq-q .plus::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); transition: opacity .25s; }
.faq-item.is-open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a__inner { padding: 0 1.4rem 1.25rem; color: var(--body); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brand-900); color: rgba(255,255,255,.72); padding: clamp(48px, 7vw, 80px) 0 0; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer-col p, .footer-col li { font-size: .96rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--accent); }
.footer-contact div { margin-bottom: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: clamp(36px,5vw,56px); padding: 1.5rem 0; text-align: center; font-size: .9rem; }
.footer-bottom a { color: var(--accent); }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s var(--ease); animation: wa-pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .slide__actions { flex-wrap: nowrap; }
}
@media (min-width: 768px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.6fr 1fr; }
  .product { grid-template-columns: 320px 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* Nav responsive: menú móvil bajo 992px */
@media (max-width: 991px) {
  .nav__menu, .nav__login-desktop { display: none; }
  .burger { display: flex; }
  .topbar__inner { justify-content: center; gap: 1.25rem; }
  .mobile-nav {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: #fff; z-index: 100; box-shadow: var(--shadow-lg); padding: 1.25rem;
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto;
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
  .mobile-nav__close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); cursor: pointer; font-size: 1.4rem; line-height: 1; color: var(--ink); }
  .mobile-nav ul { list-style: none; padding: 0; margin: 0; }
  .mobile-nav > ul > li > a, .mobile-nav__sublabel { display: block; padding: .85rem .5rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .mobile-nav__sublabel { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; border: 0; padding-bottom: .25rem; }
  .mobile-nav .submenu a { padding-left: 1.25rem; font-weight: 600; color: var(--body); display: flex; align-items: center; gap: .5rem; }
  .mobile-nav .submenu .ico { width: 18px; height: 18px; color: var(--accent-700); }
  .mobile-nav .btn { margin-top: 1.25rem; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(17,29,68,.5); z-index: 90; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
}

@media (min-width: 992px) {
  .nav__login-desktop { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
