/* =============================================
   ESTILOS DO BLOCO DE CONTEÚDO EDITORIAL
   ============================================= */

.content-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  line-height: 1.75;
  color: #2d3748;
}

.content-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #f6ad55;
}

.content-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1.5rem 0 0.5rem;
}

.content-card p {
  margin-bottom: 1rem;
  color: #4a5568;
}

/* Tabelas */
.imc-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.imc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.imc-table thead tr {
  background: #2d3748;
  color: #fff;
}

.imc-table th, .imc-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.imc-table tbody tr:hover { background: #f7fafc; }
.imc-row-normal { background: #f0fff4; }
.imc-row-sobrepeso { background: #fffff0; }
.imc-row-obesidade { background: #fff5f0; }
.imc-row-obesidade-grave { background: #fff0f0; }
.imc-row-baixo { background: #ebf8ff; }

/* Lista de conteúdo */
.content-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #4a5568;
}

/* Info box */
.info-box {
  background: #ebf8ff;
  border-left: 4px solid #3182ce;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  color: #2b6cb0;
}

/* Grid de limitações */
.limitations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1 fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.limitation-item {
  background: #f7fafc;
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
}

.limitation-item h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #2d3748;
}

/* Hub de calculadoras */
/*.hub-section { background: linear-gradient(135deg, #667eea08, #764ba208); }*/


.hub-section {
  background: #ffffff;
  border: 2px solid #f6ad55;
}



.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1 fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hub-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hub-card:hover {
  border-color: #f6ad55;
  box-shadow: 0 4px 16px rgba(246,173,85,0.2);
  transform: translateY(-2px);
}

.hub-icon { font-size: 1.8rem; }

.hub-card h3 {
  font-size: 1rem;
  margin: 0;
  color: #1a202c;
}

.hub-card p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
  flex: 1;
}

.hub-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #dd6b20;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  background: #fafafa;
}

.faq-item h3 {
  font-size: 1rem;
  color: #2d3748;
  margin: 0 0 0.5rem;
  cursor: pointer;
}

.faq-item p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

/* Disclaimer */
.disclaimer-card {
  background: #fffbeb;
  border: 1px solid #f6e05e;
}

/* Mobile */
@media (max-width: 640px) {
  .content-card { padding: 1.25rem; }
  .limitations-grid { grid-template-columns: 1 fr; }
  .hub-grid { grid-template-columns: 1 fr 1 fr; }
}



