/* =====================================================
   GESTOR DE PRIVACIDADE + IA — Estilos Específicos
   Versão: 1.0 | Fevereiro 2026
   Baseado na estrutura Compliance Manager
   Cor primária: Roxo/Violeta (#6d28d9 / #7c3aed)
   ===================================================== */

/* =====================================================
   HERO — CARD DE CERTIFICAÇÃO (Badge + MEC)
   ===================================================== */
.certificacao-badge-img {
    max-width: 180px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.mec-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius, 12px);
    border: 1px solid rgba(109, 40, 217, 0.3);
}

.mec-info .mec-badge-small {
    width: 60px !important;
    max-width: 60px !important;
    height: auto;
    flex-shrink: 0;
}

.mec-text p {
    font-size: 0.813rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.mec-text p strong {
    color: var(--text-primary);
}

.mec-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mec-link:hover {
    gap: 10px;
    color: #6d28d9;
}

/* =====================================================
   VENN DIAGRAM — Interseção Privacidade + IA
   ===================================================== */
.venn-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/3;
    margin: 0 auto;
}

.venn-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.venn-circle-privacidade {
    background: rgba(109, 40, 217, 0.15);
    border: 2px solid rgba(109, 40, 217, 0.5);
    color: #581c87;
    left: 0;
}

.venn-circle-ia {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.5);
    color: #065f46;
    right: 0;
}

.venn-circle-privacidade:hover {
    transform: translateX(-4px);
}

.venn-circle-ia:hover {
    transform: translateX(4px);
}

.venn-circle span {
    position: relative;
    z-index: 2;
}

.venn-center-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: linear-gradient(135deg, #6d28d9, #10b981);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
    white-space: nowrap;
}

/* =====================================================
   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, #6d28d9 0%, #7c3aed 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;
}

/* =====================================================
   SEÇÃO: PROPOSTA ÚNICA
   ===================================================== */
.comp-proposta-section {
    position: relative;
    overflow: hidden;
}

.comp-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;
}

.comp-proposta-headline span {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-proposta-top {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.comp-proposta-top-text {
    display: flex;
    flex-direction: column;
}

.comp-proposta-top-img {
    overflow: hidden;
}

.comp-proposta-top-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.comp-proposta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.comp-proposta-desc strong {
    color: var(--text-primary);
}

/* Diferencial v2 — bloco abaixo do proposta */
.comp-diferencial-v2 {
    margin-top: 16px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.comp-diferencial-v2-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.comp-diferencial-v2 p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 10px;
}

.comp-diferencial-v2 p:last-child { margin-bottom: 0; }

.comp-diferencial-v2 strong {
    color: #fff;
}

/* =====================================================
   PARCERIA DATAUX
   ===================================================== */
.priv-parceria {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(109, 40, 217, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(109, 40, 217, 0.12);
}

.priv-parceria img {
    height: 40px;
    width: auto;
}

.priv-parceria span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.priv-parceria strong {
    color: var(--text-primary);
}

/* =====================================================
   SEÇÃO: BÔNUS EXCLUSIVOS
   ===================================================== */
.priv-bonus-section {
    position: relative;
    overflow: hidden;
}

.priv-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.priv-bonus-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.priv-bonus-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.priv-bonus-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: #6d28d9;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.priv-bonus-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.priv-bonus-card p {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 8px;
}

.priv-bonus-card .priv-bonus-valor-riscado {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-top: 12px;
}

.priv-bonus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.priv-bonus-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.priv-bonus-list-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #7c3aed;
    margin-top: 2px;
}

/* =====================================================
   MÓDULOS — Grid e Cards
   ===================================================== */
.comp-modulos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.comp-modulo-card {
    background: linear-gradient(135deg, #581c87 0%, #6d28d9 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.35);
}

.comp-modulo-card:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.5);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

.comp-modulo-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.comp-modulo-info {
    flex: 1;
}

.comp-modulo-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.comp-modulo-prof,
.comp-modulo-ch {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.comp-modulo-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
}

.comp-modulo-arrow {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-top: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.comp-modulo-card:hover .comp-modulo-arrow {
    color: #fff;
    transform: translateX(3px);
}

/* Modal do módulo */
.comp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.comp-modal-overlay.active {
    display: flex;
}

.comp-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    animation: compModalIn 0.3s ease;
}

@keyframes compModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.comp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comp-modal-close:hover { background: #e5e7eb; }

.comp-modal-close svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.comp-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-right: 40px;
}

.comp-modal-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.comp-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.comp-modal-meta {
    display: flex;
    gap: 16px;
    margin-top: 6px;
}

.comp-modal-meta span {
    font-size: 0.813rem;
    color: #6b7280;
}

.comp-modal-body {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
}

.comp-modal-body h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 20px 0 10px;
}

.comp-modal-body ul {
    padding-left: 20px;
    margin: 0;
}

.comp-modal-body ul li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.comp-modal-body ul li::marker {
    color: #7c3aed;
}

/* =====================================================
   SEÇÃO: AVANCE RUMO AO MBA
   ===================================================== */
.comp-mba-bridge {
    position: relative;
    overflow: hidden;
}

.comp-mba-bridge-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.comp-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;
}

.comp-mba-bridge-content h2 span {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-mba-bridge-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.comp-mba-bridge-content p strong {
    color: var(--text-primary);
}

.comp-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;
}

.comp-mba-bridge-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.comp-mba-bridge-link svg {
    width: 20px;
    height: 20px;
}

.comp-mba-bridge-badge {
    flex-shrink: 0;
}

.comp-mba-bridge-badge img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 8px 24px rgba(109, 40, 217, 0.3));
    transition: transform 0.3s ease;
}

.comp-mba-bridge-badge img:hover {
    transform: scale(1.05);
}

/* =====================================================
   BLOCO: TRÍADE / VISÃO INTEGRADA (após conteúdo)
   ===================================================== */
.comp-triade-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.comp-triade-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 16px;
}

.comp-triade-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}

.comp-triade-text p:last-child {
    margin-bottom: 0;
}

.comp-triade-text p strong {
    color: var(--text-primary);
}

.comp-triade-destaque {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-weight: 500;
    color: #6d28d9 !important;
}

.comp-triade-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comp-triade-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* =====================================================
   SEÇÃO: APLICAÇÃO DO CONHECIMENTO
   ===================================================== */
.comp-aplicacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comp-aplicacao-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.comp-aplicacao-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.comp-aplicacao-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comp-aplicacao-card:nth-child(1) .comp-aplicacao-icon { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.comp-aplicacao-card:nth-child(1) .comp-aplicacao-icon svg { stroke: #7c3aed; }
.comp-aplicacao-card:nth-child(2) .comp-aplicacao-icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.comp-aplicacao-card:nth-child(2) .comp-aplicacao-icon svg { stroke: #0891b2; }

.comp-aplicacao-icon svg {
    width: 28px;
    height: 28px;
}

.comp-aplicacao-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.comp-aplicacao-card p {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 16px;
}

.comp-aplicacao-card p:last-child { margin: 0; }

.comp-aplicacao-destaques {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.comp-aplicacao-destaque {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.comp-aplicacao-destaque svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #7c3aed;
    margin-top: 1px;
}

/* =====================================================
   SEÇÃO: DEPOIMENTOS
   ===================================================== */
.priv-depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.priv-depoimento-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.priv-depoimento-text {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.priv-depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.priv-depoimento-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.priv-depoimento-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #1f2937;
}

.priv-depoimento-role {
    font-size: 0.813rem;
    color: #6b7280;
}

/* =====================================================
   PROFESSOR DESTAQUE (banner full width)
   ===================================================== */
.comp-prof-banner {
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    border-bottom: none;
}

.comp-prof-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
}

.comp-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;
}

.comp-prof-destaque-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7c3aed;
    margin-bottom: 6px;
}

.comp-prof-banner-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 6px;
}

.comp-prof-destaque-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 12px;
}

.comp-prof-destaque-bio {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 14px;
}

.comp-prof-destaque-bio strong {
    color: #581c87;
}

.comp-prof-banner-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-prof-destaque-modulos {
    font-size: 0.813rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.comp-prof-destaque-modulos strong {
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.comp-prof-livros-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 700;
    color: #581c87;
    background: #fff;
    border: 2px solid #581c87;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.comp-prof-livros-link:hover {
    background: #581c87;
    color: #fff;
}

.comp-prof-livros-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comp-prof-livros-arrow {
    width: 16px !important;
    height: 16px !important;
    transition: transform 0.3s ease;
}

.comp-prof-modulos-label {
    font-size: 0.813rem;
    color: #6b7280;
    margin-top: 12px;
    line-height: 1.5;
}

.comp-prof-modulos-label strong {
    color: #1f2937;
}

/* =====================================================
   INVESTIMENTO — Opções lado a lado (Opção 1, Opção 2)
   ===================================================== */
.priv-investimento-section {
    position: relative;
}

.priv-opcoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.priv-opcao-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.priv-opcao-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.12);
}

.priv-opcao-card.destaque {
    border-color: #7c3aed;
    box-shadow: 0 4px 16px rgba(109, 40, 217, 0.15);
}

.priv-opcao-tag {
    display: inline-flex;
    padding: 4px 14px;
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.priv-opcao-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.4;
}

.priv-opcao-preco-original {
    font-size: 0.938rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.priv-opcao-preco-parcela {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
}

.priv-opcao-preco-avista {
    font-size: 0.938rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.priv-opcao-desconto {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: #6d28d9;
    font-size: 0.813rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 20px;
}

.priv-opcao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.priv-opcao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
}

.priv-opcao-btn svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   CTA MOTIVACIONAL
   ===================================================== */
.comp-cta-motivacional {
    background: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.comp-cta-motivacional::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.comp-cta-motivacional-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.comp-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;
}

.comp-cta-motivacional h2 span {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-cta-motivacional p {
    font-size: 1.063rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.comp-cta-motivacional p strong {
    color: #1f2937;
}

.comp-cta-motivacional .btn-inscricao {
    margin-top: 24px;
}

/* Seção Certificação Extensão — centralizar selo MEC */
.exemplar-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.exemplar-logo img {
    margin: 0 auto !important;
    display: block !important;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1024px) {
    .comp-proposta-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comp-proposta-top-img {
        max-width: 400px;
        margin: 0 auto;
    }

    .comp-mba-bridge-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comp-mba-bridge-badge {
        order: -1;
    }

    .comp-mba-bridge-badge img {
        width: 160px;
    }

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

    .comp-prof-banner-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .comp-proposta-headline {
        font-size: 1.375rem;
    }

    .comp-proposta-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comp-proposta-top-img {
        max-width: 100%;
    }

    .comp-aplicacao-grid {
        grid-template-columns: 1fr;
    }

    .comp-modulos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comp-triade-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .venn-diagram {
        max-width: 320px;
    }

    .venn-circle {
        width: 180px;
        height: 180px;
        font-size: 0.75rem;
    }

    .venn-center-label {
        font-size: 0.688rem;
        padding: 8px 10px;
    }

    .priv-bonus-grid {
        grid-template-columns: 1fr;
    }

    .priv-depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .priv-opcoes-grid {
        grid-template-columns: 1fr;
    }

    .comp-mba-bridge-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comp-mba-bridge-badge {
        order: -1;
    }

    .comp-prof-banner-info {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .comp-prof-banner-info h3 {
        font-size: 1.25rem;
    }

    .comp-prof-livros-link {
        font-size: 0.875rem;
        padding: 10px 16px;
        justify-content: center;
    }

    .priv-parceria {
        flex-direction: column;
        text-align: center;
    }

    .comp-diferencial-v2 {
        padding: 20px;
    }
}
