:root {
  --bg: #050a0e;
  --bg2: #0a1520;
  --accent: #00d4ff;
  --accent2: #00ff9d;
  --accent3: #7b5ea7;
  --text: #e8f4f8;
  --muted: #6a8fa8;
  --card: #0d1f2d;
  --border: rgba(0, 212, 255, 0.15);
  --glow: rgba(0, 212, 255, 0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── GRID NOISE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0,212,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 90%, rgba(0,255,157,0.05) 0%, transparent 60%),
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── TERMINAL FAB (atalho flutuante) ── */
.term-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #071019, #0d1f2d);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0,212,255,0.12), 0 4px 20px rgba(0,0,0,0.4);
  animation: fabPulse 3s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.term-fab:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  animation-play-state: paused;
  box-shadow: 0 0 30px rgba(0,212,255,0.3), 0 8px 24px rgba(0,0,0,0.4);
}
.term-fab-dots { display: flex; gap: 4px; flex-shrink: 0; }
.term-fab-dots span { width: 7px; height: 7px; border-radius: 50%; }
.term-fab-dots span:nth-child(1) { background: var(--red, #ff4d6d); }
.term-fab-dots span:nth-child(2) { background: #ffd166; }
.term-fab-dots span:nth-child(3) { background: var(--accent2); }
.term-fab-text b { color: var(--accent2); font-weight: 400; }
.term-fab-text::after {
  content: '_';
  color: var(--accent);
  animation: fabBlink .8s step-end infinite;
}
@keyframes fabBlink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.12), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 30px rgba(0,212,255,0.28), 0 4px 20px rgba(0,0,0,0.4); }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5,10,14,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.nav-logo:hover { opacity: 0.75; transform: scale(1.06); }

/* ── SKILL / CERT SVG ICONS ── */
.skill-icon svg, .cert-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.35s ease;
}
.skill-card:hover .skill-icon svg { transform: scale(1.18) rotate(-4deg); }
.cert-card:hover  .cert-icon  svg { transform: scale(1.18) rotate(4deg); }
.skill-card:hover .icon-spin svg, .cert-card:hover .icon-spin svg {
  transform: rotate(360deg) scale(1.1);
  transition: transform 0.6s ease;
}
.skill-card:hover .icon-bounce svg { animation: iconBounce 0.4s ease forwards; }
.cert-card:hover  .icon-bounce svg { animation: iconBounce 0.4s ease forwards; }
@keyframes iconBounce {
  0%   { transform: translateY(0) scale(1); }
  40%  { transform: translateY(-6px) scale(1.18); }
  70%  { transform: translateY(2px) scale(0.95); }
  100% { transform: translateY(0) scale(1); }
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-minigame {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #050a0e !important;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s !important;
  white-space: nowrap;
}
.nav-minigame::after { display: none !important; }
.nav-minigame:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,212,255,.35);
  color: #050a0e !important;
}
.drawer-minigame {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #050a0e !important;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.drawer-minigame:hover { opacity: .85; transform: scale(1.03); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; animation: heroFade 1s ease 0.3s both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent2);
}
.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 8px;
}
.hero-name span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-role {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-bio {
  font-size: 15px;
  color: #9bb8cc;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #050a0e;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 27px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--glow); }

.hero-photo-wrap {
  flex-shrink: 0;
  animation: heroFade 1s ease 0.6s both;
  position: relative;
}
.hero-photo-frame {
  width: 260px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(0,212,255,0.4), transparent 50%, rgba(0,255,157,0.2));
  border-radius: 21px;
  z-index: -1;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
}
.floating-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge strong { color: var(--accent2); font-size: 18px; display: block; font-family: 'Syne', sans-serif; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTION BASE ── */
section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 48px;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  margin: 0;
}

/* ── SKILLS ── */
#habilidades { background: none; }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}
.skill-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.08);
}
.skill-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.skill-name { font-weight: 500; font-size: 14px; color: var(--text); }
.skill-cat { font-size: 11px; color: var(--muted); margin-top: 2px; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── EXPERIENCE CAROUSEL ── */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.exp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  min-width: 0;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
  border-radius: 3px 0 0 3px;
}
.exp-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.exp-company { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: #fff; }
.exp-role { font-size: 14px; color: var(--accent); margin-top: 4px; font-weight: 500; }
.exp-period {
  font-size: 12px;
  color: var(--muted);
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.exp-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.exp-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #9bb8cc;
  line-height: 1.6;
}
.exp-items li::before {
  content: '›';
  color: var(--accent);
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.carousel-btns { display: flex; gap: 10px; }
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.carousel-btn:hover {
  border-color: var(--accent);
  background: var(--glow);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
.carousel-counter {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.carousel-counter span { color: var(--accent); font-weight: 600; }

/* ── CERTIFICATES ── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.cert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s, transform 0.2s;
}
.cert-card:hover { border-color: rgba(0,255,157,0.35); transform: translateX(4px); }
.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,255,157,0.08);
  border: 1px solid rgba(0,255,157,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cert-name { font-size: 14px; font-weight: 500; color: var(--text); }
.cert-issuer { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.2s;
}
.contact-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 14px; font-weight: 500; color: var(--text); margin-top: 2px; }
.contact-ico svg { width: 24px; height: 24px; transition: transform 0.35s ease; }
.contact-item:hover .contact-ico svg { transform: scale(1.22) rotate(-6deg); }
.contact-item:hover .contact-ico.icon-bounce svg { animation: iconBounce 0.4s ease forwards; transform: none; }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}
footer span { color: var(--accent); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,14,0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .skills-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .certs-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 90px 20px 50px;
    gap: 36px;
    text-align: center;
    min-height: auto;
  }
  .hero-content { order: 2; }
  .hero-photo-wrap { order: 1; }
  .hero-eyebrow { justify-content: center; }
  .hero-bio { max-width: 100%; font-size: 14px; }
  .hero-ctas { justify-content: center; }
  .hero-name { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1px; }
  .hero-role { font-size: 15px; }

  /* Photo */
  .hero-photo-frame { width: 160px; height: 196px; border-radius: 16px; }
  .floating-badge { bottom: -12px; left: -12px; padding: 8px 12px; }
  .floating-badge strong { font-size: 15px; }

  /* Sections */
  section { padding: 60px 20px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px; margin-bottom: 32px; }

  /* Skills */
  .skills-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .skill-card { padding: 14px 16px; gap: 12px; }
  .skill-icon { width: 36px; height: 36px; font-size: 16px; }
  .skill-name { font-size: 13px; }

  /* Exp */
  .exp-card { padding: 24px 20px; }
  .exp-company { font-size: 18px; }

  /* Certs */
  .certs-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 10px; }
  .contact-item { padding: 16px 18px; }
  .contact-value { font-size: 13px; word-break: break-all; }

  /* Trust badge */
  .term-fab { bottom: 12px; right: 12px; padding: 8px 12px; gap: 8px; font-size: 12px; }

  /* Footer */
  footer { padding: 28px 20px; font-size: 12px; }
}

@media (max-width: 400px) {
  .skills-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: 30px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 13px; }
}

/* ── BOOT SCREEN ── */
.boot-screen {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  padding: 40px;
  cursor: pointer;
  transition: opacity .45s ease;
}
.boot-screen.off { opacity: 0; pointer-events: none; }
.boot-screen.hidden { display: none; }
.boot-log {
  font-family: 'Space Mono', monospace, monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  white-space: pre-wrap;
}
.boot-log .ok   { color: var(--accent2); }
.boot-log .info { color: var(--accent); }
.boot-log .w    { color: #fff; }
@media (max-width: 600px) {
  .boot-screen { padding: 24px 16px; }
  .boot-log { font-size: 11px; }
}

/* ── SEÇÃO "AGORA" ── */
.now-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 16px;
  background: var(--card, #0d1f2d);
  border: 1px solid var(--border, rgba(0,212,255,0.15));
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted, #6a8fa8);
}
.now-box b { color: var(--accent2, #00ff9d); font-weight: 600; }
.now-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2, #00ff9d);
  flex-shrink: 0;
  animation: nowPulse 2s ease-in-out infinite;
}
@keyframes nowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,157,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(0,255,157,0); }
}
