.dropdown__title {
  background-color: transparent;
  border: none;
  font-family: inherit;
}
.dropdown__menu {
  background-color: transparent;
  border: none;
  font-family: inherit;
  padding:0;
}
/* TRANSFERIR PARA ESTILO COLOR-.CSS */
nav {
  background-color: #F7F7F7; /* #003148;/***********COR DA BARRA DO MENU***********/
  padding: 0;
  top: 0;
  display: grid;
  place-items: center;
  z-index:998;
  border-bottom:#25004A solid 3px;
}
.dropdown .dropdown__menu a {
  color: #F7F7F7; /***************COR DA FONTE DO SUBMENU*********************/
  display: block;
  padding: 0; /******************** OPÇÃO DO MENU 0.3rem 0*/
  text-align:center;
  opacity:1;
  margin:0;
}
.dropdown .dropdown__menu li:hover {
  background-color: #F7F7F7; /********COR DE FUNDO (HOVER) DO SUBMENU***********/
}
.dropdown .dropdown__menu a:hover {
  color:#fff !important;  /********* COR DA FONTE DO LINK DA OPÇÃO DO MENU ********/
}
.dropdown .dropdown__menu a:focus {
  color:#f00; /********* COR DA FONTE DO SUBMENU QUANDO ESTÁ COM FOCO *********/
  font-weight:400;
}
/*************************************************************************************/
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
nav > ul {
  grid-auto-flow: column;
}
nav ul li {
  padding: 0.9rem 0; /************ 10px 7px */
}
nav > ul > li {
  margin: 0;/********************** 0 0.5rem */
  padding: 0;
}
nav > ul > li a,
nav > ul > li .dropdown__title {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0; /*********************** 1rem 0.5rem */
  border-top: 3px solid ;
  transition: 280ms all 120ms ease-out;
}
nav > ul > li a:focus,
nav > ul > li .dropdown__title:focus {
  outline: none;
}
.navbar .navbar-collapse {
    text-align: center;
}
.dropdown {
  position: relative;
}
.dropdown .dropdown__title {
  display: inline-flex; /* FLECHINHA DO LADO DO MENU*/
  align-items: center;
  color:#25004A; /*********** COR DA FONTE DO MENU ****************/
}
.dropdown .dropdown__title a { text-decoration:none; color:#25004A; }
.dropdown .dropdown__title a:link { text-decoration:none; color:#25004A; }
.dropdown .dropdown__title a:hover { text-decoration:none; color:#25004A; }
.dropdown .dropdown__title a:active { text-decoration:none; color:#25004A; }
.dropdown .dropdown__title a:visited { text-decoration:none; color:#25004A; }

.dropdown .dropdown__title:after {
  content: "";
  border: 0.35rem solid transparent;
  border-top-color: rgba(255, 255, 255, 0.45);
  margin-left: 0.25em;
  transform: translateY(0.15em);
}
.dropdown .dropdown__menu {
  position: absolute;
  min-width: 300px; //15ch;
  left: 50%;
  top: calc(100% - 0.25rem); /*****************/
  transition: 280ms all 120ms ease-out;
  transform: rotateX(-90deg) translateX(-50%);
  transform-origin: top center;
  visibility: hidden;
  opacity: 0.3;
  padding: 0; /************************************ 0.3em 0 **/
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.25);
  margin:0;
  z-index:998;
  /*width:400px; /****************************************/
}
.dropdown__menu {
  line-height:10px;
}
.dropdown:after {
  content: "";
  border: 0.5rem solid transparent;
  border-bottom-color: #25004A;
  position: absolute;
  top: calc(100% - 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  transition: 280ms all 120ms ease-out; /* TRIANGULOZINHO ABAIXO DO MENU*/
  opacity: 0;
  will-change: opacity;
}
.dropdown:hover .dropdown__menu, .dropdown:focus-within .dropdown__menu {
  opacity: 0.95;
  transform: rotateX(0) translateX(-50%);
  visibility: visible;
}
.dropdown:hover .dropdown__menu a, .dropdown:focus-within .dropdown__menu a {
  opacity: 1;
}
.dropdown:hover:after, .dropdown:focus-within:after {
  opacity: 1;
}
