/* ============================================
   INICIO.CSS — DISC DASHBOARD
   Dashboard inicial (cards, frase, grids)
   Compatível com index.html + main.css
   ============================================ */

/* ============================================
   ANIMAÇÕES GLOBAIS DE ENTRADA
   ============================================ */

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardPop {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   CONTAINER GERAL
   ============================================ */

.dashboard-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 0;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ============================================
   CARD PRINCIPAL
   ============================================ */

.card-principal {
    background: var(--cor-header);
    border-radius: 22px;
    padding: 38px 42px;
    margin-bottom: 38px;
    text-align: center;
    border: 1px solid rgba(249,137,72,0.22);
    box-shadow:
        0 0 14px rgba(249,137,72,0.25),
        0 6px 22px rgba(0,0,0,0.30);
    animation: fadeSlideDown 0.5s ease both;
}

.dashboard-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--cor-primaria);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dashboard-welcome {
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard-subtitle {
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    opacity: 0.8;
    margin-bottom: 22px;
}

/* FRASE ROTATIVA */
.dashboard-quote {
    margin-top: 14px;
    font-size: 19px;
    color: var(--cor-texto);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    animation: fadeIn 0.5s forwards ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dashboard-quote::before { content: '"'; }
.dashboard-quote::after  { content: '"'; }

/* Tema escuro: frase laranja */
[data-theme="dark"] #fraseRotativa {
    color: #F98948;
}

#fraseRotativa {
    margin-top: 16px;
    margin-bottom: 6px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ============================================
   TÍTULOS DO CARD PRINCIPAL
   ============================================ */

.titulo-pagina {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--cor-primaria);
    text-align: center;
    margin-bottom: 12px;
    animation: fadeSlideDown 0.45s ease both;
}

.bemvindo-texto {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cor-texto);
    margin-bottom: 6px;
    text-align: center;
    animation: fadeSlideDown 0.5s 0.05s ease both;
    opacity: 0;
    animation-fill-mode: both;
}

.subtexto-inicial {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--cor-texto);
    opacity: 0;
    margin-bottom: 22px;
    text-align: center;
    animation: fadeSlideDown 0.55s 0.1s ease both;
    animation-fill-mode: both;
}

/* ============================================
   SETAS DA FRASE
   ============================================ */

.setas-frase-wrapper {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    animation: fadeIn 0.6s 0.3s ease both;
    opacity: 0;
    animation-fill-mode: both;
}

.seta-frase {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F98948;
    color: #FFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(249,137,72,0.5);
    transition: 0.25s ease;
}

.seta-frase:hover {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(249,137,72,0.8);
}

/* ============================================
   AÇÕES RÁPIDAS — CARD PADRÃO
   ============================================ */
.acoes-rapidas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;  /* ← botões centralizados */
}

/* Subtítulo do card de ações */
.card-subtitulo {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--cor-texto);
    opacity: 0.75;
    margin-bottom: 16px;
    margin-top: -6px;
    text-align: center;
}

/* BOTÃO PADRÃO DO SISTEMA */
.menu-btn {
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid rgba(249,137,72,0.25);
    background: linear-gradient(135deg, rgba(249,137,72,0.08), transparent);
    color: var(--cor-texto);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(249,137,72,0.35), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.menu-btn:hover::before {
    opacity: 1;
}

.menu-btn:hover {
    border-color: rgba(249,137,72,0.7);
    box-shadow:
        0 0 14px rgba(249,137,72,0.6),
        inset 0 0 10px rgba(249,137,72,0.25);
    transform: translateY(-3px) scale(1.03);
}

.menu-btn i {
    color: var(--cor-primaria);
    font-size: 16px;
}

/* ============================================
   CARD BASE
   ============================================ */

.card {
    background: var(--cor-sidebar);
    border: 2px solid rgba(249,137,72,0.20);
    border-radius: 18px;
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 12px rgba(249,137,72,0.22),
        0 4px 14px rgba(0,0,0,0.4);
    transition: 0.25s ease;
    animation: cardPop 0.45s ease both;
    background: var(--card-bg, var(--cor-sidebar));
    color: var(--text-color, var(--cor-texto));
}

.card:hover {
    border-color: rgba(249,137,72,0.45);
    box-shadow:
        0 0 16px rgba(249,137,72,0.55),
        inset 0 0 10px rgba(249,137,72,0.25);
    transform: translateY(-3px);
}

.card-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-primaria);
    font-weight: 700;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 12px;
}

.card-titulo i {
    font-size: 20px;
    filter: drop-shadow(0 0 6px rgba(249,137,72,0.35));
    transition: 0.25s ease;
}

.card:hover .card-titulo i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(249,137,72,0.6));
}

/* Animação escalonada nos cards filhos */
.cards-3 .card:nth-child(1) { animation-delay: 0.05s; }
.cards-3 .card:nth-child(2) { animation-delay: 0.12s; }
.cards-3 .card:nth-child(3) { animation-delay: 0.19s; }

.cards-topo .card:nth-child(1) { animation-delay: 0.08s; }
.cards-topo .card:nth-child(2) { animation-delay: 0.15s; }

/* ============================================
   GRID DOS TRÊS CARDS
   ============================================ */

.cards-3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* ============================================
   GRID 2 COLUNAS — DISC + PERGUNTA
   ============================================ */

.cards-topo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

/* ============================================
   GRID 2×2
   ============================================ */

.cards-grid-2x2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 34px 0;
}

.cards-grid-2x2 .card-novo,
.cards-grid-2x2 .card-hero {
    background: var(--cor-sidebar);
    border: 2px solid rgba(249,137,72,0.22);
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow:
        0 0 14px rgba(249,137,72,0.28),
        0 4px 12px rgba(0,0,0,0.45);
    transition: 0.25s ease;
    font-family: 'Manrope', sans-serif;
    animation: cardPop 0.45s ease both;
    background: var(--card-bg, var(--cor-sidebar));
    color: var(--text-color, var(--cor-texto));
}

.cards-grid-2x2 .card-novo:nth-child(1) { animation-delay: 0.05s; }
.cards-grid-2x2 .card-novo:nth-child(2) { animation-delay: 0.12s; }
.cards-grid-2x2 .card-novo:nth-child(3) { animation-delay: 0.19s; }
.cards-grid-2x2 .card-hero             { animation-delay: 0.26s; }

.cards-grid-2x2 .card-novo:hover,
.cards-grid-2x2 .card-hero:hover {
    border-color: rgba(249,137,72,0.45);
    box-shadow:
        0 0 20px rgba(249,137,72,0.55),
        inset 0 0 12px rgba(249,137,72,0.30);
    transform: translateY(-3px);
}

.novo-titulo,
.hero-titulo {
    font-weight: 700;
    font-size: 19px;
    color: var(--cor-primaria);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
}

.novo-titulo i,
.hero-titulo i {
    font-size: 20px;
    filter: drop-shadow(0 0 6px rgba(249,137,72,0.40));
}

.novo-conteudo {
    font-size: 15px;
    color: var(--cor-texto);
    line-height: 1.42;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 8px;
}

.card-hero .hero-frase {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--cor-texto);
    line-height: 1.45;
}

/* ============================================
   PERFIL DISC — CORES INTELIGENTES
   ============================================ */

.card-disc {
    position: relative;
    transition: 0.25s ease;
}

.card-disc[data-perfil="D"] { border-color: rgba(255, 70, 70, 0.5); }
.card-disc[data-perfil="I"] { border-color: rgba(255, 180, 0, 0.5); }
.card-disc[data-perfil="S"] { border-color: rgba(0, 200, 140, 0.5); }
.card-disc[data-perfil="C"] { border-color: rgba(70, 140, 255, 0.5); }

.card-disc:hover {
    box-shadow:
        0 0 20px rgba(249,137,72,0.5),
        inset 0 0 12px rgba(249,137,72,0.25);
    transform: translateY(-3px);
}

.card-disc strong {
    font-size: 17px;
    letter-spacing: 0.5px;
}

/* ============================================
   INSIGHTS
   ============================================ */

.lista-insights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lista-insights li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lista-insights .insight-texto {
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

[data-theme="light"] .lista-insights .insight-texto { color: #241E4E; font-weight: 700; }
[data-theme="dark"]  .lista-insights .insight-texto { color: #FFFFFF; font-weight: 700; }

.lista-insights .insight-fonte {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.lista-insights .insight-fonte a { text-decoration: none; transition: opacity 0.25s ease; }
[data-theme="light"] .lista-insights .insight-fonte a { color: #000000; font-weight: 400; }
[data-theme="dark"]  .lista-insights .insight-fonte a { color: #F98948;  font-weight: 400; }
.lista-insights .insight-fonte a:hover { opacity: 0.7; }

/* ============================================
   NOTÍCIAS
   ============================================ */

.lista-noticias {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lista-noticias li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lista-noticias .noticia-texto {
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

[data-theme="light"] .lista-noticias .noticia-texto { color: #241E4E; font-weight: 700; }
[data-theme="dark"]  .lista-noticias .noticia-texto { color: #FFFFFF; font-weight: 700; }

.lista-noticias .noticia-resumo {
    font-size: 13px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

[data-theme="light"] .lista-noticias .noticia-resumo { color: #555555; }
[data-theme="dark"]  .lista-noticias .noticia-resumo { color: #AAAAAA; }

.lista-noticias .noticia-fonte {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

.lista-noticias .noticia-fonte a { text-decoration: none; transition: opacity 0.25s ease; }
[data-theme="light"] .lista-noticias .noticia-fonte a { color: #000000; font-weight: 400; }
[data-theme="dark"]  .lista-noticias .noticia-fonte a { color: #F98948;  font-weight: 400; }
.lista-noticias .noticia-fonte a:hover { opacity: 0.7; }

/* ============================================
   FOTO DO DIA
   ============================================ */

.card-foto-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: var(--cor-header);
    border: 2px solid rgba(249,137,72,0.25);
    box-shadow:
        0 0 12px rgba(249,137,72,0.22),
        0 4px 14px rgba(0,0,0,0.35);
    transition: 0.35s ease;
    cursor: pointer;
}

.card-foto-wrapper:hover {
    border-color: rgba(249,137,72,0.55);
    box-shadow:
        0 0 18px rgba(249,137,72,0.6),
        inset 0 0 12px rgba(249,137,72,0.25);
    transform: translateY(-3px);
}

.card-foto-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.35s ease;
    display: block;
}

.card-foto-wrapper:hover img {
    transform: scale(1.05);
}

.foto-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.foto-tema {
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

[data-theme="light"] .foto-tema { color: #241E4E; font-weight: 700; }
[data-theme="dark"]  .foto-tema { color: #FFFFFF; font-weight: 700; }

.foto-link {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

.foto-link a { text-decoration: none; transition: opacity 0.25s ease; }
[data-theme="light"] .foto-link a { color: #000000; font-weight: 400; }
[data-theme="dark"]  .foto-link a { color: #F98948;  font-weight: 400; }
.foto-link a:hover { opacity: 0.7; }

/* ============================================
   AJUSTES DE TEMA
   ============================================ */
[data-theme="light"] .card-principal,
[data-theme="light"] .card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.15);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.12),
        0 0 12px rgba(249,137,72,0.18);
}

[data-theme="dark"] .card-principal,
[data-theme="dark"] .card {
    background: #1c1b1b;
    border-color: rgba(249,137,72,0.28);
}

[data-theme="light"] .cards-grid-2x2 .card-novo,
[data-theme="light"] .cards-grid-2x2 .card-hero {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.15);
}

[data-theme="dark"] .cards-grid-2x2 .card-novo,
[data-theme="dark"] .cards-grid-2x2 .card-hero {
    background: #1c1b1b;
    border-color: rgba(249,137,72,0.28);
}

/* IMAGEM DE FUNDO DO CARD PRINCIPAL */
.card-principal {
    position: relative;
    overflow: hidden;
}

.card-principal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    opacity: 0.22;
    filter: blur(1px) saturate(0.9) brightness(0.95);

    pointer-events: none;
    border-radius: 22px;
    z-index: 0;
}

/* Garante que o conteúdo fica acima da imagem */
.card-principal > *:not(.card-principal-img) {
    position: relative;
    z-index: 1;
}

/* DISC título com badge ao lado */
.disc-titulo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.disc-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: auto;
}

/* Cores por perfil */
#cardDiscDia[data-perfil="D"] .disc-badge { background: rgba(255,70,70,0.15);   color: #ff4646; border: 1px solid rgba(255,70,70,0.5);   box-shadow: 0 0 8px rgba(255,70,70,0.4); }
#cardDiscDia[data-perfil="I"] .disc-badge { background: rgba(255,180,0,0.15);   color: #ffb400; border: 1px solid rgba(255,180,0,0.5);   box-shadow: 0 0 8px rgba(255,180,0,0.4); }
#cardDiscDia[data-perfil="S"] .disc-badge { background: rgba(0,200,140,0.15);   color: #00c88c; border: 1px solid rgba(0,200,140,0.5);   box-shadow: 0 0 8px rgba(0,200,140,0.4); }
#cardDiscDia[data-perfil="C"] .disc-badge { background: rgba(70,140,255,0.15);  color: #468cff; border: 1px solid rgba(70,140,255,0.5);  box-shadow: 0 0 8px rgba(70,140,255,0.4); }

/* Neon na borda do card por perfil */
#cardDiscDia[data-perfil="D"] { border-color: rgba(255,70,70,0.5);  box-shadow: 0 0 14px rgba(255,70,70,0.25),  0 4px 14px rgba(0,0,0,0.4); }
#cardDiscDia[data-perfil="I"] { border-color: rgba(255,180,0,0.5);  box-shadow: 0 0 14px rgba(255,180,0,0.25),  0 4px 14px rgba(0,0,0,0.4); }
#cardDiscDia[data-perfil="S"] { border-color: rgba(0,200,140,0.5);  box-shadow: 0 0 14px rgba(0,200,140,0.25),  0 4px 14px rgba(0,0,0,0.4); }
#cardDiscDia[data-perfil="C"] { border-color: rgba(70,140,255,0.5); box-shadow: 0 0 14px rgba(70,140,255,0.25), 0 4px 14px rgba(0,0,0,0.4); }

/* MODAL REDIRECIONAMENTO */
.modal-redir {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.modal-redir.ativo { display: flex; }

.modal-redir-content {
    background: var(--cor-sidebar);
    border: 2px solid var(--cor-primaria);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 0 30px rgba(249,137,72,0.35), 0 8px 32px rgba(0,0,0,0.5);
    animation: cardPop 0.3s ease both;
}

.modal-redir-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-primaria);
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.modal-redir-header i { font-size: 18px; }

.modal-redir-body {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--cor-texto);
    opacity: 0.9;
    margin-bottom: 22px;
    line-height: 1.5;
}

.modal-redir-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-redir-cancel {
    border-color: rgba(255,255,255,0.15) !important;
    background: transparent !important;
}

.modal-redir-cancel:hover {
    border-color: rgba(255,70,70,0.5) !important;
    box-shadow: 0 0 10px rgba(255,70,70,0.3) !important;
}

[data-theme="light"] .modal-redir-content {
    background: #FFFFFF;
    border-color: #241E4E;
    box-shadow: 0 0 20px rgba(36,30,78,0.2), 0 8px 32px rgba(0,0,0,0.15);
}

/* ============================================
   SIMULADOR DE CENÁRIOS
   ============================================ */

.insights-simulador {
    background: var(--cor-sidebar);
    border: 2px solid rgba(249,137,72,0.20);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow:
        0 0 12px rgba(249,137,72,0.22),
        0 4px 14px rgba(0,0,0,0.4);
    overflow: hidden;
    word-break: break-word;
}

.insights-simulador h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cor-texto);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insights-simulador h2 i {
    color: var(--cor-primaria);
}

.simulador-intro {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    opacity: 0.75;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cenario-atual {
    background: var(--cor-header);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.cenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cenario-badge {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-primaria);
    background: rgba(249,137,72,0.15);
    padding: 6px 14px;
    border-radius: 20px;
}

.cenario-pontos {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--cor-primaria);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ✅ CORREÇÃO: flex em vez de text-align center que quebrava o layout */
.cenario-conteudo {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.cenario-icone {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cor-primaria);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cenario-icone i {
    font-size: 28px;
    color: #0a0a0a;
}

.cenario-conteudo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cor-texto);
    margin-bottom: 12px;
}

.cenario-contexto {
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    opacity: 0.85;
}

.cenario-opcoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ✅ CORREÇÃO: width 100% + box-sizing garante que os botões não estourem */
.opcao-btn {
    background: var(--cor-sidebar);
    border: 2px solid rgba(249,137,72,0.2);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.opcao-btn:hover {
    border-color: var(--cor-primaria);
    background: rgba(249,137,72,0.1);
    transform: translateX(5px);
}

.opcao-btn.selecionada {
    border-color: var(--cor-primaria);
    background: rgba(249,137,72,0.15);
}

.opcao-letra {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cor-primaria);
    color: #0a0a0a;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opcao-texto {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    line-height: 1.5;
}

.cenario-feedback {
    margin-top: 20px;
    padding: 16px;
    background: rgba(249,137,72,0.1);
    border-left: 4px solid var(--cor-primaria);
    border-radius: 8px;
    display: none;
}

.cenario-feedback.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.cenario-feedback h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 8px;
}

.cenario-feedback p {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    margin: 0;
}

.simulador-acoes {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-proximo-cenario,
.btn-reiniciar {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-proximo-cenario {
    background: var(--cor-primaria);
    color: #0a0a0a;
}

.btn-proximo-cenario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249,137,72,0.4);
}

.btn-reiniciar {
    background: rgba(249,137,72,0.2);
    color: var(--cor-primaria);
}

.btn-reiniciar:hover {
    background: rgba(249,137,72,0.3);
}

/* ============================================
   SIMULADOR DE COMPATIBILIDADE
   ============================================ */

.insights-compatibilidade {
    background: var(--cor-sidebar);
    border: 2px solid rgba(249,137,72,0.20);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow:
        0 0 12px rgba(249,137,72,0.22),
        0 4px 14px rgba(0,0,0,0.4);
}

.insights-compatibilidade h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cor-texto);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insights-compatibilidade h2 i { color: var(--cor-primaria); }

.compatibilidade-form .form-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.compatibilidade-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compatibilidade-form label {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--cor-texto);
    opacity: 0.85;
}

.compatibilidade-form select {
    background: var(--cor-header);
    border: 2px solid rgba(249,137,72,0.25);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--cor-texto);
    cursor: pointer;
    transition: 0.25s ease;
    min-width: 180px;
}

.compatibilidade-form select:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 8px rgba(249,137,72,0.3);
}

.btn-analisar {
    padding: 11px 22px;
    background: var(--cor-primaria);
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    white-space: nowrap;
}

.btn-analisar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249,137,72,0.4);
}

.resultado-compatibilidade {
    margin-top: 20px;
    padding: 20px;
    background: var(--cor-header);
    border-radius: 12px;
    border: 1px solid rgba(249,137,72,0.2);
    display: none;
    animation: fadeSlideUp 0.35s ease both;
}

.resultado-compatibilidade.show { display: block; }

[data-theme="light"] .insights-compatibilidade {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.12);
}

/* ===============================
   ACESSO RÁPIDO — DESTAQUE
=============================== */

.destaque-texto {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 15px;
}

.destaque-acoes {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-btn.destaque {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    min-width: 220px;

    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    border: none;

    transition: all 0.25s ease;
}

.menu-btn.destaque:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.btn-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-titulo {
    font-weight: 700;
    font-size: 14px;
}

.btn-desc {
    font-size: 11px;
    opacity: 0.85;
}

/* ===============================
   CARD DESTAQUE COM BORDA ANIMADA
=============================== */

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.card-acesso-destaque {
    position: relative;
    border-radius: 18px;
    padding: 26px;
    overflow: hidden;
}

/* BORDA ANIMADA */
.card-acesso-destaque::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;

    background: conic-gradient(
        from var(--angle),
        transparent 0deg,
        transparent 240deg,
        var(--cor-primaria),
        transparent 360deg
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: rotate 4s linear infinite;
}

/* GLOW */
.card-acesso-destaque::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;

    background: conic-gradient(
        from var(--angle),
        transparent 0deg,
        transparent 240deg,
        var(--cor-primaria),
        transparent 360deg
    );

    filter: blur(18px);   /* ↓ REDUZIDO */
    opacity: 0.12;        /* ↓ REDUZIDO */

    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    to { --angle: 360deg; }
}

/* TEMA */
[data-theme="light"] .card-acesso-destaque {
    --cor-primaria: #2f5fd0; /* azul real do sistema */
}

[data-theme="dark"] .card-acesso-destaque {
    --cor-primaria: #f98948;
}

.destaque-texto-upper {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* BOTÃO GRADIENTE */
.btn-gradient {
  padding: 14px 40px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;

  background-size: 300% 300%;
  animation: gradientMove 3s linear infinite;
  transition: 0.3s;
}

/* 🔵 TEMA CLARO — AZUL REAL DO SISTEMA */
[data-theme="light"] .btn-gradient {
    background: linear-gradient(270deg, #241E4E, #3f37c9, #4895ef, #6fa8ff);
    background-size: 300% 300%;
    animation: gradientMove 3s linear infinite;
    color: #ffffff;
}

/* 🟠 TEMA ESCURO — LARANJA COM MOVIMENTO REAL */
[data-theme="dark"] .btn-gradient {
    background: linear-gradient(270deg, #f98948, #ff7a18, #ffb347, #ff9a3c);
    background-size: 300% 300%;
    animation: gradientMove 3s linear infinite;
    color: #000000;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card-acesso-destaque .card-titulo {
    font-family: 'Orbitron', sans-serif;
}

.destaque-texto {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.btn-gradient span {
    font-family: 'Rajdhani', sans-serif;
}

.card-acesso-destaque::before,
.card-acesso-destaque::after {
    pointer-events: none;
}

.btn-gradient {
    position: relative;
    z-index: 2;
}

.card-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--cor-primaria, #F98948);      /* laranja — tema escuro */
    transition: opacity .2s, gap .2s;
}

[data-theme="light"] .card-ver-mais {
    color: #241E4E;                            /* azul escuro — tema claro */
}

.card-ver-mais:hover {
    opacity: .75;
    gap: 10px;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
    .dashboard-container { padding: 18px 14px; }
}

@media (max-width: 900px) {
    .main-content { padding-top: 70px !important; }
    .cards-2, .cards-3, .cards-grid-2x2 { grid-template-columns: 1fr !important; gap: 22px; }
    .card-principal { padding: 28px 24px; }
    .card-principal-img { display: none; }
    .titulo-pagina { font-size: 26px; }
    .bemvindo-texto { font-size: 17px; }
    .subtexto-inicial { font-size: 15px; margin-bottom: 20px; }
    .dashboard-quote, #fraseRotativa { font-size: 17px; }
    .card-foto-wrapper img { height: 220px; }
    #btnMenu { display: flex !important; }
}

@media (max-width: 768px) {
    .cards-2, .cards-3, .cards-grid-2x2, .cards-topo { grid-template-columns: 1fr !important; gap: 20px; }
    .dashboard-title { font-size: 24px; }
    .card { padding: 18px 16px; border-radius: 14px; }
    .card-titulo { font-size: 16px; }
    .card-titulo i { font-size: 18px; }
    .card-foto-wrapper { border-radius: 14px; }
    .card-foto-wrapper img { height: 200px; }
    .lista-insights, .lista-noticias { gap: 16px; }
    .lista-insights .insight-texto, .lista-noticias .noticia-texto { font-size: 15px; }
    .lista-insights .insight-fonte, .lista-noticias .noticia-fonte { font-size: 12px; }
    .lista-noticias .noticia-resumo { font-size: 12px; }
    .foto-info { padding: 12px 14px; }
    .foto-tema { font-size: 15px; }
    .foto-link { font-size: 12px; }
    .novo-titulo, .hero-titulo { font-size: 17px; }
    .novo-conteudo { font-size: 15px; }
    .novo-fonte { font-size: 12px; }
    .card-hero .hero-frase { font-size: 15px; }
    .acoes-rapidas { flex-direction: column; align-items: stretch; width: 100%; }
    .menu-btn { width: 100%; justify-content: center; font-size: 15px; padding: 12px; }
    .dashboard-container { padding: 16px 12px; gap: 24px; }
    .card-principal { padding: 24px 18px; margin-bottom: 28px; border-radius: 16px; }
    .titulo-pagina { font-size: 24px; margin-bottom: 10px; }
    .bemvindo-texto { font-size: 17px; margin-bottom: 6px; }
    .subtexto-inicial { font-size: 14px; margin-bottom: 18px; }
    .dashboard-quote, #fraseRotativa { font-size: 16px; line-height: 1.4; }
    .seta-frase { width: 32px; height: 32px; font-size: 13px; }
    .cards-3 { gap: 20px; }
    .cards-grid-2x2 { gap: 20px; }
    .disc-badge { margin-left: 0; }
    /* Simulador de compatibilidade */
    .compatibilidade-form .form-row { flex-direction: column; align-items: stretch; }
    .compatibilidade-form select { min-width: unset; width: 100%; }
    .btn-analisar { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .dashboard-container { padding: 14px 10px; gap: 20px; }
    .card-principal { padding: 20px 16px; border-radius: 14px; }
    .titulo-pagina { font-size: 22px; }
    .bemvindo-texto { font-size: 16px; }
    .subtexto-inicial { font-size: 13px; }
    #fraseRotativa { font-size: 15px; }
    .seta-frase { width: 30px; height: 30px; font-size: 12px; }
    .card { padding: 16px 14px; }
    .card-foto-wrapper img { height: 180px; }
    .cards-3, .cards-grid-2x2 { gap: 16px; }
    .menu-btn { font-size: 14px; padding: 11px; }
    .acoes-header { font-size: 16px; }
    .insights-compatibilidade { padding: 20px 16px; }
    .insights-compatibilidade h2 { font-size: 17px; }
}

@media (max-width: 360px) {
    .dashboard-container { padding: 12px 8px; }
    .card-principal { padding: 18px 14px; }
    .titulo-pagina { font-size: 20px; }
    #fraseRotativa { font-size: 14px; }
    .card { padding: 14px 12px; }
    .card-titulo { font-size: 16px; }
    .card-foto-wrapper img { height: 160px; }
    .menu-btn { font-size: 13px; padding: 10px; }
    .btn-analisar { font-size: 13px; padding: 10px 16px; }
}