:root {
    --devrocket-instagram-espaco-abaixo: 90px;
    --devrocket-imagem-categoria-espaco-abaixo: 0px;
}

#cabecalho .conteiner > .row-fluid {
    padding: 10px !important;
}

h1.titulo {
    margin-bottom: 48px !important;
}

.kebis-section:not(:last-child) {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 48px;
}

.kebis-section .kebis-section--grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 48px;

  @media (max-width: 768px) {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}

.kebis-section .kebis-section--grid div:first-child {
  display: flex;
  justify-content: center;

  @media (max-width: 768px) {
    grid-column: 1;
    grid-row: 2;
  }
}

.kebis-section:is(:nth-child(odd)) .kebis-section--grid {
  grid-template-columns: 1fr 400px;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.kebis-section:is(:nth-child(odd)) .kebis-section--grid div:first-child {
  grid-column: 2;
  grid-row: 1;

  @media (max-width: 768px) {
    grid-column: 1;
    grid-row: 2;
  }
}

.kebis-section_title {
  color: #752836;
  font-size: 24px;
  margin: 0 0 16px;
  font-weight: bold;

  @media (max-width: 768px) {
    font-size: 18px;
  }
}

.kebis-section_grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  justify-items: center;
  align-items: center;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.kebis-section_img-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.kebis-section .kebis-section_grid-3 div:first-child {
  display: block;
}

.kebis-section_subtitle {
  color: #ae3b50;
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: bold;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.kebis-section_text,
.kebis-list li.kebis-list_item {
  color: #242424;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px;
  text-align: justify;
}

.kebis-section--center {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.kebis-section.kebis-section--center .kebis-section_title {
  text-align: center;

  @media (max-width: 768px) {
    text-align: left;
  }
}

.kebis-section.kebis-section--center .kebis-section_text {
  text-align: center;

  @media (max-width: 768px) {
    text-align: justify;
  }
}

.kebis-section .kebis-section_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  justify-items: center;
  align-items: center;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.kebis-section_image {
  max-width: 240px;

  @media (max-width: 768px) {
    max-width: 180px;
  }
}

ul.kebis-list li.kebis-list_item {
  list-style: initial;
}

ol.kebis-list li.kebis-list_item {
  list-style: upper-roman;
}

.kebis-link {
  color: #ae3b50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: block;
  margin: 18px 0 0;

  &:hover {
    color: #752836;
  }
}

li.kebis-list_item .kebis-link {
  margin: 0;
  display: inline-block;
}

.kebis-section_img-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 48px;
}

.kebis-link-button {
  background-color: #ae3b50;
  color: #fff;
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  display: block;
  width: fit-content;
}

.kebis-link-button:hover {
    background-color: #752836;
    color: #fff;
}

.kebis-f-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 64px 0 0;
}

.logo-footer.fundo-secundario {
    background-color: #AE3B50;
}

.menu.superior.titulo {
    margin: 15px 0 4px !important;
}


.menu li {
    padding: 10px 20px !important;
}

.menu.superior .nivel-dois {
    top: 70px !important;
}

.kebis-select-container {
  width: 480px;
  margin: 3.2rem auto;
}

.kebis-select {
  width: 100%;
}

.kebis-select--display {
  border: 1px solid #ae3b50;
  border-radius: 4px;
  cursor: pointer;
  height: 36px;
  background-color: #fff;
  color: #242424;
  display: flex;
  align-items: center;
}

.kebis-select--display-text {
  line-height: 1.2;
  font-size: 14px;
  padding: 0.6rem 1.2rem;
  flex: 1;
}

.kebis-select--display-btn-toggle {
  padding: 0.6rem 1.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.kebis-select--display-btn-toggle i {
  transition: all 0.2s ease-out;
  transform: rotate(0deg);
}

.kebis-select--display-btn-toggle.kebis-select--display-btn-toggle__open i {
  transform: rotate(-180deg);
  color: #ae3b50;
}

.kebis-select--list--wrapper {
  position: relative;
  width: 100%;
}

.kebis-select--list {
  position: absolute;
  list-style: none;
  background-color: #fff;
  width: 100%;
  top: 4px;
  left: 0;
  border: 1px solid #ae3b50;
  border-radius: 4px;
  max-height: 340px;
  overflow-y: auto;
  user-select: none;
  margin: 0;
  z-index: 100;
}

.kebis-select--list::-webkit-scrollbar {
  width: 5px;
  background-color: #eeeeee;
  border-radius: 5px;
}

.kebis-select--list::-webkit-scrollbar-thumb {
  background-color: #ae3b50;
  border-radius: 5px;
}

.kebis-select--list li {
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease-out;
  color: #242424;
}

.kebis-select--list li:hover {
  background-color: #eeeeee;
}

.kebis-client-list {
  display: grid;
  gap: 2rem;

  list-style: none;
  margin: 0;
}

@media screen and (min-width: 320px) {
  .kebis-client-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .kebis-client-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .kebis-client-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kebis-client-list li {
  background-color: #ae3b50;
  color: #fff;
  padding: 1.2rem 2rem;

  line-height: 1.4;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}
