/**
 * CidadeTur BR - Estilos do Bloco 3 (Páginas Semelhantes)
 */

/* ============================================
   SEÇÃO PÁGINAS SEMELHANTES
   ============================================ */

.bloco3-section {
    background-color: #1a3652;
    padding: 20px;
    width: 100%;
    margin: 3px 0;
    border-radius: 8px;
}

/* Título da Seção */
.bloco3-title {
    margin-bottom: 20px;
}

.bloco3-title h2 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Separador após o título */
.bloco3-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 15px;
}

/* ============================================
   LISTA DE PÁGINAS
   ============================================ */

.bloco3-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    position: relative;
}

.bloco3-list::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.bloco3-link {
    color: #B8D94C;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.5;
}

.bloco3-link:hover {
    color: #D4F170;
    text-decoration: underline;
}
