.benefits-section {
  background: rgb(var(--color-bg-light));
}

.benefits-header {
  max-width: 1280px;
  margin: 0 auto 48px;
}

.benefits-title {
  margin: 20px 0 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  color: rgb(var(--color-coal));
}

.benefits-subtitle {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  color: rgb(var(--color-text-secondary));
}

.bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.bento-row-1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-right-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-row-2,
.bento-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.bento-card-featured {
  flex: 1 1 auto;
  min-width: 0;
  gap: 20px;
  padding: 28px;
}

.bento-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgb(var(--color-coal) / 0.05);
  color: rgb(var(--color-text-secondary));
}

.bento-label-icon svg {
  width: 14px;
  height: 14px;
}

.bento-label-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--color-text-secondary));
}

.bento-headline-lg {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}

.bento-headline-md {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.bento-headline-sm {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.bento-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(var(--color-text-secondary));
}

.bento-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.bento-chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgb(var(--color-coal) / 0.05);
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
}

.receipt {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(var(--color-coal) / 0.08);
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #121212;
}

.receipt-header-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
}

.receipt-status {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgb(var(--color-success) / 0.18);
  color: rgb(var(--color-success));
  font-size: 0.6875rem;
  font-weight: 600;
}

.receipt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  background: #ffffff;
}

.receipt-item + .receipt-item {
  border-top: 1px solid rgb(var(--color-coal) / 0.05);
}

.receipt-item-name {
  margin: 0;
  font-size: 0.8125rem;
  color: #374151;
}

.receipt-item-price {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #121212;
}

.receipt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f9fafb;
  border-top: 1px solid rgb(var(--color-coal) / 0.08);
}

.receipt-total {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #121212;
}

.receipt-pix-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgb(var(--color-gold));
  color: rgb(var(--color-coal));
  font-size: 0.75rem;
  font-weight: 600;
}

.receipt-pix-btn svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 1024px) {
  .bento-row-1 {
    flex-direction: row;
    align-items: stretch;
  }

  .bento-right-stack {
    width: 390px;
    flex-shrink: 0;
  }

  .bento-row-2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
