/* Container do Comparador */
.mb-compare {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, .08) 0px 8px 24px;
}
.mb-compare-editor {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

/* Título principal */
h2.mb-compare__main-title {
  font-size: 35px;
  font-weight: 500;
}

/* Blocos de comparação (linhas) */
.mb-compare__block {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.mb-compare__block:last-child {
  border-bottom: none;
}

/*Conteúdo das linhas*/
.mb-compare__item {
  padding: 6px 0;
}
.mb-compare__info {
  font-size: 15px;
  color: #878787;
}

/* Área do botão */
.mb-compare__button-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Botão principal */
.mb-compare__button {
  padding: 6px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.mb-compare__button:hover {
  opacity: 0.85;
}

/* Estados do botão */
.mb-compare__button:visited,
.mb-compare__button:active, 
.mb-compare__button:focus {
  /* background: #0008ff !important; */
  color: #fff;
}

/* Aviso de redirecionamento */
.mb-compare__redirect-warning {
    padding-top: 10px;
    display: block !important;
    font-size: 13px !important;
    color: #777;
}

@media screen and (max-width: 567px){
  .mb-compare__item {
    font-size: 15px;
  }
  h2.mb-compare__main-title {
    font-size: 27px;
  }

}