/* Fonte e reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9fb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header azul*/
header {
  background: #1e2a38;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #00c2ff;
}

.submenu {
  display: none;
  position: absolute;
  background: #fff;
  padding: 0.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.menu li:hover .submenu {
  display: block;
}

.submenu a {
  color: #333;
  display: block;
  padding: 0.3rem 0.6rem;
}

.submenu a:hover {
  background: #f0f0f0;
  border-radius: 4px;
}

/* Botão CV */
.btn {
  background: #00c2ff;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #009ed1;
}

/* Painel Topo */
.top-panel {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}

.foto img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.instituicao h2 {
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.contacts a {
  color: #1e2a38;
  text-decoration: none;
}

.contacts a:hover {
  text-decoration: underline;
}


form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

form input, form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #0077b6;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    cursor: pointer;
}





/* Painel Inferior */
.bottom-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.research-home h2 {
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.links-home h3 {
  margin-bottom: 0.8rem;
  color: #1e2a38;
}

.links-home ul {
  list-style: none;
}

.links-home li {
  margin: 0.4rem 0;
}

.links-home a {
  color: #0077b6;
  text-decoration: none;
  transition: 0.3s;
}

.links-home a:hover {
  color: #00c2ff;
}




.positions {
  list-style-type: none;
  padding-left: 0;
  margin: 1rem 0 2rem;
}

.positions li {
  margin-bottom: 0.8rem;
  line-height: 1.0;
  position: relative;
  padding-left: 1.4rem;
}

.positions li::before {
  content: "▸";  /* marcador em forma de seta */
  color: #00c2ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.positions a {
  color: #0077b6;        /* igual ao das academic networks */
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.positions a:hover {
  color: #00c2ff;
  text-decoration: underline;
}



.links-normais a {
  color: #0077b6;        /* igual ao das academic networks */
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.links-normais a:hover {
  color: #00c2ff;
  text-decoration: underline;
}


/* Footer */
footer {
  background: #1e2a38;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #00c2ff;
  text-decoration: none;
}

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

/* garante que o footer esteja sempre encontado no fundo mesmo de o conteudo é pequeno */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
