*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: inherit;
}

body{
    background: #fdfdfd;
}
section{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top{
    outline: none;
    border: 0;
    color: #0ef;
    background: #fdfdfd;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #1C1F3F;
    border-radius: 50%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    cursor: pointer;
}

.scroll-top i{
    width: 100%;
}

header{
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 70px;
}

.help{
    
    margin-bottom: 200px;
}

.container h1{
    color: #1C1F3F;
    font-weight: 500;
    font-size: 60px;
    text-transform: uppercase;
    
}

.container h3{
    color: #1C1F3F;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 400;
}


.help-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    flex-wrap: wrap;
}

.help-row .help-img{
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    align-items: center;
    
}

.help-row .help-img .img-align{
    margin: 0 auto;
}

.help-row .help-img img{
    margin-bottom: 25px;
    width: 100px;
    margin-left: 20px;
    transition: 0.7s;

}

.help-img img:hover{
    transform: scale(1.1);
}

.help-img button{
    background: #007BA7;
    color: #fdfdfd;
    width: 130px;
    height: 40px;
    border-radius: 10px;
    border: none;
    padding: 0 10px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.7s;
}

.help-img button:hover{
    transform: scale(1.1);
}


@media (max-width:850px){
    .help-row .help-img button{
        margin-top: 20px;
    }
}

/*********
About

**********/

/*********
Transferencia
Bancaria
**********/

.container-sessao {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #007ba7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  h1 {
    color: #fdfdfd;
    text-align: center;
    font-size: 30px;
  }
  
  
  .info {
    margin-top: 20px;
  }
  
  .bank-info {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .bank-info p {
    margin: 10px 0;
    font-size: 18px;
  }
  
  .bank-info strong {
    color: #007ba7;
  }
  
  .bank-info a:hover{
    color: #007ba7;
  }

  .img-center{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bank-info img{
    width: 200px;
  }

@media (max-width:450px){
    .container-sessao{
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

