@font-face {
  font-family: "CyGroteskGrand";
  src: url("assets/fonts/CyGroteskGrand-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CyGroteskGrand";
  src: url("assets/fonts/CyGroteskGrand-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CyGroteskGrand";
  src: url("assets/fonts/CyGroteskGrand-Dark.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #3b1b8f;
  --blue: #07369a;
  --light-blue: #b9e6ff;
  --orange: #e4572e;
  --green: #57a773;
  --text: #111111;
  --muted: #4b4b4b;
  --line: #9b9b9b;
  --page-width: 1024px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "CyGroteskGrand", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.page {
  max-width: var(--page-width);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.page.no-borders {
  border-left: none;
  border-right: none;
}

.site-header {
  background: #07369a;
  color: #ffffff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
}

.logo img {
  width: 120px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.nav a {
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 70%;
}

.hero.contact-hero img {
  object-position: center 55%;
}

.hero-top img {
  object-position: center 55%;
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.section {
  padding: 48px 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.contactos-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--line);
  bottom: -1px;
}

.contactos-section::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 0;
  height: 28px;
  width: 2px;
  background: #ffffff;
}

.no-footer-gap {
  padding-bottom: 0;
}


.no-top-line {
  border-top: none;
}

.full-top-line::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  height: 1px;
  background: var(--line);
  top: 0;
}

.inscricoes-top::after {
  content: "";
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  right: calc(-1 * (100vw - 100%) / 2);
  height: 1px;
  background: var(--line);
  bottom: -1px;
}

.inscricoes-top::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}

.inscricoes-programa::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}


.section.no-bottom-border {
  border-bottom: none;
}


.section-tight {
  padding: 36px 64px;
}

.title {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.title.demi {
  font-weight: 600;
}


.subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.subtitle.upper {
  text-transform: uppercase;
}

.title-35 {
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
}

.title-30 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.body-15 {
  font-size: 15px;
}

.align-right {
  text-align: right;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.full-bleed img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.pill-row.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.body-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.pill {
  display: inline-block;
  background: var(--blue);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 13px;
  font-family: "CyGroteskGrand", "Helvetica Neue", Arial, sans-serif;
}

.pill.estatutos {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.pill-row .pill-note {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.grid-2.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.image-box {
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 140px;
  width: 1px;
  background: #000000;
  z-index: 0;
}

.timeline-section {
  padding-left: 20px;
  padding-right: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 0;
}

.dot.blue {
  background: #07369a;
}

.dot.orange {
  background: #e4572e;
}

.dot.green {
  background: var(--green);
}

.timeline-year {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-year-inline {
  font-weight: 600;
  text-transform: none;
  margin-right: 8px;
  font-size: 16px;
  color: #000000;
}

.timeline-text {
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  padding-top: 2px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 40px;
}

.timeline-blocks {
  margin: 0;
}

.timeline-grid .pair {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.boxed {
  border: 1px solid var(--line);
  padding: 28px 32px;
}

.boxed.no-box {
  border: none;
  padding: 0;
}

.subtitle.regular {
  font-weight: 400;
  font-family: "CyGroteskGrand", "Helvetica Neue", Arial, sans-serif;
}

.boxed h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  text-transform: none;
  font-weight: 600;
}

.names {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.founder {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto auto;
  gap: 52px;
  align-items: start;
}

.founder-header {
  grid-column: 1 / -1;
}

.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
}

.names.spaced {
  margin-top: 28px;
}

.section.footer-pad {
  padding-bottom: 90px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contactos-left-rail {
  position: relative;
}

.contactos-left-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.contact-box {
  padding: 44px 48px;
  position: relative;
}


.contact-box.no-right-line {
  border-right: none;
}

.contact-box.no-bottom-line {
  border-bottom: none;
}

.contact-box.no-left-line {
  border-left: none;
}

.contact-box.no-top-line {
  border-top: none;
}



.contact-box.compact {
  padding-top: 18px;
  padding-left: 0;
  margin-left: 0;
}

.contact-box.compact.no-top-line {
  border-top: none;
}

.contact-title {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.contact-subtitle {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.contact-box.compact.shift-left {
  margin-left: -55px;
}


.contact-list {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.site-footer {
  background: #07369a;
  color: #ffffff;
}

.site-footer .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.first-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * (100vw - 100%) / 2);
  height: 1px;
  background: var(--line);
  bottom: -1px;
}

.first-section::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}

.second-section::after {
  content: "";
  position: absolute;
  left: 100%;
  right: calc(-1 * (100vw - 100%) / 2);
  height: 1px;
  background: var(--line);
  top: 96px;
}

.sobre-intro::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}

.sobre-intro::after {
  content: "";
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  right: calc(-1 * (100vw - 100%) / 2);
  height: 1px;
  background: var(--line);
  bottom: -1px;
}

.pilares {
  border-top: none;
}

.pilares::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}

.pilares::after {
  content: "";
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  right: 0;
  height: 1px;
  background: var(--line);
  bottom: -1px;
}

.pilares .pill-row {
  border-top: none;
  border-bottom: none;
}

.impacto-image {
  border-bottom: none;
}


.como-surge {
  padding-top: 5px;
  padding-bottom: 120px;
}

.full-line {
  display: block;
  height: 1px;
  background: var(--line);
  width: 100vw;
  margin-left: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  margin-bottom: 24px;
}

.full-line.flush-bottom {
  margin-bottom: -29px;
}

.full-line.tight-bottom {
  margin-bottom: 56px;
}


.full-line.spaced {
  margin-bottom: 80px;
}

.full-line.before-founder {
  margin-bottom: 24px;
}


.full-line.white {
  background: #ffffff;
}



@media (max-width: 1100px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 36px 40px;
  }
}

@media (max-width: 820px) {
  .site-header .container {
    height: auto;
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page {
    border-left: none;
    border-right: none;
  }

  .section,
  .section-tight {
    padding: 28px 24px;
  }

  .pilares {
    padding-right: 24px;
  }

  .contact-stack {
    padding-right: 24px;
  }

  .pilares .align-right {
    padding-right: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
  }

  .pilares .pill-row.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list {
    word-break: break-word;
  }

  .hero img {
    height: 220px;
  }

  .grid-2,
  .grid-2.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-box {
    padding: 28px 24px;
  }

  .contact-box.compact.shift-left {
    margin-left: 0;
  }

  .full-line {
    width: 100%;
    left: 0;
    transform: none;
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .title {
    font-size: 30px;
  }

  .title-35 {
    font-size: 28px;
  }

  .title-30 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
  }

  .body-text {
    font-size: 14px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-subtitle {
    font-size: 20px;
  }
}
