* {
    font-family: 'Arial Narrow Bold', Arial, sans-serif;
}

body {
    /*background-image: url('../img/bg_link.jpg'); /* Caminho da sua imagem */
    /*background-size: contain; /* Faz a imagem cobrir toda a tela */
    /*background-position: center center; /* Centraliza a imagem */
    /*background-attachment: fixed; /* Mantém a imagem fixa enquanto o usuário rola a página */
    /*background-repeat: no-repeat; /* Evita que a imagem se repita */
    /*min-height: 100vh; /* Garante que o corpo ocupe pelo menos a altura total da tela */
    background-image: url('../img/background_750.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
 }


.primary-color {
    color:  #617887;
}

.secondary-color {
    color: #868686;
}

#meu_link img{
    width: 200px; /* Largura da imagem */
    height: 200px; /* Altura da imagem */
    border-radius: 50%; /* Faz a imagem ser redonda */
    object-fit: cover; /* Faz a imagem preencher o espaço */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

.crp {
    font-size: smaller;
}

  .botoes i {
    padding-right: 2em;
  }

  .btn {
    display: inline-flex;/* Usa Flexbox */
    align-items: center; /* Alinha o conteúdo verticalmente ao centro */
    font-size: medium;
    /* justify-content: flex-start; Alinha o ícone à esquerda */
  }

  .btn i {
    margin-right: 10px; /* Adiciona espaço à direita do ícone */
  }

  h5 i {
    margin-right: 10px; /* Adiciona espaço à direita do ícone */
  }
    
.btn span {
    flex: 1; /* Faz o texto ocupar o restante do espaço do botão */
    text-align: center; /* Centraliza o texto */
}

  .btn-primary{
    width: 90%;
    background-color: #617887;
    border: none;
    opacity: 70%;
  }

  .btn-primary:hover {
    background-color: #f2f2f2;
    border: solid #617887;
    color: #617887;
  }

  .btn-success {
    margin-top: 25px;
    width: 90%;
    background: none;
    color: #617887;
    border: solid 1px #617887;
    font-size: small;
  }

  .btn-success:hover {
    background-color: #d9d9d9;
    color: #617887;
    border: solid 1px #617887;
  }

  .btn-primary, .btn-success {
    transition: all 0.3s ease;
    transform: scale(1.05); /* Leve aumento no botão ao passar o mouse */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Adiciona sombra */
  }
  
  .btn-primary:hover, .btn-success:hover {
    background-color: #f2f2f2;
    color: #617887;
  }

  .rodape {
    font-size: smaller;
  }

  @media (max-width: 576px) {
    body {
      background-attachment: scroll; /* Melhor para dispositivos móveis */
    }
    .btn {
      font-size: 14px; /* Ajusta o tamanho da fonte para telas pequenas */
    }
    .btn span {
      font-size: 14px; /* Ajusta o texto do botão */
    }
    #meu_link img {
      width: 150px; /* Menor tamanho de imagem em telas pequenas */
      height: 150px;
    }
  }

  @media (min-width: 768px) {
    .btn {
      width: 50%; /* Reduz a largura para 60% da tela */
      font-size: 16px; /* Ajuste o tamanho da fonte, se necessário */
      margin: 5px auto;
    }
  
    .btn-primary, .btn-success {
      width: 50%; /* Define uma largura mais estreita para os botões */
    }
  }
