/* ==========================================================================
   LINKS JURÍDICOS (BOOTSTRAP 5.3)
   ========================================================================== */

/* 1. GERAL E TIPOGRAFIA */
body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    color: #222;
}

/* 2. BARRA DE NAVEGAÇÃO */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 10px 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px;
        text-transform: uppercase !important;
        transition: all 0.3s ease;
    }
}
.navbar-transparent .nav-link { color: #ffffff !important; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
.navbar-scrolled { background-color: #ffffff !important; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.navbar-scrolled .nav-link { color: #222222 !important; text-shadow: none !important; }
.navbar-scrolled .nav-link:hover { color: #A21416 !important; }

/* 3. HERO BANNER (Estático e Elegante) */
.hero-links {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide/DIGITAL.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 160px 0 100px 0;
    color: white;
}
.hero-links h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-links p {
    font-size: 1.5rem;
    color: #FFCE00;
}

/* 4. CARTÕES DE LINKS */
.link-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}
.link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.link-card-header {
    background-color: #1a1a1a; /* Chumbo */
    color: #FFCE00; /* Dourado */
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #A21416; /* Detalhe vermelho */
}
.link-card-header h3 {
    margin: 0;
    font-weight: 700;
    color: #FFCE00;
    letter-spacing: 1px;
}

/* 5. ITENS DA LISTA DE LINKS */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.link-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.link-item:last-child {
    border-bottom: none;
}
.link-item a {
    color: #444444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.link-item a i {
    color: #A21416;
    margin-right: 12px;
    transition: all 0.3s ease;
}
.link-item a:hover {
    color: #A21416;
    padding-left: 5px; /* Efeito do texto "andando" pra direita */
}
.link-item a:hover i {
    color: #FFCE00;
}

/* 6. UTILITÁRIOS E FOOTER */
.section-padding { padding: 90px 0; }
.bg-dark-custom { background-color: #1a1a1a; }
.text-gold { color: #FFCE00 !important; }
footer.bg-dark-custom p, footer.bg-dark-custom .text-muted { color: #e0e0e0 !important; }
footer.bg-dark-custom a i { color: #ffffff !important; transition: all 0.3s ease; }
footer.bg-dark-custom a:hover i { color: #FFCE00 !important; transform: scale(1.2); }

/* Ajustes Mobile */
@media (max-width: 768px) {
    .hero-links h1 { font-size: 2.5rem; }
    .hero-links p { font-size: 1.2rem; }
    .hero-links { padding: 120px 0 80px 0; }
}