
:root {

  /*Cores*/

  --dark-green: #00815a;
  --medium-green: #009468;
  --pool-green: #0eb885;
  --light-green: #78a38c;
  --white: #FFFFFF;
}

input:focus {
  outline: none;
}

/*Tamanho Fontes*/

.fs-3rem-5 {
  font-size: 3.5rem !important;
}

/*Background colors*/

.bg-dark-green {
  background-color: var(--dark-green) !important;
}

.bg-medium-green {
  background-color: var(--medium-green) !important;
}

.light-green {
  background-color: var(--light-green) !important;
}

.bg-pool-green {
  background-color: var(--pool-green) !important;
}

/*Text colors*/

.text-dark-green {
  color: var(--dark-green) !important;
}

.text-medium-green {
  color: var(--medium-green) !important;
}

.text-light-green {
  color: var(--light-green) !important;
}

.text-pool-green {
  color: var(--pool-green) !important;
}

/* HOVERS */
.hover-bg-darkGreen:hover {
  background-color: var(--dark-green);
  transition: 0.3s ease;
}

.hover-text-white:hover {
  color: white !important;
  transition: 0.2s ease;
}

.hover-text-underline:hover {
  text-decoration: underline !important;
}

/* CSS */

.custom-wp-menu > li {
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.custom-wp-menu > li.menu-item-has-children > .sub-menu li {
    border-bottom: none !important;
}

.custom-wp-menu > li > a {
    display: flex;
    padding: 0.5rem 1rem;
    color: var(--medium-green);
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.375rem;
}

.custom-wp-menu > li:hover > a,
.custom-wp-menu > li > a.active {
    background-color: var(--dark-green);
    color: white !important;
    transition: 0.3s ease;
}

.custom-wp-menu .sub-menu {
    display: none;
    position: relative;
    padding-left: 0;
}

.custom-wp-menu .sub-menu {
  display: none !important;
}
.custom-wp-menu li.menu-open > .sub-menu {
  display: block !important;
}
.custom-wp-menu > li.menu-item-has-children:hover {
  pointer-events: auto;
}

.custom-wp-menu .sub-menu a {
    display: block;
    margin-left: 1.5rem;
    padding: 0.5rem;
    color: var(--pool-green);
    text-decoration: none;
    border-radius: 0.375rem;
}

.custom-wp-menu .sub-menu a:hover {
    background-color: var(--dark-green);
    color: white !important;
    transition: 0.3s ease;
}
.custom-wp-menu {
    list-style: none;
    padding-left: 0;
}
.custom-wp-menu li {
    list-style-type: none;
}
/* Submenu padrão (oculto) */
.custom-wp-menu .sub-menu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.2rem;
}

/* Quando o item pai estiver com menu-open, exibir submenu */
.custom-wp-menu li.menu-open > .sub-menu {
  display: block;
}

/* Estilo do sub-submenu */
.custom-wp-menu .sub-menu .sub-menu {
  padding-left: 1.5rem;
}

/* Visualização diferenciada de níveis */
.custom-wp-menu .sub-menu a {
  margin-left: 0.5rem;
  font-weight: normal;
}

.custom-wp-menu .sub-menu .sub-menu a {
  margin-left: 1.5rem;
  font-size: 0.95em;
  color: #007c5c;
}
.custom-wp-menu li.menu-item-has-children > a {
  font-weight: bold !important;
}

#barraRegionais {
  max-width: 440px;
}

#aplicationSearch {
  max-width: 500px;
  width: 100%;
  border: 2px solid var(--medium-green);

  button {
    width: 60px;
    height: 40px;
  }
}

#pageText {
  text-align: justify;
}

#mainList {
  width: 100%;
}

/*X-Small devices (portrait phones, less than 576px)*/
/*No media query for `xs` since this is the default in Bootstrap*/




/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  #botaoMenu {
    display: none;
  }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  #mainList {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  #barraRegionais {
    width: 100%;
  }
}



/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}