/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  
  /*===== Colores =====*/
  --first-color: #77193e;
  --dark-color: #ffffff; /*alteração*/
  --dark-color-alt: #282B3A;
  --white-color: #230202;

  /*===== Fuente y tipografia =====*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*===== z index =====*/
  --z-fixed: 100;

  --toast-fixed-color: #222222;
  --toast-fixed-color-text: #054488;
}

@media screen and (min-width: 768px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*===== BASE =====*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 360%;
  height: auto;
}

.bd-grid {
  max-width: 1024px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 1.5rem;
  background-color: var(--dark-color);
  z-index: var(--z-fixed);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  color: var(--white-color);
  width: -75px;
}

.header__toggle {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}

/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--dark-color);
    color: var(--white-color);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.nav__content {
  height: 100%;
  -ms-grid-rows: max-content 1fr max-content;
      grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
      grid-template-rows: max-content 1fr max-content;
  row-gap: 2rem;
}

.nav__close {
  position: absolute;
  right: 1.5rem;
  font-size: 1.3rem;
  padding: .25rem;
  background-color: var(--dark-color-alt);
  border-radius: 50%;
  cursor: pointer;
}

.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: .25rem;
  margin-bottom: .8rem;
  width: 56px;
  height: 56px;
  /*background-color: var(--first-color);*/ /*Cor do Fundo da Logo*/
  border-radius: 50%;
  overflow: hidden;
}

.nav__img img {
/*  width: 46px;*/
  width: 90px;  
}

.nav__name {
  display: block;
  color: var(--white-color);
}

.nav__menu 
{
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: -55px;

}

.nav__item 
{
  margin: 2.5rem 0;
}

.nav__link {
  color: var(--white-color);
}

.nav__social 
{
  padding-top: .5rem;
  margin-top: -75px;
}

.nav__social-icon 
{
  font-size: 1.2rem;
  color: var(--white-color);
  margin-right: 1rem;
}

.nav__social-icon:hover 
{
  color: var(--first-color);
}

/*Aparecer menu*/
.show 
{
  left: 0;
}

/*Active menu*/
.active 
{
  color: var(--first-color);
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 768px) 
{
  body 
  {
    margin: 0;
  }
  .header 
  {
    height: calc(var(--header-height) + 1rem);
  }
  .header__logo, .header__toggle 
  {
    display: none;
  }
  .nav 
  {
    width: 100%;
  }

  .nav__close, .nav__profesion 
  {
    display: none;
  }
  .nav__perfil 
  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__img 
  {
    width: 32px;
    height: 32px;
    margin-right: .5rem;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__img img 
  {
    width: 170px;
  }
  .nav__list 
  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__item 
  {
    margin: 0 .25rem;
  }
  .nav__link 
  {
    padding: .5rem .8rem;
    border-radius: .25rem;
  }
  .nav__link:hover 
  {
    background-color: var(--first-color);
  }
  .active 
  {
    background-color: var(--first-color);
    color: var(--white-color);
  }

 

@media screen and (min-width: 1024px) 
{
  .bd-grid 
  {
    margin-left: auto;
    margin-right: auto;
  }
}
}



.message .text{
  font-size: 20px;
  font-weight: 400;;
  color: #666666;
}

.message .text.text-1
{
  font-weight: 600;
  color: #333;
}

.toast .close
{
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover
{
  opacity: 1;
}

.toast .progress
{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ddd;
}

.toast .progress:before
{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}

.progress.active:before
{
  animation: progress 5s linear forwards;
}

@keyframes progress 
{
  100%{
      right: 100%;
  }
}

.container-toast {
  background-color: #cce5ff;
  position: relative;
  margin: 0;
  padding: 0px 20px;
  margin-right: -20px;
  bottom: 100px;
  border-radius: 2px;
  float: right;
  width: 20%;
  border: 1px solid #054488;
  position: relative;
}

#titleMiniToast {
  font-size: 13px;
}

#miniTitleToast {
  font-size: 10px;
}

.container-toast small {
  color: var(--toast-fixed-color-text);
  font-size: 12px;
  position: relative;
  display: block;
  font-family: sans-serif;
  margin-top: 5px;
}