@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.container-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0px;
}
.background-container {
  text-align: center;
  padding: 0;
  margin: 0;
}
.background-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.content-box {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0px 24px;
}
.content-box img {
  width: 338px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 82px;
}
.content-box h1 {
  font-size: 36px;
  color: #92b6e7;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.content-box .paragraph-1 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  margin-bottom: 82px;
}
.content-box .paragraph-2 {
  font-size: 20px;
  color: #92b6e7;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}
.content-box .sociais {
  margin-top: 160px;
}
.content-box .sociais a {
  background-color: #fff;
  color: #1d2846;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 4px;
  transition: all 0.2s ease-in-out;
}
.content-box .sociais a:hover {
  background-color: #1d2846;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.content-box .sociais a i {
  color: #1d2846;
  font-size: 18px;
}
.content-box .sociais a:hover i {
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.content-box .sociais a:hover svg path {
  fill: #fff;
}

/* Responsividade */
@media (max-width: 575px) {
  .content-box img {
    width: 60%;
    height: auto;
    max-width: 100%;
  }
  .content-box h1 {
    font-size: 28px;
  }
  .content-box .paragraph-1,
  .content-box .paragraph-2 {
    font-size: 17px;
  }
}
