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

html, body {
  width: 100%;
}

.container {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;
  background-color: #444444;
}
header a {
  text-decoration: none;
}
header a h1 {
  color: #f8f8f8;
  font-size: 1.2rem;
}

main {
  width: 100%;
  margin-top: 3rem;
  padding: 0.6rem;
}

section, article, details {
  width: 100%;
  margin: 0.6rem 0;
}

article h3 {
  font-size: 1.2rem;
}

#welcome h1 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
#welcome p:nth-of-type(n+2) {
  text-indent: 1rem;
}
#welcome p {
  font-size: 0.8rem;
  margin: 1rem 0;
}

details p {
  font-size: 0.8rem;
  text-indent: 1rem;
  margin: 0.6rem 0;
}

#skills h2 {
  font-size: 1.2rem;
  text-align: center;
  background-color: #fffce6;
  padding: 0.6rem 0;
}
#skills summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-left: 50%;
  transform: translate(-50%);
  background-color: #444444;
  color: #f8f8f8;
  cursor: pointer;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
}
#skills summary::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: #3e1a91;
  z-index: -1;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#skills summary {
  transition: transform 0.2s ease;
  transform: translate(-50%) rotate(0deg);
}

#skills summary.rotate-clockwise {
  transform: translate(-50%) rotate(45deg);
}

#skills summary.rotate-counterclockwise {
  transform: translate(-50%) rotate(0deg);
}

#img-perfil {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 0.2rem solid #3e1a91;
  float: left;
  margin-right: 0.8rem;
}

#btn-menu {
  position: absolute;
  opacity: 0;
}

label {
  cursor: pointer;
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
}

label span {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 30px;
  background-color: #f8f8f8;
  transition: 0.3s ease-in-out;
}

label span:nth-child(1) {
  top: 0;
}

label span:nth-child(2) {
  top: 8px;
}

label span:nth-child(3) {
  top: 16px;
}

#btn-menu:checked + label span:nth-child(1) {
  transform: rotate(-45deg);
  top: 8px;
}

#btn-menu:checked + label span:nth-child(2) {
  opacity: 0;
}

#btn-menu:checked + label span:nth-child(3) {
  transform: rotate(45deg);
  top: 8px;
}

.menu-items {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 60%;
  list-style-type: none;
  background-color: #444444;
  border-radius: 0 0 0 2rem;
}

#btn-menu:checked ~ .menu-items {
  display: block;
}

.menu-items li {
  display: block;
  margin: 20px 0px 20px 0px;
}

.menu-items li a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  padding: 2px 5px;
  cursor: pointer;
  color: #f8f8f8;
}

.menu-items li a:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  background-color: #444444;
}
footer h3 {
  font-size: 1.2rem;
  color: #f8f8f8;
}
footer ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
footer ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}
footer ul li a {
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.8rem 0;
  color: #f8f8f8;
}
footer p {
  font-size: 0.6rem;
  text-align: center;
  padding: 0.6rem;
  color: #f8f8f8;
}
footer img {
  width: 2rem;
  height: 2rem;
}

#sobre-mim h1 {
  font-size: 1rem;
}
#sobre-mim p {
  font-size: 0.8rem;
  text-indent: 1rem;
  padding: 0.6rem 0;
}

#portfolio h1 {
  font-size: 1.2rem;
}
#portfolio h2 {
  font-size: 1rem;
}
#portfolio p {
  font-size: 0.8rem;
  text-indent: 1rem;
  padding: 0.6rem 0;
}
#portfolio a {
  font-size: 0.8rem;
  padding: 0.6rem 0;
}

#contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contato h1 {
  font-size: 1.2rem;
}
#contato p {
  font-size: 1rem;
  background-color: #fffce6;
  padding: 0.8rem;
  margin: 1rem 0;
}

#contactForm {
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2rem;
}
#contactForm #nome,
#contactForm #email,
#contactForm #assunto {
  width: 96%;
  height: 2rem;
  margin: 0.4rem 0;
  padding: 0.2rem;
}
#contactForm #mensagem {
  width: 96%;
  min-height: 150px;
  margin: 0.4rem 0;
  padding: 0.2rem;
}
#contactForm #recaptcha {
  margin: 0.4rem 0;
}
#contactForm #button {
  width: 100px;
  height: 35px;
}
#contactForm #responseMessage {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2rem;
  font-size: 0.4rem;
}/*# sourceMappingURL=style.css.map */