:root {
  --cebraspe-blue: #003f67;
  --cebraspe-deep-blue: #003c61;
  --cebraspe-orange: #e49300;
  --icon-orange: #ff8a00;
  --ink: #252525;
  --muted-border: #e7e7e7;
  --section-light: #fafafa;
  --section-gray: #f4f4f4;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 16px;
  color: #fff;
  background: var(--cebraspe-blue);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: #fff;
}

.header-top {
  min-height: 101px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  display: inline-flex;
  align-items: center;
}

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

.follow-button {
  min-height: 45px;
  min-width: 256px;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--cebraspe-orange);
  color: var(--cebraspe-orange);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.follow-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.follow-button:hover,
.follow-button:focus-visible {
  color: #fff;
  background: var(--cebraspe-orange);
}

.main-nav ul {
  min-height: 94px;
  margin: 0;
  padding: 0 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: var(--cebraspe-blue);
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.75px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--cebraspe-orange);
}

.mobile-menu {
  display: none;
}

.overview-section {
  padding: 56px 0 84px;
  background: #fff;
}

.section-title {
  text-align: center;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 12px auto 0;
  background: #333;
}

.stats-list {
  margin: 57px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.stat-item {
  min-height: 241px;
  padding: 10px 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--muted-border);
}

.stat-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 24px;
  fill: none;
  stroke: var(--icon-orange);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.3;
}

.money-icon {
  width: 32px;
}

.stat-item h2 {
  min-height: 62px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
  text-transform: uppercase;
}

.stat-item:first-child h2 {
  min-height: 62px;
}

.stat-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.stat-item .period {
  max-width: 290px;
}

.registration-button {
  min-width: 166px;
  margin-top: 13px;
  padding: 8px 18px;
  color: #fff;
  background: var(--cebraspe-orange);
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.registration-button:hover,
.registration-button:focus-visible {
  background: #c77f00;
}

.content-section {
  padding: 79px 0 86px;
  background: var(--section-light);
}

.content-section + .content-section {
  padding-top: 68px;
}

.content-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.cargos-list {
  display: grid;
  gap: 20px;
}

.cargos-list li {
  min-height: 76px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.045);
  font-size: 20px;
  line-height: 1.35;
}

.links-section {
  padding-bottom: 89px;
}

.link-cards {
  display: grid;
  gap: 20px;
}

.link-cards li {
  min-height: 112px;
  padding: 20px 22px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.045);
}

.link-cards time {
  width: max-content;
  margin-bottom: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid #444;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.link-cards a {
  width: fit-content;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-cards a:hover,
.link-cards a:focus-visible {
  color: var(--cebraspe-orange);
}

.notices-section {
  padding-top: 71px;
  padding-bottom: 91px;
  background: var(--section-gray);
}

.notices-list li {
  min-height: 85px;
}

.site-footer {
  padding: 71px 0 76px;
  color: #fff;
  background: var(--cebraspe-deep-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr 1fr 1fr;
  gap: 30px;
}

.site-footer h2 {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
  text-transform: uppercase;
}

.site-footer h2 a {
  text-decoration: none;
}

.footer-contact > h2 {
  max-width: 245px;
}

.footer-rule {
  width: 80px;
  height: 1px;
  display: block;
  margin: 10px 0 25px;
  background: rgba(255, 255, 255, 0.42);
}

.footer-contact address {
  margin: 0;
  font-size: 11px;
  font-style: normal;
  line-height: 1.8;
}

.contact-row {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.contact-row svg {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.footer-contact p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.footer-contact .copyright {
  margin-top: 39px;
}

.linkedin {
  width: 23px;
  height: 23px;
  margin-top: 6px;
  display: inline-block;
  color: #fff;
}

.linkedin svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0;
}

.footer-column li.subitem {
  padding-left: 11px;
}

.footer-column li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-column li a {
  min-height: 27px;
  padding: 6px 13px 6px 0;
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-column li a::after {
  content: ">";
  position: absolute;
  top: 6px;
  right: 1px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column li a:hover,
.footer-column li a:focus-visible {
  color: #fff;
}

.footer-subheading {
  margin-top: 26px !important;
}

.footer-subheading + .footer-rule {
  margin-bottom: 20px;
}

#vlibras [vw-access-button] {
  z-index: 9998 !important;
}

@media (max-width: 900px) {
  .main-nav ul {
    padding-inline: 0;
    gap: 15px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .stat-item {
    padding-inline: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 38px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-container {
    width: 100%;
  }

  .header-top {
    min-height: 165px;
    padding: 18px 16px 20px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    position: relative;
  }

  .logo img {
    width: 221px;
  }

  .follow-button {
    min-width: 256px;
    min-height: 45px;
    margin-top: 8px;
    margin-right: 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 35px;
    left: 25px;
    z-index: 100;
  }

  .mobile-menu summary {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #8b8b8b;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
  }

  .mobile-menu nav {
    width: min(300px, calc(100vw - 32px));
    margin-top: 16px;
    padding: 10px 0;
    display: grid;
    border: 1px solid #e2e2e2;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .mobile-menu nav a {
    padding: 11px 18px;
    color: var(--cebraspe-blue);
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu nav a.active {
    color: var(--cebraspe-orange);
  }

  .overview-section {
    padding: 51px 0 108px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 23px;
  }

  .section-title span {
    margin-top: 12px;
  }

  .stats-list {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .stat-item {
    min-height: auto;
    padding: 0 25px;
  }

  .stat-item + .stat-item {
    border-left: 0;
  }

  .stat-icon {
    margin-bottom: 24px;
  }

  .stat-item h2,
  .stat-item:first-child h2 {
    min-height: auto;
    margin-bottom: 3px;
    font-size: 24px;
  }

  .stat-item p {
    font-size: 16px;
  }

  .stat-item .period {
    max-width: 190px;
    line-height: 1.6;
  }

  .registration-button {
    min-width: 166px;
    margin-top: 12px;
  }

  .content-section,
  .content-section + .content-section,
  .notices-section {
    padding: 64px 0 72px;
  }

  .content-list {
    margin-top: 34px;
  }

  .cargos-list,
  .link-cards {
    gap: 16px;
  }

  .cargos-list li {
    min-height: 68px;
    padding: 18px;
    font-size: 16px;
  }

  .link-cards li,
  .notices-list li {
    min-height: 100px;
    padding: 18px;
  }

  .link-cards a {
    font-size: 16px;
  }

  .site-footer {
    padding: 58px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-contact > h2 {
    max-width: 280px;
  }

  .footer-column li a {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .header-top {
    padding-inline: 8px;
  }

  .mobile-menu {
    left: 25px;
  }

  .logo img {
    width: 220px;
  }
}
