/* Fonts
-------------------------------------------------- */

@font-face {
  font-family: 'HelveticaNowDisplay';
  src: url('../fonts/HelveticaNowDisplay-Light.woff2') format('woff2'),
      url('../fonts/HelveticaNowDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNowDisplay';
  src: url('../fonts/HelveticaNowDisplay-Regular.woff2') format('woff2'),
      url('../fonts/HelveticaNowDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNowDisplay';
  src: url('../fonts/HelveticaNowDisplay-Medium.woff2') format('woff2'),
      url('../fonts/HelveticaNowDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNowDisplay';
  src: url('../fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
      url('../fonts/HelveticaNowDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Auto Rich';
  src: url('../fonts/AutoRich.woff2') format('woff2'),
      url('../fonts/AutoRich.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Default
-------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'HelveticaNowDisplay', 'Open Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #000;
}

p {
  line-height: 22px;
}

/* Forms
-------------------------------------------------- */

.form-field {
  width: 100%;
  height: 40px;
  padding: 0;
  color: #000;
  background-color: transparent;
  border-bottom: 1px #000 solid;
}

textarea.form-field {
  padding: 10px 0;
  height: 170px;
}

/* Button
-------------------------------------------------- */

.button {
  height: 60px;
  padding: 0 40px 4px 40px;
  background-color: #000;
  font-family: 'HelveticaNowDisplay', 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
  box-shadow: inset 0 0 0 2px #000;
}

.button:hover {
  background-color: #fff;
  color: #000;
  
}

.button-full {
  width: 100%;
}

/* Image
-------------------------------------------------- */

.image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-center {
  margin: 0 auto;
}

/* Selection
-------------------------------------------------- */

::selection {
  background: #fff;
  color: #000;
}

::-moz-selection {
  background: #fff;
  color: #000;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Extras
-------------------------------------------------- */

.logo svg {
  width: 80px;
  height: 80px;
  display: block;
}

.logo svg path {
  fill: #fff;
}

.slogan {
  font-family: 'Auto Rich';
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
}

@media (min-width: 1000px) {
  .slogan {
    font-size: 80px;
    line-height: 80px;
  }
}

/* Table
-------------------------------------------------- */

.table-title {
  font-size: 52px;
  font-weight: 600;
}

.table {
  width: 100%;
}

.table tr {
  border-bottom: 2px #fff solid;
}

.table tr:first-child {
  border-top: 10px #fff solid;
}

.table tr td {
  padding: 20px 0;
}

.table tr td:last-child {
  text-align: right;
  letter-spacing: 1px;
}

.table small {
  font-size: 13px;
}

@media (min-width: 1000px) {
  .table-title {
    font-size: 100px;
  }

  .table {
    font-size: 28px;
  }

  .table small {
    font-size: 16px;
  }
}

/* Table
-------------------------------------------------- */

.pix-title {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.pix-button {
  background-color: #fff;
  color: #000;
  height: 50px;
  border-radius: 8px;
  font-family: 'HelveticaNowDisplay';
  padding: 0 40px;
  font-size: 16px;
  font-weight: 600;
}

.pix-alert {
  display: none;
  margin-top: 10px;
  display: none;
}