.container-credits{
  padding: 4em 1em;
  background-color: #681C7B;
}

.box-credits{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto;
  gap: 64px;
  max-width: 1280px;
}

.purchase-section {
    padding: 2em;
    background-color: #F9F9F9;
    border-radius: 10px;
    width: 60%;
  }
  
  .time-selection {
    margin-bottom: 2em;
  }
  
  .time-selection label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5em;
    display: block;
  }
  
  .time-input {
    background: #681C7B;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8em;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0.5em;
  }
  
  .time-input option {
    background: white;
    color: black;
  }
  
  .final-value {
    font-size: 1rem;
    color: #681C7B;
    margin-bottom: 1em;
  }
  
  .buy-button {
    background: #4b125a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8em 1.5em;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .buy-button:hover {
    background: #681C7B;
  }
  
  .icons-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2em;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .icon:hover {
    transform: scale(1.1);
  }
  
  .divider {
    border: 0;
    border-top: 1px solid #ccc;
    margin-bottom: 2em;
  }
  
  .purchase-history h3 {
    color: #681C7B;
    margin-bottom: 1em;
  }
  
  .history-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .history-table th,
  .history-table td {
    border: 1px solid #ccc;
    padding: 0.8em;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .history-table th {
    background: #681C7B;
    color: white;
  }
  
  .history-table tbody tr:nth-child(odd) {
    background: #f9f9f9;
  }
  
  .history-table tbody tr:nth-child(even) {
    background: #e9e9e9;
  }
  
  .icon-visa{
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.icons-group img:nth-last-child(2),
.icons-group img:nth-last-child(1) {
  width: 80px; /* Ajuste conforme necessário */
  height: 80px;
}





/* Coluna 2 */

.credits-value {
  width: 30%;
  height: 520px;
  margin: 30px auto;
  background-color: #F9F9F9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #36003A;
}

.row:last-child {
  border-bottom: none;
}

.col-1 {
  background-color: #FFF2FF;
  border-right: 1px solid #36003A;
  padding: 10px 0;
  flex: 1;
  text-align: center;
}

.col-2 {
  flex: 1;
  text-align: center;
}

.button-container {
  margin-top: 20px;
  text-align: center;
}

.btn-suporte {
  background-color: #36003A;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-suporte:hover {
  background-color: #4b0066;
}

.paragraph-table{
  display: none;
}


@media screen and (min-width: 320px) and (max-width: 767px) {
  .box-credits {
    flex-direction: column;
  }

  .purchase-section {
    width: 100%;
  }

  .credits-value {
    width: 100%;
  }

  .icons-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .icons-group img:nth-last-child(2),
.icons-group img:nth-last-child(1) {
  width: 120px; /* Ajuste conforme necessário */
  height: 120px;
}

  .icon {
    width: 48px; /* Ajusta o tamanho dos ícones */
    height: 48px;
  }

  .history-table {
    display: block;
    overflow-x: auto; /* Permite rolagem horizontal no mobile */
    white-space: nowrap; /* Evita quebra de linha */
  }

  .history-table th,
  .history-table td {
    display: inline-block;
    width: 150px; /* Ajuste a largura conforme necessário */
    text-align: left;
    padding-left: 10px;
  }

  .history-table th {
    background-color: #681C7B;
    color: white;
  }

  .history-table td {
    border-top: 1px solid #ccc;
  }

  .paragraph-table{
    display: block;
    font-size: 0.9em
  }
}