/* =========================================================
   COMPOSIÇÃO – BIOMAPA
   Layout final alinhado com Patentes
========================================================= */

/* =========================================================
   CONTAINER PRINCIPAL
========================================================= */

.composicao-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  color: #1f2937;
}

/* =========================================================
   ACCORDION – ESPÉCIE
========================================================= */

.accordion-root {
  margin-top: 24px;
}

.accordion-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  background: #586ced;
  color: #ffffff;
  border: none;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.accordion-header::after {
  content: "▾";
  position: absolute;
  right: 22px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-header:hover {
  background: #1730d6;
}

.accordion-content {
  display: none;
  background: #f8fafc;
  padding: 22px;
  border-radius: 10px;
}

/* ==============================
   SEÇÃO DE COMPOSIÇÃO
============================== */

.composicao-section {
  margin-bottom: 48px;
}

/* título da composição */
.composicao-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
  text-align: center;
}

/* ==============================
   TABELA
============================== */

.table-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* CENTRALIZA */
  margin-bottom: 32px;
}

.composicao-table {
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
  text-align: center; /* CONTEÚDO CENTRALIZADO */
}

/* linhas e colunas */
.composicao-table th,
.composicao-table td {
  border: 1px solid #d1d5db;
  padding: 10px 12px;
}

/* cabeçalho */
.composicao-table thead th {
  background: #f1f5f9;
  font-weight: 700;
  white-space: nowrap;
}

/* primeira coluna (fração) */
.composicao-table td:first-child,
.composicao-table th:first-child {
  font-weight: 700;
  background: #f8fafc;
  text-align: center;
}

/* hover leve */
.composicao-table tbody tr:hover {
  background: #f9fafb;
}


/* =========================================================
   ESTADOS AUXILIARES
========================================================= */

.apps-error,
.apps-hint {
  background: #f8fafc;
  padding: 18px;
  border-radius: 8px;
  border: 1px dashed #cbd5f5;
  font-size: 14px;
  text-align: center;
  color: #475569;
}
/* =========================================================
   BARRAS DE COMPOSIÇÃO – ESTILO PANORAMA (FINAL)
========================================================= */

/* container das barras */
.comp-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 10px;
}

/* ===============================
   BARRA DE ESPÉCIE – COMPOSIÇÃO
   PADRÃO IGUAL A APLICAÇÕES
=============================== */

.comp-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #586ced;
  color: #ffffff;

  border: none;
  border-radius: 10px;

  padding: 18px 48px;        /* IGUAL aplicações */
  font-size: 18px;           /* IGUAL aplicações */
  font-weight: 600;          /* IGUAL aplicações */

  cursor: pointer;
  position: relative;
  text-align: center;

  transition: background 0.2s ease;
}

.comp-tab:hover {
  background: #1730d6;
}

/* setinha */
.comp-tab::after {
  content: "▾";
  position: absolute;
  right: 22px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

/* ativo */
.comp-tab.active {
  background: #586ced;
  color: #ffffff;
}

/* gira seta */
.comp-tab.active::after {
  transform: rotate(180deg);
}
/* =====================================================
   FORÇAR PADRÃO DE APLICAÇÕES
   NAS ESPÉCIES DE COMPOSIÇÃO
===================================================== */

.composicao-page .accordion-header {
  font-size: 18px;                 /* tamanho igual aplicações */
  font-weight: 600;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  padding: 18px 48px;
  background: #586ced;
  color: #ffffff;
  justify-content: center;
}
.apps-footnote{
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.35;
}