.blue {
  color: #ADC5D9;
}

.hidden-left-to-right {
  transform: translateX(-100%);
  opacity: 0;
  filter: blur(5px);
  transition: all 2s;
}

.hidden-right-to-left {
  transform: translateX(100%);
  opacity: 0;
  filter: blur(5px);
  transition: all 2s;
}

.show {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0%);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 7px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #012E40;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #ADC5D9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4E8DA6;
}

::-webkit-scrollbar-button {
  display: none;
}

header {
  height: 70px;
  width: 100vw;
  position: fixed;
  z-index: 1000;
  top: 0;
  transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
header .margin-header {
  height: 70px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .margin-header h1 {
  font-family: "Freeman", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 300;
  margin: 0;
  padding: 0;
}
header .margin-header #nav-desktop {
  display: inline-flex;
  align-items: center;
}
header .margin-header #nav-desktop ul {
  padding: 0;
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
header .margin-header #nav-desktop ul li {
  font-family: "Monteserrat", sans-serif;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}
header .margin-header #nav-desktop ul li a {
  text-decoration: none;
  color: #fff;
  transition: all ease-in-out 0.4s;
  position: relative;
}
header .margin-header #nav-desktop ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, transparent, #D8E6F2);
  transition: width 0.4s ease;
}
header .margin-header #nav-desktop ul li a:hover::after {
  width: 100%;
}
header .margin-header .btn-abrir-menu {
  display: none;
  cursor: pointer;
}
header .margin-header #nav-mobile {
  display: none;
  width: calc(40vw + 10%);
  height: 100vh;
  background-color: rgba(211, 211, 211, 0.0666666667);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-radius: 20px 0px 0px 0px;
  position: fixed;
  right: 0;
  top: 0;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
header .margin-header #nav-mobile ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
header .margin-header #nav-mobile ul li {
  font-family: "Monteserrat", sans-serif;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}
header .margin-header #nav-mobile ul li a {
  text-decoration: none;
  color: #fff;
  transition: all ease-in-out 0.4s;
  position: relative;
}
header .margin-header #nav-mobile ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, transparent, #D8E6F2);
  transition: width 0.4s ease;
}
header .margin-header #nav-mobile ul li a:hover::after {
  width: 100%;
}

.transparente {
  background: transparent;
}

.scrolled {
  background-color: #012E40;
}

@keyframes slideFromRight {
  from {
    right: -250px;
  }
  to {
    right: 0;
  }
}
@keyframes slideToRight {
  from {
    right: 0;
  }
  to {
    right: -250px;
  }
}
@media only screen and (max-width: 840px) {
  header .margin-header #nav-desktop {
    display: none;
  }
  header .margin-header .btn-abrir-menu {
    display: flex;
  }
}
@media only screen and (max-width: 300px) {
  header .margin-header #nav-mobile {
    width: 100vw;
    border-radius: 0;
    justify-content: center;
  }
  header .margin-header #nav-mobile ul {
    align-items: center;
  }
}
#home .video-background-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
#home .video-background-section #background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-user-drag: none;
}
#home .video-background-section #content-home {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
#home .video-background-section #content-home h1 {
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
  padding: 0;
}

#problema {
  height: 500px;
  background-color: #D8E6F2;
}
#problema #content-problema {
  width: 80%;
  margin: 0 auto;
  align-items: center;
  height: 100%;
  display: flex;
  gap: 1rem;
}
#problema #content-problema #left-problema {
  height: 100%;
  width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#problema #content-problema #left-problema h1 {
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #024959;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
#problema #content-problema #left-problema p {
  width: 80%;
  font-family: "Monteserrat", sans-serif;
  font-size: 1rem;
  color: #012E40;
  font-weight: 400;
  text-align: justify;
  margin: 0;
  padding: 0;
}
#problema #content-problema #right-problema {
  width: 50%;
  height: 100%;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#problema #content-problema #right-problema img {
  width: 80%;
  height: auto;
}

@media only screen and (max-width: 800px) {
  #problema {
    display: flex;
    height: calc(700px - 2%);
  }
  #problema #content-problema {
    flex-direction: column;
    justify-content: space-evenly;
    gap: 2rem;
  }
  #problema #content-problema #left-problema {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    gap: 0.5rem;
    align-items: center;
  }
  #problema #content-problema #left-problema h1 {
    font-size: 2rem;
  }
  #problema #content-problema #right-problema {
    width: 100%;
  }
}
#tecnologias {
  width: 100vw;
  height: 500px;
  background-color: #024959;
  display: flex;
}
#tecnologias #content-tecnologia {
  width: 80%;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tecnologias #content-tecnologia #slide-tec {
  width: auto;
  height: 70%;
}
#tecnologias #content-tecnologia #slide-tec #img-tec {
  height: 100%;
  transition: opacity 0.5s ease;
  width: 100%;
}
#tecnologias #content-tecnologia #titulo-tec {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
#tecnologias #content-tecnologia #titulo-tec h1 {
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
  margin: 0;
  padding: 0;
  text-align: right;
  text-transform: uppercase;
}
#tecnologias #content-tecnologia #titulo-tec p {
  font-family: "Monteserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
  margin: 1rem 0 0 0;
  padding: 0;
  text-align: right;
  text-transform: uppercase;
}

@media only screen and (max-width: 840px) {
  #tecnologias {
    height: auto;
  }
  #tecnologias #content-tecnologia {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  #tecnologias #content-tecnologia #titulo-tec {
    width: auto;
    display: flex;
    align-items: center;
  }
  #tecnologias #content-tecnologia #titulo-tec h1 {
    font-size: 2rem;
    text-align: center;
  }
  #tecnologias #content-tecnologia #titulo-tec p {
    text-align: center;
  }
}
#publico-alvo {
  display: flex;
  width: 100vw;
  height: 500px;
  background-color: #012E40;
}
#publico-alvo .box {
  width: 50vw;
  height: 100%;
  transition: width 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
#publico-alvo .left-pub {
  background-image: url(../assets/publico/animal.png);
  background-position: center;
  background-size: cover;
}
#publico-alvo .left-pub h1 {
  transition: ease-in-out 300ms;
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
#publico-alvo .right-pub {
  background-image: url(../assets/publico/humano.png);
  background-position: center;
  background-size: cover;
}
#publico-alvo .right-pub h1 {
  transition: ease-in-out 300ms;
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
#publico-alvo .expand-left-pub {
  width: 100vw;
}
#publico-alvo .expand-right-pub {
  width: 0;
}

@media only screen and (max-width: 800px) {
  #publico-alvo {
    display: flex;
    flex-direction: column;
  }
  #publico-alvo .box {
    cursor: none;
    width: 100%;
    pointer-events: none;
  }
  #publico-alvo #box-1 {
    cursor: none;
  }
  #publico-alvo #box-1 h1 {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }
  #publico-alvo #text-box-1 {
    display: flex;
    justify-content: center;
  }
  #publico-alvo #box-2 {
    cursor: none;
  }
  #publico-alvo #box-2 h1 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }
  #publico-alvo #text-box-2 {
    display: flex;
    justify-content: center;
  }
}
#objetivo {
  width: 100vw;
  height: 500px;
  position: relative;
  background-image: url(../assets/background-parallax/praia-parallax.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.94;
}
#objetivo #content-objetivo {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#objetivo #content-objetivo h1 {
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #ADC5D9;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
#objetivo #content-objetivo p {
  font-family: "Monteserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #objetivo #content-objetivo h1 {
    font-size: 2rem;
  }
}
#beneficios {
  width: 100vw;
  height: 500px;
  background-color: #D8E6F2;
}
#beneficios #content-beneficios {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
#beneficios #content-beneficios #left-beneficios {
  width: 50%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
#beneficios #content-beneficios #left-beneficios h1 {
  text-align: start;
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #024959;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
#beneficios #content-beneficios #left-beneficios p {
  font-family: "Monteserrat", sans-serif;
  font-size: 1rem;
  color: #012E40;
  font-weight: 400;
  text-align: justify;
  margin: 0;
  padding: 0;
}
#beneficios #content-beneficios #right-beneficios {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 50%;
  height: 90%;
}
#beneficios #content-beneficios #right-beneficios img {
  height: 70%;
}

@media only screen and (max-width: 800px) {
  #beneficios {
    height: auto;
  }
  #beneficios #content-beneficios {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #beneficios #content-beneficios #left-beneficios {
    width: 90%;
    margin: 0 auto;
    align-items: center;
  }
  #beneficios #content-beneficios #left-beneficios h1 {
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
  }
  #beneficios #content-beneficios #left-beneficios p {
    margin-top: 1rem;
    text-align: center;
  }
  #beneficios #content-beneficios #right-beneficios {
    height: 90%;
    padding: 2rem;
    justify-content: center;
  }
  #beneficios #content-beneficios #right-beneficios img {
    width: 90%;
  }
}
#img {
  height: 50vh;
  width: 100vw;
  background-image: url(../assets/dia-a-dia/bg.png);
  background-position: center;
  background-size: cover;
  background-color: #D8E6F2;
}

#dia-a-dia {
  height: 500px;
  width: 100vw;
  background-color: #D8E6F2;
}
#dia-a-dia #content-dia-a-dia {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: auto;
}
#dia-a-dia #content-dia-a-dia #left-dia {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
}
#dia-a-dia #content-dia-a-dia #left-dia #info-dia h1 {
  text-align: start;
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #4E8DA6;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
#dia-a-dia #content-dia-a-dia #left-dia #info-dia .cor-1 {
  color: #012E40;
}
#dia-a-dia #content-dia-a-dia #left-dia #info-dia p {
  font-family: "Monteserrat", sans-serif;
  font-size: 1rem;
  color: #012E40;
  font-weight: 400;
  text-align: justify;
  margin: 0;
  padding: 0;
}
#dia-a-dia #content-dia-a-dia #right-dia {
  width: 30%;
  display: flex;
  justify-content: end;
}
#dia-a-dia #content-dia-a-dia #right-dia #img-dia-a-dia {
  height: 90%;
}

@media only screen and (max-width: 800px) {
  #dia-a-dia {
    height: auto;
  }
  #dia-a-dia #content-dia-a-dia {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #dia-a-dia #content-dia-a-dia #left-dia {
    display: flex;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
  }
  #dia-a-dia #content-dia-a-dia #left-dia #info-dia h1 {
    font-size: 2rem;
    text-align: center;
  }
  #dia-a-dia #content-dia-a-dia #left-dia #info-dia p {
    text-align: center;
  }
  #dia-a-dia #content-dia-a-dia #right-dia {
    width: 100%;
    justify-content: center;
  }
  #dia-a-dia #content-dia-a-dia #right-dia #img-dia-a-dia {
    width: 90%;
  }
}
footer {
  width: 100vw;
  height: 300px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
}
footer #content-footer {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer #content-footer #footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
  align-items: center;
}
footer #content-footer #footer-left h1 {
  font-family: "Freeman", sans-serif;
  font-size: 3rem;
  color: #012E40;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
footer #content-footer #footer-left h5 {
  font-family: "Monteserrat", sans-serif;
  font-size: 0.6rem;
  color: #012E40;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
footer #content-footer #footer-right {
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}
footer #content-footer #footer-right h1 {
  font-family: "Monteserrat", sans-serif;
  font-size: 1.5rem;
  color: #012E40;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
footer #content-footer #footer-right form {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
footer #content-footer #footer-right form input {
  border-radius: 80px;
  border: solid 1px #4E8DA6;
  color: #012E40;
  background: transparent;
  width: 100%;
  padding: 1rem 4rem 1rem 0.5rem;
}
footer #content-footer #footer-right form ::-moz-placeholder {
  color: #012E40;
}
footer #content-footer #footer-right form ::placeholder {
  color: #012E40;
}
footer #content-footer #footer-right form ::-moz-placeholder:hover {
  color: #4E8DA6;
}
footer #content-footer #footer-right form ::placeholder:hover {
  color: #4E8DA6;
}

@media only screen and (max-width: 800px) {
  footer #content-footer {
    flex-direction: column-reverse;
  }
  footer #content-footer #footer-left h1 {
    text-align: center;
  }
  footer #content-footer #footer-left h5 {
    text-align: center;
  }
  footer #content-footer #footer-right {
    width: 100%;
    align-items: center;
  }
}/*# sourceMappingURL=styles.css.map */