@charset "UTF-8";

/* BOTÕES */

.button,
.cbcm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, filter .15s ease;
}

.button:active,
.cbcm-btn:active {
  transform: translateY(1px);
}

.button-primary,
.cbcm-btn--primary {
  background: #111;
  border-color: #111;
  color: #fff;
}

.button-primary:hover,
.cbcm-btn--primary:hover {
  background: #222;
  border-color: #222;
  filter: none;
}

.button-secondary,
.cbcm-btn--ghost {
  background: #f3f3f3;
  border-color: #d7d7d7;
  color: #111;
}

.button-secondary:hover,
.cbcm-btn--ghost:hover {
  background: #e9e9e9;
}

/* MENUS RETRÁTEIS / ACORDEON */

.accordion-menu,
.menu {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  max-width: 760px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-menu > li,
.menu > li {
  border-bottom: 1px solid #eee;
}

.accordion-menu > li:last-child,
.menu > li:last-child {
  border-bottom: 0;
}

.toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: #333;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

.toggle:hover,
.toggle:focus {
  background: #444;
}

.submenu {
  display: none;
  margin: 0;
  padding: 8px 16px 16px;
  background: #444;
  list-style: none;
}

.toggle[aria-expanded="true"] + .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
}

.submenu li a:hover,
.submenu li a:focus {
  text-decoration: underline;
}

/* CARDS GENÉRICOS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  grid-column: span 4;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.card h2,
.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: #444;
  line-height: 1.5;
}

/* IMAGENS */

.imagem-conteudo,
.bloco-imagens,
.imagem-item {
  text-align: center;
}

.bloco-imagens {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.imagem-conteudo h2,
.bloco-imagens h2 {
  margin-bottom: 20px;
}

.imagem-conteudo img,
.imagem-item img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

.imagem-conteudo img {
  box-shadow: 0 0 10px rgba(0,0,0,.15);
}

.imagem-item {
  margin-bottom: 30px;
}

/* RESPONSIVO */

@media (max-width: 980px) {
  .card {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .card {
    grid-column: span 12;
  }

  .button,
  .cbcm-btn {
    width: 100%;
  }
}