:root {
  --laranja: #FF9F4A;
  --laranja-claro: #fff7f0;
  --verde: #00aa00;
  --cinza-escuro: #333;
  --cinza-medio: #666;
  --cinza-claro: #f8f9fa;
  --branco: #fff;
  --sombra: rgba(0, 0, 0, 0.08);
  --fonte: 'Arial', sans-serif;
}

.conteudo-pagina {
  font-family: var(--fonte);
  color: var(--cinza-medio);
}

.boas-vindas {
  margin-bottom: 20px;
}

.container-principal {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 90%;
}

.coluna {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.titulo-coluna {
  font-size: 1.5em;
  color: var(--cinza-escuro);
  border-bottom: 2px solid var(--laranja);
  padding-bottom: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.titulo-coluna .fa-solid {
  color: var(--laranja);
}

.card {
  background-color: var(--branco);
  border-radius: 8px;
  border: 1px solid #e9ecef;
  padding: 20px;
  box-shadow: 0 4px 6px var(--sombra);
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card h4 {
  margin-top: 0;
  color: var(--cinza-escuro);
}

.card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.card ul li {
  margin-bottom: 5px;
}

.lista-atendimento {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-atendimento {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 6px;
  background-color: var(--cinza-claro);
  color: var(--cinza-medio);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--fonte);
  font-size: 1em;
}

.item-atendimento:hover {
  background-color: var(--laranja);
  color: var(--branco);
}

.item-atendimento.selecionado {
  background-color: var(--laranja);
  color: var(--branco);
  font-weight: bold;
}

.item-atendimento .fa-chevron-right {
  font-size: 0.8em;
}

.container-duvida-final {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--laranja-claro);
  border-radius: 8px;
  text-align: center;
  width: 100%;
}

.container-duvida-final h3 {
  font-size: 1.8em;
  color: var(--cinza-escuro);
  margin-top: 0;
}

.form-duvida {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: stretch;
}

.Containerinputduvida {
  flex: 1;
  text-align: left;
}

.btn-enviar-duvida {
  padding: 12px 24px;
  font-size: 1em;
  font-weight: bold;
  background-color: var(--laranja);
  color: var(--branco);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-enviar-duvida:hover {
  background-color: #ff8c2b;
}

.inputduvida {
  border: 1px solid #ced4da !important;
  min-height: 50px !important;
  border-radius: 6px !important;
  width: 100%;
  padding: 10px;
}

.inventory-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.info-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-header h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.info-icon {
  font-size: 1.3em;
  color: #0073aa;
  cursor: pointer;
  margin-left: 10px;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.9em;
  position: absolute;
  z-index: 10;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip-text.visible {
  visibility: visible;
  opacity: 1;
}

.radio-card-acordo {
  background-color: #FFF;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 10px;
  border: 2px solid #EEE;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.radio-card-acordo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.radio-card-acordo.selecionado {
  border-color: #08f26e;
  background-color: #f0fff8;
  box-shadow: 0 4px 8px rgba(8, 242, 110, 0.2);
}

.radio-card-acordo h4 {
  color: #333;
  font-size: 16px;
  margin: 0 0 5px 0;
}

.radio-card-acordo p {
  font-size: 14px;
  color: #546170;
  margin: 0;
}

.avisoNovidade {
  color: #fff;
  border-radius: 10px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  animation: piscarCor 0.5s infinite alternate;
  position: absolute;
  margin-bottom: 50px;
  margin-left: 50px;
}

@keyframes piscarCor {
  0% {
    background-color: red;
    color: white;
  }

  100% {
    background-color: white;
    color: red;
  }
}

.avisoNovidade p {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  padding: 4px;
}
.sidebar.open .avisoNovidade{
  margin-bottom: 50px;
  margin-left: 190px;
}


@media (max-width: 600px) {
  .container-principal {
    flex-direction: column;
    gap: 16px;
    max-width: 95%;
  }

  .coluna {
    min-width: 100%;
  }

  .titulo-coluna {
    font-size: 1.2em;
  }

  .card {
    padding: 15px;
  }

  .form-duvida {
    flex-direction: column;
  }

  .btn-enviar-duvida {
    width: 100%;
    justify-content: center;
  }

  .inputduvida {
    min-height: 45px !important;
  }

  .avisoNovidade {
    margin-left: 15px;
    margin-bottom: 15px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .container-principal {
    justify-content: center;
    gap: 20px;
    max-width: 80%;
  }

  .coluna {
    min-width: 45%;
  }

  .titulo-coluna {
    font-size: 1.3em;
  }
}

@media (min-width: 1025px) {
  .container-principal {
    justify-content: space-between;
    gap: 24px;
    max-width: 85%;
  }

  .coluna {
    min-width: 30%;
  }
}