* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.strong {
  font-weight: bold;
}

.text-red-normal {
  color: #B31312;
}

.text-red-dark {
  color: #b42b2b;
}

.text-red-light {
  color: #d34040;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  margin-right: 40px;
}
.header-logo img {
  width: 200px;
}

.header-options {
  display: flex;
  gap: 14px;
}

.header-options a {
  color: #fff;
  transition: color 0.4s;
}

.header-options a:hover {
  color: #B31312;
}

.languages {
  display: flex;
  gap: 5px;
}

.header-mobile {
  display: none;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 810px) {
  .header-menu {
    display: none;
  }
  .languages {
    display: none;
  }
  .burger {
    position: relative;
  }
  .header-mobile {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
  }
  .header-mobile i {
    color: #fff;
    font-size: 30px;
  }
  .header-mobile:hover {
    cursor: pointer;
  }
  .header-options-mobile {
    position: absolute;
    right: 0px;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 150px;
    background-color: #fff;
    padding: 10px;
    opacity: 0;
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOutRight {
    from {
      opacity: 1;
      transform: translateX(0px);
    }
    to {
      opacity: 0;
      transform: translateX(300px);
    }
  }
  .header-options-mobile a {
    color: #06121e;
  }
  .languages-mobile {
    display: flex;
    gap: 5px;
  }
}
.hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}
.hero h1 {
  line-height: 120%;
  max-width: 600px;
  font-size: 46px;
  text-align: left;
}
.hero p {
  margin: 14px 0px;
  max-width: 600px;
  font-size: 18px;
}
.hero div {
  flex: 1;
}

.margin-after-hero {
  margin-top: 80vh;
}

.solution {
  background-color: #EDF2F4;
  padding: 80px 80px;
  overflow: hidden;
}

.solution-content {
  display: flex;
  gap: 40px;
}
.solution-content .solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 30px;
  border-top-width: 24px;
  border-top-style: solid;
  max-width: 350px;
}
.solution-content .solution-card i {
  color: #EDF2F4;
  font-size: 50px;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.solution-content .solution-descriptions {
  flex: 1;
}

.assessoria {
  background-color: #fff;
  overflow: hidden;
}

.bg-item-1 {
  background-color: #2e5f8d;
}

.color-item-1 {
  color: #2e5f8d;
}

.border-color-item-1 {
  border-top-color: #2e5f8d;
}

.bg-item-2 {
  background-color: #b42b2b;
}

.color-item-2 {
  color: #b42b2b;
}

.border-color-item-2 {
  border-top-color: #b42b2b;
}

.bg-item-3 {
  background-color: #bd8920;
}

.color-item-3 {
  color: #bd8920;
}

.border-color-item-3 {
  border-top-color: #bd8920;
}

.solution-item-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 14px;
  background-color: #fff;
  z-index: 9999;
}
.solution-item-text h4 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}
.solution-item-text p {
  text-align: left;
  width: 100%;
  color: #616161;
}

.solution-description-item {
  margin-bottom: 40px;
}
.solution-description-item h2 {
  color: #0c2135;
}

@media screen and (max-width: 510px) {
  .solution {
    padding: 40px 20px;
  }
  .solution-content i {
    width: 80px !important;
    height: 80px !important;
    font-size: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .solution-content {
    flex-direction: column;
  }
  .assessoria-content {
    flex-direction: column-reverse;
  }
  .solution-card {
    margin: 0 auto;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0px 0px 0px;
  gap: 24px;
  color: #06121e;
  background-color: #fff;
  overflow: hidden;
}
.footer .copy {
  text-align: center;
  background-color: #edeaef;
  padding: 10px;
  color: #0c2135;
  margin-top: 80px;
}

.footer-content {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.footer-address .item {
  display: flex;
  align-items: flex-start;
}
.footer-address .item img {
  width: 75px;
  margin-right: 16px;
}

.footer-icons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-icons a {
  color: #0c2135;
}

.footer-logo img {
  width: 150px;
}

.languages-footer {
  margin-top: 10px;
  display: flex;
  gap: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .languages-footer {
    justify-content: center;
  }
}
@media screen and (max-width: 425px) {
  .copy {
    font-size: 14px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121e;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.bg-home {
  position: relative;
  padding: 20px 40px 40px 40px;
}

.bg-home::before {
  content: "";
  display: block;
}

.container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 8px;
}/*# sourceMappingURL=solutions.css.map */