#div-master {
  display: flex;
  justify-content: center;
}

.container a {
  text-decoration: none;
}

.con-main {
  margin: 20px;
  max-width: 1000px;
  width: 100%;
}

.banner {
  border-radius: 15px;
  overflow: hidden;

  background: url('images/banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 220px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 30px 10px 0;
}

.container ul {
  list-style: none;
  margin: 0 0 40px;
  max-width: 800px;
  padding: 0;
  width: 100%;
}

.container ul li.accordion h3,
.container .ver-mais-cofen {
  padding: 5px 15px;
  background: #72bf44;
  display: inline-block;
  border-radius: 12px;
  user-select: none;
}
/*
.container ul li.accordion h3::before {
	content: '●';
	margin-right: 5px;
} */

.container ul li.accordion button {
  width: 100%;
  background: #005baa;
  outline: none;
  border: none;
  cursor: pointer;
  color: #fff;
  text-align: left;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container ul li.accordion button .accordion-item-arrow {
  height: 20px;
  width: 20px;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: transform 400ms ease;
}

.container ul li.accordion button.active .accordion-item-arrow {
  transform: rotate(90deg);
  transition: transform 400ms ease;
}

.container ul li.accordion div.panel {
  padding: 10px;
  color: #005baa;
  line-height: 22px;
  font-size: 16px;

  display: none;
}

.container ul li.accordion div.panel a {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #005baa;
}

@media (max-width: 700px) {
  .con-main {
    margin: 0px;
  }

  .banner {
    border-radius: unset;
    overflow: hidden;
  }
}

@media (max-width: 540px) {
  .banner {
    height: 160px;
  }
}

@media (max-width: 400px) {
  .banner {
    height: 130px;
  }

  .container .accordion h3 {
    font-size: 20px;
  }

  .container .accordion .accordion-item {
    font-size: 16px;
  }
}

/* DARK MODE */
body.dark .content-top h1 {
  color: rgb(229, 229, 231);
}

body.dark .bloco .bloco-header h3 {
  color: rgb(229, 229, 231);
}

body.dark .bloco-text h4 {
  color: rgb(229, 229, 231);
}

body.dark .bloco-header {
  background-color: rgba(255, 255, 255, 0.1);
}
