/* =====================================================
   DPO MASTER — Estilos Específicos da Página
   Versão: 2.0 | Fevereiro 2026
   Baseado na estrutura Compliance Manager
   ===================================================== */

/* Info bar override: give Credenciamentos more space */
.curso-info-item:nth-child(5) {
    flex: 1.5 !important;
}

/* =====================================================
   HERO HIGHLIGHTS (lado direito do hero)
   ===================================================== */
.dpo-hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-self: center;
}

.dpo-hero-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s;
}

.dpo-hero-highlight-box:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.dpo-hero-highlight-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpo-hero-highlight-icon svg {
    width: 20px;
    height: 20px;
    color: #93c5fd;
}

.dpo-hero-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dpo-hero-highlight-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.063rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.dpo-hero-highlight-label {
    font-size: 0.75rem;
    color: #bfdbfe;
    line-height: 1.3;
}

/* =====================================================
   OBJETIVOS NUMERADOS
   ===================================================== */
.objetivos-numerados {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.objetivo-num-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.objetivo-num-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.objetivo-num-item span {
    font-size: 0.938rem;
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 6px;
}

/* =====================================================
   HIGHLIGHT BOXES (antes da proposta)
   ===================================================== */
.dpo-highlights-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.dpo-highlight-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dpo-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.dpo-highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
}

.dpo-highlight-icon {
    margin-bottom: 10px;
}

.dpo-highlight-icon svg {
    width: 28px;
    height: 28px;
    color: #93c5fd;
}

.dpo-highlight-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.dpo-highlight-label {
    font-size: 0.75rem;
    color: #bfdbfe;
    line-height: 1.4;
}

/* =====================================================
   SEÇÃO: PROPOSTA ÚNICA — DPO MASTER
   ===================================================== */
.dpo-proposta-section {
    position: relative;
    overflow: hidden;
}

.dpo-proposta-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 800px;
}

.dpo-proposta-headline span {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout com imagem ao lado do headline */
.dpo-proposta-top {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

/* Variante sem imagem — texto ocupa 100% */
.dpo-proposta-top-fulltext {
    display: block;
    max-width: 900px;
}

.dpo-proposta-top-text {
    display: flex;
    flex-direction: column;
}

/* Imagem jornada inline (dentro do container) */
.dpo-jornada-inline {
    margin: 8px 0 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dpo-jornada-inline .dpo-jornada-img,
.dpo-jornada-fullwidth .dpo-jornada-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.dpo-proposta-desc {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 850px;
    margin-bottom: 0;
}

.dpo-proposta-desc strong {
    color: var(--text-primary);
}

/* =====================================================
   JORNADA DO DPO — Imagem full-width
   ===================================================== */
.dpo-jornada-fullwidth {
    padding: 0 0 8px;
    background: #fff;
}

.dpo-jornada-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* =====================================================
   SEÇÃO: DIFERENCIAL V2 — Formato Híbrido com Gráfico
   ===================================================== */
.dpo-diferencial-v2 {
    margin-top: 8px;
    margin-bottom: 0;
}

.dpo-diferencial-v2-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.dpo-hibrido-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 40px;
    align-items: start;
}

.dpo-hibrido-text p {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 900px;
}

.dpo-hibrido-text p:last-child {
    margin-bottom: 0;
}

.dpo-hibrido-text p strong {
    color: var(--text-primary);
}

.dpo-hibrido-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.dpo-pie-svg {
    width: 180px;
    height: 180px;
}

.dpo-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dpo-pie-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #4b5563;
    white-space: nowrap;
}

.dpo-pie-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =====================================================
   SEÇÃO: EXIN ATP
   ===================================================== */
.dpo-atp-section {
    position: relative;
    overflow: hidden;
}

.dpo-atp-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
}

.dpo-atp-logo {
    height: 80px;
    width: auto;
}

.dpo-atp-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.dpo-atp-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
}

.dpo-atp-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dpo-atp-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.dpo-atp-check svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #10b981;
}

.dpo-atp-check a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.dpo-atp-check a:hover {
    color: var(--primary-hover);
}

/* EXIN Trilha Visual — HTML illustration */
.dpo-exin-trilha-visual {
    margin-top: 40px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.dpo-exin-trilha-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.dpo-exin-trilha-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dpo-exin-trilha-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 160px;
}

.dpo-exin-trilha-cert {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 14px 28px;
    border-radius: 12px;
    min-width: 120px;
}

.dpo-exin-trilha-name {
    font-size: 0.688rem;
    color: #6b7280;
    max-width: 180px;
    line-height: 1.3;
}

.dpo-exin-trilha-connector {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.dpo-exin-trilha-connector svg {
    width: 20px;
    height: 20px;
    color: #d1d5db;
    transform: rotate(-90deg);
}

.dpo-exin-trilha-arrow {
    margin: 20px auto 16px;
}

.dpo-exin-trilha-arrow svg {
    width: 28px;
    height: 28px;
    color: #2563eb;
}

.dpo-exin-trilha-result {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 16px;
    position: relative;
}

.dpo-exin-trilha-result::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 19px;
    background: linear-gradient(135deg, #60a5fa, #1e3a8a, #60a5fa);
    z-index: -1;
}

.dpo-exin-trilha-result-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.dpo-exin-trilha-result-text {
    font-size: 0.875rem;
    color: #bfdbfe;
    line-height: 1.4;
}

.dpo-exin-trilha-result-note {
    font-size: 0.688rem;
    color: #93c5fd;
    opacity: 0.8;
    margin-top: 4px;
}

/* =====================================================
   SEÇÃO: AVANCE RUMO AO MBA
   ===================================================== */
.dpo-mba-bridge {
    position: relative;
    overflow: hidden;
}

.dpo-mba-bridge-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.dpo-mba-bridge-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.dpo-mba-bridge-content h2 span {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dpo-mba-bridge-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.dpo-mba-bridge-content p strong {
    color: var(--text-primary);
}

.dpo-mba-bridge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    margin-top: 8px;
    text-decoration: none;
}

.dpo-mba-bridge-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.dpo-mba-bridge-link svg {
    width: 20px;
    height: 20px;
}

.dpo-mba-bridge-badge {
    flex-shrink: 0;
}

.dpo-mba-bridge-badge img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 8px 24px rgba(30, 58, 138, 0.3));
    transition: transform 0.3s ease;
}

.dpo-mba-bridge-badge img:hover {
    transform: scale(1.05);
}

/* =====================================================
   SEÇÃO: CURSOS DA FORMAÇÃO — Blue Vibrant Cards
   ===================================================== */
.dpo-cursos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dpo-curso-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.dpo-curso-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Blue variant */
.dpo-curso-card-blue {
    background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 100%);
    border: none;
    color: #fff;
}

.dpo-curso-card-blue:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
    transform: translateY(-4px);
}

/* Card header with badge image */
.dpo-curso-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dpo-curso-card-badge {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dpo-curso-badge {
    display: inline-block;
    font-size: 0.688rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.dpo-badge-live {
    background: #fff;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.dpo-badge-recorded {
    background: #fff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.dpo-curso-card-blue h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.dpo-curso-card-blue .dpo-curso-sigla {
    font-size: 0.813rem;
    color: #bfdbfe;
    margin-bottom: 12px;
    font-weight: 500;
}

.dpo-curso-card-blue p {
    font-size: 0.938rem;
    color: #dbeafe;
    line-height: 1.7;
    margin: 0 0 16px;
}

.dpo-curso-card-blue .dpo-curso-link {
    color: #93c5fd;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.dpo-curso-card-blue .dpo-curso-link:hover {
    color: #fff;
    gap: 10px;
}

.dpo-curso-card-blue .dpo-curso-link svg {
    width: 16px;
    height: 16px;
}

/* Fallback for non-blue cards */
.dpo-curso-card:not(.dpo-curso-card-blue) h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
    line-height: 1.3;
}

.dpo-curso-sigla {
    font-size: 0.813rem;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
}

.dpo-curso-card:not(.dpo-curso-card-blue) p {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 16px;
}

.dpo-curso-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dpo-curso-link:hover {
    gap: 10px;
    color: var(--primary-hover);
}

.dpo-curso-link svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   SEÇÃO: APLICAÇÃO DO CONHECIMENTO
   ===================================================== */
.dpo-aplicacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dpo-aplicacao-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.dpo-aplicacao-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.dpo-aplicacao-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dpo-aplicacao-card:nth-child(1) .dpo-aplicacao-icon { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.dpo-aplicacao-card:nth-child(1) .dpo-aplicacao-icon svg { stroke: #2563eb; }
.dpo-aplicacao-card:nth-child(2) .dpo-aplicacao-icon { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.dpo-aplicacao-card:nth-child(2) .dpo-aplicacao-icon svg { stroke: #7c3aed; }

.dpo-aplicacao-icon svg {
    width: 28px;
    height: 28px;
}

.dpo-aplicacao-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.dpo-aplicacao-card p {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 16px;
}

.dpo-aplicacao-card p:last-child { margin: 0; }

.dpo-aplicacao-destaques {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.dpo-aplicacao-destaque {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.dpo-aplicacao-destaque svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #3b82f6;
    margin-top: 1px;
}

/* =====================================================
   SEÇÃO: SALÁRIOS DO DPO NO BRASIL
   ===================================================== */
/* --- Salários & Retorno do Investimento --- */

.dpo-salarios-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.dpo-salarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Coluna esquerda: Gráfico de barras --- */

.dpo-salario-chart-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

.dpo-salario-chart-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.063rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.dpo-salario-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dpo-salario-bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dpo-salario-bar-label {
    font-size: 0.813rem;
    font-weight: 600;
    color: #4b5563;
}

.dpo-salario-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dpo-salario-bar-track {
    flex: 1;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.dpo-salario-bar-fill {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.813rem;
    font-weight: 700;
    color: #fff;
    transition: width 1s ease;
}

.dpo-salario-bar-fill.p25 { background: linear-gradient(90deg, #93c5fd, #60a5fa); }
.dpo-salario-bar-fill.p50 { background: linear-gradient(90deg, #60a5fa, #2563eb); }
.dpo-salario-bar-fill.p75 { background: linear-gradient(90deg, #2563eb, #1e3a8a); }
.dpo-salario-bar-fill.p100 { background: linear-gradient(90deg, #1e3a8a, #1e40af); }

.dpo-salario-bar-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

/* Fontes / Referências */

.dpo-salario-fontes {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.dpo-salario-fontes-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.dpo-salario-fonte-item {
    font-size: 0.75rem;
    line-height: 1.6;
}

.dpo-salario-fonte-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.dpo-salario-fonte-item a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Destaque CAGED */

.dpo-salario-destaque-caged {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 10px;
    border-left: 3px solid #2563eb;
}

.dpo-salario-destaque-caged svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #2563eb;
    margin-top: 1px;
}

.dpo-salario-destaque-caged span {
    font-size: 0.813rem;
    color: #1e3a8a;
    line-height: 1.5;
}

.dpo-salario-destaque-caged strong {
    color: #1e40af;
}

/* --- Coluna direita: ROI / Retorno do investimento --- */

.dpo-roi-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dpo-roi-intro {
    font-size: 0.938rem;
    color: #374151;
    line-height: 1.6;
    padding: 0 0 4px;
}

.dpo-roi-intro strong {
    color: #1e3a8a;
}

/* Cards ROI */

.dpo-roi-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.dpo-roi-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.dpo-roi-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpo-roi-card-icon svg {
    width: 22px;
    height: 22px;
    color: #2563eb;
}

.dpo-roi-card-content {
    flex: 1;
}

.dpo-roi-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.dpo-roi-card-content p {
    font-size: 0.813rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 10px;
}

.dpo-roi-card-content p strong {
    color: #1f2937;
}

/* Valores DPOaaS */

.dpo-roi-card-valores {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.dpo-roi-valor-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 6px;
    padding: 4px 10px;
    line-height: 1.4;
}

/* Cargos GRC */

.dpo-roi-card-cargos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.dpo-roi-card-cargos span {
    font-size: 0.688rem;
    font-weight: 600;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* Nota dentro do card */

.dpo-roi-card-nota {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
    padding-top: 2px;
}

/* Insight final */

.dpo-roi-insight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 12px;
    color: #fff;
}

.dpo-roi-insight svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #93c5fd;
    margin-top: 1px;
}

.dpo-roi-insight span {
    font-size: 0.813rem;
    line-height: 1.6;
    color: #e0e7ff;
}

.dpo-roi-insight strong {
    color: #fff;
}

/* Full-width insight box (spans both columns) */
.dpo-roi-insight-fullwidth {
    margin-top: 32px;
}

.dpo-roi-insight-fullwidth-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.dpo-roi-insight-fullwidth-inner::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.dpo-roi-insight-fullwidth-inner svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    color: #93c5fd;
}

.dpo-roi-insight-fullwidth-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #dbeafe;
}

.dpo-roi-insight-fullwidth-text strong {
    color: #fff;
    font-weight: 800;
}

/* =====================================================
   SEÇÃO: CERTIFICADO & PROVA
   ===================================================== */
.dpo-certificado-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.dpo-certificado-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}

.dpo-certificado-text p strong {
    color: var(--text-primary);
}

.dpo-certificado-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.dpo-certificado-text a:hover {
    color: var(--primary-hover);
}

.dpo-cert-steps {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.dpo-cert-step {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1e3a8a;
    font-weight: 600;
}

.dpo-cert-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dpo-certificado-badge {
    text-align: center;
}

.dpo-certificado-badge img {
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.dpo-certificado-badge p {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 12px;
    line-height: 1.4;
}

.dpo-certificado-badge small {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* =====================================================
   SEÇÃO: EXAMES EXIN (Tabela)
   ===================================================== */
.dpo-exames-wrapper {
    margin-top: 0;
}

.dpo-exames-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.dpo-exames-table thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    color: #fff;
}

.dpo-exames-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.813rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.dpo-exames-table td {
    padding: 14px 20px;
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.dpo-exames-table td strong {
    color: #1f2937;
}

.dpo-exames-table tr:last-child td {
    border-bottom: none;
}

.dpo-exames-table tbody tr:hover {
    background: #f8fafc;
}

.dpo-exames-note {
    font-size: 0.813rem;
    color: #6b7280;
    margin-top: 16px;
    line-height: 1.6;
}

.dpo-exames-note strong {
    color: #1f2937;
}

/* =====================================================
   DESTAQUE DO PROFESSOR PRINCIPAL — BANNER FULL WIDTH
   ===================================================== */
.dpo-prof-banner {
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    border-bottom: none;
}

.dpo-prof-banner-img {
    width: 100%;
    max-height: 380px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px 16px 0 0;
}

.dpo-prof-banner-info {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.dpo-prof-destaque-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 6px;
}

.dpo-prof-banner-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 6px;
}

.dpo-prof-destaque-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 12px;
}

.dpo-prof-destaque-bio {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 14px;
}

.dpo-prof-destaque-bio strong {
    color: #1e3a8a;
}

.dpo-prof-banner-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dpo-prof-destaque-modulos {
    font-size: 0.813rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.dpo-prof-destaque-modulos strong {
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

/* Label de módulos nos cards de professores secundários */
.dpo-prof-modulos-label {
    font-size: 0.813rem;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.dpo-prof-modulos-label strong {
    color: #1f2937;
}

/* =====================================================
   CTA MOTIVACIONAL
   ===================================================== */
.dpo-cta-motivacional {
    background: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.dpo-cta-motivacional::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.dpo-cta-motivacional-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dpo-cta-motivacional h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 20px;
}

.dpo-cta-motivacional h2 span {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dpo-cta-motivacional p {
    font-size: 1.063rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.dpo-cta-motivacional p strong {
    color: #1f2937;
}

.dpo-cta-motivacional .btn-inscricao {
    margin-top: 24px;
}

/* =====================================================
   RESPONSIVO — Todas as seções específicas DPO MASTER
   ===================================================== */
@media (max-width: 1024px) {
    .dpo-proposta-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dpo-prof-banner-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dpo-certificado-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dpo-certificado-badge {
        order: -1;
    }

    .dpo-atp-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dpo-atp-logo {
        margin: 0 auto;
    }

    .dpo-hero-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .dpo-exin-trilha-flow {
        flex-direction: column;
        gap: 2px;
    }

    .dpo-exin-trilha-connector {
        transform: rotate(90deg);
        height: 24px;
    }

    .dpo-highlights-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .dpo-hibrido-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dpo-hibrido-chart {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .dpo-pie-svg {
        width: 140px;
        height: 140px;
    }

    .dpo-roi-insight-fullwidth-inner {
        padding: 24px 28px;
    }

    .dpo-roi-insight-fullwidth-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .dpo-hero-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dpo-hero-highlight-box {
        padding: 14px 14px;
    }

    .dpo-hero-highlight-value {
        font-size: 0.938rem;
    }

    .dpo-exin-trilha-visual {
        padding: 16px 12px;
        margin-top: 24px;
    }

    .dpo-exin-trilha-title {
        font-size: 0.938rem;
        margin-bottom: 16px;
    }

    .dpo-exin-trilha-flow {
        gap: 0;
    }

    .dpo-exin-trilha-step {
        min-width: auto;
        gap: 3px;
    }

    .dpo-exin-trilha-cert {
        font-size: 0.938rem;
        padding: 8px 20px;
        min-width: 100px;
    }

    .dpo-exin-trilha-name {
        font-size: 0.625rem;
    }

    .dpo-exin-trilha-connector {
        padding: 0;
        height: 20px;
    }

    .dpo-exin-trilha-connector svg {
        width: 16px;
        height: 16px;
    }

    .dpo-exin-trilha-arrow {
        margin: 10px auto 8px;
    }

    .dpo-exin-trilha-arrow svg {
        width: 22px;
        height: 22px;
    }

    .dpo-exin-trilha-result {
        padding: 14px 20px;
    }

    .dpo-exin-trilha-result-badge {
        font-size: 1.125rem;
    }

    .dpo-exin-trilha-result-text {
        font-size: 0.75rem;
    }

    .dpo-exin-trilha-result-note {
        font-size: 0.625rem;
    }

    .dpo-proposta-headline {
        font-size: 1.375rem;
    }

    .dpo-proposta-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dpo-cursos-grid {
        grid-template-columns: 1fr;
    }

    .dpo-aplicacao-grid {
        grid-template-columns: 1fr;
    }

    .dpo-salarios-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dpo-salario-bar-fill {
        font-size: 0.688rem;
    }

    .dpo-salario-bar-value {
        font-size: 0.813rem;
        min-width: 70px;
    }

    .dpo-roi-card {
        flex-direction: column;
        gap: 12px;
    }

    .dpo-roi-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .dpo-roi-card-valores {
        gap: 4px;
    }

    .dpo-roi-card-cargos {
        gap: 4px;
    }

    .objetivo-num-circle {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.813rem;
    }

    .objetivo-num-item span {
        font-size: 0.875rem;
        padding-top: 4px;
    }

    .dpo-cta-motivacional h2 {
        font-size: 1.375rem;
    }

    .dpo-cta-motivacional p {
        font-size: 0.938rem;
    }

    .dpo-mba-bridge-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .dpo-mba-bridge-badge {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .dpo-mba-bridge-badge img {
        width: 160px;
    }

    .dpo-mba-bridge-content h2 {
        font-size: 1.375rem;
    }

    .dpo-prof-banner-info {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .dpo-prof-banner-info h3 {
        font-size: 1.25rem;
    }

    .dpo-diferencial-v2-title {
        font-size: 1.188rem;
    }

    .dpo-diferencial-v2 p,
    .dpo-hibrido-text p {
        font-size: 0.938rem;
    }

    .dpo-highlights-strip {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dpo-highlight-box {
        padding: 18px 14px;
    }

    .dpo-highlight-value {
        font-size: 1.063rem;
    }

    .dpo-hibrido-chart {
        flex-direction: column;
        align-items: center;
    }

    .dpo-pie-svg {
        width: 160px;
        height: 160px;
    }

    .dpo-roi-insight-fullwidth-inner {
        flex-direction: column;
        gap: 14px;
        padding: 24px;
        text-align: center;
    }

    .dpo-roi-insight-fullwidth-text {
        font-size: 0.938rem;
    }

    .dpo-exames-table {
        font-size: 0.813rem;
    }

    .dpo-exames-table th,
    .dpo-exames-table td {
        padding: 10px 12px;
    }

    .dpo-cert-steps {
        flex-direction: column;
    }
}