/* ============================================
   REVAYA TREINAMENTOS — páginas de formação
   Carregado depois de service.css (herda tokens,
   header, hero, section-header, faq, cta e footer).
   ============================================ */

/* ---- Hero: ajustes ---- */
.page-training .hero {
    padding-bottom: 120px;
}

.page-training .hero-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-training .hero-subtitle {
    max-width: 760px;
}

.page-training .hero-stats {
    margin-top: 8px;
}

.page-training .hero-stat-number {
    font-size: 1.9rem;
}

/* ---- Ficha do curso (sobrepõe o hero) ---- */
.tr-facts {
    position: relative;
    z-index: 5;
    margin-top: -64px;
    padding: 0;
    background: transparent;
}

.tr-facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.tr-fact {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tr-fact:last-child {
    border-right: none;
}

.tr-fact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent-ultra-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.tr-fact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tr-fact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* ---- Seções padrão ---- */
.tr-section {
    padding: 120px 0;
    position: relative;
}

.tr-section.alt {
    background: var(--bg-secondary);
}

.tr-section.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.tr-section .section-header {
    margin-bottom: 56px;
}

.section-header.left {
    text-align: left;
}

.section-header.left .section-title,
.section-header.left .section-subtitle {
    margin-left: 0;
}

/* ---- Contexto (texto + card) ---- */
.tr-intro {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: center;
}

.tr-intro-text p {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tr-intro-text p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tr-intro-text .tr-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.35;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    margin: 28px 0;
}

.tr-highlight-card {
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.tr-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(45, 91, 255, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(108, 59, 255, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

.tr-highlight-card > * {
    position: relative;
    z-index: 1;
}

.tr-highlight-card .tr-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 18px;
}

.tr-highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 22px;
}

.tr-highlight-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tr-highlight-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.tr-highlight-card li i {
    color: var(--accent-light);
    margin-top: 4px;
    font-size: 13px;
}

/* ---- Camadas (arquitetura da jornada) ---- */
.tr-layers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 48px;
}

.tr-layer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.tr-layer:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 91, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.tr-layer-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.tr-layer h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tr-layer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.tr-layer.is-final {
    background: var(--accent);
    border-color: var(--accent);
}

.tr-layer.is-final .tr-layer-num,
.tr-layer.is-final h4 {
    color: #fff;
}

.tr-layer.is-final p {
    color: rgba(255, 255, 255, 0.82);
}

/* ---- Público-alvo ---- */
.tr-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tr-audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.tr-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.tr-audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.tr-audience-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.tr-audience-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tr-prereq {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px dashed rgba(45, 91, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.tr-prereq h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr-prereq ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.tr-prereq li {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.tr-prereq li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* ---- O que você vai aprender ---- */
.tr-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.tr-outcome {
    display: flex;
    gap: 18px;
    padding: 26px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.tr-outcome:hover {
    border-color: rgba(45, 91, 255, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tr-outcome-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(45, 91, 255, 0.25);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.tr-outcome h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.tr-outcome p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Programa (acordeão de módulos) ---- */
.tr-program {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.tr-module {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out-expo);
}

.tr-module:hover {
    border-color: rgba(45, 91, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.tr-module.is-bonus {
    border-style: dashed;
    border-color: rgba(108, 59, 255, 0.4);
}

.tr-module .faq-question {
    padding: 22px 26px;
    gap: 18px;
    text-align: left;
}

.tr-module-head {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.tr-module-num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.is-bonus .tr-module-num {
    background: var(--accent-warm);
}

.tr-module-titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tr-module-titles h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.3;
}

.tr-module-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tr-module-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tr-module-meta i {
    font-size: 11px;
    color: var(--accent);
}

.tr-module .faq-answer.active {
    max-height: 2400px;
    padding: 0 26px 30px 26px;
}

.tr-module-body {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    margin-left: 62px;
}

.tr-module-body > p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 22px;
}

.tr-module-cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}

.tr-module-block h5 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.tr-module-block ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.tr-module-block li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.tr-module-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.55;
}

.tr-deliverable {
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

.tr-deliverable h5 {
    margin-bottom: 8px;
}

.tr-deliverable p {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.55;
}

.tr-deliverable + .tr-deliverable,
.tr-deliverable.secondary {
    margin-top: 12px;
    background: transparent;
    border-color: var(--border);
}

.tr-deliverable.secondary p {
    color: var(--text-secondary);
    font-weight: 400;
}

.tr-program-note {
    max-width: 1000px;
    margin: 32px auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* ---- Fio condutor (cadeia de entregáveis) ---- */
.tr-chain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.tr-chain-step {
    position: relative;
    padding: 28px 24px 28px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tr-chain-step:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.tr-chain-step:last-child {
    border-right: 1px solid var(--border);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--bg-dark);
    color: #fff;
}

.tr-chain-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 22px;
    height: 22px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    transform: translate(50%, -50%) rotate(45deg);
    z-index: 2;
}

.tr-chain-step .tr-chain-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
}

.tr-chain-step:last-child .tr-chain-tag {
    color: var(--accent-light);
}

.tr-chain-step h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.tr-chain-step p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.tr-chain-step:last-child p {
    color: rgba(255, 255, 255, 0.72);
}

/* ---- Cronograma ---- */
.tr-schedule {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tr-schedule-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 16px 26px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 0.94rem;
    color: var(--text-secondary);
}

.tr-schedule-row:last-child {
    border-bottom: none;
}

.tr-schedule-row.is-break {
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-style: italic;
}

.tr-schedule-row.is-module {
    background: var(--accent-ultra-light);
    color: var(--text-primary);
    font-weight: 600;
}

.tr-schedule-time {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.is-break .tr-schedule-time {
    color: var(--text-muted);
}

.tr-schedule.is-plain .tr-schedule-row {
    grid-template-columns: 1fr;
}

.tr-schedule-foot {
    max-width: 900px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Metodologia / regras ---- */
.tr-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tr-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.tr-method-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 91, 255, 0.25);
}

.tr-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-ultra-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 18px;
}

.tr-method-card h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.tr-method-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Painel / cases (layout em duas colunas) ---- */
.tr-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tr-panel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.tr-panel-card.dark {
    background: var(--bg-dark);
    color: #fff;
    border-color: transparent;
}

.tr-panel-card .section-tag {
    margin-bottom: 18px;
}

.tr-panel-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.tr-panel-card > p {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tr-panel-card.dark > p {
    color: rgba(255, 255, 255, 0.7);
}

.tr-panel-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.tr-panel-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.tr-panel-card.dark li {
    color: rgba(255, 255, 255, 0.78);
}

.tr-panel-card li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 13px;
    flex-shrink: 0;
}

.tr-panel-card.dark li i {
    color: var(--accent-light);
}

.tr-panel-card li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tr-panel-card.dark li strong {
    color: #fff;
}

.tr-panel-card li em {
    display: inline-block;
    margin-left: 6px;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
    white-space: nowrap;
}

.tr-panel-card.dark li em {
    color: var(--accent-light);
}

/* ---- Facilitadores ---- */
.tr-facilitators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tr-facilitator {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.tr-facilitator-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(45, 91, 255, 0.3);
}

.tr-facilitator h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.tr-facilitator .tr-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.tr-facilitator p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Logística / o que levar ---- */
.tr-logistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tr-logistics-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 32px;
    box-shadow: var(--shadow-sm);
}

.tr-logistics-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr-logistics-card h4 i {
    color: var(--accent);
}

.tr-logistics-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.tr-logistics-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.tr-logistics-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    color: var(--accent);
}

/* ---- Outro treinamento (cross-link) ---- */
.tr-other {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-md);
}

.tr-hub-grid + .tr-other {
    margin-top: 28px;
}

.tr-other h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 10px 0 12px;
    line-height: 1.25;
}

.tr-other p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
}

/* ---- Hub de treinamentos ---- */
.tr-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.tr-hub-grid.is-single {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.tr-hub-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.tr-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 91, 255, 0.3);
}

.tr-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.tr-hub-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 14px 0 12px;
}

.tr-hub-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tr-hub-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 26px;
}

.tr-hub-fact {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.tr-hub-fact span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tr-hub-fact strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tr-hub-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-bottom: 32px;
    flex: 1;
}

.tr-hub-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}

.tr-hub-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    color: var(--accent);
}

.tr-hub-card .btn {
    align-self: flex-start;
}

.tr-compare {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tr-compare-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.tr-compare-row:last-child {
    border-bottom: none;
}

.tr-compare-row > div {
    padding: 16px 22px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    border-right: 1px solid var(--border);
}

.tr-compare-row > div:last-child {
    border-right: none;
}

.tr-compare-row > div:first-child {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.tr-compare-row.is-head > div {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    background: var(--accent-ultra-light);
}

/* ---- Responsivo ---- */
@media (max-width: 1024px) {
    .tr-facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tr-fact:nth-child(3n) {
        border-right: none;
    }

    .tr-fact {
        border-bottom: 1px solid var(--border);
    }

    .tr-layers {
        grid-template-columns: repeat(3, 1fr);
    }

    .tr-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-chain {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-chain-step {
        border-right: 1px solid var(--border);
        border-radius: 0 !important;
    }

    .tr-chain-step::after {
        display: none;
    }

    .tr-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tr-facilitators {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tr-section {
        padding: 80px 0;
    }

    .tr-facts {
        margin-top: -40px;
    }

    .tr-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tr-fact {
        border-right: 1px solid var(--border);
        padding: 20px 18px;
    }

    .tr-fact:nth-child(2n) {
        border-right: none;
    }

    .tr-layers,
    .tr-audience-grid,
    .tr-outcomes,
    .tr-method-grid,
    .tr-chain,
    .tr-split,
    .tr-logistics,
    .tr-facilitators,
    .tr-hub-grid {
        grid-template-columns: 1fr;
    }

    .tr-prereq {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }

    .tr-module .faq-question {
        padding: 18px;
    }

    .tr-module-num {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .tr-module .faq-answer.active {
        padding: 0 18px 22px 18px;
    }

    .tr-module-body {
        margin-left: 0;
    }

    .tr-module-cols {
        grid-template-columns: 1fr;
    }

    .tr-schedule-row {
        grid-template-columns: 80px 1fr;
        padding: 14px 18px;
        font-size: 0.88rem;
    }

    .tr-other {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 24px;
    }

    .tr-hub-card {
        padding: 30px;
    }

    .tr-hub-facts {
        grid-template-columns: 1fr;
    }

    .tr-compare-row {
        grid-template-columns: 1fr;
    }

    .tr-compare-row > div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .tr-compare-row > div:last-child {
        border-bottom: none;
    }

    .tr-compare-row.is-head {
        display: none;
    }

    .tr-compare-row > div:nth-child(2)::before {
        content: 'IA para Negócios · ';
        font-weight: 700;
        color: var(--accent);
    }

}
