/* RESET */


/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
  width : 20%;
} */

.horizontal-rule {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
  width: 20%;
  display: inline-block;
  vertical-align: middle;
}

.hr-text {
  vertical-align: middle;
  margin-left: 10px;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
  background: #0c4633;
}

.text-white {
  color: #fff !important;
}


/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* END RESET */



/* GLOBAL */

*{
  -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}


.scroll::-webkit-scrollbar {
  display: none;
}


body{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

ul{
  padding: 0;
  list-style-type: none;
}

p{
  margin: 0 0 15px;
}

.align-center{
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}



.container{
  width: 100%;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}



header{
  padding: 15px 0 10px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

header .container{
  align-items: center;
}

header .navigation{
  text-align: right;
}

header .acesso{
  padding: 0;
  margin: 5px 0 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

header nav{
  display: flex;
  gap: 5px;
}

header nav a{
  padding: 5px 15px;
  color: #050a1f;
  font-size: 18px;
  border-radius: 5px;
}

header nav a:hover{
  background: #f8f8f7;
}



.btn{
  padding: 8px 25px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 100px;
  color: #0c4633;
  border: 1px solid #0c4634;
}

.btn:hover{
  background: #0c4633;
  color: #fff;
}

.btn.green{
  background: #9ad3ca;
  border-color: #9ad3ca;
}

.btn.lime{
  background: #d8db39;
  border-color: #d8db39;
}

.btn.brown{
  background: #9f8153;
  border-color: #9f8153;
  color: #fff;
}

.btn.brown:hover{
  background: #806337;
}

.btn.invert{
  color: #9ad3ca;
  border-color: #9ad3ca;
}

.btn.invert:hover{
  background: #9ad3ca;
  color: #0c4634;
}




.columns{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh !important;
}


footer{
  padding: 60px 0;
  background: #0c4634;
  color: #fff;
}

footer .container{
  max-width: 1000px;
}

footer address{
  padding-left: 30px;
  margin: 25px 0;
  color: #fafded;
  background: url(../../img/alllife/icon-location.gif) no-repeat left 5px;
  font-style: initial;
  line-height: 22px;
}

footer .columns{
  flex-wrap: initial;
  gap: 30px;
}

footer .item{
  padding: 0 10px;
}

footer .item:nth-child(1){
  width: 35%;
}

footer .item:nth-child(3){
  width: 35%;
}

footer .item:nth-child(4){
  width: 30%;
}

footer strong{
  display: block;
  color: #9ad3ca;
}

footer a{
  padding: 2px 0;
  display: block;
  color: #fff;
}

footer .social{
  padding: 20px 0;
  display: flex;
  gap: 10px;
  font-size: 24px;
}

footer .social a{
  color: #d8db39;
}

footer .download a{
  margin-bottom: 10px;
}




.pagination{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.pagination a,
.pagination span{
  padding: 10px 15px;
  border-radius: 10px;
  background: #f5f5f5;
  color: #211915;
  font-size: 14px;
}

.pagination span{
  font-weight: 600;
  background: #d8db39;
  font-size: 16px;
}

.pagination a:hover{
  background: #d8db39;
}

.pagination .link{
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 100px;
  background: #0c4634;
  color: #fafafa;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}





/* HEADINGS */
h2{
  margin: 0 0 30px;
  font-weight: 700;
  color: #0c4633;
  font-size: 40px;
  line-height: 42px;
}



mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.mt-7 {
  margin-top: 6rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 10rem !important;
}

.mt-10 {
  margin-top: 12rem !important;
}

.mt-11 {
  margin-top: 14rem !important;
}

.mt-12 {
  margin-top: 16rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 4rem !important;
}

.me-7 {
  margin-right: 6rem !important;
}

.me-8 {
  margin-right: 8rem !important;
}

.me-9 {
  margin-right: 10rem !important;
}

.me-10 {
  margin-right: 12rem !important;
}

.me-11 {
  margin-right: 14rem !important;
}

.me-12 {
  margin-right: 16rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.mb-7 {
  margin-bottom: 6rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 10rem !important;
}

.mb-10 {
  margin-bottom: 12rem !important;
}

.mb-11 {
  margin-bottom: 14rem !important;
}

.mb-12 {
  margin-bottom: 16rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 4rem !important;
}

.ms-7 {
  margin-left: 6rem !important;
}

.ms-8 {
  margin-left: 8rem !important;
}

.ms-9 {
  margin-left: 10rem !important;
}

.ms-10 {
  margin-left: 12rem !important;
}

.ms-11 {
  margin-left: 14rem !important;
}

.ms-12 {
  margin-left: 16rem !important;
}

.ms-auto {
  margin-left: auto !important;
}


/* PARTS */

#banner{
  background: #f8f8f7 url(../../img/alllife/img-banner.jpg) no-repeat right center;
  background-size: auto 100%;
}

#banner .text{
  width: 40%;
  padding: 120px 0 160px;
  color: #0c4633;
}

#banner h1{
  margin: 0 0 20px;
  font-size: 92px;
  line-height: 78px;
  font-weight: 400;
}

#banner h1 span{
  display: block;
  color: #9ad3ca;
  font-weight: 700;
}

#banner p{
  margin: 0 0 35px;
  font-size: 32px;
  line-height: 32px;
}

#banner .btn:nth-child(2){
  background: #f8f8f7;
}


.sobre .imagem{
  width: 50%;
}

.sobre .texto{
  width: 40%;
  margin-right: auto;
}

.sobre img{
  position: relative;
  left: -50px;
}

.sobre h2{
  margin: 25px 0 15px;
}

.sobre p{
  margin: 0 0 35px;
}




.missao{
  padding: 60px 0;
  margin-top: 50px;
  background: #f6f8ee;
  position: relative;
}

.missao .box{
  width: 50%;
  margin-left: 5%;
}

.missao .box .item{
  margin: 30px 0;
  display: flex;
  color: #0c4634;
  align-items: center;
  gap: 8%;
}

.missao .item .imagem{
  width: 14%;
}

.missao .item .texto{
  width: 80%;
}

.missao strong{
  font-size: 28px;
}

.missao p{
  font-size: 20px;
  line-height: 26px;
}

.missao .float{
  position: absolute;
  bottom: 0;
  right: 0;
}





.equipe{
  padding: 100px 0;
}

.equipe .item{
  width: 31%;
  margin-bottom: 40px;
  text-align: center;
}

.equipe .item img{
  border-radius: 20px;
  overflow: hidden;
}

.equipe .item h3{
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.equipe .item strong{
  display: block;
  font-size: 20px;
  margin-top: -6px;
}

.equipe .item .btn{
  margin-top: 10px;
  display: inline-block;
}







.tecnologia{
  padding: 80px 0;
}

.tecnologia .image{
  width: 40%;
}

.tecnologia .image img{
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.tecnologia .text{
  width: 55%;
}

.tecnologia h2{
  margin-top: 40px;
  margin-bottom: 20px;
}

.tecnologia ul{
  margin-top: 25px;
}

.tecnologia ul li{
  padding-left: 58px;
  margin-bottom: 30px;
  background: url(../../img/alllife/logo-all-life-03.png) no-repeat left center;
  background-size: 50px 50px;
}




.blog .columns{
  margin-bottom: 50px;
}

.blog .item{
  width: 32%;
}

.blog .image{
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.blog .item a{
  color: #0c4634;
}

.blog .item small{
  display: block;
  color: #0c4634;
}

.blog strong{
  display: block;
  color: #0c4634;
}

.blog .btn{
  padding: 10px 50px;
}




.depoimentos{
  width: 100%;
  padding: 60px;
  border-radius: 40px;
  margin-top: 100px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.depoimentos.interna{
  margin-top: 50px;
}

.depoimentos h2{
  margin-bottom: 10px;
}

.depoimentos .align-center{
  max-width: 850px;
}

.depoimentos strong{
  color: #0c4634;
}

.bg-depoimentos{
  position: relative;
}

.bg-depoimentos .bg{
  width: 100%;
  height: 360px;
  background: #0c4634;
  position: absolute;
  z-index: -1;
  bottom: 0;
}


.depoimentos .slider{
  margin-top: 20px;
}

.depoimentos .swiper-wrapper{
  height: auto;
}

.depoimentos .swiper-container{
  padding-bottom: 70px;
}

.depoimentos .swiper-slide{
  height: 320px;
  padding: 5px;
}

.depoimentos .wrap{
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.depoimentos .pessoa{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.depoimentos .pessoa .image{
  width: 25%;
  border-radius: 100px;
  overflow: hidden;
}

.depoimentos .pessoa .info{
  width: 70%;
}

.depoimentos .pessoa .info strong,
.depoimentos .pessoa .info small,
.depoimentos .pessoa .info .stars{
  display: block;
}

.depoimentos .pessoa strong{
  margin-top: 5px;
  font-size: 16px;
  line-height: 18px;
  color: #0c4634;
}

.depoimentos .pessoa small{
  font-size: 11px;
  color: #0c4634;
}

.depoimentos .pessoa .star{
  display: flex;
  gap: 5px;
}

.depoimentos .pessoa .stars span{
  color: #d8db39;
  cursor: pointer;
}

.depoimentos .pessoa .stars span:hover{
  color: #0c4634;
}

.depoimentos .slider p{
  margin: 0;
  font-size: 13px;
}

.depoimentos .swiper-pagination .swiper-pagination-bullet-active{
  width: 25px;
  background: #0c4634;
  border-radius: 5px;
}


/* INTERNAS */
#content h1{
  margin-top: 50px;
  color: #0c4633;
  font-size: 40px;
}


#content .funcionalidades .columns:nth-child(1){
  margin-bottom: 80px;
}

#content .funcionalidades .text{
  width: 60%
}

#content .funcionalidades .image{
  width: 38%;
}


#content .funcionalidades .box{
  width: 100%;
  position: relative;
}

#content .funcionalidades .box .icone{
  width: 15%;
}

#content .funcionalidades .box .texto{
  width: 85%;
}

#content .funcionalidades .box p{
  padding: 0;
}





#content .sobre{
  padding: 40px 0;
}

#content .sobre .texto{
  width: 48%;
  padding-top: 20px;
}

#content .sobre .imagem{
  width: 50%;
}

#content .sobre .imagem img{
  left: 0;
}


#content .fundadores{
  width: 100%;
  padding: 50px 0;
}

#content .listing{
  padding: 25px 0;
}

#content .listing .item{
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#content .listing .item .imagem{
  width: 25%;
}

#content .listing .item .imagem img{
  border-radius: 20px;
  overflow: hidden;
}

#content .listing .item .texto{
  width: 70%;
}

#content .listing .item h3{
  margin: 0;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
}

#content .listing .item strong{
  font-size: 24px;
}




#content .interna .columns{
  padding: 30px 0;
  align-items: center;
}

#content .interna .columns:nth-child(2){
  margin-bottom: 80px;
}

#content .interna .texto{
  width: 55%;
}

#content .interna h2{
  margin: 0 0 15px;
}

#content .interna .imagem{
  width: 40%;
}



#content .interna.tecnologia{
  padding: 0;
}

#content .interna.tecnologia h2{
  font-size: 30px;
  margin-bottom: 0;
  padding-left: 50px;
  padding-bottom: 10px;
  background: url(../../img/alllife/icone-marrom.gif) no-repeat left 10px;
}

#content .interna.tecnologia h1{
  font-size: 30px;
  margin-bottom: 0;
  padding-left: 50px;
  padding-bottom: 10px;
}


#content .interna.tecnologia p{
  margin-bottom: 35px;
  padding-left: 50px;
}




#content.blog.interna{
  margin-bottom: 100px;
}

#content.blog.interna .container{
  padding-top: 40px;
  align-items: flex-start;
}

#content.blog.interna aside{
  width: 27%;
}

#content.blog.interna aside .categorias{
  padding: 25px;
  border-radius: 20px;
  background: #f6f8ee;
}

#content.blog.interna aside strong{
  display: block;
  color: #0c4634;
  font-size: 24px;
  font-weight: 700;
}

#content.blog.interna aside li a{
  padding: 2px 0;
  display: block;
  color: #010101;
  font-size: 16px;
}

#content.blog.interna aside .box{
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

#content.blog.interna aside .box.ajuda{
  box-shadow: none;
  background: #d8db39;
}

#content.blog.interna aside .box.ajuda strong{
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 20px;
}

#content.blog.interna aside .box.ajuda strong.alt{
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #010101;
}

#content.blog.interna aside .box .last{
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

#content.blog.interna aside .box .last a{
  display: block;
}

#content.blog.interna aside .box .last .gradient{
  width: 100%;
  height: 50%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0c4634+0,0c4634+100&0+0,0.9+100 */
  background: linear-gradient(to bottom,  rgba(12,70,52,0) 0%,rgba(12,70,52,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: absolute;
  left: 0;
  bottom: 0;
}

#content.blog.interna aside .box .last span{
  padding: 0 15px;
  position: absolute;
  bottom: 20px;
  color: #fafafa;
  font-weight: 500;
}

#content.blog.interna aside .box li{
  margin-bottom: 10px;
}

#content.blog.interna aside .box li a{
  line-height: 20px;
}



#content.blog.interna main{
  width: 68%;
}

#content.blog.interna .item{
  width: 48%;
  margin-bottom: 35px;
}



article .title{
  padding: 10px 0 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b8b8b8;
  display: flex;;
  justify-content: space-between;
  align-items: center;
}

#content article h1{
  width: 75%;
  margin: 0;
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
}

#content article .share{
  width: 25%;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#content article .share a{
  font-size: 24px;
}

#content article .share a.face{color: #3b5998}
#content article .share a.telegram{color: #1c8adb}
#content article .share a.whats{color: #2ea91e}
#content article .share a.twitter{color: #41a1f2}

#content article .infos{
  margin-bottom: 30px;
  font-size: 14px;
}

#content article .infos span{
  margin-right: 20px;
}

article figure{
  margin: 0 0 20px;
}

article figure img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

article blockquote{
  padding: 40px 30px;
  margin: 0 0 20px;
  background: #f6f8ee url(../../img/alllife/quotes.png) no-repeat 97% 85%;
  border-radius: 20px;
}

article blockquote span{
  padding: 5px 100px 5px 15px;
  display: block;
  border-left: 4px solid #0c4634;
}

article .group-image{
  width: 100%;
  display: flex;
  gap: 20px;
}




.contato{
  padding-top: 50px;
  margin-bottom: 35px;
}

#content.contato h1{
  margin-top: 0;
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 42px;
}

.contato .left,
.contato .right{
  width: 48%;
}

.contato .item{
  display: flex;
  margin-bottom: 35px;
}

.contato .item strong{
  width: 30%;
}

.contato .item address,
.contato .item div{
  width: 70%;
}

.contato .social-media{
  padding: 20px 25px;
  border-radius: 20px;
  background: #f6f8ee;
}

.contato .social-media .item{
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contato .social-media .item strong{
  width: 50%;
  color: #0c4634;
}

.contato .social-media .item div{
  width: 50%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contato .social-media .item a{
  font-size: 28px;
  color: #0c4634;
}

.contato .social-media .item a.face{color: #3b5998;}
.contato .social-media .item a.whats{color: #29a71a;}
.contato .social-media .item a.twitter{color: #41a1f2;}
.contato .social-media .item a.insta{color: #c42968;}
.contato .social-media .item a.youtube{color: #ff0000;}


.contato .right strong{
  margin-bottom: 10px;
  display: block;
  color: #0c4634;
  font-size: 24px;
}

.contato form .form-group{
  margin-bottom: 10px;
}

.form-group label{
  margin-bottom: 3px;
  display: block;
  font-size: 16px;
}

.form-group input{
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #dbdbdb;
  color: #222;
}

.form-group-2 input{
  width: 50%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #dbdbdb;
  color: #222;
}


.form-group textarea{
  width: 100%;
  height: 120px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #dbdbdb;
  color: #222;
  resize: none;
}

form button.btn{
  padding: 8px 55px;
  margin-top: 15px;
  cursor: pointer;
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #344767;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.4rem;
  color: #344767;
}

.col-form-label-lg {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  font-size: 0.875rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.75rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}



/* Responsivo */

@media (max-width: 1199px) and (min-width: 992px) {

  header .container{
    justify-content: center;
    flex-direction: column;
  }

  header .acesso{
    margin-top: 20px;
    justify-content: center;
  }


  #banner{
    background-position: 350px center;
  }

  #banner .text{
    width: 50%;
  }


  .missao .box{
    width: 50%;
  }

  .missao .float{
    width: 42%;
  }



  .beneficios .box img{
    width: 50%;
  }


  /* INTERNAS */
  


}


@media (max-width: 991px) and (min-width: 768px) {

	header .container{
    justify-content: center;
    flex-direction: column;
  }

  header .acesso{
    margin-top: 20px;
    justify-content: center;
  }

  header nav a{
    font-size: 14px;
    font-weight: 500;
  }


  #banner{
    background-position: 290px center;
  }

  #banner .text{
    width: 60%;
  }


  .funcionalidades .box{
    width: 100%;
    margin: 0 0 10px;
  }


  .sobre img{
    left: -15px;
  }


  .missao .box{
    width: 40%;
  }

  .missao .float{
    width: 50%;
  }


  .beneficios .box img{
    width: 50%;
  }


  .beneficios .box{
    padding: 30px;
  }
  
  .beneficios .box.left{
    padding-left: 22%;
  }

  .beneficios strong{
    margin: 10px 0 20px;
    font-size: 24px;
    line-height: 28px;
  }



  .depoimentos h2{
    font-size: 32px;
    line-height: 34px;
  }


  /* INTERNAS */
  #content.blog.interna aside strong{
    font-size: 20px;
    line-height: 20px;
  }

  #content.blog.interna aside .box.ajuda strong{
    font-size: 22px;
    line-height: 22px;
  }

  #content.blog.interna aside .box.ajuda strong.alt{
    font-size: 22px;
    line-height: 22px;
  }

  #content.blog.interna aside .box.ajuda{
    padding: 20px;
  }

  #content.blog.interna aside .box.ajuda p{
    overflow-wrap: break-word;
  }

  #content.blog.interna aside .box .last span{
    line-height: 16px;
  }



  .contato .left{
    margin-bottom: 30px;
  }

  .contato .left, .contato .right{
    width: 100%;
  }



}



@media (max-width: 767px) {


  header .container{
    justify-content: center;
    flex-direction: column;
  }

  header .acesso{
    margin-top: 20px;
    justify-content: center;
  }

  header .navigation{
    width: 100%;
  }

  header .wrap-nav{
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  header nav a{
    font-size: 18px;
    font-weight: 500;
  }


  #banner{
    background-position: 190px center;
  }

  #banner .text{
    width: 60%;
  }

  #banner h1{
    font-size: 72px;
    line-height: 62px;
  }

  #banner p{
    font-size: 26px;
    line-height: 26px;
  }

  #banner .botoes{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #banner .botoes a{
    margin-bottom: 5px;
  }


  .funcionalidades .box{
    width: 100%;
    margin: 0 0 10px;
  }


  .sobre img{
    left: -15px;
  }


  .missao .box{
    width: 40%;
  }

  .missao .float{
    width: 50%;
  }


  .beneficios .box img{
    width: 50%;
  }

  .beneficios .box.left img{
    left: 0;
  }

  .beneficios .box.right img{
    right: 0;
  }


  .beneficios .box{
    padding: 20px;
  }
  
  .beneficios .box.left{
    padding-left: 25%;
  }

  .beneficios strong{
    margin: 10px 0 20px;
    font-size: 20px;
    line-height: 22px;
  }



  .depoimentos h2{
    font-size: 32px;
    line-height: 34px;
  }



  footer address{
    padding: 30px 0 0;
    text-align: center;
    background-position: center 5px;
  }

  footer .columns{
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .item{
    width: 100%;
  }

  footer .item:nth-child(1){
    width: 100%;
  }

  footer .item:nth-child(1) img{
    margin: 0 auto;
    display: block;
  }

  footer .item:nth-child(2),
  footer .item:nth-child(4){
    width: 25%;
  }

  footer .item:nth-child(3){
    width: 40%;
  }




  /* INTERNAS */
  #content h1{
    margin-bottom: 20px;
  }

  #content .sobre .texto,
  #content .sobre .imagem{
    width: 100%;
    text-align: center;
  }

  #content .sobre .imagem img{
    margin: 0 auto;
  }


  #content.blog.interna h1{
    margin: 50px 0 5px;
  }

  #content.blog.interna aside,
  #content.blog.interna main{
    width: 100%;
  }

  #content.blog.interna aside{
    margin-top: 50px;
    margin-bottom: 20px;
  }


  #content.blog.interna aside .box .last img{
    width: 100%;
  }


  #content.blog.interna .title h1{
    margin: 0;
  }


   .contato .left{
    margin-bottom: 30px;
  }

  .contato .left, .contato .right{
    width: 100%;
  }


	
}



@media (max-width: 600px) {

  #banner{
    background-position: -30% center;
  }

  #banner .text{
    padding-top: 100px;
  }

  #banner h1{
    font-size: 62px;
    line-height: 62px;
  }

  #banner p{
    font-size: 24px;
    line-height: 28px;
  }

  .sobre .imagem,
  .sobre .texto{
    width: 100%;
    text-align: center;
  }

  .sobre .imagem img{
    left: 0;
  }


  .missao{
    overflow: hidden;
  }

  .missao .box{
    width: 50%;
  }

  .missao .float{
    right: -50px;
  }


  .equipe .item{
    width: 48%;
  }

  .equipe .item strong{
    font-size: 14px;
  }


  .beneficios .box{
    width: 100%;
    margin-bottom: 25px;
  }

  .beneficios .box.left{
    padding-left: 35%;
  }

  .beneficios .box img{
    width: 32%;
  }



  .tecnologia .image,
  .tecnologia .text{
    width: 100%;
    text-align: center;
  }

  .tecnologia .image img{
    margin: 0 auto;
  }

  .tecnologia ul li{
    padding: 40px 0 0;
    background-position: center top;
  }



  .blog h2{
    font-size: 32px;
    line-height: 34px;
  }

  .blog .item{
    width: 100%;
    margin-bottom: 35px;
    text-align: center;
  }

  .blog .image img{
    width: 100%;
  }

  .blog strong{
    font-size: 24px;
  }


  footer .item{
    width: 100%!important;
    text-align: center;
  }

  footer .social{
    justify-content: center;
  }

  footer .item.download img{
    margin: 5px auto;
  }



  /* INTERNAS */

  #content h1{
    font-size: 32px;
    line-height: 34px;
  }

  #content .funcionalidades .text,
  #content .funcionalidades .image{
    width: 100%;
  }

  #content .funcionalidades .text{
    margin-bottom: 20px;
  }

  #content .funcionalidades .image{
    text-align: center;
  }

  #content .funcionalidades .image img{
    margin: 0 auto 20px;
  }



  #content .listing .item{
    flex-direction: column;
    align-items: center;
  }

  #content .listing .item .imagem{
    margin-bottom: 20px;
  }

  #content .listing .item .imagem img{
    margin: 0 auto;
  }

  #content .listing .item .imagem,
  #content .listing .item .texto{
    width: 100%;
    text-align: center;
  }


  #content .interna .columns{
    flex-direction: column;
    justify-content: center;
  }

  #content .interna .texto h2{
    font-size: 32px;
    line-height: 32px;
  }

  #content .interna .texto,
  #content .interna .imagem{
    width: 100%;
    text-align: center;
  }

  #content .interna .imagem img{
    margin: 0 auto 20px;
  }


  #content .interna.tecnologia h2{
    padding: 40px 0 0;
    background-position: center top;
  }

  #content .interna.tecnologia p{
    padding: 0;
  }


  #content.blog.interna .item{
    width: 100%;
  }

  .blog strong{
    font-size: 20px;
    line-height: 20px;
  }


  article .title{
    flex-direction: column;
    align-items: flex-start;
  }

  article .title h1{
    width: 100%!important;
    margin-bottom: 20px!important;
  }

  #content article .share{
    justify-content: flex-start;
  }



}



@media (max-width: 480px) {

  h2{
    font-size: 32px;
    line-height: 34px;
  }


  #banner{
    background-position: 210px bottom;
    background-size: auto 65%;
  }

  #banner .text{
    width: 100%;
    padding-top: 50px;
    text-align: center;
  }

  #banner h1{
    margin-bottom: 10px;
    font-size: 42px;
    line-height: 42px;
  }

  #banner .botoes{
    align-items: center;
  }


  .missao{
    padding-top: 40px;
    padding-bottom: 260px;
  }

  .missao .box{
    width: 80%;
  }

  .missao .float{
    right: 0;
  }


  .depoimentos h2{
    font-size: 26px;
    line-height: 26px;
  }



  /* INTERNAS */
  
  #content .funcionalidades .box{
    flex-direction: column;
    align-items: center;
  }

  #content .funcionalidades .box img{
    margin: 0 auto 20px;
  }

  #content .funcionalidades .box .icone,
  #content .funcionalidades .box .texto{
    width: 100%;
    text-align: center;
  }



  article blockquote{
    padding: 20px 20px 60px;
  }

  article blockquote span{
    padding: 5px 20px 5px 15px;
  }


  #content.contato h1{
    font-size: 28px;
    line-height: 32px;
  }

  .contato .social-media .item{
    flex-wrap: wrap;
  }

  .contato .social-media .item strong{
    margin-bottom: 10px;
  }

  .contato .social-media .item strong,
  .contato .social-media .item div{
    width: 100%;
    justify-content: flex-start;
  }



}


@media (max-width: 375px) {


  #banner{
    background-position: 110px bottom;
  }


  .funcionalidades .box{
    flex-wrap: wrap;
  }

  .funcionalidades .box .icone,
  .funcionalidades .box .texto{
    width: 100%;
    text-align: center;
  }

  .funcionalidades .box .icone img{
    margin: 0 auto 20px;
  }

  .funcionalidades .box strong{
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
    line-height: 22px;
  }

  .funcionalidades .box .texto p{
    padding: 0;
  }



  .missao .box{
    width: 100%;
  }

  .missao .box .item{
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .missao .float{
    width: 60%;
  }


  .equipe .item{
    width: 100%;
    margin-bottom: 25px;
  }


  .blog h2{
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
  }


  .beneficios .box img{
    width: 40%;
  }


  .depoimentos{
    padding: 60px 20px;
  }



  /* INTERNAS */
  #content.blog.interna h1{
    font-size: 26px;
    line-height: 26px;
  }


  article .group-image{
    flex-wrap: wrap;
  }

  article .group-image figure{
    width: 100%;
    margin: 0 0 5px;
  }




}


@media (max-width: 320px){

  #banner{
    background-position: 90px bottom;
  }

  .missao .float{
    width: 70%;
  }


}



