Typography .text-dark-blue {
    color: var(--primary-color) !important;
}

.font-big {
    font-size: 1.5rem;
}


/* Header */

.page-header {
    margin-bottom: 2rem;
}

.header-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}


/* Content Card */

.content-card {
    background: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.content-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.card-body {
    padding: 1rem;
}


/* Text Content */

.intro-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}


/* Button Custom */

.btn-custom {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
}

.btn-custom:hover {
    background: var(--primary-color);
    color: white;
}

.btn-custom i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.conteudo p:first-child {
    font-size: 1rem;
    color: #495057;
    font-weight: 400;
    line-height: 1.7;
}

.btn-custom:hover i {
    transform: translateY(2px);
}


/* Legislação Links */

.legislacao-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    background: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.link-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    gap: 1rem;
}

.link-content:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.link-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.link-text p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.link-arrow {
    color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.link-content:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.container-fluid {
    padding: 1rem;
}


/* CSS construido no modo MOBILE FIRST */

@media (min-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    .font-big {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }
    .link-content {
        gap: 1.5rem;
    }
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .link-text h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 576px) {
    .card-body {
        padding: 1.5rem;
    }
    .font-big {
        font-size: 1.25rem;
    }
    .btn-custom {
        width: auto;
        justify-content: start;
    }
}