/* ============================================================
   sdd-uplexis — folha de estilos
   Fundação navy escura · acentos ciano elétrico e âmbar quente
   Sem fontes externas, sem imagens remotas, sem diretivas de importação.
   ============================================================ */

:root {
  --bg: #081226;
  --bg-elev: #0d1b3a;
  --bg-elev-2: #122347;
  --ink: #eef4ff;
  --muted: #9fb3d1;
  --line: rgba(159, 179, 209, 0.18);
  --cyan: #3fe0ff;
  --cyan-dim: #1ba8c4;
  --amber: #ffb454;
  --red: #ff5d5d;
  --green: #3ddc84;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", Menlo,
    Consolas, "Liberation Mono", monospace;
  --largura: 72rem;
  --raio: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(63, 224, 255, 0.07), transparent 60%),
    radial-gradient(50rem 35rem at -10% 25%, rgba(255, 180, 84, 0.05), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  margin-top: 2.5rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 1rem;
}

code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.08em 0.35em;
}

pre {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

pre code {
  display: block;
  background: none;
  border: 0;
  padding: 1.1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.6;
  tab-size: 2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip link e progresso ---------- */

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 60;
  background: var(--amber);
  color: #241503;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 55;
  background: transparent;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

/* ---------- Cabeçalho fixo ---------- */

.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 18, 38, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topo__inner {
  max-width: var(--largura);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.marca {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.marca__icone {
  width: 1.8rem;
  height: 1.8rem;
}

.marca__texto {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.marca__x {
  color: var(--amber);
}

.navsec {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.navsec ul {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  white-space: nowrap;
}

.navsec a {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.navsec a:hover {
  color: var(--ink);
  background: var(--bg-elev);
}

.navsec a.ativa {
  color: #06202b;
  background: var(--cyan);
  font-weight: 600;
}

.nav-mobile {
  display: none;
  margin-left: auto;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  max-width: var(--largura);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--cyan);
}

.hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
}

.hero__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
}

.botao {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.botao--primario {
  background: var(--cyan);
  color: #06202b;
}

.botao--primario:hover {
  background: var(--ink);
  color: #06202b;
}

.botao--secundario {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--bg-elev);
}

.botao--secundario:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__chips li {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.hero__figura {
  margin: 0;
  min-width: 0;
}

.hero__figura img {
  display: block;
  width: 100%;
  border-radius: var(--raio);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero__figura figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7rem;
  text-align: center;
}

/* ---------- Seções ---------- */

.secao {
  max-width: var(--largura);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.25rem 1rem;
}

.secao__numero {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.secao__numero::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 3.5rem;
  height: 1px;
  background: var(--amber);
  margin-left: 0.8rem;
  opacity: 0.5;
}

.secao__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 46rem;
}

.destaque {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--cyan);
  background: var(--bg-elev);
  border-radius: 0 var(--raio) var(--raio) 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
  line-height: 1.45;
}

.destaque strong {
  color: var(--cyan);
}

/* ---------- Cartões ---------- */

.cartoes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.cartoes--3 {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.cartoes--metricas {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.cartao {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.4rem 1.5rem;
}

.cartao h3,
.cartao h4 {
  margin-top: 0;
  color: var(--cyan);
}

.cartao p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cartao--metrica h4 {
  color: var(--amber);
}

/* ---------- Notas ---------- */

.nota {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--raio) var(--raio) 0;
  background: var(--bg-elev);
}

.nota p:last-child {
  margin-bottom: 0;
}

.nota--recomendacao {
  border-left-color: var(--cyan);
}

.nota-rodape {
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  margin-top: 1.5rem;
  max-width: 50rem;
}

.lista-marcada {
  padding-left: 1.2rem;
  color: var(--muted);
}

.lista-marcada li {
  margin-bottom: 0.6rem;
}

.lista-marcada li::marker {
  color: var(--amber);
}

/* ---------- Níveis de maturidade ---------- */

.niveis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.nivel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.4rem 1.5rem;
}

.nivel--recomendado {
  border-color: var(--cyan);
  background: var(--bg-elev-2);
  box-shadow: 0 0 0 1px var(--cyan), 0 12px 40px rgba(63, 224, 255, 0.08);
}

.nivel h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.nivel p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.nivel__tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.nivel__tag--destaque {
  color: var(--cyan);
}

.nivel__selo {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
}

/* ---------- Fluxo do ciclo ---------- */

.fluxo {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
  counter-reset: etapa;
}

.fluxo__etapa {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.3rem 1.4rem 1.2rem;
}

.fluxo__etapa h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.fluxo__etapa p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.fluxo__num {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.fluxo__etapa--red {
  border-color: rgba(255, 93, 93, 0.55);
}

.fluxo__etapa--red .fluxo__num {
  color: var(--red);
  border-color: var(--red);
}

.fluxo__etapa--green {
  border-color: rgba(61, 220, 132, 0.55);
}

.fluxo__etapa--green .fluxo__num {
  color: var(--green);
  border-color: var(--green);
}

.fluxo__etapa--amber {
  border-color: rgba(255, 180, 84, 0.55);
}

.fluxo__etapa--amber .fluxo__num {
  color: var(--amber);
  border-color: var(--amber);
}

.portao {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
}

.ciclo-svg {
  margin: 3rem 0 0;
}

.ciclo-svg svg {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 0.75rem;
}

.ciclo-svg figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7rem;
  text-align: center;
}

/* ---------- Tabelas ---------- */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--raio);
}

.tabela {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tabela th,
.tabela td {
  text-align: left;
  vertical-align: top;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.tabela tbody tr:last-child th,
.tabela tbody tr:last-child td {
  border-bottom: 0;
}

.tabela thead th {
  background: var(--bg-elev-2);
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--cyan);
}

.tabela thead th .th-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.tabela td {
  color: var(--muted);
}

.tabela td strong {
  color: var(--ink);
}

.tabela--compare td:first-child {
  white-space: nowrap;
}

/* ---------- Blocos de código ---------- */

.bloco-codigo {
  margin: 1.25rem 0 1.75rem;
  background: #060d1d;
  border: 1px solid var(--line);
  border-radius: var(--raio);
  overflow: hidden;
}

.bloco-codigo__barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.1rem;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
}

.bloco-codigo__titulo {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  flex-shrink: 0;
  font: 700 0.75rem var(--sans);
  color: var(--cyan);
  background: transparent;
  border: 1px solid var(--cyan-dim);
  border-radius: 7px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
}

.copy-btn:hover {
  background: var(--cyan);
  color: #06202b;
}

.copy-btn.copiado {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.arquivo {
  font-family: var(--mono);
  font-size: 0.72em;
  font-weight: 400;
  color: var(--muted);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.2em 0.55em;
  vertical-align: middle;
  white-space: nowrap;
}

.evidencia {
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.2rem 1.4rem;
  background: var(--bg-elev);
}

.evidencia--red {
  border-left: 3px solid var(--red);
}

.evidencia__titulo {
  font-weight: 700;
  color: var(--ink);
}

.evidencia pre {
  background: #060d1d;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0.75rem 0 1rem;
}

.evidencia pre code {
  color: var(--red);
  font-size: 0.8rem;
}

.evidencia p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Prompts ---------- */

.prompts {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.prompt-card {
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.3rem 1.4rem 0.6rem;
  background: var(--bg-elev);
}

.prompt-card > h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
}

.prompt-card .bloco-codigo {
  margin-bottom: 0.8rem;
}

.prompt-card__etapa {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-dim);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.prompt-card__portao {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
}

.prompt-card--red {
  border-left: 3px solid var(--red);
}

.prompt-card--red .prompt-card__etapa {
  color: var(--red);
  border-color: rgba(255, 93, 93, 0.6);
}

.prompt-card--green {
  border-left: 3px solid var(--green);
}

.prompt-card--green .prompt-card__etapa {
  color: var(--green);
  border-color: rgba(61, 220, 132, 0.6);
}

.prompt-card--amber {
  border-left: 3px solid var(--amber);
}

.prompt-card--amber .prompt-card__etapa {
  color: var(--amber);
  border-color: rgba(255, 180, 84, 0.6);
}

/* ---------- Anti-padrões ---------- */

.antipadroes {
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1rem;
}

.antipadrao {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1.3rem 1.4rem;
}

.antipadrao dt {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.antipadrao dd {
  margin: 0;
}

.antipadrao dd p {
  color: var(--muted);
  font-size: 0.93rem;
}

.antipadrao .gate {
  margin-bottom: 0;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--line);
  color: var(--ink);
}

.antipadrao .gate strong {
  color: var(--green);
}

/* ---------- Roadmap ---------- */

.roadmap {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.roadmap__fase {
  position: relative;
  padding: 0 0 1.75rem 2.4rem;
  border-left: 2px solid var(--line);
  margin-left: 0.6rem;
}

.roadmap__fase:last-child {
  border-left-color: transparent;
  padding-bottom: 0.5rem;
}

.roadmap__fase::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
}

.roadmap__fase h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.roadmap__fase p {
  color: var(--muted);
  max-width: 44rem;
  margin-bottom: 0;
}

.roadmap__n {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.25rem;
}

/* ---------- FAQ ---------- */

.faq-lista {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.3rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 1.4rem;
  font-family: var(--mono);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
}

.faq-item p {
  padding: 1rem 1.3rem;
  margin: 0;
  color: var(--muted);
}

/* ---------- Fontes ---------- */

.fontes-lista {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.fontes-lista li {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--raio);
  padding: 1rem 1.3rem;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.fontes-lista a,
.fontes-lista cite {
  font-weight: 700;
  font-style: normal;
}

.fonte-desc {
  color: var(--muted);
}

/* ---------- Rodapé ---------- */

.rodape {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
}

.rodape__inner {
  max-width: var(--largura);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
}

.rodape p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.rodape__nota {
  font-size: 0.82rem;
}

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .navsec {
    display: none;
  }

  .nav-mobile {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__figura {
    order: -1;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .topo__inner {
    padding: 0.5rem 0.9rem;
    gap: 0.75rem;
  }

  .secao,
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  pre code {
    font-size: 0.78rem;
    padding: 0.9rem 1rem;
  }

  .destaque {
    padding: 1.1rem 1.2rem;
  }

  .tabela--compare td:first-child {
    white-space: normal;
  }
}
