/* =================================================================== */
/* =================== DECLARAÇÃO DE ACESSIBILIDADE ================== */
/* =================================================================== */

/* --- BANNER DE TOPO --- */
/* Mantém a mesma altura e comportamento da página de contactos */
.banner-topo-acessibilidade {
    width: 100%;
    height: 350px; /* Um pouco menor que contactos para dar destaque ao texto */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

@media (min-width: 1600px) {
    .banner-topo-acessibilidade { height: 400px; }
}
@media (max-width: 768px) {
    .banner-topo-acessibilidade { height: 200px; }
}

/* --- TÍTULO DA PÁGINA --- */
.page-title-container {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 0;
}

.page-title-container h1 {
    color: #444;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-title-container h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-blue, #3a7fa8);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* --- LAYOUT GERAL --- */
.acessibilidade-section {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa; /* Fundo cinza claro para destacar a folha branca */
}

/* --- WRAPPER DO CONTEÚDO (A "Folha" Branca) --- */
/* Baseado no visual do .contact-form-wrapper */
.statement-wrapper {
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

/* --- TIPOGRAFIA DO TEXTO --- */
.statement-content {
    color: #4a4a4a;
    font-family: inherit; /* Herda a fonte do site (Red Hat ou outra) */
}

.statement-content h3 {
    color: var(--azul-mais-escuro, #3a7fa8);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Primeiro parágrafo maior */
.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.statement-content p {
    font-size: 1rem;
    line-height: 1.7; /* Line-height maior facilita a leitura */
    margin-bottom: 20px;
}

.statement-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.statement-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    list-style: none; /* Remove bolinha padrão */
}

/* Bolinha personalizada azul */
.statement-content ul li::before {
    content: "•";
    color: var(--primary-blue, #0d6efd);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.hr-separador {
    margin: 40px 0;
    border-top: 1px solid #dee2e6;
}

/* --- CARTÃO DE CONTACTO DENTRO DO TEXTO --- */
.contact-card-acessibilidade {
    background-color: #f1f8fc; /* Azul muito claro */
    border-left: 4px solid var(--primary-blue, #3a7fa8);
    padding: 25px;
    border-radius: 0 4px 4px 0;
    margin: 30px 0;
}

.contact-card-acessibilidade p {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-acessibilidade i {
    color: var(--primary-blue, #3a7fa8);
    width: 20px;
    text-align: center;
}

.contact-card-acessibilidade a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dotted #333;
}

.contact-card-acessibilidade a:hover {
    color: var(--primary-blue, #0d6efd);
}

/* Botão de ação */
.btn-reportar {
    display: inline-block;
    background-color: var(--primary-blue, #3a7fa8);
    color: #fff !important; /* Force white text */
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.3s;
    border: none;
}

.btn-reportar:hover {
    background-color: #2c6285; /* Versão mais escura do azul */
}

/* Responsividade */
@media (max-width: 768px) {
    .statement-wrapper {
        padding: 30px 20px;
    }
    
    .page-title-container h1 {
        font-size: 2rem;
    }
}