/* Formatação do Resultado de Assembleias*/
.div_select {
  position: relative;
  width: 80%;
  margin-left: 30%;
}

.g_select {
  display: flex;
  justify-content: center;
  width: 50%;
}

select {
  width: 100%;
  margin: 5px;
  border: none;
  font-size: 1rem;
}

option {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

body {
  -webkit-font-smoothing: antialiased;
}

h2 {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  padding: 30px 0;
}

/* Table Styles */

.table-wrapper {
  margin: 10px 70px 70px;
  box-shadow: 0px 35px 50px rgba(0, 0, 0, 0.2);
}

.fl-table {
  border-radius: 5px;
  font-size: 12px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  background-color: white;
}

.fl-table td,
.fl-table th {
  text-align: center;
  padding: 8px;
}

.fl-table td {
  border-right: 1px solid #f8f8f8;
  font-size: 12px;
}

.fl-table th {
  color: #ff0000;
  background: #ffffff;
}

.fl-table th:nth-child(odd) {
  color: #ffffff;
  background: #ff0000;
}

.fl-table tr:nth-child(even) {
  background: #f8f8f8;
}

/* Responsive */

@media (max-width: 767px) {
  .div_select {
    margin-left: 11%;
  }

  .g_select {
    width: 100%;
  }
  .g_select select{
    width: 100%;
    font-size: 12px;
  }
  .fl-table {
    display: block;
    width: 100%;
  }

  .table-wrapper {
    margin: 0px;
  }

  .table-wrapper:before {
    content: "Scroll horizontally >";
    display: block;
    text-align: right;
    font-size: 11px;
    color: white;
    box-shadow: 0px 35px 50px rgba(0, 0, 0, 0.2);
    margin: 0px;
  }

  .fl-table,
  .fl-table,
  .fl-table th {
    display: block;
  }

  .fl-table th:last-child {
    border-bottom: none;
  }

  .fl-table {
    float: left;
  }

  .fl-table {
    width: auto;
    position: relative;
    overflow-x: auto;
  }

  .fl-table td,
  .fl-table th {
    padding: 20px 0.625em 0.625em 0.625em;
    height: 60px;
    vertical-align: middle;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    width: 120px;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  .fl-table th {
    text-align: left;
    border-bottom: 1px solid #f7f7f9;
  }

  .fl-table tr {
    display: table-cell;
  }

  .fl-table tr:nth-child(odd) {
    background: none;
  }

  .fl-table tr:nth-child(even) {
    background: transparent;
  }

  .fl-table tr td:nth-child(odd) {
    background: #f8f8f8;
    border-right: 1px solid #e6e4e4;
  }

  .fl-table tr td:nth-child(even) {
    border-right: 1px solid #e6e4e4;
  }

  .fl-table td {
    display: block;
    text-align: center;
  }
}

/* CSS DEFAULT*/
:root {
  color-scheme: only light;
}
body {
  font-family: "Kanit";
  font-weight: 300;
  background-color: #ffffff;
}

/* Container */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    width: 100%;
    max-width: 98%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

/* Animações */
.animate {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
}
.slideIn {
  animation-name: slideIn;
  -webkit-animation-name: slideIn;
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

/* Input Autocomplete Transparente */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

/* Remove sombra de todos os Inputs */
input:focus {
  box-shadow: none !important;
}

/* Título de Seção */
.section-title {
  position: relative;
  font-family: "Kanit";
  font-weight: 600;
  font-size: 2.25rem;
  color: #060606;
  text-align: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 70px;
  height: 7px;
  margin: 0 auto;
  background-color: #ff0000;
  border-radius: 5px;
}

/* Subtítulo de Seção */
.section-subtitle {
  position: relative;
  font-family: "Kanit";
  font-weight: 300;
  font-size: 1.125rem;
  color: #6b6b6b;
  text-align: center;
  margin-bottom: 2rem;
}

/* Botão Padrão */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}
.btn:hover,
.btn:focus {
  box-shadow: none;
}

/* Botão Verde */
.btn-red {
  font-family: "Kanit";
  font-weight: 600;
  font-size: 1.125rem;
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  height: 56px;
  max-width: 480px;
  border-radius: 1.75rem;
}
.btn-red:hover,
.btn-red:focus {
  background-color: #880000;
  border-color: #880000;
  color: #ffffff;
}

/* Scrollbar Horizontal */
.scrollbar-h {
  background-color: #e3e3e3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(2rem + 2px);
  width: 100%;
  height: 7px;
  z-index: -10;
}
@media (min-width: 576px) {
  .scrollbar-h {
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .scrollbar-h {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .scrollbar-h {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .scrollbar-h {
    display: none;
  }
}

/* Botões Flutuantes */
.buttons-floating {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.buttons-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
}
.buttons-floating a.btn-arrow-up {
  width: 36px;
  height: 36px;
  color: #363636;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 1px rgba(123, 123, 123, 0.5);
}
.buttons-floating a.btn-whatsapp {
  width: 52px;
  height: 52px;
  color: #ffffff;
  background-color: #67d449;
}
.buttons-floating a.btn-whatsapp i {
  font-size: 1.75rem;
}
@media (min-width: 1600px) {
  .buttons-floating {
    bottom: 16px;
    right: 16px;
  }
}

/* Modal */
.modal .modal-content .modal-header .btn-close {
  right: 0.75rem;
}
.modal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Navbar */
.navbar {
  height: 100px;
  background-color: #ffffff;
}
.navbar .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .navbar-collapse .nav-item .nav-link {
  font-family: "Poppins Medium";
  font-size: 1rem;
  color: #000000;
  margin: 0.75rem 0;
  padding: 0;
}
.navbar .navbar-collapse .nav-item .nav-link:hover {
  color: #ff0000;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link:hover {
  opacity: 0.75;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-text {
  font-family: "Poppins Bold";
  font-size: 0.875rem;
  color: #000000;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-number {
  font-family: "Poppins Medium";
  font-size: 1rem;
  color: #484848;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-icon {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #808080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-collapse .nav-item:nth-child(1) .nav-link .nav-icon::before {
  content: "";
  background-image: url("../images/icones/icone-whatsapp.png");
  height: 16px;
  width: 16px;
}
.navbar .navbar-collapse .nav-item:nth-child(2) .nav-link .nav-icon::before {
  content: "";
  background-image: url("../images/icones/icone-telefone.png");
  height: 16px;
  width: 16px;
}
@media (min-width: 576px) {
  .navbar .navbar-collapse .navbar-nav {
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .navbar {
    height: 130px;
  }
  .navbar .navbar-brand {
    position: initial;
    left: auto;
    width: auto;
    transform: initial;
  }
  .navbar .navbar-collapse .navbar-nav {
    max-width: 100%;
    margin: 0 0 0 auto;
    align-items: center;
  }
  .navbar .navbar-collapse .nav-item .nav-link {
    margin: 0 1rem;
  }
  .navbar .navbar-collapse .nav-item:last-child .nav-link {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .navbar .navbar-collapse .nav-item .nav-link {
    margin: 0 1.5rem;
  }
  .navbar .navbar-collapse .nav-item:nth-child(2) {
    margin-right: 2.5rem;
  }
}
@media (max-width: 1199px) {
  /* Navbar Collapse */
  .navbar .navbar-collapse {
    position: fixed;
    z-index: 1020;
    top: 100px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0px 0px 5px 0.5px rgba(122, 122, 122, 0.7);
  }
  .navbar .navbar-collapse.collapsing {
    transition: height 0.3s ease-out;
  }
  .navbar .navbar-collapse .navbar-nav {
    padding: 1.5rem 1rem;
  }
  .navbar .navbar-collapse .nav-item:nth-child(1) {
    order: 4;
  }
  .navbar .navbar-collapse .nav-item:nth-child(2) {
    order: 5;
  }
  /* Navbar Menu Hamburger */
  .navbar .navbar-toggler {
    position: relative;
    cursor: pointer;
    width: 28px;
    height: 21px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
  }
  .navbar .navbar-toggler span {
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    border-radius: 5px;
    background-color: #ff0000;
    -webkit-transition: -webkit-transform 0.3s;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .navbar .navbar-toggler span:nth-child(1) {
    top: 0px;
  }
  .navbar .navbar-toggler span:nth-child(2) {
    top: 9px;
  }
  .navbar .navbar-toggler span:nth-child(3) {
    top: 18px;
  }
  .navbar .navbar-toggler.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
  }
  .navbar .navbar-toggler.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar .navbar-toggler.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
  }
}

/* Footer */
.footer {
  padding-top: 3rem;
  background-color: #232323;
}
.footer span {
  font-family: "Nunito Bold";
  font-size: 1.125rem;
  color: #ffffff;
}
.footer .entities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer .entities div:nth-child(1) {
  flex-basis: 33%;
}
.footer .entities div:nth-child(2) {
  flex-basis: 32%;
}
.footer .entities div:nth-child(3) {
  flex-basis: 19%;
}
.footer .entities div:nth-child(4) {
  flex-basis: 16%;
}
@media (min-width: 576px) {
  .footer .entities {
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .footer .entities {
    max-width: 720px;
    margin: 0 auto;
  }
  .footer .entities > * {
    flex-basis: inherit !important;
  }
}

/* Footer Copyright */
.footer .footer-copyright {
  background-color: #303030;
  margin-top: 3rem;
  padding: 1.125rem 0;
}
.footer .footer-copyright span {
  font-family: "Kanit";
  font-weight: 300;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
}
.footer .footer-copyright .developed-by span {
  color: #e8e8e8;
  margin-top: 0.25rem;
}
@media (min-width: 1200px) {
  .footer .footer-copyright .copyright {
    margin: 0 auto;
    max-width: 980px;
    text-align: center;
  }
  .footer .footer-copyright .copyright span:nth-child(2)::before,
  .footer .footer-copyright .copyright span:nth-child(4)::before {
    content: "-";
  }
}

/* Footer Icone Redes Sociais */
.footer .socials .icone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
}
.footer .socials .icone:hover::before {
  animation: toBottomFromTop 0.4s forwards;
  -moz-animation: toBottomFromTop 0.4s forwards;
  -webkit-animation: toBottomFromTop 0.4s forwards;
}
.footer .socials .icone-facebook::before {
  content: "";
  background-image: url("../images/icones/icone-facebook.png");
  background-repeat: no-repeat;
  width: 10px;
  height: 18px;
}
.footer .socials .icone-instagram::before {
  content: "";
  background-image: url("../images/icones/icone-instagram.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toBottomFromTop {
  49% {
    -moz-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
.g-recaptcha > div {
  margin: 0 auto 20px auto !important;
}
