/* =========================================
   ESTILOS ESPECÍFICOS: TRIBUTÁRIO (TAX LAW)
   ========================================= */

/* Hero Section */
.hero-internal {
    min-height: 50vh !important;
    padding-top: 120px;
    align-items: flex-start;
}

.hero-internal .hero-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    box-shadow: none;
    text-align: left;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-internal .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

/* Botão Dourado (Identidade Visual) */
.btn-pulse {
    background: linear-gradient(45deg, #c5a059, #e0b769);
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    animation: pulse-gold 2s infinite;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

@keyframes pulse-gold {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* --- CASES DE SUCESSO (ESTILO LIMPO E NÍTIDO) --- */
.case-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.case-card:hover {
    border-color: #c5a059;
}

/* Título do Case - Cinzel (Elegante) */
.case-card h4 {
    font-family: 'Cinzel', serif;
    color: #c5a059 !important; /* Dourado */
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-shadow: none !important; /* Remove borrão */
    letter-spacing: 0.5px;
}

/* Texto Descritivo - Roboto (Leitura Fácil) */
.case-row {
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

.label {
    color: #888; /* Cinza médio para o rótulo */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.value {
    color: #e0e0e0; /* Branco gelo para o texto */
    font-weight: 400;
}

/* Área de Resultados (Destaque) */
.case-results {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #c5a059;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.result-item:last-child { margin-bottom: 0; }

.res-label {
    font-size: 0.85rem;
    color: #ccc;
}

.res-value {
    font-size: 1.1rem;
    color: #fff; /* Branco puro para o número */
    font-weight: 700; /* Negrito nítido */
}

/* Card de Média */
.average-card .case-card {
    border: 1px solid #c5a059;
    background: #0f0f0f;
}
.average-card h4 {
    color: #fff !important;
    text-align: center;
    border-bottom: none;
}
.average-card .res-value {
    color: #c5a059; /* Dourado nos números da média */
    font-size: 1.3rem;
}