﻿@charset "UTF-8";
/* IMPORTADO DO BOOTSTRAP */
/* VARIÁVEIS E MIXINS */
/* MIXINS */
/* COMPONENTES */
/* V1 - AWESOME CHECK */
.ac {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 6px; }
  .ac > input {
    display: none; }
  .ac > span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: auto;
    font-weight: 500;
    font-size: 13px; }
  .ac:not(.ac-button):hover > input + span, .ac:not(.ac-button) > input:checked + span {
    font-weight: 600; }
  .ac.ac-inline {
    display: inline-block;
    margin-right: 10px;
    width: auto; }
  .ac.ac-full-width > span {
    width: 100%;
    text-align: center;
    justify-content: center; }
  .ac > span::before {
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
    display: inline-block;
    font-size: 120%;
    text-align: left;
    margin-left: 1px;
    vertical-align: -2px; }
  .ac.ac-lg:not(.ac-button) > span, .ac.ac-md:not(.ac-button) > span, .ac.ac-sm:not(.ac-button) > span {
    padding: 0; }
  .ac.ac-big-icon > span::before {
    font-size: 200%;
    margin-right: 5px;
    vertical-align: -5px; }
  .ac.ac-just-icon {
    display: inline-block;
    margin: 0; }
    .ac.ac-just-icon > span::before {
      margin-right: 0; }
  .ac.ac-button > span {
    padding: 6px 12px;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
    background-image: none;
    border: 1px solid;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .ac.ac-default > input + span::before {
    content: "\f00d"; }
  .ac.ac-default > input:checked + span::before {
    content: "\f00c"; }
  .ac.ac-check > input + span::before {
    content: "\f096"; }
  .ac.ac-check > input:checked + span::before {
    content: "\f046"; }
  .ac.ac-radio > input + span::before {
    content: "\f10c"; }
  .ac.ac-radio > input:checked + span::before {
    content: "\f192"; }
  .ac.ac-toggle > input + span::before {
    content: "\f204"; }
  .ac.ac-toggle > input:checked + span::before {
    content: "\f205"; }
  .ac.ac-view > input + span::before {
    content: "\f070"; }
  .ac.ac-view > input:checked + span::before {
    content: "\f06e"; }
  .ac.ac-plus > input + span::before {
    content: "\f096"; }
  .ac.ac-plus > input:checked + span::before {
    content: "\f0fe"; }
  .ac.ac-minus > input + span::before {
    content: "\f096"; }
  .ac.ac-minus > input:checked + span::before {
    content: "\f146"; }
  .ac.ac-select > input:checked + span::before {
    content: "\f101"; }
  .ac.ac-lg > span {
    padding: 8px 14px;
    font-size: 18px; }
  .ac.ac-md > span {
    padding: 7px 12px;
    font-size: 16px; }
  .ac.ac-sm > span {
    padding: 1px 5px 3px;
    font-size: 12px; }
  .ac.ac-primary:hover > span {
    color: #960038; }
    .ac.ac-primary:hover > span::before {
      color: #960038; }
  .ac.ac-primary > input:checked + span::before, .ac.ac-primary.alt > input:checked + span {
    color: #960038; }
  .ac.ac-success:hover > span {
    color: #1ab394; }
    .ac.ac-success:hover > span::before {
      color: #1ab394; }
  .ac.ac-success > input:checked + span::before, .ac.ac-success.alt > input:checked + span {
    color: #1ab394; }
  .ac.ac-info:hover > span {
    color: #23c6c8; }
    .ac.ac-info:hover > span::before {
      color: #23c6c8; }
  .ac.ac-info > input:checked + span::before, .ac.ac-info.alt > input:checked + span {
    color: #23c6c8; }
  .ac.ac-warning:hover > span {
    color: #f8ac59; }
    .ac.ac-warning:hover > span::before {
      color: #f8ac59; }
  .ac.ac-warning > input:checked + span::before, .ac.ac-warning.alt > input:checked + span {
    color: #f8ac59; }
  .ac.ac-danger:hover > span {
    color: #ED5565; }
    .ac.ac-danger:hover > span::before {
      color: #ED5565; }
  .ac.ac-danger > input:checked + span::before, .ac.ac-danger.alt > input:checked + span {
    color: #ED5565; }
  .ac.ac-button > span {
    color: #888;
    background-color: #FFF;
    border-color: #e7eaec; }
  .ac.ac-button:hover > span, .ac.ac-button:focus > span, .ac.ac-button:active > span {
    color: #888;
    background-color: #EEE;
    border-color: #ccc; }
  .ac.ac-button-primary > span {
    background-color: #960038;
    border-color: #960038;
    color: #FFFFFF; }
  .ac.ac-button-primary:hover > span, .ac.ac-button-primary:focus > span, .ac.ac-button-primary:active > span {
    background-color: #870032;
    border-color: #870032;
    color: #FFFFFF; }
  .ac.ac-button-success > span {
    background-color: #1ab394;
    border-color: #1ab394;
    color: #FFFFFF; }
  .ac.ac-button-success:hover > span, .ac.ac-button-success:focus > span, .ac.ac-button-success:active > span {
    background-color: #18a689;
    border-color: #18a689;
    color: #FFFFFF; }
  .ac.ac-button-info > span {
    background-color: #23c6c8;
    border-color: #23c6c8;
    color: #FFFFFF; }
  .ac.ac-button-info:hover > span, .ac.ac-button-info:focus > span, .ac.ac-button-info:active > span {
    background-color: #21b9bb;
    border-color: #21b9bb;
    color: #FFFFFF; }
  .ac.ac-button-warning > span {
    background-color: #f8ac59;
    border-color: #f8ac59;
    color: #FFFFFF; }
  .ac.ac-button-warning:hover > span, .ac.ac-button-warning:focus > span, .ac.ac-button-warning:active > span {
    background-color: #f7a54a;
    border-color: #f7a54a;
    color: #FFFFFF; }
  .ac.ac-button-danger > span {
    background-color: #ED5565;
    border-color: #ED5565;
    color: #FFFFFF; }
  .ac.ac-button-danger:hover > span, .ac.ac-button-danger:focus > span, .ac.ac-button-danger:active > span {
    background-color: #ec4758;
    border-color: #ec4758;
    color: #FFFFFF; }
  .ac.ac-button.outline > span {
    background-color: #FFF;
    border-color: #666;
    color: #666; }
  .ac.ac-button-primary.outline > span {
    border-color: #960038;
    color: #960038; }
  .ac.ac-button-primary.outline:hover > span, .ac.ac-button-primary.outline:focus > span, .ac.ac-button-primary.outline:active > span {
    background-color: #870032;
    border-color: #870032;
    color: #FFFFFF; }
  .ac.ac-button-primary.outline > input:checked + span {
    background-color: #960038;
    border-color: #960038;
    color: #FFFFFF; }
  .ac.ac-button-success.outline > span {
    border-color: #1ab394;
    color: #1ab394; }
  .ac.ac-button-success.outline:hover > span, .ac.ac-button-success.outline:focus > span, .ac.ac-button-success.outline:active > span {
    background-color: #18a689;
    border-color: #18a689;
    color: #FFFFFF; }
  .ac.ac-button-success.outline > input:checked + span {
    background-color: #1ab394;
    border-color: #1ab394;
    color: #FFFFFF; }
  .ac.ac-button-info.outline > span {
    border-color: #23c6c8;
    color: #23c6c8; }
  .ac.ac-button-info.outline:hover > span, .ac.ac-button-info.outline:focus > span, .ac.ac-button-info.outline:active > span {
    background-color: #21b9bb;
    border-color: #21b9bb;
    color: #FFFFFF; }
  .ac.ac-button-info.outline > input:checked + span {
    background-color: #23c6c8;
    border-color: #23c6c8;
    color: #FFFFFF; }
  .ac.ac-button-warning.outline > span {
    border-color: #f8ac59;
    color: #f8ac59; }
  .ac.ac-button-warning.outline:hover > span, .ac.ac-button-warning.outline:focus > span, .ac.ac-button-warning.outline:active > span {
    background-color: #f7a54a;
    border-color: #f7a54a;
    color: #FFFFFF; }
  .ac.ac-button-warning.outline > input:checked + span {
    background-color: #f8ac59;
    border-color: #f8ac59;
    color: #FFFFFF; }
  .ac.ac-button-danger.outline > span {
    border-color: #ED5565;
    color: #ED5565; }
  .ac.ac-button-danger.outline:hover > span, .ac.ac-button-danger.outline:focus > span, .ac.ac-button-danger.outline:active > span {
    background-color: #ec4758;
    border-color: #ec4758;
    color: #FFFFFF; }
  .ac.ac-button-danger.outline > input:checked + span {
    background-color: #ED5565;
    border-color: #ED5565;
    color: #FFFFFF; }
  .input-group-addon .ac {
    margin-top: 3px; }

/* CLASSES GENÉRICAS PARA USO RÁPIDO */
/* MISC */
.label-inline {
  width: initial; }

/* DISPLAYS */
.inline-block {
  display: inline-block; }

.table-cell {
  display: table-cell; }

.invisible {
  visibility: hidden; }

.flex {
  display: flex; }

.inline-flex {
  display: inline-flex; }

/* ALIGNMENT */
.align-center {
  display: block;
  margin: 0 auto; }

.m-l-auto {
  margin-left: auto; }

.m-r-auto {
  margin-right: auto; }

.valign-middle {
  vertical-align: middle !important; }

.make-it-fit {
  white-space: nowrap; }

.full-width {
  width: 100%; }

.margin-inner-elements-xxs > * {
  margin: 1px; }

.margin-inner-elements-xs > * {
  margin: 5px; }

.margin-inner-elements-sm > * {
  margin: 10px; }

.margin-inner-elements-md > * {
  margin: 15px; }

.margin-inner-elements-lg > * {
  margin: 20px; }

.margin-inner-elements-xl > * {
  margin: 25px; }

/* MINIMAL WIDTHS */
.w-25 {
  min-width: 25px; }

.w-50 {
  min-width: 50px; }

.w-75 {
  min-width: 75px; }

.w-100 {
  min-width: 100px; }

.w-125 {
  min-width: 125px; }

.w-250 {
  min-width: 250px; }

.w-full-width {
  min-width: 100%; }

/* MINIMAL HEIGHTS */
.h-25 {
  min-height: 25px; }

.h-50 {
  min-height: 50px; }

.h-75 {
  min-height: 75px; }

.h-100 {
  min-height: 100px; }

.h-125 {
  min-height: 125px; }

.h-250 {
  min-height: 250px; }

/* MAX WIDTHS */
.mw-25 {
  max-width: 25px; }

.mw-50 {
  max-width: 50px; }

.mw-75 {
  max-width: 75px; }

.mw-100 {
  max-width: 100px; }

.mw-125 {
  max-width: 125px; }

.mw-150 {
  max-width: 150px; }

.mw-200 {
  max-width: 200px; }

.mw-250 {
  max-width: 250px; }

.mw-300 {
  max-width: 300px; }

.mw-full-width {
  max-width: 100%; }

/* MAX HEIGHTS */
.mh-25 {
  max-height: 25px; }

.mh-50 {
  max-height: 50px; }

.mh-75 {
  max-height: 75px; }

.mh-100 {
  max-height: 100px; }

.mh-125 {
  max-height: 125px; }

.mh-150 {
  max-height: 150px; }

.mh-200 {
  max-height: 200px; }

.mh-250 {
  max-height: 250px; }

.mh-300 {
  max-height: 300px; }

/* OVERFLOWS */
.overflow-auto {
  overflow: auto; }

.overflow-hidden {
  overflow: hidden; }

.overflow-visible {
  overflow: visible; }

.overflow-y-auto {
  overflow-y: auto; }

.overflow-y-hidden {
  overflow-y: hidden; }

.overflow-y-visible {
  overflow-y: visible; }

.overflow-x-auto {
  overflow-x: auto; }

.overflow-x-hidden {
  overflow-x: hidden; }

.overflow-x-visible {
  overflow-x: visible; }

/* CURSORS */
.cursor-default {
  cursor: default; }

.cursor-help {
  cursor: help; }

.cursor-move {
  cursor: move; }

.cursor-not-allowed {
  cursor: not-allowed; }

.cursor-pointer {
  cursor: pointer; }

/* FOR TABLES */
@media screen and (min-width: 768px) {
  .table-responsive.table-short {
    max-height: 400px;
    overflow-y: auto; } }

.table-center > * > tr > * {
  text-align: center; }

.table-fit > * > tr > * {
  white-space: nowrap; }

.table-large > * > tr > * {
  padding-left: 16px !important;
  padding-right: 16px !important; }

.table > * > tr > .cell-fit {
  white-space: nowrap; }

.table > * > tr > .cell-stretch {
  width: 100%;
  text-align: left; }

.table > * > tr > .cell-stretch-2 {
  width: 50%;
  text-align: left; }

.table > * > tr > .cell-stretch-3 {
  width: 33%;
  text-align: left; }

.table > * > tr > .cell-stretch-4 {
  width: 25%;
  text-align: left; }

.table > * > tr > .cell-large {
  padding-left: 16px;
  padding-right: 16px; }

.table > * > tr > .cell-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }

.table > * > tr > .text-left {
  text-align: left; }

.table > * > tr > .text-right {
  text-align: right; }

.table > * > tr > .text-center {
  text-align: center; }

/* FUNCTIONS */
.no-shadow {
  -webkit-box-shadow: 0px 0px 0px transparent;
  -moz-box-shadow: 0px 0px 0px transparent;
  -ms-box-shadow: 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px transparent; }

.no-radius {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px; }

.no-margins {
  margin: 0; }

/* CONFIGURAÇÃO DE LAYOUT */
body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #666;
  min-height: 100vh;
  padding: 1rem 0;
  background-image: url(../image/background.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden; }
  body .container {
    background-color: white;
    border-radius: 5px;
    padding-bottom: 220px;
    margin-top: 30px; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      body .container {
        padding-bottom: 110px; } }
    @media (min-width: 576px) and (max-width: 767.98px) {
      body .container {
        padding-bottom: 90px; } }
    @media (max-width: 575.98px) {
      body .container {
        padding-bottom: 70px;
        margin: 50px 0; } }
    body .container .logo {
      margin-top: -70px; }
    body .container p {
      line-height: 180%;
      font-size: 20px;
      font-weight: 300;
      margin-bottom: 0; }
      body .container p.title {
        font-size: 28px;
        font-weight: 400;
        text-transform: uppercase;
        color: #960038; }
    body .container hr {
      border: 0;
      height: 1px;
      margin-top: 2rem;
      margin-bottom: 2rem;
      background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15), transparent); }
    body .container .info-item {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1rem; }
      body .container .info-item img {
        margin-bottom: 5px; }
      body .container .info-item span, body .container .info-item strong {
        display: block;
        width: 100%; }
      body .container .info-item span {
        text-transform: uppercase;
        font-weight: 300; }
      body .container .info-item strong {
        font-weight: 400;
        color: #960038; }
    body .container .img-item {
      min-height: 1px; }
      body .container .img-item > img {
        position: absolute;
        left: 0; }
      body .container .img-item:nth-child(1) > img {
        margin-left: -150px; }
        @media (min-width: 768px) and (max-width: 991.98px) {
          body .container .img-item:nth-child(1) > img {
            width: 300px;
            margin-left: -80px;
            margin-top: -10px; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          body .container .img-item:nth-child(1) > img {
            width: 200px;
            margin-left: -40px;
            margin-top: -10px; } }
        @media (max-width: 575.98px) {
          body .container .img-item:nth-child(1) > img {
            width: 100px;
            margin-left: 10px;
            margin-top: 30px; } }
      body .container .img-item:nth-child(2) > img {
        margin-top: 30px; }
        @media (min-width: 768px) and (max-width: 991.98px) {
          body .container .img-item:nth-child(2) > img {
            width: 200px;
            margin-top: 0px; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          body .container .img-item:nth-child(2) > img {
            width: 150px;
            margin-top: 0px; } }
        @media (max-width: 575.98px) {
          body .container .img-item:nth-child(2) > img {
            width: 80px;
            margin-top: 30px; } }
      body .container .img-item:nth-child(3) > img {
        margin-top: 60px;
        margin-left: -40px; }
        @media (min-width: 768px) and (max-width: 991.98px) {
          body .container .img-item:nth-child(3) > img {
            width: 300px;
            margin-top: 30px;
            margin-left: 0px; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          body .container .img-item:nth-child(3) > img {
            width: 200px;
            margin-top: 20px;
            margin-left: -10px; } }
        @media (max-width: 575.98px) {
          body .container .img-item:nth-child(3) > img {
            width: 120px;
            margin-top: 40px;
            margin-left: -10px; } }
