@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::after, *::before {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-weight: 400;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@font-face {
  font-family: Inter-Black;
  src: url("../fonts/Inter-Black.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-Bold;
  src: url("../fonts/Inter-Bold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-ExtraBold;
  src: url("../fonts/Inter-ExtraBold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-Light;
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Inter-LightItalic;
  src: url("../fonts/Inter-LightItalic.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-Medium;
  src: url("../fonts/Inter-Medium.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-Regular;
  src: url("../fonts/Inter-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-SemiBold;
  src: url("../fonts/Inter-SemiBold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Inter-Thin;
  src: url("../fonts/Inter-Thin.otf") format("opentype");
  font-display: swap;
}
/* Nav Bar
  --------------------------------------------- */
.navbar {
  background-color: #FFFFFF;
  padding: 1rem 0;
  border: none;
  position: fixed;
  margin: 0 auto;
  z-index: 4;
  width: 100%;
}
.navbar .navbar-toggler {
  border: 0;
  padding: 2px 6px;
  background-color: #FFFFFF;
}
.navbar .navbar-toggler-icon {
  border: 0;
}

.navbar-nav {
  gap: 1rem;
}
.navbar-nav .nav-link {
  font-size: 1rem;
  color: #000000;
  font-family: "Inter-Regular", sans-serif;
  text-transform: uppercase;
}
.navbar-nav .nav-link:hover {
  color: #0064BF;
}

.navbar-brand img {
  height: 37px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .navbar-nav {
    margin: 0 1.5rem 0 0rem;
    display: flex;
    align-items: flex-start;
  }
  .navbar-nav .nav-item {
    margin: 0 0.2rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-brand img {
    height: 34px;
  }
}
@media only screen and (max-width: 575px) {
  .navbar-nav .nav-link {
    font-size: 14px;
  }
  .navbar-brand img {
    height: 30px;
  }
}
.offcanvas.offcanvas-end {
  width: 250px;
}

.offcanvas-header .offcanvas-logo img {
  height: 1.5rem;
}
.offcanvas-header .btn-close {
  border: 0;
  box-shadow: 0 0 0 0;
  background-color: #FFFFFF;
}

.offcanvas-body {
  padding: 12px 1rem 0 1rem;
}
.offcanvas-body ul {
  padding-left: 5px;
}
.offcanvas-body .nav-offcanvas {
  list-style: none;
  float: left;
}
.offcanvas-body .nav-offcanvas li {
  padding: 10px 0;
}
.offcanvas-body .nav-offcanvas li a {
  font-size: 14px;
  color: #000000;
  font-family: "Inter-Regular", sans-serif;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.hero .box-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 50svh;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  z-index: 1;
}
.hero .box-text h1 {
  font-family: "Inter-Black", sans-serif;
  font-size: 4rem;
  color: #000000;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  width: 75rem;
  margin: 0 auto;
}
.hero .box-text p {
  font-family: "Inter-Light", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  line-height: 120%;
  text-align: center;
  margin: 1rem 0;
}
.hero .video-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(15%);
  left: 0;
  z-index: 2;
  mask-image: url("../../assets/images/imagem-mask.svg");
  -webkit-mask-image: url("../../assets/images/imagem-mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 35vw;
          mask-size: 35vw;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1399px) {
  .hero {
    padding: 3rem 0;
  }
  .hero .box-text h1 {
    font-size: 3.5rem;
    width: 100%;
  }
  .hero .box-text p {
    font-size: 1.3rem;
  }
}
@media (max-width: 1199px) {
  .hero .box-text h1 {
    font-size: 3rem;
  }
  .hero .box-text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  .hero .box-text h1 {
    font-size: 2.5rem;
  }
  .hero .box-text p {
    font-size: 1.1rem;
  }
  .hero .video-banner {
    transform: translateY(5%);
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 4rem 0;
  }
  .hero .box-text h1 {
    font-size: 2.25rem;
  }
  .hero .box-text p {
    font-size: 1.05rem;
  }
}
@media (max-width: 567px) {
  .hero .box-text {
    height: 100svh;
    justify-content: center;
    position: absolute;
    top: -5rem;
  }
  .hero .box-text h1 {
    font-size: 2rem;
  }
  .hero .box-text p {
    font-size: 1rem;
  }
  .hero .box-video {
    position: absolute;
    bottom: 0;
  }
  .hero .box-video .video-banner {
    -o-object-fit: contain;
       object-fit: contain;
    position: relative;
    transform: translateY(0);
  }
}
.ecossistema {
  position: relative;
  padding: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecossistema .panel {
  min-width: 70rem;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}
.ecossistema .box-tudo {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  margin-top: 5rem;
}
.ecossistema .box-tudo .parte-1,
.ecossistema .box-tudo .parte-2,
.ecossistema .box-tudo .parte-3,
.ecossistema .box-tudo .parte-4,
.ecossistema .box-tudo .parte-5 {
  position: relative;
  margin-top: 5rem;
}
.ecossistema .box-tudo .parte-1::after,
.ecossistema .box-tudo .parte-2::after,
.ecossistema .box-tudo .parte-3::after,
.ecossistema .box-tudo .parte-4::after,
.ecossistema .box-tudo .parte-5::after {
  content: "";
  width: 97.5%;
  height: 2px;
  background: linear-gradient(to right, #002741, #0063b0);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 2.1rem;
  transform: translate(0%, -50%);
}
.ecossistema .box-tudo .parte-2 {
  top: 4rem;
}
.ecossistema .box-tudo .parte-2::after {
  background: linear-gradient(to right, #0063b0, #f2665e);
  z-index: -1;
}
.ecossistema .box-tudo .parte-3 {
  top: 4rem;
}
.ecossistema .box-tudo .parte-3::after {
  background: linear-gradient(to right, #f2665e, #9681d4);
  z-index: -1;
}
.ecossistema .box-tudo .parte-4 {
  top: 4rem;
}
.ecossistema .box-tudo .parte-4::after {
  background: linear-gradient(to right, #9681d4, #ece956);
  z-index: -1;
}
.ecossistema .box-tudo .parte-5 {
  top: 5.5rem;
}
.ecossistema .box-tudo .parte-5::after {
  background: linear-gradient(to right, #ece956, #00b385);
  z-index: -1;
}
.ecossistema .box-tudo .parte-6 {
  position: relative;
  margin-top: 5rem;
  top: 5.5rem;
}
.ecossistema .box-tudo h1 {
  font-family: "Inter-Black", sans-serif;
  font-size: 4rem;
  color: #000000;
  line-height: 120%;
  text-transform: uppercase;
  width: 53rem;
  margin: 0 auto 0 0;
}
.ecossistema .box-tudo p {
  font-family: "Inter-Light", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  line-height: 120%;
  width: 50rem;
  margin: 1rem 0;
}
.ecossistema .box-tudo .box-text {
  flex: 1;
}
.ecossistema .box-tudo .box-text .logo-auto {
  width: 20rem;
  height: 5.3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.ecossistema .box-tudo .box-text h2 {
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 2.25rem;
  color: #000000;
  line-height: 120%;
  margin: 2rem 0 10px 0;
}
.ecossistema .box-tudo .box-text p {
  font-family: "Inter-LightItalic", sans-serif;
  font-size: 1.25rem;
  color: #000000;
  line-height: 120%;
  width: 50rem;
  margin: 0 0 3rem 0;
}

@media (max-width: 1399px) {
  .ecossistema .box-tudo h1 {
    font-size: 3.5rem;
    width: 50rem;
  }
  .ecossistema .box-tudo p {
    font-size: 1.3rem;
  }
  .ecossistema .box-tudo .parte-1::after,
  .ecossistema .box-tudo .parte-2::after,
  .ecossistema .box-tudo .parte-3::after,
  .ecossistema .box-tudo .parte-4::after,
  .ecossistema .box-tudo .parte-5::after {
    background: linear-gradient(to right, #002741, #0063b0);
  }
  .ecossistema .box-tudo .parte-2 {
    top: 2.2rem;
  }
  .ecossistema .box-tudo .parte-2::after {
    background: linear-gradient(to right, #0063b0, #f2665e);
  }
  .ecossistema .box-tudo .parte-3 {
    top: 2.2rem;
  }
  .ecossistema .box-tudo .parte-3::after {
    background: linear-gradient(to right, #f2665e, #9681d4);
  }
  .ecossistema .box-tudo .parte-4 {
    top: 2.2rem;
  }
  .ecossistema .box-tudo .parte-4::after {
    background: linear-gradient(to right, #9681d4, #ece956);
  }
  .ecossistema .box-tudo .parte-5 {
    top: 3.5rem;
  }
  .ecossistema .box-tudo .parte-5::after {
    background: linear-gradient(to right, #ece956, #00b385);
  }
  .ecossistema .box-tudo .parte-6 {
    top: 3.1rem;
  }
  .ecossistema .box-tudo .box-text .logo-auto {
    width: 18rem;
  }
  .ecossistema .box-tudo .box-text h2 {
    font-size: 2rem;
  }
  .ecossistema .box-tudo .box-text p {
    font-size: 1.15rem;
    width: 50rem;
  }
}
@media (max-width: 1199px) {
  .ecossistema .box-tudo h1 {
    font-size: 3rem;
    width: 45rem;
  }
  .ecossistema .box-tudo p {
    font-size: 1.2rem;
  }
  .ecossistema .box-tudo .parte-1 {
    top: 1.5rem;
  }
  .ecossistema .box-tudo .parte-2 {
    top: 1.2rem;
  }
  .ecossistema .box-tudo .parte-3 {
    top: 1.2rem;
  }
  .ecossistema .box-tudo .parte-4 {
    top: 1.2rem;
  }
  .ecossistema .box-tudo .parte-5 {
    top: 2.5rem;
  }
  .ecossistema .box-tudo .parte-6 {
    top: 2.5rem;
  }
}
@media (max-width: 991px) {
  .ecossistema .panel {
    min-width: 60rem;
  }
  .ecossistema .box-tudo h1 {
    font-size: 2.5rem;
    width: 40rem;
  }
  .ecossistema .box-tudo p {
    font-size: 1.1rem;
  }
  .ecossistema .box-tudo .parte-1 {
    top: 3rem;
  }
  .ecossistema .box-tudo .parte-2 {
    top: -12px;
  }
  .ecossistema .box-tudo .parte-3 {
    top: -12px;
  }
  .ecossistema .box-tudo .parte-4 {
    top: -12px;
  }
  .ecossistema .box-tudo .parte-5 {
    top: 8px;
  }
  .ecossistema .box-tudo .parte-6 {
    top: 8px;
  }
}
@media (max-width: 767px) {
  .ecossistema .box-tudo h1 {
    font-size: 2.25rem;
  }
  .ecossistema .box-tudo p {
    font-size: 1.1rem;
    width: 40rem;
  }
  .ecossistema .box-tudo .parte-1 {
    top: 1.4rem;
  }
  .ecossistema .box-tudo .parte-2,
  .ecossistema .box-tudo .parte-3 {
    top: -3.1rem;
  }
  .ecossistema .box-tudo .parte-4 {
    top: -1.8rem;
  }
  .ecossistema .box-tudo .parte-5 {
    top: -10px;
  }
  .ecossistema .box-tudo .parte-6 {
    top: -2rem;
  }
  .ecossistema .box-tudo .box-text .logo-auto {
    width: 14rem;
  }
  .ecossistema .box-tudo .box-text h2 {
    font-size: 1.8rem;
  }
  .ecossistema .box-tudo .box-text p {
    font-size: 1.1rem;
    width: 40rem;
  }
}
@media (max-width: 567px) {
  .ecossistema .box-tudo .parte-1 {
    top: 5rem;
  }
  .ecossistema .box-tudo h1 {
    font-size: 2rem;
  }
  .ecossistema .box-tudo p {
    font-size: 1.1rem;
  }
}
@media (max-width: 500px) {
  .ecossistema .panel {
    min-width: 100vw !important;
    width: 100vw;
    padding: 0 20px;
    height: 30rem;
  }
  .ecossistema .box-tudo {
    height: 30rem;
    position: relative;
  }
  .ecossistema .box-tudo .parte-1,
  .ecossistema .box-tudo .parte-2,
  .ecossistema .box-tudo .parte-3,
  .ecossistema .box-tudo .parte-4,
  .ecossistema .box-tudo .parte-5,
  .ecossistema .box-tudo .parte-6 {
    margin-top: 0;
    position: absolute;
    bottom: 6rem;
    top: auto;
  }
  .ecossistema .box-tudo .parte-1::after,
  .ecossistema .box-tudo .parte-2::after,
  .ecossistema .box-tudo .parte-3::after,
  .ecossistema .box-tudo .parte-4::after,
  .ecossistema .box-tudo .parte-5::after,
  .ecossistema .box-tudo .parte-6::after {
    width: 100vw;
  }
  .ecossistema .box-tudo h1 {
    font-size: 1.8rem;
    width: 100%;
  }
  .ecossistema .box-tudo p {
    font-size: 1rem;
    width: 100%;
  }
  .ecossistema .box-tudo .box-text {
    height: 30rem;
  }
  .ecossistema .box-tudo .box-text .logo-auto {
    width: 12rem;
  }
  .ecossistema .box-tudo .box-text h2 {
    font-size: 1.5rem;
    width: 100%;
  }
  .ecossistema .box-tudo .box-text p {
    font-size: 1rem;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .ecossistema .box-tudo {
    height: 35rem;
  }
  .ecossistema .box-tudo .parte-1,
  .ecossistema .box-tudo .parte-2,
  .ecossistema .box-tudo .parte-3,
  .ecossistema .box-tudo .parte-4,
  .ecossistema .box-tudo .parte-5,
  .ecossistema .box-tudo .parte-6 {
    bottom: 6rem;
  }
}
@media (max-width: 375px) {
  .ecossistema .box-tudo .parte-1,
  .ecossistema .box-tudo .parte-2,
  .ecossistema .box-tudo .parte-3,
  .ecossistema .box-tudo .parte-4,
  .ecossistema .box-tudo .parte-5,
  .ecossistema .box-tudo .parte-6 {
    bottom: 4rem;
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 0 0;
  margin: 0 auto 8rem auto;
  max-width: 2000px;
}

video {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .video-wrapper {
    padding: 3rem 0 0 0;
    margin-bottom: 4rem;
  }
  video {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 500px) {
  .video-wrapper {
    height: 100%;
    padding: 0 0 0 0;
    margin-bottom: 0;
  }
  video {
    height: 100%;
  }
}
/* Estrutura
  --------------------------------------------- */
.estrutura {
  position: relative;
  overflow: hidden;
}
.estrutura .container-fluid {
  max-width: 1910px;
  margin: 0 auto;
  padding: 0;
}
.estrutura .box-tudo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.estrutura .box-tudo .box-text {
  width: 45.6rem;
  height: 32.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.estrutura .box-tudo .box-text h1 {
  font-size: 2rem;
  color: #002741;
  font-family: "Inter-Black", sans-serif;
  margin: 0 auto;
  width: 22rem;
}
.estrutura .box-tudo .box-text p {
  font-size: 15px;
  color: #000000;
  font-family: "Inter-Light", sans-serif;
  margin: 1rem auto 0 auto;
  max-width: 30rem;
}
.estrutura .box-tudo .box-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1910px) {
  .estrutura .box-tudo .box-text {
    width: 100%;
    flex: 1;
  }
  .estrutura .box-tudo .box-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .estrutura .box-tudo {
    display: grid;
  }
  .estrutura .box-tudo .box-text {
    height: auto;
    padding: 0 12px;
  }
  .estrutura .box-tudo .box-text h1 {
    margin: 2rem auto;
  }
  .estrutura .box-tudo .box-text p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .estrutura .box-tudo .box-img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .estrutura {
    padding: 3rem 0;
  }
}
@media (max-width: 425px) {
  .estrutura .box-tudo .box-text h1 {
    font-size: 1.6rem;
  }
}
/* Posicionamento
  --------------------------------------------- */
.posicionamento {
  position: relative;
  overflow: hidden;
}
.posicionamento .container-fluid {
  max-width: 1910px;
  margin: 0 auto;
  padding: 0;
}
.posicionamento .box-tudo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.posicionamento .box-tudo .box-text {
  width: 45.6rem;
  height: 32.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.posicionamento .box-tudo .box-text h1 {
  font-size: 2rem;
  color: #002741;
  font-family: "Inter-Black", sans-serif;
  margin: 0 auto;
  width: 22rem;
}
.posicionamento .box-tudo .box-text p {
  font-size: 15px;
  color: #000000;
  font-family: "Inter-Light", sans-serif;
  margin: 1rem auto 0 auto;
  max-width: 30rem;
}
.posicionamento .box-tudo .box-img {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1910px) {
  .posicionamento .box-tudo .box-text {
    width: 100%;
    flex: 1;
  }
  .posicionamento .box-tudo .box-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .posicionamento .box-tudo {
    display: grid;
  }
  .posicionamento .box-tudo .box-text {
    height: auto;
    padding: 0 12px;
  }
  .posicionamento .box-tudo .box-text h1 {
    margin: 2rem auto;
  }
  .posicionamento .box-tudo .box-text p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .posicionamento .box-tudo .box-img {
    order: 2;
  }
  .posicionamento .box-tudo .box-img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 425px) {
  .posicionamento .box-tudo .box-text h1 {
    font-size: 1.5rem;
  }
}
/* Sobre Nós
  --------------------------------------------- */
.sobre-nos {
  position: relative;
  overflow: hidden;
}
.sobre-nos::after {
  content: "";
  background: linear-gradient(to top, #013252, #002741);
  position: absolute;
  width: 100vw;
  height: 40.2rem;
  z-index: -1;
  top: 0;
}
.sobre-nos .container-fluid {
  max-width: 1910px;
  margin: 0 auto;
  padding: 0;
}
.sobre-nos .box-tudo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-nos .box-tudo .box-text {
  width: 45.6rem;
  height: 32.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sobre-nos .box-tudo .box-text small {
  font-size: 1rem;
  color: #FFFFFF;
  font-family: "Inter-Light", sans-serif;
  margin: 1rem 0;
}
.sobre-nos .box-tudo .box-text h1 {
  font-size: 2rem;
  color: #FFFFFF;
  font-family: "Inter-Black", sans-serif;
  width: 32rem;
  margin: 1rem auto 2rem auto;
}
.sobre-nos .box-tudo .box-text p {
  font-size: 15px;
  color: #FFFFFF;
  font-family: "Inter-Light", sans-serif;
  width: 32rem;
  margin: 1rem auto;
}
.sobre-nos .box-tudo .box-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1910px) {
  .sobre-nos .box-tudo .box-text {
    width: 100%;
    flex: 1;
  }
  .sobre-nos .box-tudo .box-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1399px) {
  .sobre-nos .box-tudo .box-text {
    width: 100%;
  }
  .sobre-nos .box-tudo .box-text p,
  .sobre-nos .box-tudo .box-text h1 {
    width: 23rem;
  }
  .sobre-nos .box-tudo .box-img {
    flex: 1;
  }
  .sobre-nos .box-tudo .box-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .sobre-nos::after {
    width: 101vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .sobre-nos .box-tudo {
    display: grid;
  }
  .sobre-nos .box-tudo .box-text {
    height: auto;
    padding: 0 12px;
  }
  .sobre-nos .box-tudo .box-text h1,
  .sobre-nos .box-tudo .box-text p {
    width: 36rem;
  }
  .sobre-nos .box-tudo .box-img {
    order: 2;
  }
  .sobre-nos .box-tudo .box-img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .sobre-nos .box-tudo .box-text {
    margin: 4rem 0;
  }
  .sobre-nos .box-tudo .box-text h1,
  .sobre-nos .box-tudo .box-text p {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .sobre-nos .box-tudo .box-text h1 {
    font-size: 1.5rem;
  }
}
/* Diferencia
  --------------------------------------------- */
.diferencia {
  width: 100%;
  height: auto;
  position: relative;
  padding: 6rem 0 0 0;
  z-index: 2;
}
.diferencia h1 {
  font-size: 3rem;
  color: #002741;
  font-family: "Inter-Black", sans-serif;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10rem;
}
.diferencia .box-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.diferencia .box-cards .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #002741;
  padding: 1.625rem;
  border: 0;
  border-radius: 1.875rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.diferencia .box-cards .card.visible {
  animation: fadeInUp 0.6s forwards;
}
.diferencia .box-cards .card h2 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-family: "Inter-Bold", sans-serif;
  line-height: 110%;
  width: 14rem;
  margin: 0 auto;
}
.diferencia .box-cards .card p {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-family: "Inter-Light", sans-serif;
  line-height: 120%;
}
.diferencia .box-cards .card .box-img {
  background-color: #002741;
  width: 6rem;
  height: 6rem;
  padding: 14px;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -5rem auto 0 auto;
}
.diferencia .box-cards .visible:nth-child(1) {
  animation-delay: 0.2s;
}
.diferencia .box-cards .visible:nth-child(2) {
  animation-delay: 0.4s;
}
.diferencia .box-cards .visible:nth-child(3) {
  animation-delay: 0.6s;
}
.diferencia .box-cards .visible:nth-child(4) {
  animation-delay: 0.8s;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .diferencia .box-cards .card h2 {
    font-size: 1.35rem;
    width: 11rem;
  }
  .diferencia .box-cards .card p {
    font-size: 1.15rem;
  }
}
@media only screen and (max-width: 1199px) {
  .diferencia h1 {
    font-size: 2.8rem;
    margin-bottom: 8rem;
  }
  .diferencia .box-cards {
    grid-template-columns: 1fr 1fr;
    row-gap: 5rem;
  }
  .diferencia .box-cards .card p {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 767px) {
  .diferencia h1 {
    font-size: 2.5rem;
  }
  .diferencia .box-cards {
    grid-template-columns: 1fr;
  }
  .diferencia .box-cards .card p {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 425px) {
  .diferencia h1 {
    font-size: 2rem;
  }
  .diferencia .box-cards {
    grid-template-columns: 1fr;
  }
  .diferencia .box-cards .card h2 {
    font-size: 1.25rem;
    width: 11rem;
  }
  .diferencia .box-cards .card p {
    font-size: 1rem;
  }
  .diferencia .box-cards .card .box-img {
    width: 5rem;
    height: 5rem;
    margin: -3.5rem auto 0 auto;
  }
  .diferencia .box-cards .card .box-img img {
    width: 3rem;
    height: auto;
  }
}
/* Mensagem
  --------------------------------------------- */
.mensagem {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
.mensagem .container-fluid {
  max-width: 1910px;
  margin: 0 auto;
  padding: 0;
}
.mensagem .box-tudo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mensagem .box-tudo .box-text {
  width: 45.6rem;
  height: 32.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mensagem .box-tudo .box-text p {
  font-size: 1.25rem;
  color: #000000;
  font-family: "Inter-Light", sans-serif;
  margin: 1rem auto 0 auto;
  max-width: 30rem;
}
.mensagem .box-tudo .box-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1910px) {
  .mensagem .box-tudo .box-text {
    width: 100%;
    flex: 1;
  }
  .mensagem .box-tudo .box-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .mensagem .box-tudo {
    display: grid;
  }
  .mensagem .box-tudo .box-text {
    height: auto;
    padding: 0 12px;
  }
  .mensagem .box-tudo .box-text p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .mensagem .box-tudo .box-img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .mensagem {
    padding: 3rem 0;
  }
}
@media (max-width: 425px) {
  .mensagem .box-tudo .box-text p {
    font-size: 15px;
    max-width: 100%;
  }
}
/* Footer
  --------------------------------------------- */
.footer {
  position: relative;
}
.footer .row {
  background: #0064BF;
  padding: 4rem 2rem 2rem 2rem;
  border-radius: 2.5rem 2.5rem 0 0;
}
.footer a {
  color: #FFFFFF;
}
.footer a:hover {
  color: #000000;
}
.footer .box-text p {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 6px 0;
  font-family: "Inter-Light", sans-serif;
}
.footer .box-texto-final {
  margin-top: 2rem;
}
.footer .box-texto-final p {
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  margin: 6px 0;
  font-family: "Inter-Regular", sans-serif;
  line-height: 120%;
}
.footer .box-endereco-contato {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.footer .box-endereco-contato h1,
.footer .box-endereco-contato h2 {
  font-size: 1rem;
  color: #FFFFFF;
  margin: 6px 0;
  font-family: "Inter-Bold", sans-serif;
  line-height: 100%;
}
.footer .box-endereco-contato p {
  font-size: 14px;
  color: #FFFFFF;
  margin: 6px 0;
  font-family: "Inter-Regular", sans-serif;
  line-height: 120%;
}
.footer .whatsapp-flutuante img {
  width: 3rem;
  height: auto;
  position: fixed;
  z-index: 2;
  bottom: 1rem;
  right: 1rem;
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.5));
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .footer .box-text .logo-2 {
    width: 14rem;
    height: auto;
  }
  .footer .box-text p {
    font-size: 1rem;
    width: 15rem;
  }
  .footer .box-endereco-contato {
    gap: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .footer .box-text .logo-2 {
    width: 18rem;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .footer .box-text p {
    font-size: 1rem;
  }
  .footer .box-endereco-contato {
    display: grid;
    gap: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .footer .row {
    padding: 4rem 1rem 2rem 1rem;
  }
}
@media only screen and (max-width: 425px) {
  .footer .box-text .logo-2 {
    width: 12rem;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */