/* =============================================
   GRUPO M4 — Página Institucional Corporativa
   Estilo: Corporate / Relatório Anual / Premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Design Tokens ---- */
:root {
  /* Cores Principais */
  --white:          #FFFFFF;
  --off-white:      #F7F6F3;
  --light:          #EEECEA;
  --border:         #DDD9D3;
  --border-dark:    #C4BDB4;

  /* Texto */
  --text:           #111318;
  --text-2:         #3D4252;
  --muted:          #7A7E8E;

  /* Acento Dourado */
  --gold:           #B8841E;
  --gold-2:         #D4A843;
  --gold-3:         #F0CC7A;
  --gold-light:     #FDF4E1;
  --gold-border:    rgba(184, 132, 30, 0.25);

  /* Azul Corporativo */
  --navy:           #1A2744;
  --navy-2:         #243361;
  --navy-light:     rgba(26, 39, 68, 0.06);

  /* Espaçamentos e Layout */
  --section-gap:    120px;
  --container-w:    1160px;
  --radius:         6px;
  --radius-lg:      12px;

  /* Sombras */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:      0 24px 80px rgba(0,0,0,0.12);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(184, 132, 30, 0.28);
}
.btn-gold:hover {
  background: #A07319;
  box-shadow: 0 4px 20px rgba(184, 132, 30, 0.40);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.7);
}

/* ---- Tags / Labels ---- */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.label::before {
  content: '—  ';
  opacity: 0.5;
}

/* ---- Divisor decorativo ---- */
.divider-gold {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  border-radius: 2px;
  margin: 20px 0 28px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px; height: 40px;
}
.nav-logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-wordmark small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-light); }
.nav-links .nav-cta { background: var(--navy); color: var(--white); border-radius: var(--radius); }
.nav-links .nav-cta:hover { background: var(--navy-2); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 70px; /* navbar height */
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,132,30,0.08), transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,0.03), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 90px 0 80px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold-2);
  opacity: 0.7;
}
.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Painel lateral do hero */
.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-venture-list { display: grid; gap: 2px; }
.hero-venture-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.hero-venture-item:hover { background: rgba(255,255,255,0.06); }
.hvi-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hvi-info {}
.hvi-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.hvi-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.42);
}

/* Stats bar abaixo do hero */
.hero-stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.hero-stats-inner {
  display: flex;
  align-items: stretch;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.2s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--light); }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   SEÇÃO SOBRE
   ============================================= */
.about {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left {}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.about-text {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.82;
  margin-bottom: 32px;
}
.about-right {}
.about-pillars { display: grid; gap: 1px; }
.about-pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.about-pillar-row:first-child { padding-top: 0; }
.about-pillar-row.visible { opacity: 1; transform: translateX(0); }
.about-pillar-row:nth-child(1) { transition-delay: 0.05s; }
.about-pillar-row:nth-child(2) { transition-delay: 0.12s; }
.about-pillar-row:nth-child(3) { transition-delay: 0.19s; }
.about-pillar-row:nth-child(4) { transition-delay: 0.26s; }
.apr-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 30px;
  padding-top: 2px;
}
.apr-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0;
}
.apr-text p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   SEÇÃO EMPREENDIMENTOS
   ============================================= */
.ventures {
  padding: var(--section-gap) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ventures-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 32px;
}
.ventures-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.ventures-header-desc {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.75;
  text-align: right;
}
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.venture-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.30s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
}
.venture-card.visible { opacity: 1; transform: translateY(0); }
.venture-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.venture-card:nth-child(1) { transition-delay: 0.04s; }
.venture-card:nth-child(2) { transition-delay: 0.12s; }
.venture-card:nth-child(3) { transition-delay: 0.20s; }
.venture-card:nth-child(4) { transition-delay: 0.28s; }

.vc-top-bar {
  height: 4px;
  width: 100%;
}
.venture-salex  .vc-top-bar { background: linear-gradient(90deg, #0EA5E9, #0284C7); }
.venture-portal .vc-top-bar { background: linear-gradient(90deg, #B8841E, #D4A843); }
.venture-games  .vc-top-bar { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.venture-ebooks .vc-top-bar { background: linear-gradient(90deg, #059669, #34D399); }

.vc-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.vc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.venture-salex  .vc-icon-wrap { background: #EFF8FF; }
.venture-portal .vc-icon-wrap { background: var(--gold-light); }
.venture-games  .vc-icon-wrap { background: #F5F3FF; }
.venture-ebooks .vc-icon-wrap { background: #ECFDF5; }

.vc-sector {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--light);
  color: var(--muted);
  border: 1px solid var(--border);
}
.vc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vc-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.venture-salex  .vc-tagline { color: #0284C7; }
.venture-portal .vc-tagline { color: var(--gold); }
.venture-games  .vc-tagline { color: #7C3AED; }
.venture-ebooks .vc-tagline { color: #059669; }

.vc-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 28px;
  flex: 1;
}
.vc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.vc-domain {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.vc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  padding: 7px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  transition: all 0.22s;
}
.vc-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =============================================
   SEÇÃO MANIFESTO / CITAÇÃO
   ============================================= */
.manifesto {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: -40px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
}
.manifesto-text em { color: var(--gold-2); font-style: normal; }
.manifesto-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.manifesto-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
}
.manifesto-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* =============================================
   SEÇÃO PILARES
   ============================================= */
.pillars {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.pillars-header {
  margin-bottom: 60px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pillar-card.visible { opacity: 1; transform: translateY(0); }
.pillar-card:nth-child(1) { transition-delay: 0.04s; }
.pillar-card:nth-child(2) { transition-delay: 0.12s; }
.pillar-card:nth-child(3) { transition-delay: 0.20s; }
.pillar-card:nth-child(4) { transition-delay: 0.28s; }
.pc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 16px;
  display: inline-block;
}
.pillar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.78;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-left p {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo {
  width: 36px; height: 36px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 2px;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.78;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-gold-accent {
  color: var(--gold-2);
  font-size: 0.78rem;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-layout { grid-template-columns: 1fr; gap: 36px; }
  .cta-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .container, .nav-inner { padding-left: 24px; padding-right: 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 2px;
    align-items: stretch;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .ventures-grid { grid-template-columns: 1fr; }
  .ventures-header { flex-direction: column; align-items: flex-start; }
  .ventures-header-desc { text-align: left; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
