:root {
  --blue: #001F54;
  --yellow: #FD9A28;
  --orange: #FD6228;
  --green: #AAC243;
  --light-gray: #EAEDF3;
  --gutter: 18px;
}
* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.alert-bar,
nav,
section,
footer {
  display: flex;
  justify-content: center;
}
.col-12,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  width: 100%;
}
.col-12 {
  max-width: calc((100%/12 * 12) - var(--gutter));
}
.col-8 {
  max-width: calc((100%/12 * 8) - var(--gutter));
}
.col-7 {
  max-width: calc((100%/12 * 7) - var(--gutter));
}
.col-6 {
  max-width: calc((100%/12 * 6) - var(--gutter));
}
.col-5 {
  max-width: calc((100%/12 * 5) - var(--gutter));
}
.col-4 {
  max-width: calc((100%/12 * 4) - var(--gutter));
}
.col-3 {
  max-width: calc((100%/12 * 3) - var(--gutter));
}
.col-2 {
  max-width: calc((100%/12 * 2) - var(--gutter));
}
.col-1 {
  max-width: calc((100%/12 * 1) - var(--gutter));
}
.btn {
  background-color: var(--yellow);
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px;
  transition: .2s ease-in-out;
  display: inline-block;
}
.pre-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--yellow);
  line-height: 1em;
  margin: 30px 0 10px 0;
}
.title {
  font-size: 48px;
  line-height: 1.1em;
  color: var(--blue);
  margin: 10px 0 30px 0;
}
.alert-bar {
  background-color: var(--yellow);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  padding: 5px;
}
.alert-bar .wrapper {
  justify-content: center;
  align-items: center;
}
.alert-bar a {
  background-color: var(--orange);
  color: #FFF;
  padding: 5px 10px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 4px;
  transition: .2s ease-in-out;
}
.alert-bar a:hover,
.btn:hover {
  transform: scale(1.05);
}
nav {
  padding: 20px 0 20px 0;
}
.menu a {
  text-decoration: none;
  color: var(--blue);
  height: calc(100% + 20px);
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 3px solid var(--blue);
  margin-top: -10px;
  transition: .2s ease-in-out;
}
.menu a:hover {
  border-bottom: 3px solid var(--yellow);
}
.main-area {
  background: var(--blue) url("../img/topo.png") no-repeat center center;
  background-size: cover;
  color: #FFF;
  text-align: right;
}
.main-title {
  font-size: 54px;
  line-height: 1em;
  margin: 120px 0 0 0;
}
.main-subtitle {
  background: var(--yellow);
  display: inline-block;
  padding: 0 10px;
  margin-right: -10px;
  font-size: 34px;
  font-weight: normal;
}
.main-area .disclaimer {
  font-size: 10px;
  opacity: .5;
  display: block;
  margin: 80px 0 10px;
}
.cta-bar {
  background: var(--blue);
  color: #FFF;
  padding: 20px 0;
}
.cta-bar h3 {
  font-size: 32px;
  line-height: 1;
  margin: 10px 0;
}
.cta-bar h3 span {
  color: var(--yellow);
}
.cta-bar div {
  display: flex;
  align-items: center;
}
.why {
  background-color: var(--light-gray);
  padding-top: 30px;
  margin-bottom: 60px;
}
.why .col-5 img {
  max-width: 100%;
}
.card-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 -80px 0;
  justify-content: space-between;
}

.card-list .card-item {
  width: calc((100% / 3) - (var(--gutter) / 2));
  height: 150px;
  font-size: 14px;
  background: #FFF;
  border-radius: 12px;
  padding: 20px;
  color: var(--blue);
  line-height: 1.1em;
  position: relative;
  margin-bottom: var(--gutter);
  box-shadow: 0 10px 10px -5px #00000008;
  display: flex;
  align-items: end;
}

.card-list .card-item .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
}

.card-list .card-item .content {
  position: relative;
  z-index: 1;
}
.vantagens {
  padding: 60px 0;
}
.vantagens .title,
.vantagens .pre-title {
  text-align: center;
}
.vantagens .col-4 {
  margin: 60px 0;
}
.vantagens .col-4 .title {
  font-size: 28px;
  text-align: left;
}
.vantagens .cta {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.vantagens .cta .btn {
  margin-top: 20px;
}
.vantagens .number {
  -webkit-text-stroke: 0.7px var(--yellow);
  color: transparent;
  font-weight: bold;
  font-size: 260px;
  line-height: 0.5;
  margin: 0 0 -110px -30px;
}
.form {
  padding: 60px 0;
}
.form .title {
  margin-top: 60px;
}
footer {
  background-color: var(--light-gray);
  text-align: center;
  font-size: 10px;
  padding: 60px 0;
}
footer .wrapper {
  flex-direction: column;
  justify-content: center;

}

@media screen and (max-width: 1300px) {
  .wrapper {
    max-width: 900px;
  }
  .alert-bar .wrapper {
    font-size: 12px;
  }
  .main-title {
    font-size: 42px;
  }
  .main-subtitle {
    font-size: 24px;
  }
  .cta-bar h3 {
    font-size: 24px;
  }
  .cta-bar p {
    font-size: 14px;
  }
  .title {
    font-size: 34px;
  }
  .vantagens .col-4 .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 940px) {
  .col-12,
  .col-8,
  .col-7,
  .col-6,
  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1 {
    max-width: 100%;
  }
  .wrapper {
    padding: 20px;
  }
  .form .wrapper {
    flex-direction: column-reverse;
  }
  .form img {
    display: none;
  }
  .card-list .card-item {
    width: calc((100% / 2) - (var(--gutter) / 2));
  }
  .pre-title {
    font-size: 21px;
  }
  .card-list {
    margin-bottom: 0;
  }
  .main-title {
    margin-top: 90px;
    font-size: 30px;
  }
}