.container-cookie-message {
  display: none;
  position: fixed;
  z-index: 100000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 50px;
  background-color: rgba(24, 120, 145, 0.9);
}
.cookie-message {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-message p,
.cookie-message a {
  font-size: 12px;
  line-height: 16px;
  color: #f8f9f9;
}
.cookie-message p {
  margin: 0;
}
.cookie-message a {
  display: inline-block;
  text-decoration: underline;
}
.cookie-btn {
  font-size: 13px;
  color: #f8f9f9;
  padding: 7px 14px;
  border: 1px solid #f8f9f9;
  margin-left: 15px;
}
.cookie-btn:hover {
  color: #607a87;
  background-color: #f8f9f9;
}

/* menu */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  margin-top: 15px;
}
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-radius: 12px;
  background: #fff;
  transition: .3s;
}
.content-header-shadow {
  box-shadow: 0 31px 39.7px 0 rgba(0, 0, 0, 0.11);
}
.content-header .menu ul{
  display: flex;
  align-items: center;
}
.content-header .menu ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.content-header .menu ul li + li{
  margin-left: 70px;
}
.content-header .menu ul li:nth-child(3) a {
  font-size: 14px;
  line-height: 20px;
  color: #601DBE;
  border: 1px solid #601DBE;
  width: 140px;
  height: 38px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: .3s;
}
.content-header .menu ul li:nth-child(3) a:hover {
  color: #ffffff;
  border: 1px solid #601DBE;
  background: #601DBE;
}
.content-header .menu ul li:last-child a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  width: 240px;
  height: 38px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #601DBE;
  transition: .3s;
}
.content-header .menu ul li:last-child a:hover {
  color: #601DBE;
  border: 1px solid #601DBE;
  background: #ffffff;
}
.content-header .menu ul li:last-child {
  margin-left: 30px;
}
.link {
  position: relative;
  font-weight: 500;
  transition: .3s;
}
.link::after {
  content: '';
  width: 0%;
  height: 1px;
  background: #F2B73F;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -2px;
  transition: .3s;
}
.link.active::after {
  width: 100%;
}
.link:hover::after {
  width: 100%;
}

@media(max-width: 992px) {
  .content-header .menu ul li:nth-child(1), .content-header .menu ul li:nth-child(2) {
    display: none;
  }
  .content-header {
    padding: 20px 25px;
  }
  .logo img {
    width: 120px;
  }
  .content-header .menu ul li:last-child a {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    width: 130px;
    height: 35px;
  }
  .content-header .menu ul li:last-child {
    display: none;
  }
  .content-header .menu ul li + li{
    margin-left: 30px;
  }
  .content-header .menu ul li:nth-child(3) a {
    width: 120px;
  }
}

/* section-sobre-nos */

.section-sobre-nos {
  position: relative;
  padding: 160px 0;
}
.section-sobre-nos h2 {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #601DBE;
  margin-bottom: 20px;
  font-weight: 400;
}
.section-sobre-nos p {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section-sobre-nos p span {
  font-weight: 600px;
  background: #EFF3FB;
  border: 1px solid #A9BEEB;
  border-radius: 4px;
}
.icon-star img {
  margin: 0 auto 30px;
}
.link-demo {
  font-size: 16px;
  line-height: 24px;
  color: #601DBE;
  border: 1px solid #601DBE;
  width: 280px;
  height: 44px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin: 30px auto 0;
  transition: .3s;
}
.link-demo:hover {
  color: #ffffff;
  border: 1px solid #601DBE;
  background: #601DBE;
}

@media(max-width: 992px) {
  .section-sobre-nos {
    padding: 120px 0 180px;
  }
}

/* section-app */

.content-app {
  background: linear-gradient(259deg, rgba(251, 181, 0, 0.10) 0.91%, rgba(87, 43, 184, 0.10) 98.21%);
  border-radius: 22px;
  position: relative;
  height: 954px;
}
.content-app.mobile {
  display: none;
}
.img-app {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: 20;
}
.img-dash {
  position: relative;
  top: -160px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  max-width: 1125px;
  width: 100%;
}
.img-app.mobile {
  display: none;
}
.img-dash.mobile {
  display: none;
}
.content-products {
  max-width: 840px;
  width: 100%;
  margin: -200px auto 0;
  display: flex;
  justify-content: space-between;
}
.each-products {
  position: relative;  
  width: 49%;
  font-size: 14px;
  line-height: 22px;
}
.each-products h3 {
  color: #601DBE;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  padding: 12px 0;
}
.content-each-products {
  position: absolute;
  padding: 50px;
}

@media(max-width: 1200px) {
  .img-app {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media(max-width: 900px) {
  .content-products {
    flex-direction: column;
    align-items: center;
    margin: -150px auto 0;
  }
  .each-products {
    width: 393px;
  }
  .each-products + .each-products {
    margin-top: 30px;
  }
}
@media(max-width: 600px) {
  .img-app.mobile {
    display: block;
  }
  .img-dash.mobile {
    display: block;
  }  
  .img-app.desk {
    display: none;
  }
  .img-dash.desk {
    display: none;
  }
  .content-app.desk {
    display: none;
  }
  .content-app.mobile {
    display: block;
  }
}

@media(max-width: 400px) {
  .content-each-products {
    position: absolute;
    padding: 35px 25px;
  }
  .each-products {
    width: 340px;
  }
  .img-each-product {
    width: 100%;
  }
  .content-each-products {
    font-size: 12px;
  }
}

/* section-manifesto */
.section-manifesto {
  position: relative;
  padding: 130px 0 0;
}
.section-manifesto h2 {
  color: #601DBE;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 42px;
}
.section-manifesto h2::after {
  content: '';
  position: absolute;
  width: 112px;
  height: 1px;
  background: #D8D8D8;
  top: -35px;
  left: 50%;
  transform: translate(-50%, 0);
}
.section-manifesto .video img {
  margin: 0 auto -200px;
  max-width: 805px;
  width: 100%;
  border-radius: 22px;
}
.content-manisfesto {
  border-radius: 25px;
  background: #572BB8;
  padding: 270px 100px 60px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.left-manisfesto {
  max-width: 413px;
  width: 100%;
}
.title-left-manisfesto {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.title-left-manisfesto h3 {
  margin-left: 14px;
  color: #B292F9;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;  
}
.each-question {
  border-bottom: 1px solid #321278;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.each-question:last-child {
  border-bottom: none;
}
.each-question h4 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.each-question p {
  color: #B292F9;
  font-size: 13px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
  padding-top: 16px;
}
.right-manisfesto {
  max-width: 420px;
  width: 100%;
}
.right-manisfesto h1 {
  color: #FFF;
  font-family: Poppins;
  font-size: 55px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 110px;
}
.right-manisfesto a {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  border: 1px solid #ffffff;
  width: 280px;
  height: 45px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: .3s;
}
.right-manisfesto a:hover {
  color: #601DBE;
  border: 1px solid #ffffff;
  background: #ffffff;
}
.link-faq-footer {
  cursor: pointer;
}
.text-faq-footer {
  display: none;
}
.text-faq-footer.active {
  display: block;
}

@media(max-width: 1150px) {
  .content-manisfesto {
    flex-direction: column;
    padding: 180px 60px 80px;
  }
  .section-manifesto .video img {
    margin: 0 auto -140px;
  }
}

@media(max-width: 992px) {
  .section-manifesto {
    padding: 110px 0 0;
  }
  .content-manisfesto {
    flex-direction: column;
    padding: 180px 40px 80px;
  }
  .right-manisfesto h1 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 50px;
  }
  
}

@media(max-width: 450px) {
  .right-manisfesto a {
    width: 100%;
  }
  .content-manisfesto {
    flex-direction: column;
    padding: 180px 25px 80px;
  }
}

@media(max-width: 400px) {
  .section-manifesto .video img {
    margin: 0 auto -100px;
  }
}

/* footer */

.footer {
  background: #ffffff;
  padding: 60px 0 0;  
}
.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.right-footer-logo a i {
  color: #F6BB41;
  font-size: 20px;
}
.right-footer-logo {
  display: flex;
}
.right-footer-logo a {
  display: flex;
  color: #572BB8;
  transition: .3s;
}
.right-footer-logo a img{
  transition: .3s;
}
.right-footer-logo a img {
  margin-left: 10px;  
}
.right-footer-logo a + a{
  margin-left: 53px;
}
.right-footer-logo a:hover img{
  margin-top: -7px;
  margin-right: -2px;
}
.icon-footer img {
  margin: 0 auto;
  max-width: 1306px;
  width: 100%;
  padding: 0 15px;
}

@media(max-width: 992px) {
  .footer-logo {
    flex-direction: column;
  }
  .left-footer-logo {
    padding-bottom: 20px;
  }
  .left-footer-logo img {
    width: 160px;
  }
  .content-contact {
    padding: 0;
  }
  .right-footer-logo {
    flex-direction: column;
    align-items: center;
  }
  .right-footer-logo a + a{
    margin-left: 0;
  }
  .right-footer-logo a {
    padding: 5px 0;
  }
  .footer-logo {
    padding-bottom: 30px;
  }
}

/* Privacidade */
.section-privacy {
  padding: 60px 0;
}
.content-privacy {
  max-width: 1000px;
  margin: 0 auto;
}
.content-privacy h2 {
  color: #601DBE;
  margin: 30px 0;
  font-size: 32px;
  height: 40px;
}
.content-privacy h3 {
  color: #601DBE;
  margin: 30px 0;
  font-size: 28px;
  height: 35px;
}
.content-privacy p {
  margin: 20px 0;
}
.content-privacy ul {
  margin-top: 35px;
}
.content-privacy li {
  margin: 10px 0;
}