:root {
  --bg: #070707;
  --panel: #111111;
  --card: #181818;
  --line: #2f2f2f;
  --text: #f7f7f7;
  --muted: #bababa;
  --red: #d01032;
  --red-2: #ff3456;
  --orange: #ff7a18;
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  --scroll-offset: 92px;
  --ambient-shift-x: 0px;
  --ambient-shift-y: 0px;
  --ambient-shift-x-inverse: 0px;
  --ambient-shift-y-inverse: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Franklin Gothic Medium", sans-serif;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at calc(88% + var(--ambient-shift-x)) calc(6% + var(--ambient-shift-y)), rgba(255, 52, 86, 0.24), transparent 24%),
    radial-gradient(circle at calc(12% + var(--ambient-shift-x-inverse)) calc(78% + var(--ambient-shift-y-inverse)), rgba(255, 122, 24, 0.12), transparent 26%),
    var(--bg);
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
  background:
    radial-gradient(circle at calc(22% + var(--ambient-shift-x-inverse)) calc(18% + var(--ambient-shift-y)), rgba(255, 122, 24, 0.12), transparent 28%),
    radial-gradient(circle at calc(76% + var(--ambient-shift-x)) calc(70% + var(--ambient-shift-y-inverse)), rgba(208, 16, 50, 0.13), transparent 32%);
  transform: translate3d(0, 0, 0);
}

main,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
}

main {
  padding-bottom: 96px;
}

body.modal-open {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
  min-height: 54px;
  padding: 4px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  width: auto;
  height: 62.4px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-cta {
  min-height: 40px;
  border: 1px solid #3b3b3b;
  border-radius: 999px;
  background: #101010;
  color: #d5d5d5;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.header-cta:hover {
  color: #ffffff;
  border-color: var(--red);
  background: rgba(208, 16, 50, 0.22);
}

.header-cta-whatsapp {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: transparent;
  background: linear-gradient(130deg, var(--red), var(--red-2));
  color: #ffffff;
}

.whatsapp-cta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.contact-link-wa-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.section {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 62px 0;
  scroll-margin-top: var(--scroll-offset);
}

#marcas,
#agenda-section,
#contacto {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

#agenda {
  scroll-margin-top: calc(var(--scroll-offset) + 8px);
}

#servicios {
  scroll-margin-top: calc(var(--scroll-offset) + 8px);
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-content: center;
}

.hero-copy {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero-copy-main {
  display: grid;
  gap: 12px;
  align-content: start;
}

h1 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 4.1rem);
  line-height: 1.04;
}

.hero p {
  margin: 0;
  max-width: 720px;
  color: #d8d8d8;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-tagline {
  max-width: 640px;
  color: #ffffff;
  font-size: clamp(1.12rem, 2.25vw, 1.4rem);
  line-height: 1.35;
}

.hero-microcopy {
  margin-top: 6px;
  font-size: 0.98rem;
  color: #e9e9e9;
}

.hero p strong {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--red);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  align-items: flex-end;
}

.hero-actions .btn {
  min-width: 170px;
  flex: 0 1 auto;
}

.hero-delivery-chip {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(130deg, rgba(208, 16, 50, 0.22), rgba(255, 122, 24, 0.22));
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: chipGlow 3.3s ease-in-out infinite;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

.hero-delivery-chip .material-icons-round {
  font-size: 18px;
}

.hero-delivery-chip::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -38%;
  width: 34%;
  height: 340%;
  transform: rotate(24deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.36) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: chipShine 4.8s linear infinite;
  pointer-events: none;
}

.hero-delivery-chip:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #111111, #1a1a1a);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 0deg, transparent 10%, rgba(255, 52, 86, 0.65), rgba(255, 122, 24, 0.55), transparent 70%);
  filter: blur(22px);
  animation: spin 6.5s linear infinite;
  opacity: 0.95;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.14), transparent 35%),
    radial-gradient(circle at 75% 30%, rgba(140, 140, 140, 0.22), transparent 31%),
    radial-gradient(circle at 60% 70%, rgba(255, 122, 24, 0.24), transparent 35%);
  filter: blur(14px);
  animation: smoke 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2,
.panel h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  color: #d8d8d8;
  list-style: none;
}

.hero-service-list {
  display: grid;
  gap: 8px;
}

.hero-service-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  background:
    linear-gradient(130deg, rgba(255, 52, 86, 0.16), rgba(255, 122, 24, 0.1)),
    rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-service-item:hover {
  border-color: rgba(255, 52, 86, 0.72);
  transform: translateY(-1px);
}

.hero-service-item-title {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-service-item-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-service-item-head .material-icons-round {
  font-size: 17px;
  color: #ff8a3a;
}

.hero-service-item-desc {
  display: block;
  margin-top: 3px;
  color: #e1e1e1;
  font-size: 0.78rem;
  line-height: 1.35;
}

.section-head {
  margin-bottom: 16px;
}

.sub {
  margin: 6px 0 0;
  color: var(--muted);
}

.btn {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 11px 17px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.btn-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: linear-gradient(130deg, var(--red), var(--red-2));
}

.btn-main::after,
.header-cta-whatsapp::after,
.footer-wa::after,
.assistant-toggle::after,
.assistant-form button::after,
.assistant-shortcut-btn:not(.alt)::after {
  content: "";
  position: absolute;
  top: -160%;
  left: -40%;
  width: 28%;
  height: 420%;
  transform: rotate(24deg) translateX(0);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.btn-alt {
  border: 1px solid #3b3b3b;
  color: #f1f1f1;
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-main:hover::after,
.header-cta-whatsapp:hover::after,
.footer-wa:hover::after,
.assistant-toggle:hover::after,
.assistant-form button:hover::after,
.assistant-shortcut-btn:not(.alt):hover::after {
  opacity: 1;
  animation: ctaSparkle 0.7s ease-out 1;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 14px;
  align-items: stretch;
}

.agenda-shell {
  border: 1px solid #373737;
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 122, 24, 0.18), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(208, 16, 50, 0.18), transparent 38%),
    #101010;
  padding: 22px;
}

.agenda-brief {
  display: grid;
  align-content: center;
  gap: 12px;
}

.agenda-kicker {
  margin: 0;
  color: #ffb8c6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-brief h2 {
  margin: 0;
}

.agenda-brief .sub {
  margin: 0;
  color: #ffffff;
}

.agenda-brief-copy {
  margin: 0;
  color: #d2d2d2;
  max-width: 42ch;
}

.agenda-open-btn {
  width: fit-content;
}

input,
textarea,
select {
  width: 100%;
  min-height: 38px;
  border-radius: 9px;
  border: 1px solid #3a3a3a;
  background: #131313;
  color: #ffffff;
  padding: 8px 10px;
  font: inherit;
  transition: 0.2s ease;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--red-2);
  box-shadow: 0 0 0 3px rgba(208, 16, 50, 0.25);
}

.office-stack {
  display: grid;
  gap: 12px;
}

.office-map,
.office-info {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  background: #101010;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 260px;
  border: 0;
}

.office-info {
  padding: 12px;
}

.office-info strong {
  display: block;
  margin-bottom: 6px;
}

.office-info p {
  margin: 0 0 8px;
  color: #d0d0d0;
}

.office-info p:last-child {
  margin-bottom: 0;
}

.brands-carousel {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #323232;
  background: #0f0f0f;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 12px;
  animation: brandLoop 53.125s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-card {
  min-width: 288px;
  max-width: 288px;
  border: 1px solid #353535;
  border-radius: 12px;
  background: #141414;
  overflow: hidden;
  display: block;
}

.brand-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 122, 24, 0.25), transparent 36%),
    radial-gradient(circle at 85% 90%, rgba(208, 16, 50, 0.25), transparent 40%),
    #181818;
}

.brand-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.22s ease;
}

.brand-card.is-fallback .brand-media::after {
  content: "Imagen no disponible";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #e4e4e4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo-panel {
  position: absolute;
  inset: 0;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.22) 0%, rgba(6, 6, 6, 0.06) 24%, rgba(6, 6, 6, 0.52) 100%);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: visible;
}

.brand-logo-panel .brand-logo-image {
  display: block;
  width: auto;
  max-width: min(var(--brand-logo-width), calc(100% - 24px));
  height: auto;
  max-height: min(var(--brand-logo-height), calc(100% - 24px));
  margin: 0;
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.82));
  opacity: 0.98;
  object-fit: contain;
  object-position: center center;
  overflow: visible;
  justify-self: center;
  align-self: center;
  line-height: 0;
}

.brand-logo-fallback {
  display: none;
  width: auto;
  max-width: min(var(--brand-logo-width), calc(100% - 24px));
  min-height: var(--brand-logo-height);
  margin: 0;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
}

.brand-logo-panel.is-text-only .brand-logo-fallback {
  display: flex;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-link {
  border: 1px solid #393939;
  border-radius: 14px;
  background: #121212;
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.contact-link:hover {
  border-color: var(--red-2);
}

.contact-link-email {
  display: block;
  padding: 0;
  min-height: 64px;
  height: 64px;
  perspective: 1100px;
  background: #121212;
  border: 1px solid #393939;
  overflow: hidden;
}

.contact-link-flip {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 64px;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.contact-link-email.is-open .contact-link-flip {
  transform: rotateY(180deg);
}

.contact-email-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 0;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  backface-visibility: hidden;
}

.contact-email-front {
  width: 100%;
  cursor: pointer;
  color: inherit;
  font: inherit;
  justify-content: center;
  text-align: center;
}

.contact-email-back {
  width: 100%;
  transform: rotateY(180deg);
  justify-content: center;
}

.contact-email-details {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-email-address {
  display: block;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  user-select: text;
  -webkit-user-select: text;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  word-break: normal;
  scrollbar-width: none;
}

.contact-email-address::-webkit-scrollbar {
  display: none;
}

.contact-email-copy,
.contact-email-close {
  border: 1px solid #454545;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font: inherit;
  min-height: 34px;
  min-width: 34px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-email-copy:hover,
.contact-email-close:hover {
  border-color: var(--red-2);
}

.contact-email-copy .material-icons-round {
  font-size: 18px;
}

.terms-panel {
  display: grid;
  gap: 18px;
}

.terms-intro {
  margin: 0;
  color: #d5d5d5;
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 78ch;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.terms-block {
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  padding: 16px;
}

.terms-block h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.terms-block p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.84rem;
  line-height: 1.65;
}

footer {
  width: min(1160px, 92%);
  margin: 0 auto 26px;
  border-top: 1px solid #272727;
  padding-top: 16px;
  color: #a8a8a8;
  font-size: 0.83rem;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-link {
  border: 1px solid #3b3b3b;
  border-radius: 999px;
  color: #d3d3d3;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 12px;
  transition: 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  border-color: var(--red);
  background: rgba(208, 16, 50, 0.14);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-badge-fallback {
  width: auto;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid #3d3d3d;
  background: linear-gradient(130deg, #d01032, #ff3456 55%, #ff7a18);
  text-transform: uppercase;
}

.footer-wa {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, var(--red), var(--red-2));
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
}

.assistant-toggle,
.wa-float {
  position: fixed;
  z-index: 110;
  border: 0;
  cursor: pointer;
}

.assistant-toggle {
  position: fixed;
  overflow: hidden;
  isolation: isolate;
  right: 18px;
  bottom: calc(88px + env(safe-area-inset-bottom));
  min-height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(130deg, var(--red), var(--red-2));
  box-shadow: var(--shadow);
}

.wa-float {
  right: 18px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #25d366, #128c7e);
  box-shadow: var(--shadow);
}

.wa-float img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.assistant-popup {
  position: fixed;
  right: 18px;
  bottom: calc(142px + env(safe-area-inset-bottom));
  z-index: 111;
  width: min(360px, calc(100vw - 22px));
  max-height: min(520px, calc(100vh - 180px));
  border: 1px solid #70757d;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #454b53 0%, #2d3137 18%, #1b1e23 54%, #121418 100%);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  overscroll-behavior: contain;
  isolation: isolate;
}

.assistant-popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.assistant-popup::before,
.assistant-popup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.assistant-popup::before {
  z-index: 0;
  background:
    repeating-linear-gradient(
      102deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 8px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0));
  opacity: 0.42;
  mix-blend-mode: screen;
}

.assistant-popup::after {
  z-index: 2;
  inset: 9px;
  background:
    radial-gradient(circle at 0 0, rgba(196, 201, 208, 0.9) 0 4px, rgba(60, 64, 70, 0.95) 4px 7px, transparent 7px),
    radial-gradient(circle at 100% 0, rgba(196, 201, 208, 0.9) 0 4px, rgba(60, 64, 70, 0.95) 4px 7px, transparent 7px),
    radial-gradient(circle at 0 100%, rgba(196, 201, 208, 0.9) 0 4px, rgba(60, 64, 70, 0.95) 4px 7px, transparent 7px),
    radial-gradient(circle at 100% 100%, rgba(196, 201, 208, 0.9) 0 4px, rgba(60, 64, 70, 0.95) 4px 7px, transparent 7px);
  background-repeat: no-repeat;
  opacity: 0.5;
}

.assistant-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(212, 218, 226, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(28, 31, 36, 0.94), rgba(18, 21, 25, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.assistant-head button {
  border: 1px solid #767b84;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #2f343b, #1a1d22);
  color: #f5f5f5;
  min-height: 30px;
  min-width: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.28);
}

.assistant-log {
  position: relative;
  z-index: 1;
  max-height: none;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 12% 0, rgba(255, 255, 255, 0.05), transparent 28%);
}

.assistant-log > * {
  flex: 0 0 auto;
  min-height: auto;
  max-height: none;
}

.msg-row {
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  min-height: auto;
  align-items: flex-start;
}

.msg-row.bot {
  justify-content: flex-start;
}

.msg-row.user {
  justify-content: flex-end;
}

.msg {
  display: inline-block;
  flex: 0 0 auto;
  width: fit-content;
  inline-size: fit-content;
  max-width: 92%;
  height: fit-content;
  block-size: fit-content;
  max-height: none;
  min-height: 0;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.34;
  white-space: normal;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: top;
}

.msg.bot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(48, 53, 60, 0.92), rgba(26, 29, 34, 0.94));
  border: 1px solid rgba(160, 167, 176, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.16);
}

.msg.user {
  background: rgba(208, 16, 50, 0.22);
  border: 1px solid rgba(255, 52, 86, 0.6);
}

.msg.typing {
  display: inline-flex;
  align-items: center;
  min-width: 52px;
  padding: 8px 10px;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfbfbf;
  display: inline-block;
  animation: typingPulse 1s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.14s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.28s;
}

.assistant-quick {
  position: relative;
  z-index: 1;
  padding: 0 10px 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 155, 164, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(41, 45, 52, 0.95), rgba(22, 25, 29, 0.94));
  color: #ececec;
  font-size: 0.78rem;
  padding: 0 10px;
  cursor: pointer;
}

.assistant-form {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212, 218, 226, 0.12);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(22, 25, 29, 0.94), rgba(15, 17, 21, 0.96));
}

.assistant-form button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  border-radius: 10px;
  border: 0;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(130deg, var(--red), var(--red-2));
  padding: 0 12px;
}

.assistant-shortcut-row {
  display: flex;
  align-self: flex-start;
  flex: 0 0 auto;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.assistant-shortcut-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 34px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, var(--red), var(--red-2));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
  cursor: pointer;
}

.assistant-shortcut-btn.alt {
  border-color: #474747;
  background: #151515;
  color: #f0f0f0;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.booking-modal.is-open .booking-modal-backdrop {
  opacity: 1;
}

.booking-modal-card {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 24px));
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  background: #111111;
  box-shadow: var(--shadow);
  padding: 18px;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.booking-modal.is-open .booking-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal-embed-only-shell {
  padding: 0;
  background: rgba(0, 0, 0, 0.74);
}

.booking-modal-card-wide {
  width: min(1160px, calc(100vw - 56px));
  min-height: calc(100vh - 56px);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 22px;
}

.booking-modal-logo {
  display: block;
  width: min(220px, 72%);
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

.booking-modal-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}

.booking-modal-card p {
  margin: 0 0 14px;
  color: #d6d6d6;
  text-align: center;
}

.booking-flow-head {
  margin-bottom: 14px;
  display: grid;
  gap: 6px;
}

.booking-flow-kicker {
  margin: 0;
  color: #ffb8c6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-flow-copy {
  margin-bottom: 0;
}

.booking-modal-card.booking-modal-card-embed-only {
  display: flex;
  align-items: stretch;
  width: min(1320px, calc(100vw - 72px));
  min-width: min(1320px, calc(100vw - 72px));
  max-width: min(1320px, calc(100vw - 72px));
  min-height: calc(100vh - 72px);
  max-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  max-height: calc(100dvh - 72px);
  height: calc(100dvh - 72px);
  border: 1px solid #2f2f2f;
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.56);
  padding: 0;
  overflow: hidden;
}

.google-booking-embed {
  flex: 1;
  min-height: 100%;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
  background: #050505;
}

.google-booking-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  background: #0a0a0a;
  color-scheme: dark;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.84) contrast(0.96) brightness(0.94);
}

.booking-modal-actions {
  display: grid;
  gap: 9px;
}

.booking-modal-actions .btn {
  width: 100%;
}

.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  min-height: 34px;
  min-width: 34px;
  border-radius: 9px;
  border: 1px solid #444444;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  color: #f5f5f5;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.booking-modal-close-floating {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 140;
  pointer-events: auto;
}

.booking-flow-form .status {
  text-align: left;
}

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

@keyframes chipGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 52, 86, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 52, 86, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 52, 86, 0.35);
  }
}

@keyframes chipShine {
  0% {
    left: -38%;
  }
  100% {
    left: 128%;
  }
}

@keyframes typingPulse {
  0%, 80%, 100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes smoke {
  0%,
  100% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1%, -1.5%, 0) scale(1.04);
  }
}

@keyframes ctaSparkle {
  0% {
    transform: rotate(24deg) translateX(-160%);
  }

  100% {
    transform: rotate(24deg) translateX(360%);
  }
}

@media (max-width: 980px) {
  .nav-wrap,
  .section,
  footer {
    width: min(94%, 920px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6px;
    gap: 30px;
  }

  .hero-copy {
    min-height: auto;
    gap: 18px;
  }

  .hero-card,
  .panel {
    padding: 20px;
  }

  .agenda-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    width: min(94%, 680px);
    padding: 50px 0;
  }

  .section + .section {
    margin-top: 30px;
  }

  main {
    padding-bottom: 112px;
  }

  .nav-wrap {
    width: min(94%, 680px);
    min-height: 46px;
    gap: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .contact-link {
    width: 100%;
    min-height: 72px;
    justify-content: flex-start;
  }

  .brand img {
    height: 61.2px;
  }

  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }

  .hero {
    gap: 30px;
    justify-items: center;
  }

  .hero-copy {
    width: min(100%, 430px);
    margin-inline: auto;
    gap: 16px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 122, 24, 0.18), transparent 42%),
      radial-gradient(circle at 86% 82%, rgba(208, 16, 50, 0.18), transparent 44%),
      rgba(13, 13, 13, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    align-items: flex-start;
    text-align: left;
  }

  .hero-copy-main {
    gap: 11px;
    justify-items: start;
  }

  h1 {
    margin: 0 0 12px;
    max-width: 9.4ch;
    font-size: clamp(2.1rem, 10.4vw, 3.05rem);
  }

  .hero p {
    max-width: 33ch;
  }

  .hero-tagline {
    max-width: 19ch;
    font-size: 1.04rem;
    line-height: 1.3;
  }

  .hero-microcopy {
    margin-top: 0;
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .hero-card,
  .panel {
    padding: 18px;
    border-radius: 16px;
  }

  .hero-card {
    width: min(100%, 430px);
    margin-inline: auto;
    min-height: auto;
    gap: 10px;
  }

  .hero-service-list {
    gap: 10px;
  }

  .hero-service-item {
    padding: 10px;
  }

  .hero-service-item-title {
    font-size: 0.86rem;
  }

  .hero-service-item-desc {
    font-size: 0.76rem;
  }

  .hero-actions {
    width: min(100%, 348px);
    margin-inline: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-width: 0;
    max-width: 167px;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 11px;
    font-size: 0.88rem;
  }

  .agenda-open-btn {
    width: 100%;
  }

  .hero-delivery-chip {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding-inline: 12px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .hero-delivery-chip .material-icons-round {
    font-size: 16px;
  }

  .assistant-toggle {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    min-height: 40px;
    padding: 0 12px;
  }

  .wa-float {
    right: 12px;
    width: 48px;
    height: 48px;
  }

  .assistant-shortcut-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .assistant-popup {
    left: 8px;
    right: 8px;
    top: calc(var(--scroll-offset) + 6px);
    width: auto;
    bottom: calc(8px + env(safe-area-inset-bottom));
    max-height: none;
    border-radius: 18px;
  }

  .assistant-head {
    padding: 8px;
  }

  .assistant-log {
    min-height: 0;
    padding: 8px;
    gap: 6px;
  }

  .msg {
    padding: 7px 9px;
    border-radius: 9px;
    font-size: 0.81rem;
    line-height: 1.28;
  }

  .msg.typing {
    min-width: 44px;
    padding: 7px 9px;
  }

  .assistant-form {
    padding: 8px;
    gap: 6px;
  }

  body.assistant-open .assistant-toggle,
  body.assistant-open .wa-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

  .brands-track {
    gap: 10px;
    padding: 10px;
  }

  .brand-card {
    min-width: min(78vw, 240px);
    max-width: min(78vw, 240px);
  }

  .agenda-layout {
    gap: 30px;
  }

  .agenda-shell {
    padding: 18px;
  }

  .agenda-brief {
    gap: 10px;
  }

  .agenda-brief-copy {
    max-width: none;
  }

  .office-stack {
    gap: 30px;
  }

  .map-frame {
    min-height: 220px;
  }

  .contact-link {
    min-height: 64px;
    padding: 12px;
  }

  .contact-link-email {
    min-height: 64px;
    height: 64px;
    padding: 0;
  }

  .contact-link-flip,
  .contact-email-face {
    min-height: 64px;
    height: 64px;
  }

  .contact-email-face {
    padding: 12px;
    gap: 8px;
  }

  .contact-email-front,
  .contact-email-back {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-email-details {
    justify-content: space-between;
  }

  footer {
    width: min(94%, 680px);
    margin-bottom: 18px;
    gap: 12px;
  }

  .footer-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-modal-card {
    width: min(460px, calc(100vw - 28px));
    max-height: min(calc(100vh - 28px), 540px);
    overflow-y: auto;
    padding: 16px;
  }

  .booking-modal-card-wide {
    width: min(100%, calc(100vw - 28px));
    min-height: calc(100vh - 28px);
    max-height: calc(100vh - 28px);
    padding: 16px;
  }

  #bookingModal {
    padding: 0;
  }

  .booking-modal-card-wide.booking-modal-card-embed-only {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }

  .booking-modal-card-wide.booking-modal-card-embed-only .google-booking-embed,
  .booking-modal-card-wide.booking-modal-card-embed-only .google-booking-frame {
    min-height: 100%;
    height: 100%;
  }

  .google-booking-frame {
    min-height: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body::before {
    transition: none !important;
  }

  .hero-delivery-chip,
  .hero-delivery-chip::after,
  .hero-card::before,
  .hero-card::after,
  .btn-main:hover::after,
  .header-cta-whatsapp:hover::after,
  .footer-wa:hover::after,
  .assistant-toggle:hover::after,
  .assistant-form button:hover::after,
  .assistant-shortcut-btn:not(.alt):hover::after,
  .typing-dots i {
    animation: none;
  }

  .assistant-popup {
    transition: none;
  }
}

@media (max-width: 520px) {
  :root {
    --scroll-offset: 80px;
  }

  .section {
    width: min(95%, 520px);
    padding: 44px 0;
  }

  .section + .section {
    margin-top: 30px;
  }

  .nav-wrap {
    width: min(95%, 520px);
    min-height: 40px;
    padding: 6px 0;
  }

  .brand img {
    height: 50.4px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-cta {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .assistant-popup {
    left: 6px;
    right: 6px;
    top: calc(var(--scroll-offset) + 4px);
    bottom: calc(6px + env(safe-area-inset-bottom));
    width: auto;
    max-height: none;
    border-radius: 16px;
  }

  .assistant-head {
    padding: 7px;
  }

  .assistant-log {
    padding: 7px;
    gap: 5px;
  }

  .msg {
    max-width: 94%;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .msg.typing {
    min-width: 40px;
    padding: 6px 8px;
  }

  .assistant-form {
    padding: 7px;
    gap: 5px;
  }

  .hero-card,
  .panel {
    padding: 16px;
  }

  .hero-copy,
  .hero-card {
    width: min(100%, 360px);
  }

  .hero-copy {
    padding: 18px 15px 15px;
    border-radius: 16px;
  }

  .hero {
    gap: 30px;
  }

  h1 {
    max-width: 9.1ch;
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .hero p {
    max-width: 29ch;
  }

  .hero-actions {
    width: min(100%, 320px);
    gap: 7px;
  }

  .hero-actions .btn {
    max-width: 153px;
    min-height: 39px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero-delivery-chip {
    min-height: 40px;
    font-size: 0.83rem;
  }

  .google-booking-head {
    align-items: stretch;
  }

  .google-booking-link {
    width: 100%;
    justify-content: center;
  }

  .google-booking-frame {
    min-height: 500px;
  }

  #bookingModal {
    padding: 0;
  }

  .booking-modal-card-wide.booking-modal-card-embed-only {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
    padding: 0;
  }

  .booking-modal-card-wide.booking-modal-card-embed-only .google-booking-embed,
  .booking-modal-card-wide.booking-modal-card-embed-only .google-booking-frame {
    min-height: 100%;
    height: 100%;
  }

  .hero-service-item {
    padding: 9px;
  }

  .brand-card {
    min-width: min(84vw, 240px);
    max-width: min(84vw, 240px);
  }

  .contact-link {
    gap: 8px;
    font-size: 0.92rem;
  }

  .contact-link-email {
    min-height: 64px;
    height: 64px;
    padding: 0;
  }

  .contact-link-flip,
  .contact-email-face {
    min-height: 64px;
    height: 64px;
  }

  .contact-email-face {
    padding: 12px;
    gap: 8px;
  }

  .contact-email-front,
  .contact-email-back {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-email-details {
    justify-content: space-between;
  }

  .contact-grid {
    gap: 12px;
  }

  .terms-block {
    padding: 14px;
  }

  .terms-block h3 {
    font-size: 0.9rem;
  }

  .terms-block p {
    font-size: 0.82rem;
  }

  .agenda-layout {
    gap: 30px;
  }

  .office-stack {
    gap: 30px;
  }

  .assistant-toggle {
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .wa-float img {
    width: 22px;
    height: 22px;
  }

  .booking-modal {
    padding: 12px;
    place-items: center;
  }

  .booking-modal-card {
    width: min(440px, calc(100vw - 24px));
    max-height: min(calc(100vh - 24px), 520px);
    border-radius: 18px;
    overflow-y: auto;
    padding: 16px 14px;
  }

  .booking-modal-card-wide {
    width: min(100%, calc(100vw - 24px));
    min-height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 18px;
    padding: 16px 14px calc(14px + env(safe-area-inset-bottom));
  }

  .booking-modal-close {
    top: 8px;
    right: 8px;
  }

  .booking-modal-close-floating {
    top: 14px;
    right: 14px;
  }

}
