/* =========================================
   ESTILOS ESPECÍFICOS: PREVIDENCIÁRIO (INSS)
   ========================================= */

/* --- HERO SECTION (Padrão Premium) --- */
.hero-internal {
    min-height: 60vh !important;
    padding-top: 140px;
    align-items: center;
    display: flex;
    position: relative;
}

.hero-internal .hero-card {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.6) 60%, transparent 100%);
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    text-align: left;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* Título em Linha Única (Ajuste Solicitado) */
.hero-internal .hero-title {
    font-size: clamp(2rem, 3.5vw, 4rem); /* Tamanho mantido */
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Cinzel', serif;
    max-width: 100%; /* LIBERADO: Ocupa toda a largura disponível */
    white-space: nowrap; /* COMANDO: Força o texto a ficar em uma linha só */
}

/* No celular, permitimos quebrar para não vazar */
@media (max-width: 992px) {
    .hero-internal .hero-title {
        white-space: normal; 
        font-size: 2.2rem;
    }
}

.hero-internal .hero-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 0 2.5rem 0;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Botão Pulsante (Dourado) */
.btn-pulse {
    background: linear-gradient(45deg, #c5a059, #e0b769);
    color: #000 !important;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* --- SIMULADOR HORIZONTAL (NOVO) --- */
.simulador-container {
    background: #111;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.simulador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto; /* 3 Campos + Botão */
    gap: 1.5rem;
    align-items: end; /* Alinha botão com os inputs */
}

/* Responsivo do Simulador */
@media (max-width: 992px) {
    .simulador-grid { grid-template-columns: 1fr; }
    .btn-full-mobile { width: 100%; text-align: center; justify-content: center; }
}

/* Resultado do Simulador */
#resultado-prev-box {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #c5a059;
    border-radius: 4px;
    display: none; /* Oculto inicialmente */
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.status-green { background: rgba(37, 211, 102, 0.15); color: #25d366; border: 1px solid #25d366; }
.status-yellow { background: rgba(255, 204, 0, 0.15); color: #ffcc00; border: 1px solid #ffcc00; }

/* --- CARDS E ÁREAS --- */
.area-card, .case-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px;
    height: 100%;
    transition: border-color 0.3s ease;
}

.area-card:hover, .case-card:hover { border-color: #c5a059; }

.area-card * { text-shadow: none !important; -webkit-font-smoothing: antialiased; }

.area-card h3 {
    font-family: 'Cinzel', serif;
    color: #c5a059 !important;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.area-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.area-card span {
    background-color: rgba(197, 160, 89, 0.1) !important;
    border: 1px solid #c5a059 !important;
    color: #c5a059 !important;
    font-weight: 600;
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}