body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-image: linear-gradient(to bottom, #333, #424242);
}



.lead {
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  outline: 2px 2px 4px rgb(129, 128, 128);
}

.btn-primary {
  background-color: #ffc107;
  border-color: linear-gradient(to bottom, #333, #424242);
  background-image: linear-gradient(to bottom, #333, #424242);
  border-color: #e0a800;
}

.btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.card {
  background-image: linear-gradient(to bottom, #333, #424242);
  border-color:rgb(129, 128, 128);
}

.card-body {
  color: linear-gradient(to bottom, #333, #424242);
}

.col-md-4 .card {
  box-shadow: 0px 0px 5px rgb(0, 0, 0.5);
}

.col-lg-6 {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333333;
}

.col-lg-6 h2 {
  font-size: 32px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.col-lg-6 p {
  font-size: 18px;
  color: #777777;
}

.col-lg-6 p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .col-lg-6 {
    text-align: center;
  }

  .col-lg-6 img {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 32px;
}

p {
  font-size: 18px;
  color: #777777;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffd700;
}

#contato {
  background-color: #333;
  padding-top: 80px;
  padding-bottom: 80px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 10);
}

#contato h2 {
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#contato form {
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid yellow;
  border-radius: 5px;
  padding: 10px;
  color: #ffcc00;
  box-shadow: 5px 5px 5px rgb(0, 0, 0.3);
}

#contato .form-group label {
  color: #ffcc00;
  font-weight: bold;
}

#contato .form-group input,
#contato .form-group textarea {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #555555;
}

#contato .form-group input:focus,
#contato .form-group textarea:focus {
  border-color: #ffcc00;
  box-shadow: none;
}

#contato .form-group .btn-primary {
  background-color: #ffcc00;
  border-color: #ffcc00;
  color: #333333;
}

#contato .form-group .btn-primary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  color: #333333;
}

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

.profile-links a {
  margin: 0 10px;
}

.profile-link img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 0px 5px rgb(0, 0, 0.5);

}

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

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  text-decoration: none;
  color: #e0a800;
  font-weight: bold;
  font-size: 15px;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  text-decoration: underline;
}

#languages {
  padding: 50px 0;
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.language-item {
  background-color: linear-gradient(to bottom, #333, #424242);
  padding: 10px;
  border-radius: 10px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 5px 10px rgb(0, 0, 0.3); /* Add the shadow effect */
  transition: box-shadow 0.3s ease;
  transition: transform 0.3s ease-in-out;
}

.language-item:hover {
  box-shadow: 0 5px 10px rgb(251, 255, 0); /* Add the shadow effect */
  transform: scale(1.1);

}

.language-name {
  margin-top: 10px;
  font-size: 15px;
}

.profile-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.profile-buttons .btn {
  margin-right: 1rem;
}

.modal-content{
  background-color: #333;
  color: #777777;
}

.btnpk{
  background-color: aliceblue;
}