.plans-wrapper {
  font-family: "Baloo 2", "Comic Sans MS", system-ui, -apple-system, sans-serif;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  width: 500px;
  padding: 25px 30px 35px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  position: relative;
}

/* CABEÇALHO */
.plans-wrapper .plans-header {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  margin-bottom: 25px;
}

.plans-wrapper .plans-header .logo-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #2a2a2a;
}

.plans-wrapper .plans-header .logo-title span {
  display: block;
  font-size: 18px;
  color: #b0277d;
}

.plans-wrapper .plans-header .label {
  justify-self: center;
  padding: 6px 26px 8px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-4deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plans-wrapper .plans-header .label-red {
  background: #c96751;
  /* vermelho do preço dos 15 dias */
}

.plans-wrapper .plans-header .label-purple {
  background: #6a2f63;
  /* roxo do preço dos 30 dias */
  transform: rotate(3deg);
}

/* TABELA */
.plans-wrapper .plans-table {
  margin-top: 10px;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
}

.plans-wrapper .plans-table .row {
  display: grid;
  margin: 0;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  padding: 6px 10px;
  border-bottom: 3px solid #111;
}
.plans-wrapper .plans-table .row::before {
  content: none;
}

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

.plans-wrapper .plans-table .cell {
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.plans-wrapper .plans-table .price-15,
.plans-wrapper .plans-table .price-30 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.plans-wrapper .plans-table .price-15 {
  color: #c96751;
  justify-content: center;
  border-left: 3px solid #111;
}

.plans-wrapper .plans-table .price-30 {
  color: #6a2f63;
  justify-content: center;
  border-left: 3px solid #111;
}

/* ESTRELAS */
.plans-wrapper .stars {
  gap: 6px;
}

.plans-wrapper .star {
  width: 24px;
  height: 24px;
  clip-path: polygon(50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%);
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}

.plans-wrapper .plans-table .star.orange {
  background: linear-gradient(145deg, #ffcc74, #f28a23);
}

.plans-wrapper .plans-table .star.purple {
  background: linear-gradient(145deg, #b06ad9, #6a35a0);
}

.plans-wrapper .plans-table .star.red {
  background: linear-gradient(145deg, #ff7c6f, #d63b32);
}

.plans-wrapper .plans-table .star.blue {
  background: linear-gradient(145deg, #7fd6ff, #2375c4);
}

.plans-wrapper .plans-table .star.green {
  background: linear-gradient(145deg, #9adf6a, #2d9c3a);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {

  .plans-wrapper {
    background: #fdfdfd;
    margin-top: 0;
    width: 100%;
    padding: 20px;
  }

  /* Header becomes vertical */
  .plans-wrapper .plans-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  /* Table rows become stacked */
  .plans-wrapper .plans-table .row {
    grid-template-columns: 1fr;
    border-bottom: 5px solid #111;
    padding: 12px 10px;
    gap: 12px;
  }

  /* Each cell becomes a block line */
  .plans-wrapper .plans-table .cell {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0;
    border-left: none !important;
  }

  /* Prices now full width */
  .plans-wrapper .plans-table .price-15,
  .plans-wrapper .plans-table .price-30 {
    justify-content: flex-start;
    font-size: 20px;
  }

  /* Optional labels on mobile for clarity */
  .plans-wrapper .plans-table .cell[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: #333;
    margin-right: 6px;
  }
}

