/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
    .container {
      width: 100vw;
      height: 100vh;
      position: relative;
    }
body {
  font-family: 'Georgia', serif;
  background: #fff;
  color: #111;
}

/* Menu Superior */
.topbar {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.logo .circle {
  width: 15px;
  height: 15px;
  background: #8bc34a;
  border-radius: 50%;
  display: inline-block;
}

.logo .name {
  font-weight: bold;
  margin-left: 20px;
}

.logo .role {
  margin-left: 25px;
  font-weight: normal;
}

.topbar nav {
  font-size: 14px;
}

.topbar nav a {
  text-decoration: none;
  color: #000;
}

/* Container Principal */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  height: 80vh;
}

/* Lado Esquerdo */
.left-side {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.yellow {
  width: 700px;
  height: 700px;
  background: #ffd966;
  bottom: -600px;
  left: -250px;
  z-index: -2;
}

.blue {
  width: 700px;
  height: 700px;
  background: #b3c9f7;
  bottom: -750px;
  right: -1050px;
  z-index: -2;
}

.photo {
  width: 400px;
  height: 400px;
  background: #e5e5e5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Lado Direito */
.right-side {
  flex: 1;
  padding-left: 60px;
}

.right-side h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.right-side p {
  margin-bottom: 10px;
  font-size: 16px;
}

.right-side strong {
  font-weight: bold;
}