/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Courier New", monospace;
  height: 100vh;
  display: flex;
}

.container {
  display: flex;
  width: 100%;
}

/* Coluna Esquerda */
.left-side {
  width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding: 30px;
}

.menu {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
}

.intro {
  margin-top: 200px;
  margin-left: 75px;
}

.intro h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
}

.intro .nome {
  font-weight: bold;
}

.profissao {
  font-size: 20px;
  margin-bottom: 30px;
}

.info {
  font-size: 14px;
  line-height: 1.6;
}

/* Coluna Direita */
.right-side {
  width: 50%;
  background: #9eaf77;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.right-menu {
  justify-content: flex-end;
  width: 100%;
  padding: 30px;
}

.foto {
  margin-top: 100px;
}

.foto img {
  width: 280px;
  height: auto;
  object-fit: cover;
}
