@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");

html {
    font-size: 62.5%;
    color: var(--cor-branca);
    font-weight: 300;
    scroll-behavior: smooth;
  }
  body {
    background-color: var(--cor-fundo-azure-escuro);
    font-family: var(--fonte-primaria);
    font-size: var(--fonte-normal);
    margin: 0 auto;
    background: linear-gradient(124deg,rgba(5, 53, 69, 1) 20%, rgba(14, 66, 84, 1) 60%, rgba(24, 82, 102, 0.91) 100%) no-repeat;
  }
  .container {
    max-width: 1140px;
    margin: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .justify-content-between {
    justify-content: space-between;
  }
  
  .alinhar-itens-no-centro {
    align-items: center;
  }

  .redes-sociais a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 3rem;
    text-align: center;
    color: var(--cor-branca);
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.7s ease;
  }
  
  .redes-sociais a i {
    line-height: 40px;
  }
  
  .redes-sociais a:hover {
    color: var(--cor-primaria);
  }
  .section{
    padding: 7rem 0 7rem;
  }
  
  .section-title {
    text-align: center;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: var(--fonte-gigante);
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .botao {
    font-size: var(--fonte-grande);
    padding: 10px 20px;
    border-radius: 20px;
    transition: all .3s ease;
    background-color: var(--cor-fundo-azure-claro);
  }
  
  .botao:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
  }