* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #0D0A0B;
  padding-bottom: 80px;
}

header {
  background-color: #0D0A0B;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

nav {
  background-color: #0D0A0B;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: #F094A9;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  padding-bottom: 120px;
}

.container {
  background-color: #F094A9;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  box-shadow: 10px 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}


#sobre,
.texto {
  text-align: justify;
}

.img_perfil,
.img_quadrada {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto 1rem auto;
}

.img_perfil {
  border-radius: 50%;
}


.project-section {
  width: 100%;
}

.project-section img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.project-section h3,
.project-section p {
  width: 100%;
  text-align: left;
}


form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  resize: vertical;
}

input[type="submit"] {
  background-color: #0D0A0B;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #333;
}

.contato {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.link-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.link-contato img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-contato img:hover {
  transform: scale(1.3);
  box-shadow: 0 5px 20px rgb(99, 95, 95);
}

.link-contato p {
  color: #ffffff;
  font-size: 16px;
}


footer {
  background-color: #0D0A0B;
  color: white;
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

footer .contato {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

footer .link-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .link-contato img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

footer .link-contato img:hover {
  transform: scale(1.3);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

footer .link-contato p {
  margin-top: 5px;
  font-size: 14px;
}

.container:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  header p,
  nav a,
  footer {
    font-size: 0.9rem;
  }

  .container {
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .img_perfil,
  .img_quadrada {
    width: 150px;
    height: 150px;
  }

  .link-contato p {
    font-size: 14px;
  }
}
