* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-weight: 400;
  font-family: sans-serif;
}
:root {
  --Black: #0f0f0f;
  --Green: #157A6E;
  --Tomato: #FE4A49;
  --Pale-Dogwood: #EACDC2;
  --Magnolia: #ECE5F0;
}
html {
  width: 100%;
  height: 100vh;
}

body {
  background: var(--Black);
  color: var(--Magnolia);
}

h1 {
  color: var(--Tomato);
  font-size: 2rem;
  font-weight: 600;
}
h2 {
  color: var(--Magnolia);
  font-size: 1.5rem;
  font-weight: 500;
}
.text {
  color: var(--Tomato);
}
h3 {
  color: var(--Pale-Dogwood);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
p {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: justify;
  padding: 0.5rem 0;
}
span {
  color: var(--Magnolia);
  font-size: 3rem;
  font-weight: 500;
}
/* Estilização com display flex */

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}
#header-content {
  height: 80px;
  position: sticky;
  top: 0;
  width: 100%;
  justify-content: space-between;
  padding: 24px;
  background-color: var(--black-purple);
}
.menu li {
  display: inline;
  padding: 1rem;
}
.menu li a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--Tomato);
  font-weight: 600;
}
.menu li a:hover {
  color: var(--Redwood);
}

/* Sobre mim */
#about {
  flex-direction: column;
  margin: 2rem auto;
  width: 90%;
  align-items: center;
}
#conteudo {
  flex-direction: column;
  gap: 2rem;
}
.profile {
  box-shadow: 15px 0 0 10px #157A6E;
  margin: 30px;
  border-radius: 50%;
  width: 300px;
}

/* Video */
#video {
  flex-direction: column;
  margin: 2rem auto;
  width: 90%;
}

/* footer */
footer {
  background: var(--Tomato);
}
.redes-sociais {
  display: flex;
  justify-content: space-evenly;
  margin: 1rem 0 0 0;
  width: 320px;
}
.social-icon {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) 
          saturate(100%) 
          invert(79%) 
          sepia(33%) 
          saturate(145%) 
          hue-rotate(331deg) 
          brightness(99%) 
          contrast(96%)
}
.social-icon:hover {
  filter: brightness(0)
          saturate(100%) 
          invert(54%) 
          sepia(56%) 
          saturate(7011%) 
          hue-rotate(335deg) 
          brightness(106%) 
          contrast(99%);
}

/* Página contato */
#contact {
  flex-direction: row;
  gap: 2rem;
}
form {
  display: flex;
  flex-direction: column;
  width: 480px;
  margin: 2rem 0;
  padding: 1.5rem;
  border: none;
}
form label {
  font-size: 1rem;
  text-align: left;
  font-weight: 500;
}
form input, textarea {
  border: none;
  background: #272727;
  margin: 0.5rem 0 1rem;
  padding: 0.5rem;
  border-radius: .5rem;
  width: 100%;
  font-size: 1rem;
  color: var(--Magnolia);
  transition: all 0.3s ease;
}
textarea {
  resize: none;
  height: 5rem;
}
form span {
  margin: 0 0 0.5rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: red;
}
form button {
  text-align: center;
  padding: 0.75rem 2rem;
  background: var(--Tomato);
  border: 1px solid var(--Tomato);
  color: var(--Magnolia);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}
form button:hover {
  background: var(--Pale-Dogwood);
  border: 1px solid #EACDC2;
  color: var(--Tomato);
}

/* Mapa */
#mapa {
  width: 480px;
  flex-direction: column;
  gap: 3rem;
}

.endereco p {
  font-size: 1rem;
  text-align: justify;
  font-weight: 600;
}