
@import url("../../user_interface_standards/styles/colors/qmd_cores.css");
@import url("../../user_interface_standards/styles/fonts/qmd_fonte.css");

:root{
  --largura-tela-peq: 90%;
  --largura-tela-gde: 90%;
  --largura-max: 1176px;
}

body.preload { overflow: hidden; }

#preloader {
  position: fixed; 
  inset: 0; 
  z-index: 9999;
  display: grid; 
  place-items: center;
  background: #fff url("../img/spinner.gif") center center no-repeat;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--fonts);
  font-size: var(--font-size-base);
  color: var(--neutral-gray-1000);
  background-color: var(--neutral-gray-0);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: justify;
}

.page-title,
.info__title {
  display: none;
}

abbr {
  text-decoration: none;
  text-transform: uppercase;
}

h1 {
  color: var(--neutral-gray-800);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-3xl);
  line-height: 1.2;
  margin: 1.25rem 0 2rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  margin: 0.5rem 0;
}

iframe {
  border: 0;
  border-radius: 1rem;
}

.header__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--largura-max);
  margin: 0 auto;
  width: var(--largura-tela-peq);
}
.header__logo-container img {
  max-height: 3rem;
  margin-top: 0.5rem;
}

.main-content--large {
  margin: 0;
  padding: 0;
  width: 100%;
}
.breadcrumbs,
.main-content--large section > div {
  margin: 0 auto;
  max-width: var(--largura-max);
  width: var(--largura-tela-peq);
}
.main-content--large section:nth-of-type(even) {
  background-color: var(--neutral-gray-0);
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--largura-max);
  margin: 0 auto;
  width: var(--largura-tela-peq);
}

.breadcrumbs-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  padding-bottom: 12px;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li::after {
  content: ">";
  color: var(--neutral-gray-400);
  padding: 0 0.5rem;
  font-size: var(--font-size-xs);
}
.breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs li a {
  color: var(--primary-color-500);
  text-decoration: none;
  position: relative;
  top: 1px;
  font-weight: var(--font-weight-medium);
}
.breadcrumbs li a:hover {
  background-color: var(--neutral-gray-100);
}
#breadcrumbs-current {
  font-weight: var(--font-weight-bold);
  position: relative;
  top: 1px;
}

.breadcrumbs a:focus, a:hover {
  outline: none;
  box-shadow: none;
}

.section-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: var(--font-size-3xl);
    padding: 1.25rem 0 1.25rem;
    margin: 0 0 1.25rem;
}

.tile-start-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0.75rem;
  width: 100%;
  gap: 12px;
}

.tile-start-section::before,
.tile-start-section::after {
  content:"";
  flex:1;
  height:1px;
  background: var(--neutral-gray-800);
}

.tile-start-section h1 {
  color: var(--neutral-gray-700);
  font-size: clamp(var(--font-size-base), 3vw, var(--font-size-2xl));
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-start-section h1::before {
  font-family: "Font Awesome 5 Free";
  content: "\F06D";
  display: inline-block;
  font-weight: 900;
  font-size: clamp(var(--font-size-base), 3vw, var(--font-size-2xl));
  margin-right: 10px;
}

.tile-end-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 2rem;
}
.tile-end-section::before,
.tile-end-section::after {
  content:"";
  flex:1;
  height:1px;
  background:var(--neutral-gray-500);
}

.tile-end-section i {
  color: var(--neutral-gray-500);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
}
.tile-end-section h2 {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 0 1rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.tile-end-section h3 {
  color: #333;
  font-size: var(--font-size-2xs);
  font-weight: var(--font-weight-bold);
  margin: 0;
  white-space: nowrap;
}
.tile-end-section h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\F06D";
  display: inline-block;
  font-weight: 500;
  color: var(--neutral-gray-1000);
  font-size: var(--font-size-sm);
  margin-right: 5px;
}

.info,
.back-home {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}
.info i,
.back-home i {
  color: var(--neutral-gray-300);
  font-size: var(--font-size-3xl);
  margin: 0 8px 0 0;
}

.back-home a {
  color: var(--neutral-gray-0);
  text-decoration: none;
}
.back-home a:hover {
  text-decoration: underline dotted var(--neutral-gray-0);
}

.container-painel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

