/* ==================================
            VARIÁVEIS 
   ================================== */
:root {
    --color-primary: #395A32;
    --color-text-title: #212529;
    --color-text-body: #5a5a5a;
    --font-title: 'Inter', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: #fff;
}

.page-content {
    padding: 7rem 0;
}

/* =======================================
           ESTILO DOS TÍTULOS 
   ===================================== */
.section-title {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--color-text-title);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* =================================
        CABEÇALHO DA PÁGINA
   ================================= */
.page-header {
    margin-bottom: 5rem; 
}

.lead-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-text-body);
    margin-top: 1.5rem;  
    margin-bottom: 2.5rem;
    max-width: 700px;  
    margin-left: auto;
    margin-right: auto;
}

.intro-body p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-body);
    max-width: 750px;
    margin: 0 auto 1.5rem auto;
}
.intro-body p:last-child {
    margin-bottom: 0;
}

/* ===========================
            CONTEÚDO 
   =========================== */
.content-section {
    padding: 2.5rem 0;
}

.content-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.text-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.info-block {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.info-block p {
    font-size: 1rem;
}

.info-block a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.1rem;
    padding: 0.25rem 0;
    transition: opacity 0.2s ease-in-out;
}

.info-block a:hover {
    opacity: 0.8;
}

.info-block a[href^="mailto:"]::before,
.info-block a[href*="uploads"]::before,
.info-block a[target="_blank"]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-text-body);
}

.info-block a[href^="mailto:"]::before {
    content: "\f0e0";
}

.info-block a[href*="uploads"]::before,
.info-block a[target="_blank"]::before {
    content: "\f15c";
}

.text-content a:not(.info-block a) {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    word-break: break-all;
    transition: opacity 0.2s ease-in-out;
}

.text-content a:not(.info-block a):hover {
    text-decoration: underline;
    opacity: 0.8;
}

.btn-document {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: var(--color-text-title);
    font-family: var(--font-title);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-document:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-document i {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.btn-document:hover i {
    color: #fff;
}

/* ===========================
         Responsividade
   =========================== */
@media (max-width: 991.98px) {
    .page-header .section-title {
        margin-top: 3rem;
    }
    .page-content {
        padding: 3rem 0;
    }
    .text-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .content-section .text-wrapper {
        text-align: center;
    }
    .content-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .content-section .text-content {
        text-align: left;
    }
}