:root {
  --cor-comunicacao: #ffa351;
  --cor-engenharia: #1c1c1c;
  --branco: #ffffff;
  --preto: #000000;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--preto);
}

.container {
  display: flex;
  height: 100vh;
}

.side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.4s ease-in-out;
  text-decoration: none;
  color: var(--branco);
}

.side h1 {
  font-size: 2rem;
  z-index: 2;
  transition: transform 0.3s;
}

.marketing {
  background-color: var(--cor-comunicacao);
  color: #000;
}

.engenharia {
  background-color: var(--cor-engenharia);
}

.side:hover {
  flex: 1.3;
}

.side:hover h1 {
  transform: scale(1.1);
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: floatIn 1.2s ease forwards;
}

.center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatIn {
  from {
    transform: translate(-50%, -30%) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #111;
  padding: 10px;
  font-size: 0.9rem;
  color: var(--branco);
}

footer .social a {
  color: var(--cor-comunicacao);
  margin: 0 10px;
  font-size: 1.2rem;
  text-decoration: none;
}

footer .social a:hover {
  color: #ff7f00;
}

body {
  font-family: 'Open Sans', sans-serif;
}

h1,
h2 {
  font-family: 'Montserrat', sans-serif;
}

body {
  font-size: 16px;
  /* base */
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
  line-height: 1.6;
  font-size: 1rem;
}