/* Add here all your CSS customizations */
:root {
    --rwa-navy: #001f3f;
    --rwa-blue: #0d6efd;
    --rwa-surface: #ffffff;
    --rwa-surface-soft: #f8fbff;
    --rwa-border: #e6edf8;
    --rwa-shadow-soft: 0 8px 20px rgba(11, 35, 84, 0.06);
}
/* Espacamento vertical entre linhas quando as colunas quebram (ex.: .row.pb-4.mt-2) */
.row.pb-4.mt-2 {
    row-gap: 1.5rem;
    align-items: flex-start;
}

/* Remove margin-bottom nas colunas ja que usamos gap */
.row.pb-4.mt-2 > [class*="col-"] {
    margin-bottom: 0;
}

/* Fallback para navegadores que nao suportam gap em flex */
@supports not (row-gap: 1px) {
    .row.pb-4.mt-2 > [class*="col-"] {
        margin-bottom: 1.5rem;
    }
}

/* Home 2026 refresh (sem alterar menu transparente superior) */
.home-intro-modern {
    position: relative;
    background: var(--rwa-navy) !important;
    background-color: var(--rwa-navy) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-intro-modern .intro-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.home-intro-modern .intro-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}


.modern-kpi-section {
    background: radial-gradient(circle at 20% 10%, #f4f8ff 0%, var(--rwa-surface) 55%);
}

.modern-kpi-section .counter {
    background: #fff;
    border: 1px solid #e8eef8;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(17, 35, 79, 0.06);
    padding: 22px 14px;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}

.modern-kpi-section .counter:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 35, 79, 0.11);
}

.modern-kpi-section .counter i {
    color: var(--rwa-blue);
    margin-bottom: 6px;
}

.modern-update-section .modern-version-card {
    display: block;
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(20, 37, 73, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}

.modern-update-section .modern-version-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(20, 37, 73, 0.12);
}

.modern-update-section .thumb-info-wrapper {
    padding: 16px 16px 0;
}

.modern-update-section .thumb-info-wrapper img {
    border-radius: 12px;
}

.modern-update-section .thumb-info-caption {
    display: block;
    padding: 20px 22px 24px;
}

@media (max-width: 991px) {
    .home-intro-modern .intro-title {
        font-size: 1.2rem;
    }

    .home-intro-modern .intro-subtitle {
        display: block;
        margin-bottom: 10px;
    }
}

/* ── Hero estático: responsividade mobile ── */
@media (max-width: 767px) {
    .rwa-hero-static {
        padding: 120px 0 60px !important;
    }

    .rwa-hero-static h1 {
        font-size: 1.7rem !important;
        line-height: 1.25 !important;
    }

    .rwa-hero-static h1 br {
        display: none;
    }

    .rwa-hero-static p {
        font-size: 1rem !important;
    }

    .rwa-hero-static p br {
        display: none;
    }

    .rwa-hero-static .btn-lg {
        padding: 12px 24px !important;
        font-size: 0.95rem;
        display: block;
        width: 100%;
    }

    .rwa-hero-static .mt-4 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .rwa-hero-static {
        padding: 150px 0 80px !important;
    }

    .rwa-hero-static h1 {
        font-size: 2.2rem !important;
    }
}

/* Fase 2 - mobile first */
.phase2-section {
    padding: 44px 0;
}

.phase2-audience {
    background: var(--rwa-surface-soft);
}

.phase2-card {
    background: var(--rwa-surface);
    border: 1px solid var(--rwa-border);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 8px 20px rgba(13, 28, 61, 0.05);
}

.phase2-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #16213d;
}

.phase2-compare {
    background: var(--rwa-surface);
}

.phase2-panel {
    border-radius: 14px;
    padding: 16px 14px;
    border: 1px solid #e8edf6;
}

.phase2-before {
    background: #fff8f8;
}

.phase2-after {
    background: #f4fbf7;
}

.phase2-panel-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.phase2-list {
    margin: 0;
    padding-left: 18px;
}

.phase2-list li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.phase2-metric {
    border-radius: 12px;
    border: 1px solid #dfe8f7;
    background: #fbfdff;
    padding: 10px;
    text-align: center;
}

.phase2-metric strong {
    display: block;
    color: #0b2d74;
    font-size: 1.2rem;
    line-height: 1.2;
}

.phase2-metric span {
    font-size: 0.82rem;
    color: #54617d;
}

.phase2-proof {
    background: linear-gradient(180deg, #f6f9ff 0%, var(--rwa-surface) 100%);
}

.phase2-quote {
    background: var(--rwa-surface);
    border: 1px solid #e5ebf5;
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: var(--rwa-shadow-soft);
}

.phase2-quote p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #223153;
}

.phase2-quote small {
    display: block;
    margin-top: 10px;
    color: #63708b;
    font-weight: 700;
}

@media (min-width: 992px) {
    .phase2-section {
        padding: 68px 0;
    }

    .phase2-card,
    .phase2-panel,
    .phase2-quote {
        padding: 22px;
    }

    .phase2-card-title {
        font-size: 1.12rem;
    }

    .phase2-card p,
    .phase2-quote p {
        font-size: 1rem;
    }
}

.rwa-navy-section {
    background: var(--rwa-navy) !important;
    background-color: var(--rwa-navy) !important;
}

/* Acessibilidade */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--rwa-navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    color: #fff;
    text-decoration: none;
}

/* Fase 3 */
.phase3-status-section {
    background: var(--rwa-surface-soft);
    padding: 44px 0;
}

.phase3-status-card {
    display: block;
    height: 100%;
    border: 1px solid #e4ebf7;
    border-radius: 12px;
    background: #fff;
    padding: 16px 14px;
    box-shadow: 0 8px 20px rgba(11, 35, 84, 0.05);
    text-decoration: none;
}

.phase3-status-card strong {
    display: block;
    color: #132245;
    margin-bottom: 6px;
}

.phase3-status-card span {
    display: block;
    color: #5d6b85;
    font-size: 0.92rem;
    line-height: 1.4;
}

.phase3-status-card:hover,
.phase3-status-card:focus {
    text-decoration: none;
    transform: translateY(-2px);
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 12px 24px rgba(11, 35, 84, 0.11);
}

@media (min-width: 992px) {
    .phase3-status-section {
        padding: 62px 0;
    }

    .phase3-status-card {
        padding: 20px 18px;
    }
}

/* Ajuste fino mobile-first (fase final) */
.phase2-section h2,
.phase3-status-section h2 {
    font-size: 1.45rem;
    line-height: 1.25;
}

.phase2-section .text-muted,
.phase3-status-section .text-muted {
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.phase2-card p,
.phase2-list li,
.phase3-status-card span {
    font-size: 0.92rem;
}

.phase2-metric strong {
    font-size: 1.08rem;
}

.phase2-metric span {
    font-size: 0.78rem;
}

.phase3-status-card {
    min-height: 118px;
}

.phase3-status-card:focus {
    outline: 2px solid #2f6ef7;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .phase2-section h2,
    .phase3-status-section h2 {
        font-size: 1.75rem;
    }

    .phase2-card p,
    .phase2-list li,
    .phase3-status-card span {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    .phase2-section h2,
    .phase3-status-section h2 {
        font-size: 2rem;
    }

    .phase3-status-card {
        min-height: 132px;
    }
}

/* Compatibilidade dos icones do WhatsApp sem FontAwesome legado */
.wcs_button .fab,
.wcs_button .fas {
    font-size: 15px;
    margin-right: 3px;
}

.wcs_button_circle .fab,
.wcs_button_circle .fas {
    line-height: 50px;
    font-size: 25px;
    margin-right: 0;
}

/* Evita warning de scroll-linked/parallax no Firefox */
.parallax,
section.section.section-parallax,
.page-header.page-header-modern.page-header-background.page-header-background-pattern {
    background-attachment: scroll !important;
}

/* Central de treinamento */
.training-page {
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.08), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(15, 23, 42, 0.05), transparent 24%),
        linear-gradient(180deg, #f3f7fd 0%, #ffffff 18%, #f7fbff 100%);
}

.training-hero {
    background-color: #0b1220 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding-top: 225px;
    padding-bottom: 120px;
}

.training-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.46), rgba(8, 12, 18, 0.56));
    pointer-events: none;
}

.training-hero .container {
    position: relative;
    z-index: 1;
}

.training-hero-panel {
    max-width: 840px;
    margin: 100px auto 0;
    padding: 34px 34px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: rgba(10, 12, 18, 0.68);
    box-shadow: 0 18px 44px rgba(2, 8, 18, 0.30);
}

.training-hero-panel,
.training-hero-panel h1,
.training-hero-panel p,
.training-hero-panel span {
    color: #ffffff !important;
}

.training-hero-panel h1 {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.training-hero-panel .btn-light {
    color: #0f2f61 !important;
}

.training-hero-panel .btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

.training-hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.training-hero-lead {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.training-hero-note {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.96rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.training-hero-actions .btn {
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(7, 25, 59, 0.18);
}

.training-shell {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.training-anchor-nav {
    position: sticky;
    top: 80px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 30px;
    padding: 18px 20px;
    border: 1px solid rgba(12, 44, 110, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 36px rgba(10, 31, 68, 0.08);
    backdrop-filter: blur(10px);
}

.training-anchor-nav a {
    color: #14315e;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.training-anchor-nav a:hover {
    color: var(--rwa-blue);
}

.training-section {
    margin-bottom: 32px;
    padding: 34px 28px;
    border: 1px solid #e7edf7;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(12, 37, 84, 0.06);
}

.training-section-heading {
    max-width: 860px;
    margin-bottom: 26px;
}

.training-section-heading h2 {
    margin-bottom: 12px;
    color: #14284b;
    font-size: 2rem;
    font-weight: 800;
}

.training-section-heading p {
    margin-bottom: 0;
    color: #53617e;
    line-height: 1.75;
}

.training-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rwa-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.training-entry-card {
    position: relative;
    height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    border: 1px solid #e2eaf7;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 14px 30px rgba(12, 37, 84, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.training-entry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(12, 37, 84, 0.12);
    border-color: #bfd4f8;
}

.training-entry-card.is-primary {
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.training-entry-card.is-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
}

.training-entry-card.is-neutral {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.training-entry-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0d6efd, #59b4ff);
    opacity: 0.85;
}

.training-entry-card.is-secondary::after {
    background: linear-gradient(90deg, #0a58ca, #74c0fc);
}

.training-entry-card.is-neutral::after {
    background: linear-gradient(90deg, #5c6f91, #9aabc4);
}

.training-entry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #0d6efd;
    color: #fff;
    font-size: 1.4rem;
}

.training-entry-card h3 {
    margin-bottom: 10px;
    color: #152a4c;
    font-size: 1.35rem;
    font-weight: 800;
}

.training-entry-card p {
    margin-bottom: 18px;
    color: #55637e;
    line-height: 1.7;
}

.training-entry-cta {
    color: #0d63d8;
    font-size: 0.95rem;
    font-weight: 800;
}

.training-journey-step {
    position: relative;
    height: 100%;
    padding: 24px 20px 22px;
    border: 1px solid #e5ebf5;
    border-radius: 20px;
    background: linear-gradient(180deg, #fcfdff 0%, #f7faff 100%);
}

.training-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-weight: 800;
}

.training-journey-step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a3159;
}

.training-journey-step p {
    margin: 0;
    color: #5b6984;
    line-height: 1.65;
}

.training-stage + .training-stage {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #edf2fa;
}

.training-stage-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.training-stage-nav a {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f1f6ff;
    color: #214a92;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.training-stage-nav a:hover {
    background: #dce9ff;
    color: #163569;
}

.training-reset-stage,
.training-reset-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #dce1ea;
    background: #f8fafe;
    color: #6b7a96;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.training-reset-stage:hover,
.training-reset-all:hover {
    background: #fff0f0;
    color: #c0392b;
    border-color: #e8c4c0;
}

.training-reset-stage i,
.training-reset-all i {
    font-size: 0.78rem;
}

.training-reset-all {
    margin-left: auto;
    background: transparent;
    border-color: #d0d8e8;
    color: #8b96aa;
}

.training-reset-all:hover {
    background: #fff0f0;
    color: #c0392b;
    border-color: #e8c4c0;
}

.training-stage-header {
    max-width: 760px;
    margin-bottom: 18px;
}

.training-stage-header h3 {
    margin-bottom: 10px;
    color: #1a3159;
    font-size: 1.4rem;
    font-weight: 800;
}

.training-stage-header h3::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #5bb7ff);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.10);
    vertical-align: middle;
}

#etapa-preparacao .training-stage-header h3::before {
    background: linear-gradient(135deg, #0d6efd, #5bb7ff);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.10);
}

#etapa-operacao .training-stage-header h3::before {
    background: linear-gradient(135deg, #0ea770, #5ee0a8);
    box-shadow: 0 0 0 6px rgba(14, 167, 112, 0.10);
}

#etapa-financeiro .training-stage-header h3::before {
    background: linear-gradient(135deg, #e67e22, #f5b041);
    box-shadow: 0 0 0 6px rgba(230, 126, 34, 0.10);
}

#etapa-gestao .training-stage-header h3::before {
    background: linear-gradient(135deg, #8e44ad, #c39bd3);
    box-shadow: 0 0 0 6px rgba(142, 68, 173, 0.10);
}

.training-stage-header p {
    margin-bottom: 0;
    color: #576580;
    line-height: 1.7;
}

.training-card-link {
    display: block;
    height: 100%;
}

.training-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 238px;
    padding: 22px 20px 18px;
    border: 1px solid #e4ebf7;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(10, 31, 68, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    overflow: hidden;
}

.training-card:hover {
    transform: translateY(-4px);
    border-color: #c4d7fa;
    box-shadow: 0 16px 30px rgba(10, 31, 68, 0.11);
}

.training-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.9), rgba(91, 183, 255, 0.8));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.training-card:hover::after {
    opacity: 1;
}

.training-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.2rem;
}

.training-card-body {
    flex: 1;
}

.training-card-title {
    margin-bottom: 10px;
    color: #162b4d;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.45;
}

.training-card-description {
    margin-bottom: 0;
    color: #5a6884;
    font-size: 0.95rem;
    line-height: 1.7;
}

.training-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.training-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2051a5;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.training-badge-essencial {
    background: linear-gradient(135deg, #e6f9ed, #d0f0dc);
    color: #15713a;
    font-weight: 800;
    box-shadow: inset 0 0 0 1.5px rgba(21, 113, 58, 0.22);
}

.training-badge-essencial::before {
    content: "★";
    margin-right: 4px;
    font-size: 0.7rem;
}

.training-badge-importante {
    background: #fff3e3;
    color: #b36b00;
    box-shadow: inset 0 0 0 1px rgba(179, 107, 0, 0.12);
}

.training-badge-complementar {
    background: #eef2f7;
    color: #4e607d;
    box-shadow: inset 0 0 0 1px rgba(78, 96, 125, 0.10);
}

.training-badge-financeiro,
.training-badge-financeiro-e-completo {
    background: #ebf2ff;
    color: #2852a3;
}

.training-badge-todos-os-planos {
    background: #f0f4ff;
    color: #405da0;
}

.training-badge-apoio,
.training-badge-suporte,
.training-badge-preparacao {
    background: #f3f6fb;
    color: #51627d;
}

.training-track-finance {
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: #d9e7ff;
}

.training-track-finance .training-section-heading h2 {
    color: #103873;
}

.training-support {
    background:
        linear-gradient(180deg, #f8faff 0%, #eef4fb 50%, #f5f8fd 100%);
    border-color: #c8daf0;
}

.training-support .training-section-heading {
    position: relative;
    padding-left: 22px;
}

.training-support .training-section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #5c6f91, #9aabc4);
}

.training-inline-action {
    margin-top: 24px;
}

.training-faq-item {
    border: 1px solid #e4ebf7;
    border-radius: 18px !important;
    box-shadow: none;
    overflow: hidden;
}

.training-faq-item + .training-faq-item {
    margin-top: 12px;
}

.training-faq-item .card-header {
    background: #f9fbff;
    border-bottom: 0;
}

.training-faq-item .accordion-toggle {
    display: block;
    color: #183056;
    text-decoration: none;
    cursor: pointer;
}

.training-faq-item .card-body {
    color: #586783;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .training-hero {
        padding-top: 180px;
        padding-bottom: 90px;
    }

    .training-hero-panel {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .training-shell {
        margin-top: -20px;
    }

    .training-section {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .training-section-heading h2 {
        font-size: 1.6rem;
    }

    .training-anchor-nav {
        justify-content: flex-start;
        padding: 14px 16px;
    }

    .training-card {
        min-height: 0;
    }
}

/* Progress checkboxes */
.training-card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #d0dae8;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    color: transparent;
    font-size: 0.82rem;
}

.training-card-check:hover {
    border-color: #90b4e0;
    transform: scale(1.1);
}

.training-card-check.is-done {
    border-color: #1d9c50;
    background: #1d9c50;
    color: #fff;
}

.training-card.is-completed {
    opacity: 0.7;
}

.training-card.is-completed .training-card-icon {
    background: rgba(29, 156, 80, 0.12);
    color: #1d9c50;
}

/* ── Seção de estatísticas acumuladas ── */
.rwa-stats-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #fff 100%);
    padding: 60px 0 40px;
}

.rwa-stat-card {
    background: #fff;
    border: 1px solid #e0eaf7;
    border-radius: 18px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(11,35,84,0.07);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}

.rwa-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(11,35,84,0.12);
}

.rwa-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b1a3a 0%, #0d6efd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 1.4rem;
}

.rwa-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0b2354;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.rwa-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #5d6f8a;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .rwa-stats-section {
        padding: 40px 0 20px;
    }
    .rwa-stat-number {
        font-size: 1.8rem;
    }
}

/* ── CTA intermediária: formulário inline ── */
.rwa-cta-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px auto 16px;
    max-width: 400px;
    color: #8ea0bb;
    font-size: 0.82rem;
}

.rwa-cta-divider::before,
.rwa-cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #c8d8ee;
}

.rwa-cta-form {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 460px;
    margin: 0 auto;
}

.rwa-cta-field {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #c8d8ee;
    border-radius: 999px;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
    transition: border-color 0.15s;
}

.rwa-cta-field:focus-within {
    border-color: #0d6efd;
}

.rwa-cta-prefix {
    padding: 0 12px;
    color: #27ae60;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    border-right: 1px solid #e0eaf5;
}

.rwa-cta-field input {
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 0.95rem;
    width: 100%;
    background: transparent;
    color: #1a2540;
}

.rwa-cta-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.rwa-cta-btn:hover {
    background: #0a58ca;
}

@media (max-width: 480px) {
    .rwa-cta-form {
        flex-direction: column;
    }
    .rwa-cta-field {
        min-width: 0;
    }
    .rwa-cta-btn {
        width: 100%;
    }
}

/* ── Telas do Sistema: legenda visível em mobile (não só no hover) ── */
@media (max-width: 767px) {
    #telas_sistema .thumb-info-title {
        opacity: 1 !important;
        transform: none !important;
        bottom: 0 !important;
    }
    #telas_sistema .thumb-info-lighten .thumb-info-title {
        background: rgba(0,0,0,0.62);
        padding: 8px 10px;
    }
    #telas_sistema .thumb-info-inner {
        font-size: 0.78rem;
    }
    #telas_sistema .thumb-info-type {
        display: none;
    }
}

/* ── O Sistema: ícone com círculo translúcido ── */
#o_sistema .feature-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#o_sistema .feature-box-icon i {
    font-size: 1.6rem;
}

#o_sistema .feature-box:hover .feature-box-icon {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.32);
}

/* ── Quem Somos: linha do tempo ── */
.rwa-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.rwa-timeline-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rwa-timeline-connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, #c8d8ee, #a0b8d8);
    align-self: 72px;
    margin-top: 72px;
}

.rwa-timeline-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rwa-navy);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    border-radius: 999px;
    height: 28px;
}

.rwa-timeline-marker-now {
    background: var(--rwa-blue);
}

.rwa-timeline-logo {
    width: 100px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e8f0;
    background: #fff;
}

.rwa-timeline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rwa-timeline-icon-wrap {
    width: 100px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b1a3a, #0d6efd);
    color: #fff;
    font-size: 1.8rem;
}

.rwa-timeline-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 767px) {
    .rwa-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .rwa-timeline-item {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 16px 0;
    }
    .rwa-timeline-connector {
        width: 2px;
        height: 24px;
        margin: 0 0 0 13px;
        background: linear-gradient(180deg, #c8d8ee, #a0b8d8);
    }
    .rwa-timeline-logo,
    .rwa-timeline-icon-wrap {
        flex-shrink: 0;
        width: 64px;
        height: 52px;
    }
    .rwa-timeline-marker {
        white-space: nowrap;
    }
    .rwa-timeline-item {
        flex-wrap: wrap;
    }
    .rwa-timeline-text {
        width: 100%;
    }
}

/* ── Antes x Depois: compare grid ── */
.compare-grid {
    display: flex;
    gap: 0;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(11,35,84,0.08);
}

.compare-col {
    flex: 1;
    padding: 28px 24px;
}

.compare-before {
    background: #fff8f8;
    border: 1px solid #f0d0d0;
    border-right: none;
    border-radius: 16px 0 0 16px;
}

.compare-after {
    background: #f2fbf6;
    border: 1px solid #c6e8d3;
    border-left: none;
    border-radius: 0 16px 16px 0;
}

.compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    background: #f5f7fa;
    border-top: 1px solid #e8edf6;
    border-bottom: 1px solid #e8edf6;
    position: relative;
    z-index: 1;
}

.compare-vs {
    font-size: 0.72rem;
    font-weight: 900;
    color: #9aa5bc;
    letter-spacing: 0.06em;
    writing-mode: vertical-rl;
}

.compare-header {
    margin-bottom: 18px;
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 999px;
}

.compare-badge-before {
    background: #fde8e8;
    color: #c0392b;
}

.compare-badge-after {
    background: #d4f5e4;
    color: #1a7a44;
}

.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #2c3a52;
}

.compare-before .compare-list li i {
    color: #e74c3c;
    margin-top: 2px;
    flex-shrink: 0;
}

.compare-after .compare-list li i {
    color: #27ae60;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .compare-grid {
        flex-direction: column;
        border-radius: 14px;
    }
    .compare-before {
        border-radius: 14px 14px 0 0;
        border-right: 1px solid #f0d0d0;
        border-bottom: none;
    }
    .compare-after {
        border-radius: 0 0 14px 14px;
        border-left: 1px solid #c6e8d3;
        border-top: none;
    }
    .compare-divider {
        width: 100%;
        height: 36px;
        border-left: 1px solid #e8edf6;
        border-right: 1px solid #e8edf6;
    }
    .compare-vs {
        writing-mode: horizontal-tb;
    }
}

/* ── Trust bar no hero ── */
.rwa-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
}

.rwa-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.rwa-trust-item i {
    color: #5bbeff;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .rwa-trust-bar {
        gap: 8px 20px;
    }
    .rwa-trust-item {
        font-size: 0.82rem;
    }
}

/* ── Revolution Slider: ocultar em mobile, exibir só em desktop ── */
@media (max-width: 767px) {
    .slider-container.rev_slider_wrapper {
        display: none !important;
    }
}

/* ── Carousel de clientes: 2 logos em mobile (mais volume visual) ── */
@media (max-width: 475px) {
    #clientes .owl-carousel .owl-item {
        max-width: 50%;
    }
}


/* ======================================================================
   Canais de Atendimento — opção B (fundo navy)
   ====================================================================== */
.rwa-canais-section {
    background: #001f3f;
    padding: 52px 0;
}

.rwa-canais-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    height: 100%;
}

.rwa-canais-card--link:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.rwa-canais-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.45rem;
    color: #fff;
}

.rwa-canais-card strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.rwa-canais-card span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* CTA button no menu */
.rwa-menu-cta {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

/* ======================================================================
   Footer navy — opção A (contínuo com a seção de canais)
   ====================================================================== */
#footer {
    background: #001f3f !important;
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 1px !important;
    overflow: hidden;
}

#footer > .container:first-child {
    margin-top: 0;
}

#footer .row.my-4 {
    margin-top: 1.5rem !important;
}

#footer .footer-ribbon {
    display: none;
}

#footer h5.text-3 {
    color: #fff !important;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
    opacity: 0.5;
}

#footer p,
#footer .contact-details p {
    color: rgba(255,255,255,0.65) !important;
}

#footer ul li a,
#footer .contact-details a {
    color: rgba(255,255,255,0.75) !important;
    transition: color 0.15s;
}

#footer ul li a:hover,
#footer .contact-details a:hover {
    color: #fff !important;
    text-decoration: none;
}

#footer .text-color-primary,
#footer i.text-color-primary {
    color: rgba(255,255,255,0.4) !important;
}

#footer .text-muted {
    color: rgba(255,255,255,0.55) !important;
}

#footer .social-icons li a {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.7) !important;
}

#footer .social-icons li a:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
}

#footer .footer-copyright {
    background: rgba(0,0,0,0.25) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

#footer .footer-copyright p,
#footer .footer-copyright strong {
    color: rgba(255,255,255,0.4) !important;
}

