*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.center{
    max-width: 1100px;
    margin:0 auto;
    padding:0 2%;
    display: flex;
    flex-wrap: wrap;
}

header{
    background-color: rgb(9, 9, 9);
    padding:20px 0;
    border-bottom:1px solid rgb(200,200,200);
}

.logo{
    color: #64e528;
}

.logo h4{
    font-weight: normal;
    font-size: 15px;
}

.menu{
    width:80%;
    text-align: right;
}

.menu a{
    color:#87f47d;
    font-size: 14px;
    text-decoration: none;
    margin-right: 20px;
    /*transition:0.4s;*/
}

.menu a:hover{
    color:#9dff00;
}

.menu .btn-menu{
    background-color: #0d8134;
    display: inline-block;
    padding:8px 16px;
    color:white;
    border-radius:6px;
}


.menu .btn-menu:hover{
    background-color:#12652b;
    color:white;
}


/*
Section Main
*/

section.main{
    background-image: url('/img/fundobranco.jpg');    
    padding:70px 0;
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;
    background-attachment: fixed;
}

.main__cta{
    width:100%;
    margin:60px 0;
    text-align: center;
}

.main__cta h4{
    color:#1a1f22;
    font-size: 20px;
}

.main__cta p{
    color:#141413;
    font-size: 19px;
    margin:10px 0;
    text-align: center;
}

.main__cta button{
    background-color: #53e853;
    display: inline-block;
    padding:8px 30px;
    color:rgb(215, 240, 52);
    border-radius:6px;
    font-size: 16px;
    border:0;
    cursor: pointer;
}

.diferenciais{
    display: flex;
    flex-wrap: wrap;
} 

.diferencial-single{
    border-radius:10px;
    background-color:white;
    width: 23%;
    margin-right: 2%;
    padding:50px 20px;
}

.diferencial-single i{
    color:#124265;
    font-size: 23px;
}

.diferencial-single h2{
    color:#124265;
    margin:10px 0;
    font-size: 17px;
}

.diferencial-single p{
    color:gray;
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
}


section.sobre{
    padding:80px 0;
}

.chamada-sobre{
    width:100%;
    text-align: center;
}

.chamada-sobre h2{
    color:#124265;
    text-transform: uppercase;
}

.chamada-sobre p{
    font-size: 14px;
    color:rgb(236, 231, 231);
    margin:10px 0;
    text-align: justify;
}

.conteudo-sobre{
    display: flex;
    flex-wrap: wrap;
    
}

.conteudo-sobre p{
    width:48%;
    margin-right: 2%;
    color:#444444;
    text-align: justify;
}

.conteudo-sobre span{
    display: inline-block;
    width:100%;
    margin-top:10px;
}
.conteudo-sobre i{
    color: #007bff;
}

section.conquistas{
    background-color:#f8fbfe;
    padding:20px 0;
}

.conquista-single{
    width:22%;
    margin-right: 3%;
    text-align: center;
     color:#124265;
}
.conquista-single h2{
    font-size: 30px;
}

.conquista-single img{
    max-width: 100%;
}

.conquista-single img{
    filter: grayscale(100%);
    transform:scale(1,1);
    transition: 1s;
}


.conquista-single img:hover{
    transform:scale(1.1,1.1);
    filter:grayscale(0);
}

.menu-items{
    position: absolute;
    left:0;
    top:60px;
    width:100%;
    text-align: center;
    background-color:white;
    border-bottom:2px solid blue;
    display: block;
    opacity: 0;
    transition: 1s;
}

.menu-items.show{
    opacity: 1;
   
}

.menu-items.hidde{
    opacity: 0;
}

.menu-items a{
    display: block;
    text-decoration: none;
    color:blue;
}

section.sobre-empreendedor{
    padding:40px 0;
}
.sobre-empreendedor-img{
    width:50%;
}

.sobre-empreendedor-img img{max-width: 100%;}

.sobre-empreendedor-content{
    width:50%;
    padding:0 50px;
}

.sobre-empreendedor-content h2{
    color: #124265;
    margin-bottom:20px;
}

.sobre-empreendedor-content p{
    color:#444;
    font-size: 14px;
    margin-bottom: 14px;
    text-align: justify;
}


section.depoimentos{
    padding:40px 0;
}

section.depoimentos .depoimentos-chamada{
    text-align: center;

}

.depoimentos-chamada h2{
    color: #124265;
    text-transform: uppercase;
    text-align: justify;
}

.depoimentos-chamada p{
    color:black;
    margin:10px 0;
    font-size: 14px;
    text-align: justify;
    
}

.carrousel{
    display: flex;
}

.carrousel-single{
    width:31%;
    margin-right: 2%;
    text-align: center;
}

.carrousel-single-box{
    padding:20px;
    background-color:#f3f9fd;
    border-radius:10px;
}

.carrousel-single-box p{
    font-style: italic;
    color:#4b4b4b;
    font-size: 14px;
    text-align: justify;
}

.carrousel-single-box i{
    color: #56da7d;
    font-size: 19px;
    padding:0 8px;
}

.carrousel-single img{
    width:70px;
    height:70px;
    display: inline;
    margin:10px 0;
    border-radius:50%;
    text-align: center;
}

.carrousel-single span{
    color:#ccc;
}
/* Footer styles */
.footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
  color: #340894;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-columns div {
  min-width: 150px;
}

.footer-columns h4 {
  font-size: 14px;
  color: #101010;
  margin-bottom: 10px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul li {
  margin-bottom: 6px;
}

.footer-columns ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-columns ul li a:hover {
  color: #006064;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 13px;
  color: #555;
}

.footer-global {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.footer-global p {
  max-width: 600px;
}

@media screen and (max-width: 768px){
    .diferencial-single{
        width:100%;
        margin-bottom: 20px;
    }

    .menu{
        display: none;
    }
    .logo{
        width:20%;
    }
    .menu-mobile{
        width:80%;
        text-align: right;
        display: block;
    }
    .menu-mobile i{
        cursor: pointer;
        font-size: 23px;
        margin-top:8px;
    }
    .conteudo-sobre p{width:100%;  margin:20px 20px;}
}