* {
  font-family: 'Rubik', sans-serif;
  font-display: optional;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

:root {
  --box-shadow-padrao: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  --box-shadow-direita: 4px 0 4px 0 rgba(0, 0, 0, 0.25);
  --box-shadow-esquerda: -4px 0 4px 0 rgba(0, 0, 0, 0.25);
  --box-shadow-baixo: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

  --transition-padrao: all .1s ease-in-out;
}

.IG_AppPublicContainer {
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(3rem, 12vw, 12rem);
  padding-right: clamp(3rem, 12vw, 12rem);
  box-sizing: border-box;
  overflow-x: hidden;
}

.IG_Card {
  position: relative;
  background-color: #fff;
  box-shadow: var(--box-shadow-padrao);
  border-radius: .5rem;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.IG_Button,
.IG_ButtonRound {
  font-weight: bold;
  transition: var(--transition-padrao);
  border: none;
  outline: none;
  text-align: center;
  width: fit-content;
  display: flex;
  gap: .25rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.IG_Button {
  padding: .75rem;
  border-radius: .25rem;
  min-height: 2.5rem;
  height: 2.5rem;
}

.IG_ButtonRound {
  padding: .5rem;
  border-radius: 5rem;
  min-height: 1.75rem;
  height: 1.75rem;
}

.IG_Button:hover,
.IG_ButtonRound:hover {
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.IG_Button:active,
.IG_ButtonRound:active {
  box-shadow: none;
  transform: translateY(0);
}

.IG_PageTitle {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.75rem;
}

.IG_Title {
  font-size: 1.5rem;
  font-weight: bold;
}

.IG_Subtitle {
  font-size: .75rem;
  font-weight: normal;
}

.IG_TabsContainer {
  display: flex;
  gap: 1rem;
  border-bottom: .25rem var(--cor-verde) solid;
  overflow: hidden;
}

.IG_Tab {
  padding: .5rem;
  border-radius: .5rem .5rem 0 0;
  cursor: pointer;
  border: none;
  box-shadow: var(--box-shadow-direita);
  background-color: #ccc;
  opacity: .75;
  transition: background-color 0.25s ease-in-out;
}

.IG_TabActive {
  font-weight: bold;
  background-color: var(--cor-verde);
  color: #fff;
  opacity: 1;
}

IG_Highlight {
  color: var(--cor-dourada);
  font-weight: bold;
}

IG_SeparatorH {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

IG_SeparatorH::after {
  content: "";
  width: 5rem;
  height: .25rem;
  background-color: var(--cor-laranja);
  display: block;
}

IG_SeparatorV {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 2rem;
}

IG_SeparatorV::after {
  content: "";
  width: .25rem;
  height: 5rem;
  background-color: var(--cor-laranja);
  display: block;
}

.IG_FormInput {
  width: 100%;
  padding: .75rem;
  border: none;
  border-bottom: 2px solid var(--cor-cinza);
  border-radius: .25rem .25rem 0 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  transition: var(--transition-padrao);
}

select.IG_FormInput {
  cursor: pointer;
}

.IG_FormInput:hover,
.IG_FormInput:focus {
  border-bottom-color: var(--cor-laranja);
  background-color: var(--cor-cinza-clear);
}

.IG_WhiteHoverText:hover {
  color: var(--cor-branca) !important;
}

@media (max-width: 1400px) {        
  .IG_AppPublicContainer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 768px) {        
  .IG_AppPublicContainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}