/* Extra large devices (large laptops and desktops, 1920px and down) */
/* Extra large devices (large laptops and desktops, 1440px and down) */
/* Extra large devices (large laptops and desktops, 1200px and down) */
/* Large devices (laptops/desktops, 992px and down) */
/* Medium devices (landscape tablets, 768px and down) */
/* Small devices (portrait tablets and large phones, 600px and down) */
/* Extra small devices (phones, 360px and down) */
html {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #272727;
}

.bold {
  font-weight: 700;
}

.highlight {
  position: relative;
  font-weight: 600;
  color: #ffd900;
}

.highlight:before {
  content: "";
  z-index: -1;
  left: 0em;
  top: 0em;
  border-width: 2px;
  border-style: solid;
  border-color: #1e1e1e;
  position: absolute;
  border-right-color: transparent;
  width: 100%;
  height: 1.5em;
  transform: rotate(2deg);
  opacity: 1;
  border-radius: 0.25em;
}

.highlight:after {
  content: "";
  z-index: -1;
  left: 0em;
  top: 0em;
  border-width: 2px;
  border-style: solid;
  border-color: #1e1e1e;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  width: 100%;
  height: 1.5em;
  transform: rotate(-1deg);
  opacity: 1;
  border-radius: 0.25em;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.5;
}

.header {
  width: 100%;
  height: 100px;
  background-color: #fab800;
  display: flex;
  justify-content: center;
  align-content: center;
}
@media only screen and (max-width: 992px) {
  .header {
    justify-content: center;
    align-content: center;
  }
}

.logo {
  display: flex;
  width: 20vw;
  height: 100px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .logo {
    width: 75vw;
    height: auto;
  }
}
.logo img {
  width: 18vw;
  height: auto;
}

nav {
  width: 67vw;
  height: 100px;
}
@media only screen and (max-width: 992px) {
  nav {
    display: none;
  }
}

ul.menu {
  height: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

ul.menu li {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-left: 1px solid #ffec78;
  margin: 0;
}

ul.menu li:last-child {
  border-right: 1px solid #ffec78;
}

ul.menu li a {
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  color: #2d2e30;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

ul.menu li a:hover {
  background-color: #caa431;
  background-image: linear-gradient(#ffe773, #fab800);
}

.reserva {
  width: 13vw;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .reserva {
    display: none;
    width: 0;
    height: 0;
  }
}

.reserva a {
  width: 90%;
  height: 70%;
  display: block;
  border: 3px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
}

.reserva a:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.5s;
}

.topnav {
  display: none;
}
@media only screen and (max-width: 992px) {
  .topnav {
    display: block;
    background-color: #fab800;
    height: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .topnav a {
    float: left;
    display: block;
    color: #2d2e30;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid #ffec78;
    font-weight: 500;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
  }
}
@media only screen and (max-width: 992px) {
  .topnav a:first-child {
    border: none;
  }
}
@media only screen and (max-width: 992px) {
  .topnav a:hover {
    color: #ffffff;
  }
}

@media only screen and (max-width: 992px) {
  .topnav .icon {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .topnav a:not(:first-child) {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .topnav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    float: right;
    display: block;
    border: none;
  }
}

@media only screen and (max-width: 992px) {
  .topnav.responsive {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 992px) {
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media only screen and (max-width: 992px) {
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
}

.material-symbols-outlined {
  font-size: 48px !important;
}

.active {
  background-color: #5f4704;
  background-image: linear-gradient(#5f4704, #aa9426);
  color: #ffffff !important;
  pointer-events: none;
  cursor: unset;
}

.button--yellow {
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 20px 40px;
  border: 2px solid #fab800;
  color: #fab800;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}
.button--yellow:hover {
  background-color: #fab800;
  color: #2d2e30;
  transition: background-color 0.3s, color 0.3s;
}

.button--dark {
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 20px 40px;
  border: 2px solid #2d2e30;
  color: #2d2e30;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
  cursor: pointer;
}
.button--dark:hover {
  background-color: #fab800;
  color: #2d2e30;
  transition: background-color 0.3s, color 0.3s;
}

.form-palestras, .form-workshops, .form-innovation-lab, .form-contato, .form-reserva {
  width: 100%;
  height: auto;
  background-color: #171717;
  padding: 60px 0;
}
@media only screen and (max-width: 600px) {
  .form-palestras, .form-workshops, .form-innovation-lab, .form-contato, .form-reserva {
    padding: 40px 20px;
  }
}
.form-palestras__container, .form-workshops__container, .form-innovation-lab__container, .form-contato__container, .form-reserva__container {
  width: 100%;
  height: auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}
.form-palestras__form, .form-workshops__form, .form-innovation-lab__form, .form-contato__form, .form-reserva__form {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: 2rem;
  color: #8a8a8a;
  padding: 0;
}
.form-palestras__title, .form-workshops__title, .form-innovation-lab__title, .form-contato__title, .form-reserva__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #fab800;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  .form-palestras__title, .form-workshops__title, .form-innovation-lab__title, .form-contato__title, .form-reserva__title {
    font-size: 2rem;
    text-align: center;
  }
}
.form-palestras__text, .form-workshops__text, .form-innovation-lab__text, .form-contato__text, .form-reserva__text {
  color: #ffffff;
  margin: 30px auto;
  font-size: 1.5rem;
  text-align: center;
}
.form-palestras__fieldset, .form-workshops__fieldset, .form-innovation-lab__fieldset, .form-contato__fieldset, .form-reserva__fieldset {
  width: 100%;
  height: auto;
  padding: 40px;
  background-color: #242424;
  margin: 40px auto 0;
  border-radius: 4px;
}
@media only screen and (max-width: 600px) {
  .form-palestras__fieldset, .form-workshops__fieldset, .form-innovation-lab__fieldset, .form-contato__fieldset, .form-reserva__fieldset {
    padding: 40px 20px;
  }
}
.form-palestras__fieldset:first-child, .form-workshops__fieldset:first-child, .form-innovation-lab__fieldset:first-child, .form-contato__fieldset:first-child, .form-reserva__fieldset:first-child {
  margin-bottom: 60px;
}
.form-palestras__legend, .form-workshops__legend, .form-innovation-lab__legend, .form-contato__legend, .form-reserva__legend {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fab800;
  background-color: #242424;
  padding: 5px 20px;
  border-radius: 4px;
}
.form-palestras__ul, .form-workshops__ul, .form-innovation-lab__ul, .form-contato__ul, .form-reserva__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form-palestras__ul li, .form-workshops__ul li, .form-innovation-lab__ul li, .form-contato__ul li, .form-reserva__ul li {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-palestras__ul li label, .form-workshops__ul li label, .form-innovation-lab__ul li label, .form-contato__ul li label, .form-reserva__ul li label {
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0 5px 10px;
}
.form-palestras__ul li input, .form-palestras__ul li textarea, .form-workshops__ul li input, .form-workshops__ul li textarea, .form-innovation-lab__ul li input, .form-innovation-lab__ul li textarea, .form-contato__ul li input, .form-contato__ul li textarea, .form-reserva__ul li input, .form-reserva__ul li textarea {
  width: 100%;
  margin: 0 0 3px;
  padding: 5px 10px;
  text-align: left;
  color: #8d8d8d;
  background-color: #1f1f1f;
  border: 1px solid #303030;
  font-size: 1.5rem;
  font-weight: 300;
  border-radius: 4px;
}
.form-palestras__ul li input:focus, .form-palestras__ul li textarea:focus, .form-workshops__ul li input:focus, .form-workshops__ul li textarea:focus, .form-innovation-lab__ul li input:focus, .form-innovation-lab__ul li textarea:focus, .form-contato__ul li input:focus, .form-contato__ul li textarea:focus, .form-reserva__ul li input:focus, .form-reserva__ul li textarea:focus {
  outline-style: none;
  outline: none;
  box-shadow: none;
  border-color: #fab800;
}
.form-palestras__ul li input, .form-workshops__ul li input, .form-innovation-lab__ul li input, .form-contato__ul li input, .form-reserva__ul li input {
  height: 50px;
}
.form-palestras__ul li input::-moz-placeholder, .form-workshops__ul li input::-moz-placeholder, .form-innovation-lab__ul li input::-moz-placeholder, .form-contato__ul li input::-moz-placeholder, .form-reserva__ul li input::-moz-placeholder {
  color: #363636;
}
.form-palestras__ul li input::placeholder, .form-workshops__ul li input::placeholder, .form-innovation-lab__ul li input::placeholder, .form-contato__ul li input::placeholder, .form-reserva__ul li input::placeholder {
  color: #363636;
}
.form-palestras__ul li input[type=checkbox], .form-workshops__ul li input[type=checkbox], .form-innovation-lab__ul li input[type=checkbox], .form-contato__ul li input[type=checkbox], .form-reserva__ul li input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: -5px;
}
.form-palestras__ul li textarea, .form-workshops__ul li textarea, .form-innovation-lab__ul li textarea, .form-contato__ul li textarea, .form-reserva__ul li textarea {
  height: 160px;
}
.form-palestras__checkbox-area, .form-workshops__checkbox-area, .form-innovation-lab__checkbox-area, .form-contato__checkbox-area, .form-reserva__checkbox-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 0;
}
.form-palestras__checkbox-area:first-of-type, .form-workshops__checkbox-area:first-of-type, .form-innovation-lab__checkbox-area:first-of-type, .form-contato__checkbox-area:first-of-type, .form-reserva__checkbox-area:first-of-type {
  margin-top: 20px;
}
.form-palestras__button, .form-workshops__button, .form-innovation-lab__button, .form-contato__button, .form-reserva__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.form-palestras__button button, .form-workshops__button button, .form-innovation-lab__button button, .form-contato__button button, .form-reserva__button button {
  width: 100%;
  max-width: 400px;
  background-color: #e99605;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
}
.form-palestras__button button:hover, .form-workshops__button button:hover, .form-innovation-lab__button button:hover, .form-contato__button button:hover, .form-reserva__button button:hover {
  background-color: #ffffff;
  color: #e99605;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.error-message {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
  color: #dd193e;
  font-weight: lighter;
  margin-top: 5px;
  margin-left: 10px;
}

.sucesso {
  width: 100%;
  height: auto;
}
.sucesso__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 60px 0;
}
.sucesso__container p {
  font-size: 1.5rem;
  margin-top: 40px;
}
.sucesso__container p.sucesso__message {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2d2e30;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #2d2e30;
  padding: 20px 40px;
}
.sucesso__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  text-decoration: none;
  color: #2d2e30;
  background-color: #fab800;
  padding: 20px 40px;
  font-size: 1.25rem;
  font-weight: 500;
}
.sucesso__button:hover {
  background-color: #2d2e30;
  color: #fab800;
  transition: all 0.3s ease;
}

.container {
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../images/hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  header {
    height: auto;
  }
}

.logo {
  width: 25%;
  height: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .logo {
    flex: 1;
  }
}
.logo img {
  height: 80px;
  width: auto;
}
@media only screen and (max-width: 1200px) {
  .logo img {
    height: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .logo img {
    height: 40px;
  }
}

nav {
  width: 75%;
  height: 120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 999;
}
nav ul {
  list-style: none;
  display: flex;
}
@media only screen and (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
}
nav ul.ativo {
  display: flex;
}
nav ul li {
  margin: 0 20px 0 20px;
}
@media only screen and (max-width: 768px) {
  nav ul li {
    border-bottom: 1px solid #7e7e7e;
    padding: 15px 0;
    background-color: #272727;
  }
}
nav ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  nav ul li:last-child {
    margin-right: 8px;
  }
}
nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
  padding-bottom: 10px;
  border-bottom: 4px solid transparent;
}
@media only screen and (max-width: 1200px) {
  nav ul li a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  nav ul li a {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 768px) {
  nav ul li a {
    color: #c2c2c2;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 40px;
  }
}
nav ul li a:hover {
  color: #d0ff00;
  border-bottom: 4px solid #d0ff00;
}
@media only screen and (max-width: 768px) {
  nav ul li a:hover {
    color: #c2c2c2;
    border: none;
  }
}
@media only screen and (max-width: 1200px) {
  nav ul li {
    margin: 0 15px 0 15px;
  }
}
@media only screen and (max-width: 992px) {
  nav ul li {
    margin: 0 8px 0 8px;
  }
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }
}

.frase-principal {
  width: 100%;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1200px) {
  .frase-principal {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .frase-principal {
    padding-bottom: 40px;
  }
}

.frase, .frase--mobile, .frase--small {
  width: 100%;
  height: auto;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 5rem;
  text-align: center;
  text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1920px) {
  .frase, .frase--mobile, .frase--small {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1440px) {
  .frase, .frase--mobile, .frase--small {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .frase, .frase--mobile, .frase--small {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .frase, .frase--mobile, .frase--small {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .frase, .frase--mobile, .frase--small {
    display: none;
  }
}

.frase--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .frase--mobile {
    display: block;
    font-size: 2.8rem;
  }
  .frase--mobile p {
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  .frase--mobile {
    display: none;
  }
}

.frase--small {
  display: none;
}
@media only screen and (max-width: 600px) {
  .frase--small {
    display: block;
    font-size: 2.5rem;
  }
  .frase--small p {
    margin: 0;
  }
}

.secundaria, .secundaria--mobile, .secundaria--small {
  font-size: 3rem;
  font-weight: 300;
  margin-top: 20px;
}
@media only screen and (max-width: 1920px) {
  .secundaria, .secundaria--mobile, .secundaria--small {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1440px) {
  .secundaria, .secundaria--mobile, .secundaria--small {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  .secundaria, .secundaria--mobile, .secundaria--small {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .secundaria, .secundaria--mobile, .secundaria--small {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .secundaria, .secundaria--mobile, .secundaria--small {
    display: none;
  }
}

.secundaria--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .secundaria--mobile {
    display: block;
  }
  .secundaria--mobile p {
    margin: 0;
    text-align: center;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .secundaria--mobile {
    display: none;
  }
}

.secundaria--small {
  display: none;
}
@media only screen and (max-width: 600px) {
  .secundaria--small {
    display: block;
  }
  .secundaria--small p {
    margin: 0;
    text-align: center;
    font-size: 2rem;
  }
}

.voce {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}
@media only screen and (max-width: 1200px) {
  .voce {
    padding-top: 60px;
  }
}
.voce__linha-1 {
  width: 100%;
  height: auto;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: #7e7e7e;
}
@media only screen and (max-width: 1200px) {
  .voce__linha-1 {
    font-size: 1.5rem;
  }
}
.voce__linha-2 {
  width: 100%;
  height: auto;
  white-space: nowrap;
  font-size: 15rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #161616;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .voce__linha-2 {
    font-size: 10rem;
  }
}
@media only screen and (max-width: 1200px) {
  .voce__linha-2 {
    font-size: 7rem;
  }
}

.role {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  padding: 40px 10% 100px 10%;
}
@media only screen and (max-width: 1440px) {
  .role {
    grid-gap: 30px;
    padding: 40px 5%;
  }
}
@media only screen and (max-width: 992px) {
  .role {
    grid-gap: 15px;
    padding: 40px 3%;
  }
}
@media only screen and (max-width: 768px) {
  .role {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 40px 8%;
  }
}
.role__item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #7e7e7e;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
  padding: 40px 20px;
}
.role__item-title {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
.role__item-chart {
  width: 80%;
  height: auto;
  margin-top: 20px;
}
.role__item-chart img {
  width: 100%;
  height: auto;
}
.role__item-statistic {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}

.analise {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  padding: 0 10%;
}
@media only screen and (max-width: 1200px) {
  .analise {
    padding: 0 6%;
  }
}
.analise__title {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
.analise__text {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: 300;
  color: #ffffff;
  text-align: justify;
}
@media only screen and (max-width: 1200px) {
  .analise__text {
    font-size: 1.15rem;
  }
}

.potencial {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  background-color: #e2e2e2;
  color: #161616;
}
@media only screen and (max-width: 1920px) {
  .potencial {
    padding: 60px 5%;
  }
}
@media only screen and (max-width: 992px) {
  .potencial {
    padding: 60px 2.5%;
  }
}
.potencial__title {
  width: 100%;
  height: auto;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
.potencial__subtitle {
  width: 100%;
  height: auto;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin-top: 40px;
  color: #ff5400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .potencial__subtitle {
    font-size: 3rem;
  }
}
.potencial__text {
  width: 75%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin: 40px auto 0 auto;
}
@media only screen and (max-width: 1200px) {
  .potencial__text {
    width: 90%;
  }
}
.potencial__solucoes {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 1200px) {
  .potencial__solucoes {
    grid-gap: 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .potencial__solucoes {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .potencial__solucoes {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .potencial__solucoes {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-gap: 40px;
  }
}
.potencial__solucoes-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #7e7e7e;
  background: #272727;
  padding: 60px 20px 40px 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 992px) {
  .potencial__solucoes-item {
    padding: 20px;
  }
}
.potencial__solucoes-item-image {
  width: 100%;
  height: auto;
}
.potencial__solucoes-item-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #e9ae0a;
}
.potencial__solucoes-item-title {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
}
@media only screen and (max-width: 1920px) {
  .potencial__solucoes-item-title {
    font-size: 1.1rem;
  }
}
.potencial__solucoes-item-text {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 20px;
}

.unicos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 60px 0;
  background-color: #272727;
  color: #ffffff;
}
.unicos__title {
  width: 100%;
  height: auto;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
}
.unicos__subtitle {
  width: 100%;
  height: auto;
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin-top: 40px;
  color: #e9ae0a;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .unicos__subtitle {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .unicos__subtitle {
    font-size: 2.5rem;
  }
}
.unicos__text {
  width: 75%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin: 40px auto 0 auto;
}
@media only screen and (max-width: 992px) {
  .unicos__text {
    width: 90%;
  }
}

.case {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 60px 0;
  background-color: #e9ae0a;
  color: #272727;
}
.case__logo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case__logo img {
  width: 25%;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .case__logo img {
    width: 50%;
  }
}
.case__container {
  width: 75%;
  height: auto;
  margin: 40px auto 0 auto;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 1200px) {
  .case__container {
    width: 90%;
  }
}
.case__container p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
}
.case__container .highlight {
  font-weight: 700;
  background-color: #ffffff;
  color: #272727;
  padding: 5px 10px;
}
.case__box {
  font-size: 2.5rem;
  font-weight: 800;
  padding: 20px;
  margin: 60px auto;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  .case__box {
    font-size: 1.75rem;
  }
}
.case__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 20px 0;
  width: 100%;
}
.case__item {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px;
  margin: 10px;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .case__item {
    margin: 0;
    padding: 10px 0;
  }
}
.case__letter {
  font-size: 2.5rem;
  background-color: #272727;
  padding: 10px 25px;
  margin-right: 3px;
  color: #e9ae0a;
}
@media only screen and (max-width: 992px) {
  .case__letter {
    font-size: 2rem;
    padding: 10px 20px;
  }
}
.case__image-text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.case__image {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case__image img {
  width: 100%;
  height: auto;
}
.case__text-block {
  width: 60%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 20px;
}

.framework {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10% 40px 10%;
  background: rgb(71, 71, 71);
  background: radial-gradient(circle at 70% 40%, rgb(71, 71, 71) 0%, rgb(39, 39, 39) 100%);
  color: #ffffff;
}
@media only screen and (max-width: 1440px) {
  .framework {
    padding: 40px 5%;
  }
}
@media only screen and (max-width: 992px) {
  .framework {
    flex-direction: column;
  }
}
.framework__left {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .framework__left {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.framework__title {
  width: 100%;
  height: auto;
  font-size: 2rem;
  font-weight: 300;
}
.framework__title--destaque {
  font-weight: 800;
  text-transform: uppercase;
  color: #e9ae0a;
  font-size: 6rem;
}
@media only screen and (max-width: 1440px) {
  .framework__title--destaque {
    font-size: 4rem;
    line-height: 1;
    margin-top: 30px;
  }
}
.framework__subtitle {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  margin-top: 40px;
}
.framework__right {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .framework__right {
    width: 100%;
  }
}
.framework__framework {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.framework__framework img {
  width: auto;
  height: 720px;
}
@media only screen and (max-width: 1440px) {
  .framework__framework img {
    height: 600px;
  }
}
@media only screen and (max-width: 1200px) {
  .framework__framework img {
    height: 500px;
  }
}
@media only screen and (max-width: 600px) {
  .framework__framework img {
    height: 360px;
  }
}

.solucoes {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  background-color: #e2e2e2;
  color: #161616;
}
@media only screen and (max-width: 1440px) {
  .solucoes {
    padding: 60px 5%;
  }
}
.solucoes__title {
  width: 100%;
  height: auto;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.solucoes__subtitle {
  width: 100%;
  height: auto;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  margin-top: 40px;
}
.solucoes__tripe {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media only screen and (max-width: 1200px) {
  .solucoes__tripe {
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .solucoes__tripe {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
.solucoes__tripe-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #7e7e7e;
  background: #272727;
  padding: 40px 20px 40px 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.solucoes__tripe-item-title {
  width: 100%;
  height: auto;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 3px solid #ffffff;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1440px) {
  .solucoes__tripe-item-title {
    font-size: 1.5rem;
  }
}
.solucoes__tripe-item-text {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: 300;
  padding-top: 20px;
  border-top: 3px solid #ffffff;
}
.solucoes__text {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 40px auto 0 auto;
}

.curiosidade {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background-color: #e9ae0a;
  color: #272727;
}
.curiosidade__frase {
  width: 100%;
  height: auto;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.curiosidade__autor {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  margin-top: 40px;
}

.produtos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  background-image: url("../images/bg-produtos.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
@media only screen and (max-width: 1920px) {
  .produtos {
    padding: 60px 2%;
  }
}
.produtos__title {
  width: 100%;
  height: auto;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #e9ae0a;
}
.produtos__subtitle {
  width: 100%;
  height: auto;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  margin-top: 40px;
}
.produtos__grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 1920px) {
  .produtos__grid {
    grid-gap: 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .produtos__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .produtos__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .produtos__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(9, 1fr);
    grid-gap: 40px;
  }
}
.produtos__grid-item {
  width: 100%;
  height: auto;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(30, 31, 36, 0.75);
  padding: 40px;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .produtos__grid-item {
    min-height: 300px;
    padding: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .produtos__grid-item {
    min-height: 360px;
  }
}
@media only screen and (max-width: 768px) {
  .produtos__grid-item {
    min-height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .produtos__grid-item {
    min-height: 320px;
  }
}
.produtos__grid-item-title {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.produtos__grid-item-mais {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  bottom: 40px;
}
.produtos__grid-item-mais a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.7s;
  line-height: 50px;
  padding: 2px 20px;
  border: 1px solid #e9ae0a;
}
.produtos__grid-item-mais a:hover {
  color: #e9ae0a;
  border-color: #ffffff;
}

.contato {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background-color: #ffffff;
  color: #272727;
}
@media only screen and (max-width: 1920px) {
  .contato {
    padding: 60px 5%;
  }
}
.contato__title {
  width: 100%;
  height: auto;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #e9ae0a;
}
.contato__subtitle {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
.contato__form {
  width: 800px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  .contato__form {
    width: 100%;
  }
}
.contato__form-group {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding: 0 10px;
  font-size: 1.25rem;
  font-weight: 300;
}
.contato__form-group label {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 1rem;
  padding-left: 20px;
}
.contato__form-group input {
  width: 100%;
  height: 50px;
  font-family: "Raleway", sans-serif;
  padding: 0 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #7e7e7e;
  border: none;
  border-bottom: 2px solid #7e7e7e;
}
.contato__form-group textarea {
  width: 100%;
  height: 120px;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #7e7e7e;
  border: 1px solid #7e7e7e;
}
.contato__form-group input:focus, .contato__form-group textarea:focus, .contato__form-group select:focus {
  outline: none;
}
.contato__form-group button {
  width: 300px;
  height: 60px;
  background-color: #e9ae0a;
  color: #272727;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contato__form-group button:hover {
  background-color: #272727;
  color: #e9ae0a;
}
.contato__erro {
  width: 100%;
  height: 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #ff0000;
  padding-left: 20px;
}

.whatsapp {
  width: 100%;
  height: auto;
  padding: 0 0 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.whatsapp a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp a img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .whatsapp a img {
    width: 80%;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10% 60px 10%;
  background: rgb(71, 71, 71);
  background: radial-gradient(circle at 70% 40%, rgb(233, 174, 10) 0%, rgb(248, 219, 139) 100%);
  color: #272727;
}
@media only screen and (max-width: 1440px) {
  .footer {
    padding: 60px 5%;
  }
}
.footer__header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #272727;
  padding-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .footer__header {
    flex-direction: column;
  }
}
.footer__logo {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer__logo img {
  width: auto;
  height: 60px;
}
@media only screen and (max-width: 600px) {
  .footer__logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.footer__redes {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .footer__redes {
    width: 100%;
    justify-content: center;
  }
}
.footer__redes a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  transition: color 0.3s;
  margin: 0 20px;
}
.footer__redes a:hover {
  color: #e9ae0a;
}
.footer__redes a img {
  width: 30px;
  height: auto;
}
.footer__nav {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 30px 0;
}
@media only screen and (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer__nav ul li {
  margin: 0 20px 0 20px;
}
@media only screen and (max-width: 1200px) {
  .footer__nav ul li {
    margin: 0 10px 0 10px;
  }
}
@media only screen and (max-width: 992px) {
  .footer__nav ul li {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__nav ul li {
    text-align: center;
    margin: 10px 0 10px 0;
    padding: 0;
  }
}
.footer__nav ul li:last-child {
  margin-right: 0;
}
.footer__nav ul li a {
  text-decoration: none;
  color: #272727;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: all 0.5s;
  padding-bottom: 10px;
  border-bottom: 4px solid transparent;
}
@media only screen and (max-width: 1200px) {
  .footer__nav ul li a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .footer__nav ul li a {
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: 1.5rem;
    font-weight: 600;
    padding-left: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
  }
}
.footer__nav ul li a:hover {
  color: #ffffff;
  border-bottom: 4px solid #ffffff;
}
@media only screen and (max-width: 768px) {
  .footer__nav ul li a:hover {
    color: #272727;
    border: none;
  }
}
.footer__copyright, .footer__copyright--mobile {
  width: 100%;
  height: auto;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #ffffff;
}
@media only screen and (max-width: 600px) {
  .footer__copyright, .footer__copyright--mobile {
    display: none;
  }
}
.footer__copyright--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .footer__copyright--mobile {
    display: block;
  }
}

.header--2nd-level {
  position: fixed;
  width: 100%;
  height: 80px;
  background-color: #272727;
  z-index: 9999;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.logo--2nd-level img {
  width: auto;
  height: 50px;
}

.nav--2nd-level a {
  font-size: 1rem;
  font-weight: 500;
}

.sobre {
  position: relative;
}
.sobre .scroll {
  width: 75px;
  height: auto;
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.sobre .scroll img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .sobre .scroll {
    display: none;
  }
}
.sobre__modulo {
  width: 100vw;
  height: 100vh;
  background-color: #272727;
  background-size: cover;
  background-position: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    background-image: url(../../images/bg-black-noise-vertical.jpg);
    text-align: center;
  }
  .sobre__modulo img {
    width: 100%;
    height: auto;
  }
}
.sobre__modulo--intro {
  width: 100%;
  height: 58.82vw;
  margin-top: 80px;
  background-color: #ff5c39;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #272727;
  font-size: 2rem;
  font-weight: 500;
  background-image: url(../../images/bg-black-noise-about.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--intro {
    background-image: url(../../images/bg-black-noise-about-mobile.jpg);
    height: 200vw;
  }
}
.sobre__modulo--proposito {
  background-image: url(../../images/bg-black-noise-proposito.jpg);
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--proposito {
    display: none;
  }
}
.sobre__modulo--missao {
  background-image: url(../../images/bg-black-noise-missao.jpg);
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--missao {
    display: none;
  }
}
.sobre__modulo--visao {
  background-image: url(../../images/bg-black-noise-visao.jpg);
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--visao {
    display: none;
  }
}
.sobre__modulo--valores {
  background-image: url(../../images/bg-black-noise-valores.jpg);
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--valores {
    display: none;
  }
}
.sobre__modulo--proposta-de-valor {
  background-image: url(../../images/bg-black-noise-proposta-de-valor.jpg);
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--proposta-de-valor {
    display: none;
  }
}
.sobre__modulo--proposito--mobile, .sobre__modulo--missao--mobile, .sobre__modulo--visao--mobile, .sobre__modulo--valores--mobile, .sobre__modulo--proposta-de-valor--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo--proposito--mobile, .sobre__modulo--missao--mobile, .sobre__modulo--visao--mobile, .sobre__modulo--valores--mobile, .sobre__modulo--proposta-de-valor--mobile {
    display: flex;
  }
}
.sobre__modulo-left, .sobre__modulo-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-left, .sobre__modulo-right {
    width: 100%;
    height: 50%;
    text-align: center;
    justify-content: flex-start;
    padding-top: 40px;
  }
}
.sobre__modulo-left-text, .sobre__modulo-right-text {
  width: 50%;
  height: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-left-text, .sobre__modulo-right-text {
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-right {
    justify-content: flex-end;
    padding-bottom: 60px;
  }
}
.sobre__modulo-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ff5c39;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-title {
    margin-bottom: 20px;
    font-size: 3rem;
    text-transform: uppercase;
  }
}
.sobre__modulo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-text {
    font-size: 1.25rem;
    line-height: 1.25;
    border: 1px solid #ffffff;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 20px;
  }
}
.sobre__modulo-statement {
  width: 100%;
  height: auto;
  font-size: 1.4rem;
  padding: 0 10% 0 30%;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .sobre__modulo-statement {
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.sobre__modulo-statement ul {
  list-style: none;
  padding: 0;
}
.sobre__modulo-statement ul li {
  margin-bottom: 10px;
}
.sobre__modulo-statement ul li.li--text {
  font-size: 1rem;
  font-weight: 400;
}
.sobre__highlight {
  color: #e9ae0a;
  font-weight: 500;
}

.servicos__capa {
  width: 100%;
  height: 40vw;
  background-image: url(../../images/capa-portfolio.jpg);
  background-size: cover;
  position: relative;
}
.servicos__titulo {
  width: 45vw;
  height: 20vw;
  position: absolute;
  bottom: 0;
  left: 20vw;
  background: #e9ae0a;
  background: linear-gradient(90deg, rgba(167, 110, 0, 0.75) 0%, rgba(233, 174, 10, 0.75) 100%);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 800;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  margin-bottom: -50px;
  color: #272727;
}
@media only screen and (max-width: 768px) {
  .servicos__titulo {
    width: 90%;
    height: 100px;
    font-size: 2rem;
    justify-content: center;
    left: 5%;
    padding: 20px;
  }
}
.servicos__atuacao {
  padding: 150px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
}
.servicos__atuacao p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .servicos__atuacao {
    font-size: 2rem;
    padding: 100px 20px 50px;
  }
  .servicos__atuacao p:first-child {
    margin-bottom: 40px;
  }
}
.servicos__areas {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: #e9ae0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #272727;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .servicos__areas {
    padding: 60px 20px;
  }
}
.servicos__areas-titulo {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .servicos__areas-titulo {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
  }
}
.servicos__areas-lista {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 10% 0 10%;
}
@media only screen and (max-width: 768px) {
  .servicos__areas-lista {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
}
.servicos__areas-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-right: 40px;
}
.servicos__areas-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .servicos__areas-item {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .servicos__areas-item:last-child {
    margin-bottom: 0;
  }
}
.servicos__areas-item-logo {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .servicos__areas-item-logo {
    width: 60%;
  }
}
.servicos__areas-item-logo img {
  width: 100%;
  height: auto;
}
.servicos__areas-item-titulo {
  width: 100%;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.servicos__areas-item-titulo--experience {
  border-bottom: 3px solid #ff5c39;
}
.servicos__areas-item-titulo--consulting {
  border-bottom: 3px solid #0e82cf;
}
.servicos__areas-item-titulo--tech {
  border-bottom: 3px solid #555555;
}
.servicos__areas-item-descricao {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
}

.area {
  width: 100%;
  height: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .area {
    height: auto;
    flex-direction: column;
  }
}
.area--consulting {
  background-color: #222222;
}
.area__imagem {
  width: 40%;
  height: 100%;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .area__imagem {
    width: 100%;
    height: 100vw;
    padding: 0;
  }
}
.area__imagem-fundo {
  width: 100%;
  height: 100%;
  background-image: url(../../images/bg-experience.jpg);
  background-size: cover;
  background-position: center;
}
.area__imagem-fundo--consulting {
  background-image: url(../../images/bg-consulting.jpg);
}
@media only screen and (max-width: 768px) {
  .area__imagem-fundo--consulting {
    height: 100vw;
    order: 1;
  }
}
.area__imagem-fundo--interactive {
  background-image: url(../../images/bg-interactive.jpg);
}
@media only screen and (max-width: 768px) {
  .area__imagem-fundo--interactive {
    height: 100vw;
  }
}
.area__conteudo {
  width: 60%;
  height: 100%;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .area__conteudo {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }
}
.area__conteudo--consulting {
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .area__conteudo--consulting {
    align-items: center;
    order: 2;
  }
}
.area__line {
  width: 100%;
  height: 1px;
  background-color: #444444;
  margin: 20px 0;
}
.area__logo {
  width: 8vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .area__logo {
    width: 40vw;
    text-align: center;
    margin: 0 auto;
  }
}
.area__logo img {
  width: 100%;
  height: auto;
}
.area__titulo {
  width: 100%;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: left;
  margin-top: 20px;
  color: #ff5c39;
}
@media only screen and (max-width: 768px) {
  .area__titulo {
    text-align: center;
  }
}
.area__titulo--consulting {
  color: #0e82cf;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .area__titulo--consulting {
    text-align: center;
  }
}
.area__titulo--tech {
  color: #8f8f8f;
}
.area__descricao {
  font-size: 1.25rem;
}
.area__descricao--consulting {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .area__descricao--consulting {
    text-align: center;
  }
}
.area__descricao ul {
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .area__descricao ul {
    text-align: left;
  }
}
.area__descricao li {
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .area__descricao li {
    margin: 10px 0;
  }
}
.area__descricao li a {
  color: #e9ae0a;
  text-decoration: none;
}
.area__descricao li a:hover {
  color: #ff5c39;
}

.alternating-text {
  display: inline-block;
  width: 100%;
  height: 70px;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  color: #e9ae0a;
  line-height: 1;
}
.alternating-text span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: slide-up 3s infinite;
  opacity: 0;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  95% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.portfolio {
  position: relative;
}

.conteudo {
  width: 100%;
  height: auto;
  background-color: #272727;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 140px 100px 60px 400px;
}
@media only screen and (max-width: 768px) {
  .conteudo {
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
  }
}
.conteudo a {
  color: #e9ae0a;
  text-decoration: none;
  font-weight: 500;
}
.conteudo a:hover {
  text-decoration: underline;
}
.conteudo ul li {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.conteudo--expertise {
  padding: 0;
}
.conteudo__area {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.conteudo__area--yellow {
  background-color: #e9ae0a;
}
.conteudo__titulo h1 {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #e9ae0a;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.conteudo__descricao {
  width: 100%;
  color: #ffffff;
  text-align: left;
  margin-bottom: 40px;
}
.conteudo__descricao p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .conteudo__descricao p {
    text-align: center;
  }
}
.conteudo__subtitulo h2 {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff5c39;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.conteudo__subtitulo--consulting h2 {
  color: #0e82cf;
}
.conteudo__subtitulo--interactive h2 {
  color: #979797;
}
.conteudo__subtitulo--expertise h2 {
  color: #e9ae0a;
}
.conteudo__tipos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin: 40px auto 60px auto;
}
@media only screen and (max-width: 768px) {
  .conteudo__tipos {
    grid-template-columns: 1fr;
  }
}
.conteudo__tipo {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  color: #272727;
  font-size: 1.25rem;
}
.conteudo__tipo-titulo {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #e9ae0a;
  color: #272727;
  line-height: 1;
  padding: 20px 0;
  margin: 0;
  text-align: center;
}
.conteudo__tipo-descricao {
  width: 100%;
  padding: 40px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .conteudo__tipo-descricao {
    padding: 20px;
  }
}
.conteudo__tipo ul {
  margin: 0;
}
.conteudo__section {
  padding: 60px 100px;
}
@media only screen and (max-width: 768px) {
  .conteudo__section {
    padding: 40px 20px;
  }
}
.conteudo__section--yellow {
  width: 100%;
  height: auto;
  background-color: #e9ae0a;
  color: #272727;
  margin: 0;
}
.conteudo__section--yellow h2 {
  color: #272727;
}
.conteudo__section--lighter {
  background-color: #303030;
  color: #ffffff;
}
.conteudo__section--lighter h2 {
  color: #e9ae0a;
}
.conteudo__temas ul.boxes {
  list-style: none;
  margin: 60px 0;
}
@media only screen and (max-width: 768px) {
  .conteudo__temas ul.boxes {
    margin: 40px 0;
    padding: 0;
    text-align: left;
  }
}
.conteudo__temas ul.boxes li {
  width: 100%;
  height: auto;
  padding: 20px 40px;
  border: 2px solid #e9ae0a;
  border-left: 20px solid #e9ae0a;
  margin-bottom: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .conteudo__temas ul.boxes li {
    padding: 20px;
    text-align: left;
  }
}
.conteudo__temas ul.boxes ul {
  list-style: circle;
}
@media only screen and (max-width: 768px) {
  .conteudo__temas ul.boxes ul {
    text-align: left;
  }
}
.conteudo__temas ul.boxes ul li {
  font-weight: 600;
  border: none;
  padding: 0;
  font-weight: 400;
  margin-bottom: 10px;
}
.conteudo__personalizacao, .conteudo__texto {
  margin: 40px 0;
}
.conteudo__personalizacao p, .conteudo__texto p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 20px;
}
.conteudo__personalizacao p:last-child, .conteudo__texto p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .conteudo__personalizacao ul, .conteudo__texto ul {
    text-align: left;
    margin: 0;
    padding: 0 20px;
  }
}
.conteudo__texto--expertise {
  margin-bottom: 0;
}

ul.boxes {
  list-style: none;
  margin-top: 40px;
}
ul.boxes li p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}
ul.boxes li p.bold {
  font-weight: 700;
  margin-bottom: 20px;
}

.line {
  width: 100%;
  height: 1px;
  margin: 40px 0;
}
.line--orange {
  background-color: #ff5c39;
}
.line--yellow {
  background-color: #e9ae0a;
}
.line--blue {
  background-color: #0e82cf;
}
.line--gray {
  background-color: #979797;
}

span.montserrat {
  font-family: "Montserrat Alternates", sans-serif;
  color: #ff5c39;
  font-weight: 600;
}
span.montserrat--consulting {
  color: #0e82cf;
}
span.montserrat--interactive {
  color: #979797;
}

.submenu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .submenu {
    display: none;
  }
}
.submenu__link {
  text-decoration: none;
}
.submenu__item {
  background-color: #e9ae0a;
  color: #272727;
  width: 100px;
  height: 50px;
  border-radius: 0 7px 7px 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease;
  padding-right: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.8);
}
.submenu__item:hover {
  width: 320px;
}
.submenu__item--active {
  width: 320px;
  background-color: #ffffff;
  color: #272727;
}
.submenu__item span {
  transition: transform 0.3s ease;
  font-size: 1.5rem !important;
}
.submenu__item:hover span {
  transform: translateX(0px);
}
.submenu__item::before {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  font-size: 1.2rem;
  color: #272727;
  font-weight: 700;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-20px);
}
.submenu__item:hover::before, .submenu__item.submenu__item--active::before {
  opacity: 1;
  transform: translateX(0);
}

.submenu--mobile {
  display: none;
  flex-direction: column;
  z-index: 9999;
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .submenu--mobile {
    display: flex;
    justify-content: center;
  }
}
.submenu--mobile__link {
  text-decoration: none;
}
.submenu--mobile__item {
  background-color: #e9ae0a;
  color: #272727;
  width: 90%;
  height: 50px;
  border-radius: 7px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 768px) {
  .submenu--mobile__item {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 10px auto;
  }
}
.submenu--mobile__item--active {
  background-color: #ffffff;
  color: #272727;
}
.submenu--mobile__item span {
  font-size: 2rem !important;
  margin-right: 10px;
}

.expertise__capa {
  width: 100%;
  height: 40vw;
  background-image: url(../../images/capa-expertise.jpg);
  position: relative;
  background-size: cover;
}
.expertise__titulo {
  width: 45vw;
  height: 20vw;
  position: absolute;
  bottom: 0;
  left: 20vw;
  background: #e9ae0a;
  background: linear-gradient(90deg, rgba(167, 110, 0, 0.75) 0%, rgba(233, 174, 10, 0.75) 100%);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 800;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  margin-bottom: -50px;
  color: #272727;
}
@media only screen and (max-width: 768px) {
  .expertise__titulo {
    width: 90%;
    height: 100px;
    font-size: 2rem;
    justify-content: center;
    left: 5%;
    padding: 20px;
  }
}
.expertise__atuacao {
  padding: 150px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
}
.expertise__atuacao p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .expertise__atuacao {
    padding: 100px 20px 50px;
    text-align: center;
  }
}

.conversar__capa {
  width: 100%;
  height: 40vw;
  background-image: url(../../images/capa-contato.jpg);
  position: relative;
  background-size: cover;
}
.conversar__titulo {
  width: 45vw;
  height: 20vw;
  position: absolute;
  bottom: 0;
  left: 20vw;
  background: #e9ae0a;
  background: linear-gradient(90deg, rgba(167, 110, 0, 0.75) 0%, rgba(233, 174, 10, 0.75) 100%);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 800;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  margin-bottom: -50px;
  color: #272727;
}
@media only screen and (max-width: 768px) {
  .conversar__titulo {
    width: 90%;
    height: 100px;
    font-size: 1.5rem;
    justify-content: center;
    left: 5%;
    padding: 20px;
  }
}
.conversar__atuacao {
  padding: 150px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
}
.conversar__atuacao p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .conversar__atuacao {
    padding: 100px 20px 50px;
    text-align: center;
    font-size: 2rem;
  }
}

.erro-404 {
  width: 100%;
  height: 100vh;
  display: flex;
}

.info-404 {
  width: 100%;
  height: auto;
  display: flex;
}

.erro-404-left {
  width: 35%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.erro-404-left img {
  width: 300px;
  height: 500px;
}

.erro-404-right {
  width: 65%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.erro-404-right h1 {
  font-family: "Bebas Neue", sans-serif;
  color: #5E240C;
  font-size: 25rem;
}

.erro-404-right p {
  color: #fab800;
  font-size: 2rem;
  font-weight: 500;
}

.erro-404-right a {
  display: block;
  width: 400px;
  height: 50px;
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 50px;
  color: #2d2e30;
  text-align: center;
  background: #fab800;
  text-decoration: none;
  border-radius: 5px;
}

.erro-404-right a:hover {
  background-color: #715722;
  color: #D7B87A;
}

@media only screen and (max-width: 992px) {
  .erro-404-left img {
    width: 240px;
    height: 400px;
  }
  .erro-404-right h1 {
    font-size: 24rem;
  }
  .erro-404-right p {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .erro-404 {
    height: auto;
  }
  .info-404 {
    height: auto;
    flex-direction: column;
  }
  .erro-404-left {
    width: 100vw;
    height: auto;
    justify-content: center;
  }
  .erro-404-left img {
    width: 180px;
    height: 300px;
    margin: 2rem auto;
  }
  .erro-404-right {
    width: 100vw;
    height: auto;
    margin-bottom: 2rem;
  }
  .erro-404-right h1 {
    font-size: 16rem;
  }
  .erro-404-right p {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=estilo.css.map */