/* =========================================
   WHY — petróleo escuro, grid 4x2 em largura total
   ========================================= */

.why {
  position: relative;
  background: var(--color-ink);
  overflow: hidden;
}

.why-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ── Conteúdo ── */
.why-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Heading ── */
.why-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.why-pre {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--color-accent-soft);
  margin: 0 0 0.15em;
}

.why-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.why-blue {
  color: var(--color-accent-soft);
}

/* ── Body ── */
.why-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0;
}

/* ── Tabela Característica × Benefício ── */
.why-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.why-table-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: rgba(255, 255, 255, 0.06);
}

.why-th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  padding: 0.95rem 1.35rem;
}
.why-th:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.why-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.why-feat {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  padding: 1.05rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-benefit {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  padding: 1.05rem 1.35rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 640px) {
  .why-inner {
    padding: 3rem 1.25rem;
  }

  /* Empilha: rótulo em cima, benefício embaixo, faixa laranja à esquerda */
  .why-table-head {
    display: none;
  }

  .why-row {
    grid-template-columns: 1fr;
    border-left: 3px solid var(--color-accent);
  }

  .why-feat {
    border-right: none;
    padding-bottom: 0.35rem;
  }

  .why-benefit {
    padding-top: 0.35rem;
    padding-bottom: 1.1rem;
  }
}
