@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, body, caption {
  font-family: "Manrope", serif;
  color: #222222;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #222222;
}

.link {
  padding: 16px 16px;
  font-size: 18px;
  transition: 0.5s ease;
  position: relative;
}
.link::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 2px;
  transform: translate(20%, 50%);
  transition: 0.5s ease;
  background-color: #444444;
}
.link:hover {
  opacity: 0.8;
}
.link:hover::after {
  width: 70%;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 14px;
}

body {
  font-size: 18px;
  margin-top: 8px;
}

caption {
  font-size: 15px;
}

p {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

button {
  padding: 16px;
  border-radius: 8px;
  background-color: #EBEBEB;
}

body {
  width: 100%;
  background-color: #F3F3F2;
}

.border {
  border: 1px solid red;
}

.border-2 {
  border: 1px solid green;
}

.menu {
  width: 80%;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  justify-content: space-between;
  padding: 28px 16px;
}

.contact {
  max-width: 100%;
  background-color: #444444;
  padding: 20vh;
}
.contact h1 {
  color: #FFFFFF;
}
.contact h5 {
  color: #AFAFAC;
}

.footer {
  max-width: 100%;
  height: 100px;
  background-color: #222222;
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer h6 {
  color: #FFFFFF;
}

.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 60px 16px;
  display: flex;
  flex-wrap: wrap;
}

.container-project {
  max-width: 60%;
  margin: 0 auto;
  padding: 60px 16px;
}
.container-project h3 {
  margin-top: 80px;
}

.projects {
  margin-top: 40px;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
}

.project-item {
  max-width: 380px;
}

.section {
  max-width: 80%;
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
  border: 1px solid pink;
}

img {
  border-radius: 14px;
  max-width: 100%;
}

.avatar-container {
  display: flex;
  margin: 20px 0; /* Ajuste conforme necessário */
}

.avatar-image {
  width: 100px; /* Defina o tamanho desejado */
  height: 100px;
  border-radius: 50%; /* Torna a imagem circular */
  -o-object-fit: cover;
     object-fit: cover; /* Garante que a imagem se ajuste corretamente */
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.carousel-track {
  display: flex;
  gap: 10px;
  animation: scroll 20s linear infinite;
}

.carousel img {
  width: 100%;
  max-width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.custom-link-button {
  display: inline-flex;
  padding: 10px 24px;
  background-color: #222222;
  color: #EBEBEB;
  border-radius: 5px;
  font-size: 16px;
  align-items: center;
  margin-top: 40px;
}
.custom-link-button svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  margin-right: 10px;
}
.custom-link-button:hover {
  background-color: #EBEBEB;
  color: #222222;
  transition: 0.5s ease;
}
.custom-link-button:hover svg {
  color: #222222;
  transition: 0.5s ease;
}

/* Estilo para a lista */
.custom-list {
  list-style-type: disc; /* Usa dots (pontos) como marcadores */
  padding-left: 20px; /* Espaçamento à esquerda para os dots */
  margin-top: 40px; /* Espaçamento acima da lista */
}
.custom-list li {
  font-size: 16px; /* Mesmo tamanho da fonte do <p> */
  line-height: 1.5; /* Mesma altura de linha do <p> */
  color: #444444; /* Mesma cor do texto do <p> */
  margin-bottom: 20px; /* Espaçamento entre os itens */
}

.group-image {
  width: 100%;
  margin: 0 auto;
}
.group-image img {
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.container-image {
  width: 100%; /* Ocupa 60% da largura da página */
  display: flex; /* Usa flexbox para organizar as imagens */
  gap: 10px; /* Espaçamento entre as imagens */
  margin-top: 40px;
  flex-wrap: wrap;
}
.container-image img {
  width: calc(50% - 5px);
  height: auto; /* Mantém a proporção da imagem */
  -o-object-fit: cover;
     object-fit: cover; /* Cobre o espaço sem distorcer */
  border-radius: 6px;
}

.profile-main {
  display: flex;
  gap: 40px;
}
.profile-main img {
  margin-top: 80px;
  width: 475px;
  height: 329px;
  -o-object-fit: cover;
     object-fit: cover; /* Cobre o espaço sem distorcer */
  border-radius: 6px;
}
.profile-main h3 {
  margin-top: 80px;
}
.profile-main p {
  color: #444444;
  font-size: 16px;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */