/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CORPO */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* CABEÇALHO */
 #cabecalho {
  background-color: #111;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* MENU */
#menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}

#menu a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#menu a:hover {
  color: #00adb5;
}

/* CONTEÚDO PRINCIPAL */
main {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

/* SEÇÕES */
section {
  padding: 4rem 0;
  border-bottom: 1px solid #ddd;
}

/* TÍTULOS */
section h1,
section h2 {
  color: #00adb5;
  margin-bottom: 1rem;
}

section h1 {
  font-size: 2rem;
}

section h2 {
  font-size: 1.5rem;
}

/* PARÁGRAFOS E LISTAS */
section p,
section li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* LISTA */
section ul {
  padding-left: 1.5rem;
}

/* CARDS DE PROJETO (placeholder) */
#portifolio > div {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#portifolio > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* RODAPÉ */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #00adb5;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

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


#content404 {
  width: 100%;
  height: 77.2dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}



div.formulario{
  width: 100%;
  max-width: 600px;
  height: 77dvh;
  margin: auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.formulario h1 {
  color: #00adb5;
  margin-bottom: 1rem;
}

.formulario form{
  align-items: center;
  display: flex;
  flex-direction: column;
}

.formulario label {
  width: 100%;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.formulario input,
.formulario textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.formulario button {
  background-color: #00adb5;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}