@font-face {
  font-family: edenred;
  src: url("assets/fonts/edenred.otf") format("opentype");
}

:root {
  --pink-primary: #e80e85;
  --pink-secondary: #C23184;
  --purple-dark: #B28EB8;
  --purple-primary: #903e87;
  --purple-secondary: #844F90;
  --white: #fff;
}


* {
  margin: 0;
  padding: 0;

}

body {
  font-family: 'Edenred', sans-serif;

  width: 100%;
  height: 100vh;

  background: linear-gradient(90deg, #711CFF 22%, #B32490 165%);
  color: var(--white);
}


.cont-header {
  display: flex;
  justify-content: center;
}

.eclipse-logo {
  display: flex;
  justify-content: center;
}

.eclipse-logo img {
  width: 350px;
}

.content-logo {
  top: 42px;
  text-align: center;
  position: absolute;
}


.content-logo .logo {
  width: 250px;
  text-align: center;
  margin-top: -35px;
}

section {
  padding: 35px 100px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  position: relative;
}

.content-line {
  display: none;
}

.first-line {
  position: relative;
  top: 298px;
}

.content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid;
  padding-top: 15px;
  flex-wrap: wrap;
}

.content-center .title-links {
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 35px;
  padding-right: 35px;
}


.app img {
  position: relative;
  left: 114px;
  width: 12rem;
  z-index: 10;
}


.position-img {
  width: 100%;
  position: relative;
  bottom: 309px;
}


.cont-redes-sociais {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  section {
    padding: 15px 20px;
  }
}