@media (max-width: 639px) {
  .comparison-table {
    display: grid;
    gap: .85rem;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table > div:first-child {
    display: none;
  }

  .comparison-table > div:not(:first-child) {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--card);
    box-shadow: 0 8px 24px rgb(31 13 15 / 6%);
  }

  .comparison-table > div:not(:first-child) > div:first-child {
    grid-column: 1 / -1;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    color: var(--surface-foreground);
    font-family: Sora, Inter, sans-serif;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .comparison-table > div:not(:first-child) > div:nth-child(2),
  .comparison-table > div:not(:first-child) > div:nth-child(3) {
    display: flex;
    min-height: 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .75rem .5rem .85rem;
    font-size: .8rem;
    line-height: 1.25;
  }

  .comparison-table > div:not(:first-child) > div:nth-child(2) {
    background: #fff3f4;
  }

  .comparison-table > div:not(:first-child) > div:nth-child(3) {
    border-left: 1px solid var(--border);
    background: var(--secondary);
  }

  .comparison-table > div:not(:first-child) > div:nth-child(2)::before,
  .comparison-table > div:not(:first-child) > div:nth-child(3)::before {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
  }

  .comparison-table > div:not(:first-child) > div:nth-child(2)::before {
    content: "AZCA Marketing";
    color: #c80f1d;
  }

  .comparison-table > div:not(:first-child) > div:nth-child(3)::before {
    content: "Otras agencias";
    color: var(--muted-foreground);
  }

  .comparison-table .inline-flex.h-7.w-7 {
    width: 1.85rem;
    height: 1.85rem;
  }
}
