:root {
  --bs-primary: #004990;
  --bs-secondary: #d0131a;
}

html,
body {
  height: 100vh;
}

html {
  overflow: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-image: url(../images/mobile-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.content {
  align-items: center;
}

.logo-img {
  content: url(../images/mobile-logo.png);
  max-width: 250px;
}


.inferior-logo {
  max-width: 100px;
}

a {
  color: #fff !important;
  border: 0;
  transition: all 0.1s;
  font-weight: 600;
  height: 52px;
  line-height: 52px !important;
}

.bg-curva {
  display: none;
}

a,
a:hover,
a:active,
a:visited {
  transition: opacity 1s;
}

a:hover,
a:active,
a:visited {
  opacity: 0.7;
}

a:active:focus,
a:visited:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: var(--bs-secondary);
}

@media screen and (min-width: 1024px) {
  body {
    background-image: url(../images/bg.png);
    background-size: cover;
    background-position: left;
  }

  .btn-primary {
    background-color: var(--bs-primary);
  }

  .logo-img {
    content: url(../images/logo.png);
    max-width: 360px;
  }

  .bg-curva {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    background-image: url(../images/curva.png);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  .content {
    align-items: start;
  }

  .buttons {
    margin-left: 40px;
  }


  .inferior-logo {
    content: url(../images/inferior-logo.png);
  }
}
