@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: 'Inter' , sans-serif;
}
body{
    background-color: #ffffff;
}
header{
    display: flex;
    flex-direction: row; 
    align-items: flex-end;
    justify-content: space-around;
    text-decoration: none;
    margin-top: 40px;
}
.verde{
    color:#ffffff;
    border: none;
    background-color:#388E3B ;
    border-radius: 15px;
    width: 250px ;
    height: 60px;
    margin-bottom: 10px;
}

.texto{
    display: flex;
    margin-top: 191px ;
    margin-left: 56px;
    flex-direction: column;
}
 h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #3b3737;
}
.texto h2{
    color: #28a745;
    font-weight: 900;
    font-size: 40px;

}

.texto p{
    font-size: 30px;
    margin-top: 30px;
    color: #717171;
}

button{
    border-radius: 10px ;
    color: #ffffff;
    background-color: #43A046;
    width: 219px;
    height: 64px;
    margin-top: 40px;
    border: none;
    font-weight: 800;
    font-style: normal;
    margin-left: 56px;
    font-size: 15px;
}

.container{
    display: flex;
    background-color:#F5F7FA;
}

.container img{
    margin-top: 100px ;
    margin-left: 146px;
    width: 25%;

}

header div{
    display: flex;
}
 header div h1{
    margin-left: 10px;
 }

 h2{
    margin-bottom: 10px;
 }
 
.texto1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto1 h1{
    font-size: 40px;
    color: #3b3737;
    margin-top: 28px;
}

.texto1 p{
    color: #717171;
    font-size: 20px;

}

.logo img{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 22px;
}

.texto2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.texto2 h1{
    font-size: 40px;
    color: #3b3737;
    margin-top: 38px;
}
.texto2 p{
    color: #717171;
    font-size: 20px;
}
.card{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-left:20px;
  margin-top: 14px;
}
.card1 {
    display: flex;
    width: 208px;
    height: 196px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    margin-left: 40px;
    margin-top: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card1 img{
    width: 45px;
    height: 38px;
    align-self: center;
     margin-bottom: 15px;
}

.card1 h1{
    text-align: center;
    font-size: 15px;
    color: #3b3737;
}

.card1 p{
    text-align: center;
    color: #717171;
    font-size: 10px;
    flex-direction: column;
}

.container1{
    display:flex;
    justify-content: space-around;
}

.texto3{
    display: flex;
    flex-direction: column;
    margin-top: 52px;
}

.texto3 h1{
    font-size: 40px;
    color: #3b3737;
    margin-top: 38px;
    margin-bottom: 20px;
}
.texto3 p{
    font-style: 'Inter';
    color: #717171;
    font-size: 15px;
}

 .imagem1{
    width: 400px;
    height:300px;
    margin-top: 52px;
}

.text{
    display: flex;
    flex-direction: column;
    margin-top: 191px ;
    margin-left: 170px;
}

 .text.black{
    font-weight: 500;
    font-size: 60px;
    color: #3b3737;
}

.text .green{
    color: #28a745;
    font-weight:900;
    font-size: 40px;
}

.text p{
    font-size: 20px;
    font-weight: 400;
    color: #18191F;
    margin-top: 4px;
}

.container2{
    justify-content: space-between;
    display: flex;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Duas colunas */
    gap: 30px; /* Espaçamento entre os itens */
    text-align: left;
    max-width: 600px;
    padding: 20px;
    margin-right: 250px;
}

  .stat-item {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre o ícone e o texto */
    margin-right: 48px;
    margin-top: 21px;
  }


  .stat-item img {
    width: 40px; /* Tamanho do ícone */
    height: 40px;
  }

  .stat-text {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
  }

  .stat-label {
    font-size: 14px;
    color: #666;
  }



