/* Módulo 6 — Retas paralelas e teorema de Tales */
@import url("../modulo-1/modulo.css");

.math-prompt-l {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem 1.15rem 1.25rem;
  background: var(--surface);
  border-left: 8px solid var(--math-orange);
  border-bottom: 8px solid var(--math-orange);
  border-radius: 0 0 var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Enunciado do teorema (destaque) */
.math-theorem-box {
  margin: 1.35rem 0;
  padding: 1.1rem 1.2rem;
  background: #fffde7;
  border: 1px solid #ffe082;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .math-theorem-box {
  background: rgba(255, 253, 231, 0.1);
  border-color: rgba(255, 224, 130, 0.4);
}

.math-theorem-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--math-navy);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-theme="dark"] .math-theorem-box strong {
  color: var(--math-orange);
}

/* Figura feixe de paralelas + transversais */
.math-thales-figure {
  margin: 1.25rem 0;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.math-thales-figure svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.math-note-inline {
  margin: 0.75rem 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.86rem;
  background: #fff9c4;
  border-left: 4px solid #fbc02d;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

[data-theme="dark"] .math-note-inline {
  background: rgba(251, 192, 45, 0.12);
  border-color: #fbc02d;
}

.math-sticks-hint {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: color-mix(in srgb, var(--math-orange) 6%, var(--surface));
  font-size: 0.9rem;
}

.math-formula-line {
  font-family: var(--mono);
  font-size: 1rem;
}

.math-overline {
  text-decoration: overline;
  text-decoration-thickness: 1.2px;
  padding: 0 0.08em;
}
