body {
  font-family: 'Poppins', sans-serif;
  background-image: linear-gradient(to bottom, #ebdace 40%, #f2f2f2 60%);
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* AJUSTE: centraliza o conteúdo como no print */
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* AJUSTE: garante centralização do conteúdo */
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.logo {
  width: 450px;
  height: auto;
  max-width: 100%;
}

.title-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6f1a4b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.plan-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  /* AJUSTE: aproxima da nota */
  flex-wrap: wrap;
  width: 100%;
}

.plan-button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #6f1a4b;
  background-color: #fff;
  border: 2px solid #6f1a4b;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button.active {
  background-color: #6f1a4b;
  color: #fff;
}

.table-container {
  overflow-x: auto;
  width: 100%;
  /* AJUSTE: garante alinhamento */
  display: flex;
  /* AJUSTE */
  justify-content: center;
  /* AJUSTE: centraliza a tabela */
}

table {
  width: 100%;
  max-width: 800px;
  margin: 18px auto;
  /* AJUSTE: espaçamento mais parecido com o print */
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

th,
td {
  padding: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

/* IMPORTANTE: mantém o cabeçalho branco */
th {
  background-color: #6f1a4b;
  color: #fff !important;
  /* AJUSTE: força branco */
  font-size: 1.3rem;
  font-weight: 600;
}

/* AJUSTE: deixa a primeira coluna como no print (mais “texto”) */
td:first-child {
  text-align: left;
  padding-left: 26px;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}

.card-fee-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0;
  /* AJUSTE */
  margin-bottom: 8px;
  /* AJUSTE: aproxima da tabela */
  width: 100%;
  max-width: 800px;
}

/* AJUSTE: frase “ACEITAMOS...” (caso você tenha .payment-note no HTML) */
.payment-note {
  width: 100%;
  max-width: 800px;
  font-size: 0.9rem;
  color: #111;
  margin-top: 6px;
  text-align: left;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  /* AJUSTE */
}

/* NÃO MEXI NO BOTÃO DO WHATS — fica idêntico ao seu */
.button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  box-shadow: 6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
  animation: pulse 1.5s infinite;
}

.button2 svg {
  height: 30px;
  margin-left: 10px;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
    inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button2:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  th,
  td {
    padding: 10px;
    font-size: 1rem;
  }

  .button2 {
    font-size: 16px;
  }

  td:first-child {
    padding-left: 16px;
    /* AJUSTE mobile */
  }
}