/* INICIO DAS NORMALIZAÇÕES */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: #ffffff !important;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  color: #313131;
}

.overflow-hidden {
  overflow: hidden;
}

img {
  border-style: none;
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
  -webkit-appearance: button;
}

input {
  font-size: 1em;
}

textarea {
  overflow: auto;
  font-size: 1.1em;
}

[hidden] {
  display: none;
}

button,
textarea,
select,
input {
  outline: 0;
}

@media (min-width: 1399px) {
  .containerWidth {
    max-width: 1399px;
    padding: 0;
  }
}

.containerWidth {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* FIM DAS NORMALIZAÇÕES */

#header {
  position: relative;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
}

#header .content {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  left: 0;
  margin-top: 32px;
}

#header .content img {
  width: 200px;
}

#emphasis {
  background-image: url(../images/background-home.png);
  background-size: 100%;
}

#emphasis .content {
  display: flex;
  align-items: center;
  gap: 128px;
  justify-content: center;
  padding: 128px 0;
  padding-top: 182px;
}

#emphasis .content .text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  color: white;
}

#emphasis .content .text2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 20px;
}

#emphasis .content .text .title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 32px;
}

#emphasis .content .text .title span {
  color: white;
  text-transform: uppercase;
  font-size: 22px;
}

#emphasis .content .text .title strong {
  font-size: 56px;
  color: #ffffff;
  line-height: 1;
}

#emphasis .content .text2 .title2 {
  font-size: 40px;
  color: #ffffff;
  line-height: 1;
  
}

#emphasis .content .text2 p {
  font-size: 30px;
  font-weight: bold;
  color: #f0820d;
  line-height: 1;
}

#emphasis .content .text2 .title2 ul {
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  
}

#emphasis .content .text p {
  font-size: 26px;
  background: #0d08fa;
  padding: 8px 32px;
  border-radius: 12px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

#emphasis .content .text ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

#emphasis .content .text ul small {
  font-size: 24px;
}

#emphasis .content .text ul li {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fefe00;

}

#emphasis .content .text ul li i {}

#emphasis .content .form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 420px;
  width: 100%;
}

#emphasis .content .form strong {
  background: #fefe00;
  color: #0d08fa;
  padding: 12px 16px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  animation: pulse 1.5s infinite ease-in-out;
}

#emphasis .content .form strong i {}

#emphasis .content .form .formContent {
  padding: 28px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 0px 28px #000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

#emphasis .content .form .formContent .formInputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#emphasis .content .form .formContent .formInputs .inputField {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#emphasis .content .form .formContent .formInputs .inputField span {
  color: #0d08fa;
  font-weight: 600;
}

#emphasis .content .form .formContent .formInputs .inputField input {
  border: 1px solid #313131;
  border-radius: 8px;
  padding: 6px;
  font-family: "DM Sans", sans-serif;

}

#emphasis .content .form .formContent button {
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: green;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#emphasis .content .form .formContent button:hover {
  background: rgb(0, 110, 0);
  transition: all .2s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#solutions .content {
  display: flex;
  flex-direction: column;
  gap: 46px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 0;
}

#solutions .content .title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

#solutions .content .title strong {
  color: #0d08fa;
  font-size: 28px;
}

#solutions .content .title p {
  color: #313131;
}

#solutions .content .solutions {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 46px;
}

#solutions .content .solutions .solution {
  background: white;
  padding: 26px;
  box-shadow: 0px 6px 18px #00000012;
  border-radius: 12px;
}

#solutions .content .solutions .solution {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#solutions .content .solutions .solution i {
  color: #0d08fa;
  font-size: 36px;
}

#solutions .content .solutions .solution strong {
  color: #0d08fa;
}

#solutions .content .solutions .solution p {
  color: #313131;
  font-size: 14px;
}

#experience .content {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
  padding: 64px 0;
}

#experience .content .image img {
  width: 360px;
}

#experience .content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

#experience .content .text .title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#experience .content .text .title span {}

#experience .content .text .title strong {
  color: #0d08fa;
  font-size: 32px;
}

#experience .content .text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#experience .content .text ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

#experience .content .text ul li i {
  color: #0d08fa;
}

#experience .content .text a {
  background: #0d08fa;
  color: white;
  padding: 8px 32px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

#footer {
  background-color: #0d08fa;
  color: white;
}

#footer .content {
  padding: 32px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media(max-width: 992px) {
  #emphasis {
    background-size: unset;
  }

  #emphasis .content {
    flex-direction: column;
    gap: 64px;
  }

  #emphasis .content .text {
    text-align: center;
    align-items: center;
  }

  #emphasis .content .text .title strong {
    font-size: 40px;
  }

  #emphasis .content .text p {
    font-size: 20px;
  }

  #emphasis .content .text ul {
    text-align: left;
  }

  #emphasis .content .text ul small {
    font-size: 18px;
  }

  #emphasis .content .text ul li {
    font-size: 16px;
  }

  #experience .content .image img {
    width: 300px;
  }

  #solutions .content .solutions {
    grid-template-columns: repeat(1, 2fr);
  }

  #experience .content {
    flex-direction: column;
  }
}