:root {
  --neutral-900: #2B2B2B;
  --neutral-500: #595959;
  --neutral-400: #9B9B9B;
  --neutral-300: #BFBFBF;
  --neutral-200: #E6E6E6;
  --neutral-100: #F7F7F7;
  --neutral-50: #FFFFFF;

  --primary-main: #FF4086;
  --primary-dark: #B02C5C;
  --secondary-main: #368CF5;
  --secondary-dark: #235CA1;
  --tertiary-main: #272976;
  --tertiary-dark: #1A1C5E;

  --green-dark: #00923F;
  --green-light: #7ABC30;
  --yellow-light: #FFCD00;
  --yellow-dark: #FB8F00;
  --red-light: #F44910;
  --red-dark: #C02220;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body,
input,
textarea {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--neutral-900);
}

/* Header */
header {
  position: relative;
}

header nav.nav-extended {
  height: 7rem;
}

header nav.nav-extended .nav-wrapper {
  display: flex;
  align-items: center;

  padding: 0 1rem;

  height: 100%;
}

nav.nav-extended .brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

nav.nav-extended {
  z-index: 20;

  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.174);
}

nav.nav-extended a.sidenav-trigger {
  position: absolute;
  right: 0;
}

ul.mutual-tabs {
  height: 100%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  position: absolute;
  right: 1rem;
}

ul.mutual-tabs.tabs-light li a {
  color: var(--neutral-50);
}

li.mutual-tab {
  height: 100%;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

li.mutual-tab a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  padding: 0 1rem;
}

li.mutual-tab.active a {
  font-weight: 700;

  border-bottom-color: var(--primary-main);
}

li.mutual-tab:not(.active) a:hover {
  background: none !important;
  border-bottom-color: var(--primary-main);

  transition: border 0.3;
}

.tabs .tab a {
  text-transform: none;
  color: var(--neutral-900);
}

.tabs .tab a:focus,
.tabs .tab a:focus.active {
  background: rgba(255, 64, 134, 0.2);
}

.tabs .tab a.active {
  font-weight: 700;
}

.tabs .tab a:hover,
.tabs .tab a.active {
  color: var(--primary-main);
}

.tabs li.indicator {
  height: 4px;
  background-color: var(--primary-main);
}

.sidenav {
  background-color: var(--tertiary-main);
  display: grid;
  align-items: end;
  padding-bottom: 5.5rem;
}

.sidenav>li>a.mutual-btn {
  width: calc(100% - 2rem);
  margin: 0 1rem;
  color: white;
}

.sidenav>li>a.mutual-btn:hover {
  background-color: var(--primary-dark);

  transition: background-color 0.3;
}

/* Content */
.section-content {
  display: flex;
  flex-direction: column;

  padding: 0rem 1rem;

  align-self: stretch;
}


/* Footer */
footer {
  background-color: var(--neutral-100);

  display: flex;
  width: 100%;

  padding: 4rem 0;
}

footer .section-content {
  gap: 4rem;
}

#site-map {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

#site-map>div>h2 {
  font-size: 1.25rem;
  font-weight: 700;

  margin-bottom: 0.5rem;
}

#site-map>div>div {
  display: flex;
  flex-direction: column;
}

#site-map>div>div a:hover,
#site-map>div>div a.active {
  color: var(--primary-main);
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-trigger::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

#warnings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;

  padding: 1.5rem 0;

  color: var(--neutral-500);
  font-size: 0.875rem;

  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

#warnings span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#warnings span i.material-icons {
  display: none;
}

#bacen {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.5rem;

  font-size: 0.875rem;
  color: var(--neutral-500);
  text-align: justify;
}

#bacen p {
  width: 100%;
}

ul.dropdown-content {
  width: fit-content;
  height: fit-content;

  border-radius: 0 0 8px 8px;
}

ul.dropdown-content li {
  min-height: 0;
}

ul.dropdown-content li a {
  color: var(--neutral-900);
  padding: 0.25rem 1.5rem;
}

/* Button */
.mutual-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  background: var(--primary-main);
  color: var(--neutral-50);
  box-shadow: none !important;

  padding: 1rem 1.5rem;
  border-radius: 8px;
  gap: 0.5rem;
  width: fit-content;
  min-width: 12.5rem;

  font-size: 1rem;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;

  cursor: pointer;
}

.mutual-btn-secondary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  background: var(--secondary-main);
  color: var(--neutral-50);

  padding: 1rem 1.5rem;
  border-radius: 8px;
  gap: 0.5rem;
  width: fit-content;
  min-width: 12.5rem;

  font-size: 1rem;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;

  cursor: pointer;
}

.mutual-btn-skeleton {
  height: calc(1rem + 1rem + 1.25rem + 0.1875rem);
  border-radius: 8px;
  min-width: 12.5rem;
}

.mutual-btn:hover {
  background-color: var(--primary-dark);

  transition: background-color 0.3;
}

.mutual-btn-secondary:hover {
  background-color: var(--secondary-dark);

  transition: background-color 0.3;
}

.mutual-btn-small {
  min-width: 9.25rem;
  padding: 0.5rem 1rem;

  font-size: 0.875rem;
}

.full-width {
  width: 100%;
}

/* Elevation */

.level-1 {
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.08);
}

.level-2 {
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

.level-3 {
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.08);
}

.level-4 {
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.08);
}

.level-5 {
  box-shadow: 8px 8px 32px 0px rgba(0, 0, 0, 0.08);
}

.level-6 {
  box-shadow: 16px 16px 48px 0px rgba(0, 0, 0, 0.08);
}

/* Backgrounds */
.bg-primary {
  background: var(--primary-main);
}

.bg-primary-dark {
  background: var(--primary-dark);
}

.bg-secondary {
  background: var(--secondary-main);
}

.bg-secondary-dark {
  background: var(--secondary-dark);
}

.bg-tertiary {
  background: var(--tertiary-main);
}

.bg-tertiary-dark {
  background: var(--tertiary-dark);
}

/* Display */
.hide {
  display: none !important;
}

/* Warning Popup */

.warning-popup {
  position: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;

  padding: 1rem 1rem 2rem;
  bottom: 0px;
  z-index: 99;
  gap: 0.5rem;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--neutral-50);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px 8px 0 0;
  /* width: 100vw; */
  /* display: none; Para escondê-lo inicialmente */
}

.warning-popup div.content {
  text-align: center;
  font-size: 0.875rem;
}

.warning-popup div.content a {
  text-decoration: underline;
  color: var(--secondary-main);
}

.warning-popup div.close-btn-container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.warning-popup button.close-warning {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warning-popup button.close-warning:hover,
.warning-popup button.close-warning:focus {
  background: var(--red-dark);
}

.modal h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@keyframes loading {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (min-width: 640px) {
  html {
    font-size: 16px;
  }
}

/* md */
@media (min-width: 768px) {}

@media (min-width: 993px) {
  header nav.nav-extended {
    height: 8rem;
  }

  ul.mutual-tabs {
    display: flex;
  }
}

/* lg */
@media (min-width: 1024px) {
  #warnings {
    flex-direction: row;
  }

  #warnings span i.material-icons {
    display: inline-block;
  }

  #bacen {
    align-items: flex-start;
    flex-direction: row;
  }

  .warning-popup {
    width: 65vw;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
  }

  .warning-popup div.close-btn-container {
    width: auto;
  }
}

/* xl */
@media (min-width: 1280px) {}

/* 2xl */
@media (min-width: 1536px) {}