/* Página Transparência */

.tp-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* ---------- Hero ---------- */
.tp-hero {
    background-color: var(--bg-color);
    padding: 20px 0 0;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-color);
}

.tp-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.2fr);
    gap: 24px;
    align-items: end;
}

.tp-hero-text {
    padding-bottom: 48px;
}

.tp-hero-text h1 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.6vw, 4.25rem);
    line-height: 1.02;
    color: var(--secondary-color);
    margin: 0 0 28px;
}

.tp-hero-text p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--secondary-color);
    margin: 0;
    max-width: 460px;
}

.tp-hero-text p strong {
    font-weight: 700;
}

.tp-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: -20px;
}

.tp-hero-visual img {
    width: 118%;
    max-width: none;
    height: auto;
    display: block;
    transform-origin: bottom right;
}

/* ---------- Sistema (verde) ---------- */
.tp-sistema {
    background-color: var(--accent-color);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.tp-fluxo {
    margin-bottom: 60px;
}

.tp-fluxo img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-sistema-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tp-sistema-copy h2 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.15;
    color: var(--secondary-color);
    margin: 0;
}

.tp-sistema-text p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--secondary-color);
    margin: 0 0 16px;
}

.tp-sistema-text p:last-child {
    margin-bottom: 0;
}

.tp-ondas {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.tp-ondas-sistema {
    left: 0;
    bottom: 0;
    width: min(320px, 40vw);
    height: auto;
}

/* ---------- Resultados ---------- */
.tp-resultados {
    background-color: var(--bg-color);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.tp-resultados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.tp-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.tp-stat {
    margin-bottom: 28px;
}

.tp-stat:last-child {
    margin-bottom: 0;
}

.tp-stat strong, .tp-stat strong span {
    display: block;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.05;
    color: var(--accent-color);
}

.tp-stat > span {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.tp-resultados-copy h2 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.15;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.tp-resultados-copy p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--secondary-color);
    margin: 0;
}

.tp-resultados-copy p strong,
.tp-sistema-text p strong {
    font-weight: 700;
}

.tp-tabela-wrap {
    margin-bottom: 36px;
}

.tp-tabela-2025 {
    width: 100%;
    height: auto;
    display: block;
}

.tp-cta-center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* ---------- CTA final ---------- */
.tp-cta-final {
    background-color: var(--secondary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tp-cta-final-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tp-cta-final h2 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.2vw, 2.85rem);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.tp-cta-final-aside p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.tp-ondas-relatorio {
    right: 0;
    bottom: 0;
    width: min(360px, 45vw);
    height: auto;
}

/* Botão vermelho no bloco escuro (mesmo tamanho do template) */
.tp-btn-on-dark {
    background-color: var(--primary-color);
    color: #fff;
}

.tp-btn-on-dark:hover {
    background-color: #d40a0a;
    color: #fff;
}

.tp-btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .tp-hero-grid,
    .tp-sistema-copy,
    .tp-resultados-grid,
    .tp-cta-final-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tp-hero-text {
        padding-bottom: 0;
        order: 1;
    }

    .tp-hero-visual {
        justify-content: center;
        margin-right: 0;
        order: 2;
    }

    .tp-hero-visual img {
        width: 100%;
        max-width: 520px;
    }

    .tp-hero {
        padding: 32px 0 0;
    }

    .tp-sistema {
        padding: 48px 0 80px;
    }

    .tp-resultados,
    .tp-cta-final {
        padding: 56px 0;
    }
}

@media (max-width: 768px) {
    .tp-fluxo {
        margin-bottom: 36px;
    }

    .tp-hero-text h1 {
        font-size: 2.2rem;
    }

    .tp-ondas-sistema,
    .tp-ondas-relatorio {
        width: min(220px, 55vw);
        opacity: 0.85;
    }
}
