@import url('https://fonts.googleapis.com/css2?family=Exo:wght@200&display=swap');

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

body {
  font-size: 62.5%;
  color: black;
  background-color: white;
}

/* --- MENU --- */
ul.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  font-size: 18px;
}

ul.menu li {
  float: none;
}

.menu-right {
  display: flex;
  gap: 20px;
}

li a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 14px 16px;
}

li a:hover {
  color: black;
  font-weight: bold;
}

a:link {
  color: black;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/* --- CONTEÚDO --- */
.sobre-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;               /* distância entre foto e texto */
  padding: 80px 0;         /* espaço vertical */
}

/* FOTO */
.foto img {
  width: 220px;            /* um pouco menor */
  height: auto;
  border-radius: 5px;
  display: block;
}

.creditos {
  text-align: center;
  font-size: 0.7rem;
  margin-top: 5px;
}

/* TEXTO */
.textosobre {
  max-width: 400px;        /* menos largo */
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: left;
}

/* LINKS DO CURRÍCULO E CONTATOS */
.curriculo {
  margin-top: 20px;
}

.contato {
  margin-top: 20px;
  font-size: 0.9rem;
}

.contato a {
  color: black;
  text-decoration: none;
}

.contato a:hover {
  font-weight: bold;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.7rem;
}
